/*
Theme Name: Selfconcept
Theme URI: https://selfconcept.top/
Author: ArthurInoCh
Description: Thème WordPress sombre, élégant, prêt pour WooCommerce et personnalisateurs de produits.
Version: 1.0
Text Domain: selfconcept
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Pacifico&display=swap');

body {
    background: #19071a;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
    margin: 0;
    padding: 0;
}
a { color: #ff0099; text-decoration: none; transition: color 0.2s;}
a:hover { color: #ffe600; }
.site-header {
    background: #130014;
    color: #fff;
    padding: 2rem 0 0.7rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}
.site-title {
    font-family: 'Pacifico', cursive;
    font-size: 4vw;
    color: #17d7ff;
    letter-spacing: 2px;
    margin: 0 0 1rem 0;
    text-align: center;
}
.site-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}
.site-nav ul li {
    display: inline-block;
    margin: 0 18px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
}
.section-title {
    font-family: 'Pacifico', cursive;
    font-size: 2.3rem;
    color: #fff;
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 1px;
}
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 2rem;
    padding: 2rem 0;
    margin: 0 auto;
    max-width: 1200px;
}
.product-card {
    background: #210121;
    border-radius: 18px;
    box-shadow: 0 2px 16px #0003;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.product-card img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    margin-bottom: 1.4rem;
    border-radius: 10px;
}
.product-card .prod-desc {
    font-size: 1.08rem;
    margin-bottom: 1.3rem;
    color: #fff;
    font-weight: 400;
}
.product-card .btn-personnaliser {
    background: linear-gradient(90deg, #ff0099 0%, #ff00a9 100%);
    color: #130014;
    border: none;
    padding: 0.8em 2.2em;
    border-radius: 1.8em;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    margin-top: 0.5em;
    box-shadow: 0 2px 12px #ff009945;
    transition: background 0.2s;
}
.product-card .btn-personnaliser:hover {
    background: linear-gradient(90deg, #ffe600 0%, #ff0099 100%);
}
footer {
    background: #130014;
    color: #ffe600;
    text-align: center;
    padding: 2.5rem 0 1rem 0;
    margin-top: 3rem;
    font-size: 1rem;
    position: relative;
}
.social-icons {
    margin-top: 1.5rem;
}
.social-icons a {
    display: inline-block;
    margin: 0 0.4em;
    background: #ff0099;
    color: #fff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.4em;
    text-align: center;
    line-height: 38px;
    transition: background 0.2s;
}
.social-icons a:hover {
    background: #ffe600;
    color: #130014;
}
.contact-form-box {
    background: #fff;
    color: #210121;
    border-radius: 14px;
    padding: 2.2rem 2.1rem;
    margin: 2rem 0;
    box-shadow: 0 2px 12px #0002;
    max-width: 440px;
}
.contact-form-box label {
    font-weight: bold;
    margin-bottom: 0.3em;
    display: inline-block;
}
.contact-form-box input, .contact-form-box textarea {
    width: 100%;
    border: 2px solid #ff0099;
    border-radius: 22px;
    padding: 0.7em 1em;
    margin-bottom: 1.1em;
    font-size: 1em;
    background: #f6f4f7;
    color: #210121;
    resize: none;
}
.contact-form-box button {
    background: linear-gradient(90deg, #ff0099 0%, #ffe600 100%);
    color: #210121;
    border: none;
    border-radius: 22px;
    font-size: 1.1em;
    padding: 0.8em 2.4em;
    font-weight: 700;
    cursor: pointer;
    margin-top: 1em;
}
.contact-form-box button:hover {
    background: linear-gradient(90deg, #ffe600 0%, #ff0099 100%);
}
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
    .site-title { font-size: 2.5rem;}
}
::-webkit-scrollbar { width: 8px; background: #210121;}
::-webkit-scrollbar-thumb { background: #ff0099;}
.hero-content {
    background: rgb(25 7 26 / 57%)!important;
    border-radius: 24px;
    box-shadow: 0 4px 32px #0005;
    color: #fff;
    text-align: center;
    max-width: 700px;