:root {
    --stitch-primary: #C5A059;
    --stitch-primary-hover: #A88645;
    --stitch-bg-dark: #121212;
    --stitch-surface: #1A1A1A;
    --stitch-text-main: #E5E5E5;
    --stitch-text-muted: #9CA3AF;
    --stitch-border: rgba(255, 255, 255, 0.08);
    --stitch-font-serif: 'Playfair Display', serif;
    --stitch-font-sans: 'Montserrat', sans-serif;
    --stitch-transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--stitch-font-sans);
    background: var(--stitch-bg-dark);
    color: var(--stitch-text-main);
    line-height: 1.7;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--stitch-primary);
    text-decoration: none;
    transition: var(--stitch-transition);
}

a:hover {
    color: var(--stitch-primary-hover);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--stitch-font-serif);
    font-weight: 700;
    line-height: 1.3;
    color: var(--stitch-text-main);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

button,
input,
select,
textarea {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
}

::selection {
    background: #B8953F;
    color: #0D0D0D;
}

/* --- Utility --- */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* --- Top Bar --- */
.top-bar {
    background: #000;
    color: var(--stitch-primary);
    text-align: center;
    padding: 10px 20px;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    border-bottom: 1px solid var(--stitch-border);
}

/* --- Header --- */
.site-header {
    background: var(--stitch-bg-dark);
    border-bottom: 1px solid var(--stitch-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--stitch-transition);
}

.header-inner {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-left,
.header-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.header-right {
    justify-content: flex-end;
    gap: 20px;
}

.header-center {
    flex: 0 0 auto;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-text {
    font-family: var(--stitch-font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--stitch-text-main);
    letter-spacing: 0.05em;
    line-height: 1;
}

.logo-slogan {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--stitch-primary);
    margin-top: 5px;
}

.header-action-btn,
.menu-toggle,
.header-cart {
    background: none;
    border: none;
    color: var(--stitch-text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--stitch-transition);
    position: relative;
}

.header-action-btn:hover,
.menu-toggle:hover,
.header-cart:hover {
    color: var(--stitch-primary);
}

.menu-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--stitch-primary);
    color: #000;
    font-size: 0.6rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Side Navigation --- */
.side-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    justify-content: flex-start;
}

.side-nav.active {
    left: 0;
}

.side-nav-inner {
    background: var(--stitch-bg-dark);
    width: 400px;
    height: 100%;
    padding: 60px 40px;
    position: relative;
    border-right: 1px solid var(--stitch-border);
}

@media (max-width: 480px) {
    .side-nav-inner {
        width: 100%;
    }
}

.nav-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--stitch-text-main);
    cursor: pointer;
}

.side-nav .nav-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 40px;
}

.nav-link {
    display: block;
    font-family: var(--stitch-font-serif);
    font-size: 1.8rem;
    color: var(--stitch-text-main);
    padding: 15px 0;
    border-bottom: 1px solid var(--stitch-border);
    transition: var(--stitch-transition);
}

.nav-link:hover {
    color: var(--stitch-primary);
    padding-left: 10px;
}

.nav-divider {
    height: 1px;
    background: var(--stitch-border);
    margin: 30px 0;
}

.admin-link {
    font-size: 1.2rem;
    color: var(--stitch-primary);
}

/* --- Cart Side Navigation --- */
.cart-side-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    justify-content: flex-end;
}

.cart-side-nav.active {
    right: 0;
}

.cart-side-nav-inner {
    background: var(--stitch-bg-dark);
    width: 450px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    border-left: 1px solid var(--stitch-border);
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}

@media (max-width: 480px) {
    .cart-side-nav-inner {
        width: 100%;
    }
}

.cart-panel-header {
    padding: 30px 40px;
    border-bottom: 1px solid var(--stitch-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-panel-header h3 {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: #fff;
}

.cart-close {
    background: none;
    border: none;
    color: var(--stitch-text-main);
    cursor: pointer;
    transition: var(--stitch-transition);
}

.cart-close:hover {
    color: var(--stitch-primary);
    transform: rotate(90deg);
}

.cart-panel-body {
    flex: 1;
    overflow-y: auto;
    padding: 0 40px;
}

.cart-panel-empty {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 20px;
    opacity: 0.6;
}

.emoji-empty {
    font-size: 3rem;
    color: var(--stitch-primary);
}

.cart-panel-items {
    padding: 30px 0;
}

.cart-panel-item {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--stitch-border);
}

.cart-panel-item .item-img {
    width: 80px;
    height: 100px;
    background: #1a1a1a;
    flex-shrink: 0;
}

.cart-panel-item .item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item-name {
    font-family: var(--stitch-font-serif);
    font-size: 1rem;
    color: #fff;
    text-decoration: none;
    line-height: 1.4;
    transition: var(--stitch-transition);
}

.item-name:hover {
    color: var(--stitch-primary);
}

.item-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--stitch-text-muted);
    margin-top: 5px;
}

