:root {
    --bg: #050608;
    --bg-alt: #111119;
    --bg-light: #161622;
    --accent: #f0b657;
    --accent-soft: rgba(240, 182, 87, 0.1);
    --accent-strong: #ffd993;
    --text: #f7f3ea;
    --muted: #a7a4b7;
    --border: rgba(255, 255, 255, 0.08);
    --radius: 18px;
    --shadow-soft: 0 20px 40px rgba(0, 0, 0, 0.65);
    --shadow-subtle: 0 10px 25px rgba(0, 0, 0, 0.35);
    --transition-fast: 0.2s ease-out;
    --transition: 0.3s ease;
}
*,
*::before,
*::after {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    padding: 0;
}
body {
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top, #151521 0, #050608 60%);
    color: var(--text);
    line-height: 1.6;
    padding-bottom: 80px;
}
.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
}
.section {
    padding: 80px 0;
}
.section-dark {
    background: linear-gradient(145deg, #050608 0%, #101018 45%, #050608 100%);
}
.section-light {
    background: radial-gradient(circle at top, #191927 0, #050608 60%);
}
.section-head {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}
.section-head h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}
.section-head p {
    color: var(--muted);
    font-size: 0.95rem;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
}
@media (max-width: 800px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    backdrop-filter: blur(24px);
    background: radial-gradient(circle at top left, rgba(240, 182, 87, 0.06), rgba(5, 6, 8, 0.96));
    border-bottom: 1px solid var(--border);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #ffd993, #f0b657 40%, #8e4c2c 90%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #201005;
    box-shadow: var(--shadow-subtle);
}
.logo-text {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.9rem;
}
.nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
}
.nav a {
    color: var(--muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color var(--transition-fast);
}
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-strong));
    transition: width var(--transition-fast);
    border-radius: 999px;
}
.nav a:hover {
    color: var(--text);
}
.nav a:hover::after {
    width: 100%;
}
.nav-cta {
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid var(--accent);
    color: var(--accent-strong) !important;
    box-shadow: 0 0 0 1px rgba(240, 182, 87, 0.12);
}
.nav-cta:hover {
    background: var(--accent-soft);
}
.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}
.burger span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: var(--transition-fast);
}
@media (max-width: 800px) {
    .nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(5, 6, 8, 0.98);
        backdrop-filter: blur(20px);
        padding: 16px;
        transform: translateY(-140%);
        opacity: 0;
        pointer-events: none;
        border-bottom: 1px solid var(--border);
    }
    .nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .burger {
        display: flex;
    }
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 90px;
    overflow: hidden;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(240, 182, 87, 0.25), transparent 55%),
        radial-gradient(circle at bottom, rgba(240, 182, 87, 0.1), transparent 65%),
        linear-gradient(160deg, #050608 0, #020208 60%);
    z-index: -2;
}
.hero-content {
    max-width: 640px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(240, 182, 87, 0.4);
    color: var(--accent-strong);
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: 0.05em;
}
.hero-subtitle {
    color: var(--muted);
    max-width: 480px;
    font-size: 0.98rem;
    margin-bottom: 24px;
}
.hero-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--muted);
}
.hero-meta span {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid var(--border);
}
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.btn-primary {
    background: linear-gradient(135deg, #f0b657, #f58f3d);
    color: #201005;
    box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 35px rgba(245, 143, 61, 0.45);
}
.btn-outline {
    border: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.3);
    color: var(--text);
}
.btn-outline:hover {
    background: rgba(0, 0, 0, 0.65);
}
.btn-full {
    width: 100%;
}
.btn-sm {
    padding: 7px 12px;
    font-size: 0.8rem;
}
.btn-product {
    width: 100%;
    justify-content: center;
    font-size: 0.82rem;
    padding: 9px 14px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f0b657, #f58f3d);
    color: #201005;
    border: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.55);
    letter-spacing: 0.02em;
}
.btn-product:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 35px rgba(245, 143, 61, 0.45);
}
.btn-product-secondary {
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(240, 182, 87, 0.4);
    background: rgba(0, 0, 0, 0.25);
    color: var(--accent-strong);
}
.btn-product-secondary:hover {
    background: rgba(0, 0, 0, 0.6);
}
.text-block h2 {
    font-size: 1.8rem;
    margin-bottom: 12px;
}
.text-block p {
    color: var(--muted);
    font-size: 0.95rem;
}
.card {
    border-radius: var(--radius);
    background: rgba(11, 11, 19, 0.95);
    border: 1px solid var(--border);
    padding: 20px 18px;
    box-shadow: var(--shadow-subtle);
    font-size: 0.9rem;
}
.card-glass {
    background: radial-gradient(circle at top, rgba(240, 182, 87, 0.08), rgba(6, 6, 14, 0.96));
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}
@media (max-width: 1050px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
@media (max-width: 700px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
}
.check-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    color: var(--muted);
}
.check-list li {
    margin-bottom: 6px;
}
.product-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.product-card h3 {
    margin-top: 4px;
    margin-bottom: 6px;
    font-size: 1.05rem;
}
.product-subtitle {
    font-size: 0.88rem;
    color: var(--muted);
    margin-bottom: 10px;
}
.product-notes {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-size: 0.85rem;
    color: var(--muted);
}
.product-notes li {
    margin-bottom: 4px;
}
.product-finish {
    font-size: 0.85rem;
    color: var(--accent-strong);
}
.product-media {
    position: relative;
    border-radius: calc(var(--radius) - 4px);
    overflow: hidden;
    margin: -4px -4px 8px;
    min-height: 140px;
}
.product-media-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(6px) brightness(0.7);
    transform: scale(1.06);
}
.product-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(240, 182, 87, 0.18), transparent 55%);
    mix-blend-mode: screen;
}
.product-media-img {
    position: relative;
    display: block;
    margin: 18px auto 10px;
    max-width: 70%;
    height: auto;
    z-index: 1;
    filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.8));
}
.product-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    background: rgba(240, 182, 87, 0.08);
    border: 1px solid rgba(240, 182, 87, 0.45);
    color: var(--accent-strong);
}
.product-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}
.steps-list {
    margin: 0;
    padding-left: 18px;
    color: var(--muted);
    font-size: 0.9rem;
}
.steps-list li {
    margin-bottom: 6px;
}
.card-form {
    background: linear-gradient(145deg, rgba(240, 182, 87, 0.08), rgba(5, 6, 8, 0.98));
}
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.form-group label {
    font-size: 0.8rem;
    color: var(--accent-strong);
}
input, textarea, select {
    border-radius: 12px;
    border: 1px solid var(--border);
    background: rgba(2, 2, 8, 0.8);
    color: var(--text);
    padding: 9px 11px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
input::placeholder,
textarea::placeholder {
    color: #6f6c80;
}
input:focus,
textarea:focus,
select:focus {
    border-color: rgba(240, 182, 87, 0.75);
    box-shadow: 0 0 0 1px rgba(240, 182, 87, 0.5);
    background: rgba(2, 2, 8, 0.95);
}
textarea {
    resize: vertical;
    min-height: 80px;
}
.form-note {
    font-size: 0.75rem;
    color: var(--muted);
    margin: 4px 0 0;
}
.footer {
    border-top: 1px solid var(--border);
    background: #050508;
    padding-top: 18px;
    margin-top: 40px;
}
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-size: 0.8rem;
    padding-bottom: 12px;
}
.footer-left {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-center {
    text-align: center;
    color: var(--muted);
}
.footer-right {
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-right a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
}
.footer-right a:hover {
    color: var(--accent-strong);
}
.footer-dot {
    color: #555;
}
.footer-bottom {
    text-align: center;
    padding: 8px 16px 12px;
    font-size: 0.75rem;
    color: #666276;
}
@media (max-width: 800px) {
    .hero {
        padding-top: 110px;
        padding-bottom: 70px;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
}
.cart-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    background: rgba(5, 6, 8, 0.96);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(20px);
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.cart-bar.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.cart-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.85rem;
}
.cart-bar-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 600px) {
    .cart-bar-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}