.item-price {
    color: var(--stitch-primary);
    font-weight: 600;
}

.item-remove {
    background: none;
    border: none;
    color: var(--stitch-text-muted);
    font-size: 0.75rem;
    text-decoration: underline;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 10px;
    padding: 0;
    transition: var(--stitch-transition);
}

.item-remove:hover {
    color: #ff4d4d;
}

.cart-panel-footer {
    padding: 30px 40px 40px;
    border-top: 1px solid var(--stitch-border);
    background: #0d0d0d;
}

.cart-panel-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cart-panel-total span:first-child {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.total-amount {
    font-size: 1.1rem;
    color: var(--stitch-primary);
    font-weight: 700;
}

.cart-panel-note {
    font-size: 0.75rem;
    color: var(--stitch-text-muted);
    margin-bottom: 25px;
    font-style: italic;
}

.cart-panel-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #B8953F;
    font-style: italic;
}

.section-subtitle {
    text-align: center;
    color: #A89279;
    margin-bottom: 50px;
    font-weight: 300;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

.text-gold {
    color: #B8953F;
}

.text-pink {
    color: #A89279;
}

/* --- Shop Toolbar & Filters --- */
body .shop-toolbar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #1a1a1a !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    padding: 20px 30px !important;
    border-radius: 12px !important;
    border: 1px solid rgba(184, 149, 63, 0.3) !important;
    margin: 40px 0 !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
}

body .filter-tags {
    display: flex !important;
    gap: 15px !important;
    align-items: center !important;
}

body .filter-tag {
    background: rgba(184, 149, 63, 0.05) !important;
    border: 1px solid rgba(184, 149, 63, 0.2) !important;
    color: #A89279 !important;
    padding: 10px 22px !important;
    border-radius: 40px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    display: inline-block !important;
}

body .filter-tag:hover,
body .filter-tag.active {
    background: #B8953F !important;
    color: #0D0D0D !important;
    border-color: #B8953F !important;
    transform: translateY(-2px) !important;
}

body .shop-search-box {
    position: relative !important;
    width: 300px !important;
}

body .shop-search-input {
    width: 100% !important;
    background: #0D0D0D !important;
    border: 1px solid rgba(184, 149, 63, 0.4) !important;
    border-radius: 40px !important;
    padding: 12px 20px 12px 45px !important;
    color: #EDE6DB !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    outline: none !important;
}

body .shop-search-input:focus {
    border-color: #B8953F !important;
    box-shadow: 0 0 20px rgba(184, 149, 63, 0.15) !important;
}

body .search-icon {
    position: absolute !important;
    left: 18px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: #B8953F !important;
    font-size: 1rem !important;
    z-index: 5 !important;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn-primary {
    background: #B8953F;
    color: #0D0D0D;
}

.btn-primary:hover {
    background: #B8953F;
    color: #0D0D0D;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 149, 63, 0.3);
}

.btn-secondary {
    background: #3D3029;
    color: #EDE6DB;
}

.btn-secondary:hover {
    background: #8a2550;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(61, 48, 41, 0.3);
}

.btn-outline {
    background: transparent;
    color: #B8953F;
    border: 2px solid #B8953F;
}

.btn-outline:hover {
    background: #B8953F;
    color: #0D0D0D;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn-danger {
    background: #8B0000;
    color: #EDE6DB;
}

.btn-danger:hover {
    background: #a00;
}

/* --- Alerts --- */
.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(61, 48, 41, 0.15);
    border-color: #B8953F;
    color: #B8953F;
}

.alert-error {
    background: rgba(139, 0, 0, 0.15);
    border-color: #8B0000;
    color: #A89279;
}

.alert-info {
    background: rgba(184, 149, 63, 0.1);
    border-color: #B8953F;
    color: #EDE6DB;
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #0D0D0D;
    border-bottom: 1px solid rgba(184, 149, 63, 0.1);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.6rem;
    color: #B8953F;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-slogan {
    font-size: 0.7rem;
    color: #A89279;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
}

/* Global nav list reset (handled by specific components) */
.nav-list {
    display: block;
}

.nav-link {
    color: #EDE6DB;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #B8953F;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #B8953F;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-mobile-extras {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-cart {
    position: relative;
    font-size: 1.3rem;
    color: #EDE6DB;
    transition: color 0.3s;
}

.header-cart:hover {
    color: #B8953F;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #3D3029;
    color: #EDE6DB;
    font-size: 0.65rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.header-account {
    position: relative;
}

.dropdown-toggle {
    background: none;
    border: none;
    color: #EDE6DB;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    padding: 5px;
}

.dropdown-toggle:hover {
    color: #B8953F;
}

.account-icon {
    font-size: 1.2rem;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #1a1a1a;
    border: 1px solid rgba(184, 149, 63, 0.2);
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
}

.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 12px 18px;
    color: #EDE6DB;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.dropdown-item:hover {
    background: rgba(184, 149, 63, 0.1);
    color: #B8953F;
}

.dropdown-divider {
    border-top: 1px solid rgba(184, 149, 63, 0.1);
    margin: 5px 0;
}

.header-login {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #EDE6DB;
    font-size: 0.9rem;
}

.header-login:hover {
    color: #B8953F;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background: #B8953F;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background: #0D0D0D;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.45);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    background: rgba(13, 13, 13, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(184, 149, 63, 0.2);
    border-radius: 16px;
    padding: 60px 80px;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(184, 149, 63, 0.06);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 5rem;
    color: #B8953F;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-shadow: 0 0 60px rgba(184, 149, 63, 0.2);
    animation: heroSlideUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #A89279;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 40px;
    animation: heroSlideUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hero-cta {
    margin-top: 20px;
    animation: heroSlideUp 1s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

@keyframes heroSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
        filter: blur(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* --- Product Cards --- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(184, 149, 63, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(184, 149, 63, 0.2);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: #111;
}

.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 2;
}

.product-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-nouveau {
    background: #B8953F;
    color: #0D0D0D;
}

.badge-bestseller {
    background: #3D3029;
    color: #EDE6DB;
}

.badge-promo {
    background: #A89279;
    color: #0D0D0D;
}

.badge-custom {
    background: rgba(184, 149, 63, 0.15);
    color: #B8953F;
    border: 1px solid #B8953F;
}

.product-info {
    padding: 20px;
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #EDE6DB;
}

.product-name a {
    color: #EDE6DB;
}

.product-name a:hover {
    color: #B8953F;
}

.product-desc {
    font-size: 0.85rem;
    color: rgba(237, 230, 219, 0.6);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #B8953F;
    margin-bottom: 15px;
}

.product-price .old-price {
    text-decoration: line-through;
    color: rgba(237, 230, 219, 0.4);
    font-size: 0.9rem;
    margin-right: 8px;
    font-weight: 400;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 0.8rem;
}

/* --- Single Product --- */
.product-detail {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 50px;
    padding: 40px 0;
}

.product-gallery {
    position: relative;
}

.product-main-image {
    border-radius: 8px;
    overflow: hidden;
    background: #111;
    aspect-ratio: 1;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.product-thumb {
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.product-thumb.active,
.product-thumb:hover {
    border-color: #B8953F;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info-detail h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.product-category-link {
    color: #A89279;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: inline-block;
}

.product-price-detail {
    font-size: 2rem;
    color: #B8953F;
    font-weight: 700;
    margin: 20px 0;
}

.product-description {
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(237, 230, 219, 0.85);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 25px;
}

.qty-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(184, 149, 63, 0.3);
    background: transparent;
    color: #B8953F;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s;
}

.qty-btn:hover {
    background: rgba(184, 149, 63, 0.1);
}

.qty-input {
    width: 60px;
    height: 44px;
    text-align: center;
    border: 1px solid rgba(184, 149, 63, 0.3);
    border-left: none;
    border-right: none;
    background: transparent;
    color: #EDE6DB;
    font-size: 1rem;
}

.related-products {
    padding: 60px 0;
}

/* --- Cart --- */
.cart-page {
    padding: 40px 0 80px;
}

.cart-empty {
    text-align: center;
    padding: 80px 20px;
}

.cart-empty h2 {
    color: #B8953F;
    margin-bottom: 15px;
}

.cart-empty p {
    color: rgba(237, 230, 219, 0.6);
    margin-bottom: 30px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.cart-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid rgba(184, 149, 63, 0.2);
    color: #B8953F;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cart-table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
}

.cart-item-name {
    font-weight: 600;
}

.cart-item-name a {
    color: #EDE6DB;
}

.cart-item-name a:hover {
    color: #B8953F;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #A89279;
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.3s;
    padding: 5px;
}

.cart-item-remove:hover {
    color: #8B0000;
}

.cart-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.promo-form {
    display: flex;
    gap: 10px;
}

.promo-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(184, 149, 63, 0.3);
    border-radius: 6px;
    background: transparent;
    color: #EDE6DB;
}

.cart-summary {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid rgba(184, 149, 63, 0.15);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 0.95rem;
}

.cart-summary-row.total {
    border-top: 2px solid #B8953F;
    padding-top: 15px;
    margin-top: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #B8953F;
}

.cart-summary-row .reduction {
    color: #A89279;
}

.cart-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.cart-buttons .btn {
    flex: 1;
}

/* --- Checkout --- */
.checkout-page {
    padding: 40px 0 80px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.checkout-section {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    border: 1px solid rgba(184, 149, 63, 0.1);
    margin-bottom: 20px;
}

.checkout-section h3 {
    color: #B8953F;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    border: 2px solid rgba(184, 149, 63, 0.15);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.delivery-option:hover,
.delivery-option.selected {
    border-color: #B8953F;
    background: rgba(184, 149, 63, 0.05);
}

.delivery-option input[type="radio"] {
    accent-color: #B8953F;
    width: 18px;
    height: 18px;
}

.delivery-option-info h4 {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    margin-bottom: 3px;
}

.delivery-option-info p {
    font-size: 0.85rem;
    color: rgba(237, 230, 219, 0.6);
    margin: 0;
}

.delivery-option-price {
    margin-left: auto;
    color: #B8953F;
    font-weight: 700;
}

.checkout-total {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    border: 2px solid #B8953F;
    position: sticky;
    top: 90px;
}

.checkout-info {
    font-size: 0.85rem;
    color: #A89279;
    margin-top: 15px;
    padding: 12px;
    background: rgba(168, 146, 121, 0.05);
    border-radius: 6px;
}

.checkout-points {
    color: #B8953F;
    font-size: 0.9rem;
    margin-top: 10px;
    text-align: center;
}

/* --- Forms --- */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: #B8953F;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(184, 149, 63, 0.25);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    color: #EDE6DB;
    font-size: 0.95rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #B8953F;
    box-shadow: 0 0 0 3px rgba(184, 149, 63, 0.1);
}

.form-control::placeholder {
    color: rgba(237, 230, 219, 0.3);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23C9A96E' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

.form-error {
    color: #A89279;
    font-size: 0.8rem;
    margin-top: 5px;
}

.form-hint {
    color: rgba(237, 230, 219, 0.5);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* --- Auth Pages --- */
.auth-page {
    padding: 120px 0 80px;
    display: flex;
    justify-content: center;
}

.auth-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 40px;
    width: 100%;
    max-width: 450px;
    border: 1px solid rgba(184, 149, 63, 0.1);
}

.auth-card h1 {
    text-align: center;
    color: #B8953F;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-style: italic;
}

.auth-card .auth-subtitle {
    text-align: center;
    color: rgba(237, 230, 219, 0.6);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    font-size: 0.9rem;
    color: rgba(237, 230, 219, 0.6);
}

/* --- Account Page --- */
.account-page {
    padding: 120px 0 80px;
}

.account-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(184, 149, 63, 0.15);
}

.account-tab {
    padding: 15px 25px;
    color: rgba(237, 230, 219, 0.6);
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    border: none;
    background: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s;
}

.account-tab:hover {
    color: #B8953F;
}

.account-tab.active {
    color: #B8953F;
    border-bottom-color: #B8953F;
}

.account-panel {
    display: none;
}

.account-panel.active {
    display: block;
}

/* --- Order Detail / Timeline --- */
.order-detail {
    padding: 120px 0 80px;
}

.order-number {
    font-size: 2rem;
    color: #B8953F;
    font-style: italic;
    margin-bottom: 30px;
}

.timeline {
    display: flex;
    justify-content: space-between;
    margin: 40px 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(184, 149, 63, 0.2);
}

.timeline-step {
    text-align: center;
    position: relative;
    flex: 1;
}

.timeline-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    border: 3px solid rgba(184, 149, 63, 0.2);
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.timeline-step.completed .timeline-dot {
    background: #B8953F;
    border-color: #B8953F;
    color: #0D0D0D;
}

.timeline-step.current .timeline-dot {
    background: #3D3029;
    border-color: #3D3029;
    color: #EDE6DB;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(61, 48, 41, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(61, 48, 41, 0);
    }
}

.timeline-label {
    font-size: 0.8rem;
    color: rgba(237, 230, 219, 0.5);
}

.timeline-step.completed .timeline-label {
    color: #B8953F;
}

.timeline-step.current .timeline-label {
    color: #EDE6DB;
    font-weight: 600;
}

.timeline-date {
    font-size: 0.7rem;
    color: rgba(237, 230, 219, 0.3);
    margin-top: 3px;
}

/* --- Badges --- */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-en_attente {
    background: rgba(150, 150, 150, 0.2);
    color: #aaa;
}

.badge-paiement_verifie {
    background: rgba(70, 130, 180, 0.2);
    color: #6cacde;
}

.badge-en_cours {
    background: rgba(184, 149, 63, 0.2);
    color: #B8953F;
}

.badge-livree {
    background: rgba(76, 175, 80, 0.2);
    color: #66bb6a;
}

.badge-annulee {
    background: rgba(139, 0, 0, 0.2);
    color: #e57373;
}

.badge-role-client {
    background: rgba(150, 150, 150, 0.2);
    color: #aaa;
}

.badge-role-vendeur {
    background: rgba(168, 146, 121, 0.2);
    color: #A89279;
}

.badge-role-manager {
    background: rgba(61, 48, 41, 0.2);
    color: #c44;
}

.badge-role-admin {
    background: rgba(184, 149, 63, 0.2);
    color: #B8953F;
}

/* --- Loyalty --- */
.loyalty-section {
    padding: 80px 0;
}

.loyalty-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.loyalty-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid;
    transition: transform 0.3s ease;
}

.loyalty-card:hover {
    transform: translateY(-5px);
}

.loyalty-card h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.loyalty-card .points {
    font-size: 0.9rem;
    color: rgba(237, 230, 219, 0.5);
    margin-bottom: 5px;
}

.loyalty-card .reduction {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.loyalty-card .description {
    font-size: 0.85rem;
    color: rgba(237, 230, 219, 0.7);
    line-height: 1.6;
}

.loyalty-progress {
    background: rgba(184, 149, 63, 0.1);
    border-radius: 20px;
    height: 12px;
    margin: 15px 0;
    overflow: hidden;
}

.loyalty-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #B8953F, #3D3029);
    border-radius: 20px;
    transition: width 0.5s ease;
}

.loyalty-client-card {
    background: linear-gradient(135deg, #1a1a1a, #222);
    border-radius: 12px;
    padding: 30px;
    border: 1px solid;
    margin-bottom: 30px;
}

.loyalty-client-card .pseudo {
    font-size: 1.3rem;
    font-weight: 700;
}

.loyalty-client-card .points-total {
    font-size: 2rem;
    color: #B8953F;
    font-weight: 700;
}

/* --- Events --- */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.event-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(184, 149, 63, 0.08);
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.event-card-image {
    height: 200px;
    overflow: hidden;
    background: #111;
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-body {
    padding: 25px;
}

.event-card-date {
    color: #B8953F;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.event-card h3 {
    margin-bottom: 10px;
}

.event-card p {
    font-size: 0.9rem;
    color: rgba(237, 230, 219, 0.7);
}

.event-card-footer {
    padding: 15px 25px;
    border-top: 1px solid rgba(184, 149, 63, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
}

.events-past {
    margin-top: 50px;
}

.events-past .event-card {
    opacity: 0.6;
}

/* --- Journal --- */
.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.article-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(184, 149, 63, 0.08);
    transition: all 0.3s;
}

.article-card:hover {
    transform: translateY(-3px);
}

.article-card-image {
    height: 200px;
    overflow: hidden;
    background: #111;
}

.article-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-card-body {
    padding: 25px;
}

.article-card-date {
    color: #A89279;
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.article-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.article-card p {
    font-size: 0.9rem;
    color: rgba(237, 230, 219, 0.7);
}

.article-full {
    padding: 120px 0 80px;
    max-width: 800px;
    margin: 0 auto;
}

.article-full h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #B8953F;
    font-style: italic;
}

.article-full .article-meta {
    color: #A89279;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.article-full .article-content {
    line-height: 1.9;
    font-size: 1.05rem;
}

.article-full .article-content p {
    margin-bottom: 1.2rem;
}

/* --- Static Pages --- */
.page-header {
    padding: 120px 0 40px;
    text-align: center;
}

.page-header h1 {
    color: #B8953F;
    font-style: italic;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.page-header p {
    color: #A89279;
    font-size: 1.1rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.page-content p {
    line-height: 1.8;
    color: rgba(237, 230, 219, 0.85);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.value-card {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
    border-left: 3px solid #B8953F;
}

.value-card h3 {
    color: #B8953F;
    margin-bottom: 10px;
}

.value-card p {
    color: rgba(237, 230, 219, 0.7);
    margin: 0;
    font-size: 0.95rem;
}

.services-grid {
    display: grid;
    gap: 25px;
    margin: 40px 0;
}

.service-block {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 35px;
    border: 1px solid rgba(184, 149, 63, 0.1);
    transition: border-color 0.3s;
}

.service-block:hover {
    border-color: rgba(184, 149, 63, 0.3);
}

.service-block h3 {
    color: #B8953F;
    margin-bottom: 12px;
}

.service-block p {
    color: rgba(237, 230, 219, 0.75);
    margin: 0;
    line-height: 1.7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-info-block {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 30px;
}

.contact-info-block h3 {
    color: #B8953F;
    margin-bottom: 15px;
}

.contact-info-block p {
    color: rgba(237, 230, 219, 0.7);
    line-height: 1.8;
}

/* --- Orders Table (account) --- */
.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th {
    text-align: left;
    padding: 12px 15px;
    border-bottom: 2px solid rgba(184, 149, 63, 0.2);
    color: #B8953F;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.orders-table td {
    padding: 12px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-items-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.order-items-table th {
    text-align: left;
    padding: 10px;
    border-bottom: 1px solid rgba(184, 149, 63, 0.2);
    color: #B8953F;
    font-size: 0.8rem;
}

.order-items-table td {
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.order-summary-box {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 25px;
    border: 1px solid rgba(184, 149, 63, 0.15);
    max-width: 400px;
    margin-left: auto;
}

/* --- Pagination --- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    background: #1a1a1a;
    color: #EDE6DB;
    font-size: 0.9rem;
    border: 1px solid rgba(184, 149, 63, 0.15);
    transition: all 0.3s;
}

.pagination-btn:hover {
    border-color: #B8953F;
    color: #B8953F;
}

.pagination-btn.active {
    background: #B8953F;
    color: #0D0D0D;
    border-color: #B8953F;
    font-weight: 700;
}

.pagination-dots {
    display: flex;
    align-items: center;
    color: rgba(237, 230, 219, 0.4);
}

/* --- Toast --- */
#toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    padding: 15px 25px;
    border-radius: 8px;
    color: #EDE6DB;
    font-size: 0.9rem;
    animation: toastIn 0.3s ease, toastOut 0.3s ease 2.7s forwards;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    max-width: 350px;
}

.toast-success {
    background: #1a1a1a;
    border-left: 4px solid #B8953F;
}

.toast-error {
    background: #1a1a1a;
    border-left: 4px solid #8B0000;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes toastOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translateY(20px);
    }
}

/* --- Boutique Filters --- */
.shop-filters {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    border: 1px solid rgba(184, 149, 63, 0.08);
}

.filters-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 150px;
}

.filter-group label {
    display: block;
    font-size: 0.8rem;
    color: #B8953F;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid rgba(184, 149, 63, 0.2);
    border-radius: 6px;
    background: #0D0D0D;
    color: #EDE6DB;
    font-size: 0.85rem;
}

.price-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.price-btn {
    padding: 6px 12px;
    border: 1px solid rgba(184, 149, 63, 0.2);
    background: transparent;
    color: #EDE6DB;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s;
}

.price-btn:hover,
.price-btn.active {
    background: #B8953F;
    color: #0D0D0D;
    border-color: #B8953F;
}

.shop-empty {
    text-align: center;
    padding: 60px 20px;
    color: rgba(237, 230, 219, 0.5);
    font-size: 1.1rem;
}

/* --- Confirmation --- */
.confirmation-page {
    padding: 120px 0 80px;
    text-align: center;
}

.confirmation-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.confirmation-page h1 {
    color: #B8953F;
    font-style: italic;
    margin-bottom: 15px;
}

/* --- Honeypot --- */
.ohnohoney {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* --- Philosophy Section --- */
.philosophy {
    background: linear-gradient(135deg, #0D0D0D, #1a1a1a);
    text-align: center;
}

.philosophy-text {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(237, 230, 219, 0.8);
    font-style: italic;
}

/* --- Footer --- */
.site-footer {
    background: #0D0D0D;
    border-top: 1px solid rgba(184, 149, 63, 0.1);
    padding: 60px 0 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: #B8953F;
}

.footer-slogan {
    color: #A89279;
    font-size: 0.85rem;
    margin: 8px 0;
}

.footer-address {
    color: rgba(237, 230, 219, 0.5);
    font-size: 0.85rem;
}

.footer-title {
    color: #B8953F;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(237, 230, 219, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #B8953F;
}

.footer-info {
    color: rgba(237, 230, 219, 0.6);
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact-link {
    color: #B8953F;
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding: 25px 20px;
    margin-top: 40px;
    border-top: 1px solid rgba(184, 149, 63, 0.08);
    color: rgba(237, 230, 219, 0.4);
    font-size: 0.85rem;
}

/* --- Modal --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.show {
    display: flex;
}

.modal {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 35px;
    max-width: 450px;
    width: 90%;
    border: 1px solid rgba(184, 149, 63, 0.2);
}

.modal h3 {
    color: #B8953F;
    margin-bottom: 15px;
}

.modal p {
    color: rgba(237, 230, 219, 0.7);
    margin-bottom: 25px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* --- Loading Spinner --- */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(184, 149, 63, 0.3);
    border-radius: 50%;
    border-top-color: #B8953F;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .loyalty-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .checkout-grid {
        grid-template-columns: 1fr;
    }

    .cart-bottom {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: #0D0D0D;
        flex-direction: column;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 1px solid rgba(184, 149, 63, 0.1);
    }

    .main-nav.open {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        padding: 15px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(184, 149, 63, 0.05);
        display: block;
    }

    .nav-mobile-extras {
        display: flex;
        flex-direction: column;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid rgba(184, 149, 63, 0.1);
    }

    .nav-mobile-extras .nav-link {
        padding: 12px 0;
        font-size: 0.95rem;
    }

    .hamburger {
        display: flex;
    }

    .account-name,
    .login-text {
        display: none;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .loyalty-cards {
        grid-template-columns: 1fr;
    }

    .cart-table th:nth-child(4),
    .cart-table td:nth-child(4) {
        display: none;
    }

    .timeline {
        flex-direction: column;
        gap: 20px;
    }

    .timeline::before {
        display: none;
    }

    .account-tabs {
        overflow-x: auto;
    }

    .account-tab {
        white-space: nowrap;
        padding: 12px 15px;
        font-size: 0.85rem;
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .journal-grid {
        grid-template-columns: 1fr;
    }

    .filters-row {
        flex-direction: column;
    }

    .filter-group {
        min-width: 100%;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* --- No Image Placeholder --- */
.no-image {
    background: linear-gradient(135deg, #1a1a1a, #222);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(184, 149, 63, 0.3);
    font-size: 2rem;
}

/* =====================================================
   MODERN ANIMATIONS & EFFECTS (2026)
   ===================================================== */

/* --- Scroll Reveal Animations (progressive enhancement: require JS) --- */
html.js-ready .reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-ready .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

html.js-ready .reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-ready .reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

html.js-ready .reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-ready .reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

html.js-ready .reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-ready .reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* --- Staggered Children --- */
html.js-ready .stagger-children>* {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-ready .stagger-children.revealed>*:nth-child(1) {
    transition-delay: 0.05s;
}

html.js-ready .stagger-children.revealed>*:nth-child(2) {
    transition-delay: 0.1s;
}

html.js-ready .stagger-children.revealed>*:nth-child(3) {
    transition-delay: 0.15s;
}

html.js-ready .stagger-children.revealed>*:nth-child(4) {
    transition-delay: 0.2s;
}

html.js-ready .stagger-children.revealed>*:nth-child(5) {
    transition-delay: 0.25s;
}

html.js-ready .stagger-children.revealed>*:nth-child(6) {
    transition-delay: 0.3s;
}

html.js-ready .stagger-children.revealed>* {
    opacity: 1;
    transform: translateY(0);
}

/* --- Enhanced Product Card Hover --- */
.product-card {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(184, 149, 63, 0.08);
    border-color: rgba(184, 149, 63, 0.25);
}

.product-card .product-image img {
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* --- Magnetic Button Effect --- */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::after {
    transform: translateX(100%);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(184, 149, 63, 0.35), 0 0 15px rgba(184, 149, 63, 0.15);
}

/* --- Glassmorphism Header on Scroll --- */
.site-header {
    backdrop-filter: blur(0px);
    transition: all 0.4s ease;
}

.site-header.scrolled {
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom-color: rgba(184, 149, 63, 0.15);
}

/* --- Section Titles Animation --- */
.section-title {
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #B8953F, transparent);
    margin: 15px auto 0;
    transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}

.revealed .section-title::after,
.section-title.revealed::after {
    width: 80px;
}

/* --- Value Cards Hover --- */
.value-card {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.value-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-left-color: #B8953F;
    border-left-width: 4px;
}

/* --- Event Card Hover --- */
.event-card {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(184, 149, 63, 0.2);
}

/* --- Loyalty Card Glow --- */
.loyalty-card {
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.loyalty-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* --- Smooth Page Transitions --- */
.site-main {
    animation: pageIn 0.5s ease forwards;
}

@keyframes pageIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* --- Philosophy Text Glow --- */
.philosophy-text {
    text-shadow: 0 0 40px rgba(184, 149, 63, 0.05);
    transition: text-shadow 0.5s ease;
}

.philosophy:hover .philosophy-text {
    text-shadow: 0 0 60px rgba(184, 149, 63, 0.12);
}

/* --- Footer Link Hover Underline --- */
.footer-links a {
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #B8953F;
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* --- Form Focus Glow --- */
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(184, 149, 63, 0.12), 0 0 20px rgba(184, 149, 63, 0.06);
}

/* --- Dropdown Slide --- */
.dropdown-menu {
    transform: translateY(-10px) scale(0.97);
}

.dropdown-menu.show {
    transform: translateY(0) scale(1);
}

/* --- Cart Badge Pulse --- */
.cart-badge {
    animation: badgePop 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }

    60% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* --- Toast Slide Enhanced --- */
@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* --- About Page Reveal --- */
html.js-ready .about-heritage,
html.js-ready .about-metamorphosis,
html.js-ready .about-philosophy,
html.js-ready .about-invitation {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-ready .about-heritage.revealed,
html.js-ready .about-metamorphosis.revealed,
html.js-ready .about-philosophy.revealed,
html.js-ready .about-invitation.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Separator Line Animation --- */
.separator {
    width: 120px;
    height: 1px;
    background: linear-gradient(90deg, transparent, #B8953F, transparent);
    margin: 40px auto;
}

html.js-ready .separator {
    width: 0;
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}

html.js-ready .separator.revealed {
    width: 120px;
}

/* --- Image Parallax Subtle --- */
@media (prefers-reduced-motion: no-preference) {
    .hero {
        background-attachment: fixed;
    }
}

/* --- Smooth Scrollbar (Webkit) --- */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0D0D0D;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #3D3029, #B8953F);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #B8953F;
}

/* --- Category Cards (Vitrines) --- */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 360px));
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.category-card {
    position: relative;
    height: 550px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(184, 149, 63, 0.2);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    background: #1a1a1a;
}

.category-card:hover {
    transform: translateY(-10px);
    border-color: #B8953F;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(184, 149, 63, 0.3);
}

.category-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
    filter: brightness(0.7);
}

.category-card:hover .category-image img {
    transform: scale(1.1);
    filter: brightness(0.9);
}

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 13, 13, 0.95) 0%, rgba(13, 13, 13, 0.3) 50%, rgba(13, 13, 13, 0.4) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px 30px;
    z-index: 2;
    transition: background 0.5s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(13, 13, 13, 0.98) 0%, rgba(13, 13, 13, 0.1) 60%, rgba(13, 13, 13, 0.2) 100%);
}

.category-content {
    transition: all 0.5s ease;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #B8953F;
    margin-bottom: 20px;
    font-style: italic;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.category-btn {
    display: inline-block;
    color: #EDE6DB;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 600;
    border-bottom: 1px solid #B8953F;
    padding-bottom: 8px;
    opacity: 0.7;
    transition: all 0.3s ease;
    transform: translateY(10px);
}

.category-card:hover .category-btn {
    opacity: 1;
    transform: translateY(0);
    color: #B8953F;
}

@media (max-width: 768px) {
    .shop-search-box {
        width: 100%;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* --- Age Verification Modal --- */
.age-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0D0D0D 100%);
    z-index: 999999;
    /* Ensure it stays above everything */
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.age-modal-content {
    background: #0D0D0D;
    border: 1px solid rgba(184, 149, 63, 0.3);
    padding: 60px 40px;
    max-width: 600px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8), 0 0 20px rgba(184, 149, 63, 0.1);
    position: relative;
    animation: ageModalIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.age-modal-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #B8953F;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 30px;
}

.age-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #EDE6DB;
    margin-bottom: 20px;
    font-style: italic;
}

.age-modal-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(237, 230, 219, 0.8);
    margin-bottom: 40px;
}

.age-modal-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto 40px;
}

.age-modal-actions>* {
    flex: 1;
}

.age-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    padding: 0 25px;
    border: 1px solid #B8953F;
    font-family: 'Raleway', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    background: transparent;
    width: 100%;
    box-sizing: border-box;
}

.age-btn-accept {
    background: #B8953F;
    color: #0D0D0D;
    font-weight: 700;
}

.age-btn-accept:hover {
    background: #C9A96E;
    border-color: #C9A96E;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(184, 149, 63, 0.3);
}

.age-btn-refuse {
    color: #B8953F;
}

.age-btn-refuse:hover {
    background: rgba(184, 149, 63, 0.1);
    transform: translateY(-3px);
}

.age-modal-footer {
    margin-top: 40px;
    font-size: 0.7rem;
    color: rgba(237, 230, 219, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@keyframes ageModalIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@media (max-width: 600px) {
    .age-modal-content {
        padding: 40px 20px;
    }

    .age-modal-actions {
        flex-direction: column;
    }

    .age-modal-logo {
        font-size: 1.8rem;
    }
}