.popup-cart {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
}
.popup-cart.open {
    display: block;
}
.popup-cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
}
.popup-cart-inner {
    position: absolute;
    right: 16px;
    bottom: 80px;
    width: min(380px, 100% - 32px);
    background: rgba(11, 11, 19, 0.98);
    border-radius: 18px;
    border: 1px solid var(--border);
    padding: 18px 16px 14px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9);
    font-size: 0.9rem;
}
.popup-cart-inner h2 {
    margin: 0 0 8px;
    font-size: 1.05rem;
}
.popup-cart-items {
    list-style: none;
    padding: 0;
    margin: 8px 0 10px;
    max-height: 220px;
    overflow-y: auto;
}
.cart-item-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
    font-size: 0.86rem;
}
.cart-item-line:last-child {
    border-bottom: none;
}
.popup-cart-total {
    font-size: 0.9rem;
    margin-top: 4px;
    margin-bottom: 4px;
}
.popup-cart-items .empty-msg {
    color: var(--muted);
    font-size: 0.85rem;
}
.page-paiement {
    background: radial-gradient(circle at top, #191927 0, #050608 65%);
}
.paiement-section {
    padding-top: 120px;
    padding-bottom: 90px;
}
.paiement-container {
    max-width: 520px;
    margin: 0 auto;
    background: rgba(11, 11, 19, 0.98);
    border-radius: 22px;
    padding: 24px 22px 22px;
    border: 1px solid var(--border);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.85);
}
.paiement-container h1 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.6rem;
}
.paiement-sous-titre {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 6px;
}
.paiement-montant {
    font-size: 1rem;
    margin-bottom: 16px;
}
.paiement-block {
    margin-top: 10px;
    padding: 14px 14px 16px;
    border-radius: 16px;
    background: rgba(5, 6, 8, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.07);
}
.paiement-block h2 {
    margin: 0 0 6px;
    font-size: 1rem;
}
.paiement-explication {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0 0 10px;
}
.payment-request-button-wrapper {
    margin-bottom: 10px;
}
.paiement-message {
    font-size: 0.8rem;
    color: var(--muted);
    margin: 4px 0 0;
}
.paiement-note {
    margin-top: 14px;
    font-size: 0.8rem;
    color: var(--muted);
}
.retour-site {
    display: inline-flex;
    margin-top: 10px;
}


