
:root {
    --primary: #ffffff;
    --accent: #D4AF37;
    --accent-secondary: #00695c;
    --accent-light: #f4e8c1;
    --white: #0a0a0a;
    --beige: #002d26;
    --gray-light: #121212;
    --gray-medium: #888888;
    --gray-dark: #0a0a0a;
    --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    --glass: rgba(18, 18, 18, 0.85);
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Noise Texture Overlay - utilisé un SVG inline pour éviter les timeouts réseau */
body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-size: 150px 150px;
    opacity: 0.04;
    pointer-events: none;
    z-index: 9999;
}


body {
    font-family: 'Manrope', sans-serif;
    background: radial-gradient(circle at top, #002d26 0%, #0a0a0a 100%) no-repeat fixed;
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Luxury Preloader V2 */
#luxuryLoader {
    position: fixed;
    inset: 0;
    background: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: clip-path 1.2s cubic-bezier(0.8, 0, 0.2, 1);
    clip-path: circle(150% at 50% 50%);
}

#luxuryLoader.loaded {
    clip-path: circle(0% at 50% 50%);
}

.loader-logo {
    width: 150px;
    height: auto;
    filter: invert(1) drop-shadow(0 0 20px rgba(0, 105, 92, 0.8));
    animation: pulse-logo 2s infinite alternate;
}

@keyframes pulse-logo {
    from { transform: scale(0.95); opacity: 0.5; }
    to { transform: scale(1.05); opacity: 1; }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.loader-bar::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--accent-secondary);
    animation: loading-bar 2s ease-in-out forwards;
}

@keyframes loading-bar {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(0%); }
}

@keyframes meshGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.product-card {
    background: var(--glass) !important;
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

h1, h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600; /* Plus net */
}

h3, h4, h5, h6, .logo, .hero-tag, .subtitle {
    font-family: 'Italiana', serif;
    font-weight: 400;
}

.logo {
    font-family: 'Italiana', serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}

h1 {
    font-size: 6.5rem;
    letter-spacing: -2px;
    line-height: 0.9;
}

.hero-tag, .subtitle {
    letter-spacing: 4px;
    font-size: 12px;
    font-weight: 600;
}

nav a {
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--accent);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: transparent;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--glass);
    backdrop-filter: blur(10px);
    z-index: -1;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
}

.logo span {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 20px;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.search-form {
    display: flex;
    align-items: center;
    background: var(--gray-light);
    padding: 5px 12px;
    border-radius: 4px;
    transition: var(--transition);
}

.search-form:focus-within {
    background: #eeeeee;
    box-shadow: 0 0 0 1px var(--accent);
}

.search-form input {
    background: none;
    border: none;
    outline: none;
    font-size: 13px;
    width: 100px;
    color: var(--primary);
}

.search-form button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-medium);
    padding: 2px;
}

.wishlist-icon, .cart-icon {
    font-size: 1.1rem;
    color: var(--primary);
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
}

.wishlist-icon:hover, .cart-icon:hover {
    color: var(--accent);
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent);
    color: white;
    font-size: 9px;
    padding: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* Global Customizations */
html, body {
    /* Standard cursor restored */
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    min-width: 300px;
    max-width: 400px;
    padding: 15px 20px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    animation: slideInRight 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) forwards, fadeOut 0.5s ease 4.5s forwards;
    border-left: 4px solid var(--primary);
}

.toast-notification.success {
    border-left-color: #2e7d32;
}
.toast-notification.success i:first-child {
    color: #2e7d32;
    font-size: 1.2rem;
}

.toast-notification.error {
    border-left-color: #d32f2f;
}
.toast-notification.error i:first-child {
    color: #d32f2f;
    font-size: 1.2rem;
}

.toast-notification span {
    flex: 1;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

.toast-notification button {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-medium);
    font-size: 1.2rem;
    padding: 0;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; visibility: hidden; }
}

@media (max-width: 768px) {
    .toast-notification {
        top: 10px;
        right: 10px;
        left: 10px;
        min-width: auto;
        max-width: 100%;
    }
}

a, button, .btn, input, select, textarea {
    /* Standard cursor restored */
}

/* Hero Couture */
.hero-couture {
    padding: 60px 0;
    background: #fff;
    overflow: hidden;
}

.hero-couture-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-couture-text h1 {
    font-size: 6.5rem;
    line-height: 0.9;
    margin-bottom: 25px;
    letter-spacing: -3px;
}

.hero-couture-text p {
    font-size: 1.3rem;
    color: var(--gray-dark);
    margin-bottom: 40px;
    max-width: 600px;
    font-weight: 300;
}

.btn-text {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-text:hover {
    color: var(--accent);
    gap: 15px;
}

.hero-couture-images {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-img-main {
    width: 80%;
    height: 700px;
    overflow: hidden;
}

.hero-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-img-sub {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 45%;
    height: 400px;
    border: 15px solid white;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
    animation: float 8s ease-in-out infinite;
    overflow: hidden;
    z-index: 5;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(10px, -20px); }
}

.hero-img-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Couture Improvements */
.section-couture {
    padding: 120px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.text-reveal {
    overflow: hidden;
}

.text-reveal span {
    display: block;
    transform: translateY(100%);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active .text-reveal span {
    transform: translateY(0);
}

/* Elegant Grid Layout */
.couture-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin: 60px 0;
}

.couture-card {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.couture-card-1 { grid-column: 1 / 8; height: auto; }
.couture-card-2 { grid-column: 8 / 13; height: auto; margin-top: 100px; }
.couture-card-3 { grid-column: 1 / 6; height: 500px; margin-top: -100px; }
.couture-card-4 { grid-column: 6 / 13; height: 700px; }

.couture-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: all 0.5s ease;
}

.couture-card:hover .couture-overlay {
    opacity: 1;
}

/* Visual Ticker */
/* Editorial Manifesto Section */
.manifesto-section {
    background: var(--white);
    padding: 150px 0;
    overflow: hidden;
}

.manifesto-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 100px;
    align-items: center;
}

/* Left Side */
.manifesto-main-img {
    position: relative;
    width: 100%;
    height: auto;
}

.manifesto-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

/* The Stamp */
.manifesto-badge {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: transform 0.6s ease;
}

.manifesto-main-img:hover .manifesto-badge {
    transform: rotate(90deg); /* Slight elegant rotation on hover */
}

.manifesto-badge svg {
    width: 90%;
    height: 90%;
}

.manifesto-badge text {
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 6px;
    fill: var(--accent); /* Golden text */
    text-transform: uppercase;
}

.badge-center {
    position: absolute;
    color: var(--accent);
    font-family: 'Italiana', serif;
    font-size: 3rem;
}

/* Right Side Content */
.manifesto-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.manifesto-title {
    font-family: 'Manrope', sans-serif;
    font-size: 6rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--primary);
    margin: 0 0 60px 0;
}

.manifesto-title .italic-serif {
    font-family: 'Italiana', serif;
    font-size: 8rem;
    font-weight: 400;
    text-transform: none;
    color: var(--accent);
    display: block;
    margin-left: 80px; /* Offset it slightly */
}

.manifesto-desc-box {
    border-left: 2px solid var(--accent);
    padding-left: 30px;
    margin-bottom: 80px;
    max-width: 450px;
}

.manifesto-desc-box p {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray-medium);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mini Gallery inside Content */
.manifesto-gallery {
    display: flex;
    gap: 30px;
    margin-left: 80px;
}

.manifesto-gallery img {
    width: 220px;
    height: 280px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.6s ease;
}

.manifesto-gallery img:hover {
    transform: translateY(-10px);
}

.manifesto-gallery img:nth-child(2) {
    margin-top: 60px; /* Offset the second image for asymmetrical look */
}

@media (max-width: 1400px) {
    .manifesto-title { font-size: 5rem; }
    .manifesto-title .italic-serif { font-size: 6.5rem; }
    .manifesto-main-img { height: auto; }
}

@media (max-width: 992px) {
    .manifesto-grid { grid-template-columns: 1fr; gap: 80px; }
    .manifesto-main-img { height: auto; }
    .manifesto-badge { right: 20px; bottom: -40px; width: 160px; height: 160px; }
    .manifesto-gallery { margin-left: 0; justify-content: flex-start; }
    .manifesto-title .italic-serif { margin-left: 40px; }
}

@media (max-width: 576px) {
    .manifesto-title { font-size: 3.5rem; }
    .manifesto-title .italic-serif { font-size: 4.5rem; margin-left: 20px; }
    .manifesto-main-img { height: auto; }
    .manifesto-badge { display: none; }
    .manifesto-gallery img { width: 150px; height: 200px; }
}

/* Button Refinement */
.btn {
    border-radius: 0;
    padding: 18px 45px;
    font-size: 13px;
    letter-spacing: 3px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-accent {
    background: var(--accent);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Services */
.services-luxury {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 40px;
    border-right: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

.service-item:last-child {
    border-right: none;
}

.service-item:hover {
    background: var(--beige);
}

.service-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid rgba(184, 142, 47, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-item:hover .service-icon-wrapper {
    background: var(--accent);
    border-color: var(--accent);
    transform: scale(1.1);
}

.service-item i {
    font-size: 1.5rem;
    color: var(--accent);
    transition: all 0.4s ease;
}

.service-item:hover i {
    color: white;
}

.service-item h4 {
    font-family: 'Italiana', serif;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: 3px;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-item p {
    font-size: 13px;
    color: var(--gray-medium);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .services-luxury { grid-template-columns: repeat(2, 1fr); }
    .service-item:nth-child(2) { border-right: none; }
    .service-item:nth-child(1), .service-item:nth-child(2) { border-bottom: 1px solid rgba(0,0,0,0.05); }
}
@media (max-width: 576px) {
    .services-luxury { grid-template-columns: 1fr; }
    .service-item { border-right: none !important; border-bottom: 1px solid rgba(0,0,0,0.05); }
    .service-item:last-child { border-bottom: none; }
}

/* Section Header */
.section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.subtitle {
    display: block;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 3px;
    font-size: 12px;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    text-transform: uppercase;
}

.accent-line {
    width: 60px;
    height: 2px;
    background: var(--accent);
    margin: 20px auto 0;
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.category-card {
    position: relative;
    height: auto;
    overflow: hidden;
    color: white;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    text-decoration: none;
}

.category-img {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.category-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    z-index: 2;
}

.category-content {
    position: relative;
    z-index: 3;
    transition: transform 0.4s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.1);
}

.category-card:hover .category-content {
    transform: translateY(-10px);
}

.category-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.category-content span {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.product-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: #fcfcfc;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.overlay-top-actions {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.product-card:hover .overlay-top-actions {
    transform: translateX(0);
}

.overlay-btn {
    width: 45px;
    height: 45px;
    background: white;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.overlay-btn:hover {
    background: var(--accent);
    color: white;
}

.quick-add-btn {
    background: var(--primary);
    color: white;
    padding: 15px 30px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 700;
    width: 100%;
    transform: translateY(20px);
    transition: all 0.4s ease;
    border: none;
    cursor: pointer;
}

.product-card:hover .quick-add-btn {
    transform: translateY(0);
}

.product-info {
    padding: 25px 0;
    text-align: center;
}

.product-category {
    font-family: 'Italiana', serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gray-medium);
    margin-bottom: 10px;
}

.product-name {
    font-family: 'Manrope', sans-serif;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--primary);
    letter-spacing: 0.5px;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--accent);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    z-index: 10;
}

/* Featured Collection Section */
.featured-collection {
    background: #fcfcfc;
    padding: 100px 0;
    margin: 80px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 80px;
}

.featured-content {
    padding-left: 60px;
}

.featured-content .section-title {
    font-size: 4rem;
    margin-bottom: 30px;
}

.featured-content p {
    margin-bottom: 40px;
    font-size: 1.2rem;
    color: var(--gray-medium);
}

.featured-image-wrapper {
    height: 700px;
    overflow: hidden;
}

.featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.featured-collection:hover .featured-image-wrapper img {
    transform: scale(1.05);
}

/* Press Section */
.press-section {
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    margin: 60px 0;
}

.press-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px;
    opacity: 0.6;
}

.press-logos span {
    font-family: 'Italiana', serif;
    font-size: 24px;
    letter-spacing: 5px;
    color: var(--accent);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.press-logos span:hover {
    opacity: 1;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Philosophy Enhancement */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.philosophy-text {
    padding-right: 60px;
}

/* Footer Architectural */
footer {
    background: #fdfaf5;
    color: var(--primary);
    padding: 100px 0 40px;
    margin-top: 100px;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

.footer-logo {
    font-family: 'Italiana', serif;
    font-size: 32px;
    margin-bottom: 25px;
}

.footer-col h4 {
    font-family: 'Italiana', serif;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    color: var(--accent);
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    font-size: 14px;
    color: var(--gray-medium);
}

.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 40px;
    text-align: center;
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--gray-medium);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    outline: none;
}

.form-control:focus {
    border-color: var(--accent);
}

/* Cart Table */
.cart-table {
    width: 100%;
    border-collapse: collapse;
}

.cart-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid var(--primary);
}

.cart-table td {
    padding: 20px 15px;
    border-bottom: 1px solid #eee;
}

.cart-img {
    width: 80px;
    height: 100px;
    object-fit: cover;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #128c7e;
    color: #FFF;
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.85);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #0d0d0d;
    border: 1px solid rgba(212,175,55,0.15);
    padding: 25px 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.9);
    animation: modalFadeIn 0.3s ease;
}

.modal .form-group {
    margin-bottom: 12px;
}

.modal .form-group label {
    font-size: 13px;
    margin-bottom: 5px;
    color: rgba(255,255,255,0.6);
}

.modal .form-control {
    padding: 8px 12px;
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
}

.modal h2 {
    font-size: 1.5rem;
    margin-bottom: 20px !important;
    color: #fff;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray-medium);
}

.close-modal:hover {
    color: var(--primary);
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 3000;
    transition: all 0.4s ease;
    display: flex;
    justify-content: flex-end;
    backdrop-filter: blur(4px);
}

.cart-drawer.active {
    right: 0;
}

.cart-drawer-content {
    width: 100%;
    max-width: 380px;
    height: 100%;
    background: #0a0a0a;
    border-left: 1px solid rgba(212,175,55,0.15);
    display: flex;
    flex-direction: column;
}

.cart-drawer-header {
    padding: 25px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-drawer-header h3 {
    font-family: 'Italiana', serif;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: 2px;
}

.close-drawer {
    font-size: 28px;
    cursor: pointer;
    color: rgba(255,255,255,0.4);
    transition: color 0.3s;
}

.close-drawer:hover {
    color: #fff;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-drawer-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cart-drawer-item img {
    width: 70px;
    height: 90px;
    object-fit: contain;
    border-radius: 8px;
    background: #111;
}

.item-details h4 {
    font-size: 14px;
    margin-bottom: 5px;
    color: #fff;
}

.item-details p {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.item-price {
    font-weight: 700;
    color: var(--accent);
    margin-top: 5px;
    font-size: 14px;
}

.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    background: #000;
}

.drawer-total {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #fff;
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.philosophy-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
}

.philosophy-text p {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 30px;
    font-weight: 300;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--accent);
}

.philosophy-image {
    position: relative;
    padding: 30px;
}

.philosophy-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 40px 40px 0 var(--beige);
}

.img-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-top: 2px solid var(--accent);
    border-right: 2px solid var(--accent);
    z-index: 5;
}

/* Newsletter */
.newsletter {
    background: var(--beige);
    padding: 100px 0;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form {
    margin-top: 40px;
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    outline: none;
}

.newsletter-form button {
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    border: none;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent);
}

/* Reveal Animation */
/* --- GLOBAL REVEAL FIX: ALWAYS VISIBLE BY DEFAULT --- */
.reveal {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

/* Shop Styles */
.shop-header {
    background: #fdfaf5;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.shop-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.5rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.breadcrumb {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-medium);
}

.breadcrumb a {
    color: var(--primary);
    margin: 0 10px;
}

.breadcrumb span {
    margin: 0 5px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
}

.shop-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    margin-bottom: 40px;
}

.widget-title {
    font-family: 'Italiana', serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #eee;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
}

.search-form button {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray-medium);
    cursor: pointer;
}

.category-list {
    list-style: none;
}

.category-list li {
    margin-bottom: 12px;
}

.category-list a {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--gray-medium);
    transition: all 0.3s ease;
}

.category-list a:hover, .category-list a.active {
    color: var(--accent);
    padding-left: 5px;
}

.sort-select {
    width: 100%;
    padding: 12px;
    border: 1px solid #eee;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    background: #fff;
    cursor: pointer;
    outline: none;
}

.pagination-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.no-results {
    text-align: center;
    padding: 100px 0;
    grid-column: 1/-1;
}

.no-results p {
    font-size: 1.2rem;
    color: var(--gray-medium);
    margin-bottom: 30px;
}

/* Contact Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 100px;
    padding: 80px 0;
}

.info-item {
    margin-bottom: 40px;
}

.info-item h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 10px;
}

.info-item p {
    color: var(--gray-medium);
    line-height: 1.8;
}

.social-links-contact {
    display: flex;
    gap: 20px;
    font-size: 20px;
    margin-top: 15px;
}

.social-links-contact a {
    color: var(--primary);
    transition: all 0.3s ease;
}

.social-links-contact a:hover {
    color: var(--accent);
    transform: translateY(-3px);
}

.luxury-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.luxury-form .form-group {
    margin-bottom: 25px;
}

.luxury-form label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: var(--primary);
}

.luxury-form input, .luxury-form textarea {
    width: 100%;
    padding: 15px 0;
    border: none;
    border-bottom: 1px solid #ddd;
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    background: transparent;
    transition: all 0.4s ease;
}

.luxury-form input:focus, .luxury-form textarea:focus {
    border-bottom-color: var(--accent);
    outline: none;
    padding-left: 10px;
}

.contact-map {
    margin-top: 60px;
    overflow: hidden;
}

/* Wishlist Styles */
.wishlist-main {
    padding: 80px 0;
}

.remove-wishlist-form {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 20;
}

.remove-btn {
    background: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #ff4d4d;
    color: white;
}

.empty-state {
    text-align: center;
    padding: 100px 0;
}

.empty-state i {
    font-size: 80px;
    color: #eee;
    margin-bottom: 30px;
}

.empty-state h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.empty-state p {
    color: var(--gray-medium);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- RESPONSIVENESS --- */
/* --- ULTIMATE ZENITH RESPONSIVENESS (Magazine & GPU) --- */
:root {
    --card-aspect: 4/5;
}

/* GPU Acceleration for smooth-as-butter mobile scroll */
.reveal, .product-card, .ca-item, .btn {
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.product-card {
    aspect-ratio: var(--card-aspect);
    display: flex;
    flex-direction: column;
}

.product-card .product-image {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
}

@media (max-width: 992px) {
    header {
        height: 65px;
        display: flex;
        align-items: center;
    }
    
    .hero-couture .container {
        padding-top: 120px !important;
    }
}

@media (max-width: 768px) {
    /* Magazine Grid - 2 items but with high-end framing */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 0 8px !important;
    }
    
    .product-card {
        border-radius: 12px !important;
        border: none !important;
        background: rgba(255,255,255,0.02) !important;
        aspect-ratio: auto !important;
    }

    .product-info h3 {
        font-size: 13px !important;
        letter-spacing: 1px !important;
    }

    .item-price {
        font-size: 12px !important;
        color: var(--accent) !important;
    }
    
    /* Mobile Menu Refinement */
    .nav-links a {
        font-size: 1.8rem !important;
        font-family: 'Italiana' !important;
        letter-spacing: 3px !important;
    }
}

/* Eliminate tap highlight on mobile for premium feel */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Fix for mobile horizontal collection scrollbars */
.couture-accordion::-webkit-scrollbar {
    display: none;
}
.couture-accordion {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

@media (max-width: 400px) {
    .product-grid {
        grid-template-columns: 1fr !important; /* Single column for very small phones to keep impact */
    }
    
    .hero-couture h1 {
        font-size: 2.2rem !important;
    }
}



/* Theme Settings Panel */
.style-settings-panel {
    position: fixed;
    right: -300px;
    top: 50%;
    transform: translateY(-50%);
    width: 280px;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 9999;
    padding: 30px;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #eee;
}

.style-settings-panel.active {
    right: 20px;
}

.settings-toggle {
    position: absolute;
    left: -50px;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 4px 0 0 4px;
}

.settings-section {
    margin-bottom: 25px;
}

.settings-section h4 {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--gray-medium);
}

.theme-options {
    display: flex;
    gap: 10px;
}

.theme-btn {
    flex: 1;
    padding: 10px;
    border: 1px solid #eee;
    background: transparent;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    color: var(--primary);
}

.theme-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.color-circle.active {
    border-color: var(--accent);
    transform: scale(1.1);
}

body.dark-theme .style-settings-panel {
    border-color: #333;
}

/* Lookbook Masonry */
.lookbook-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 300px;
    gap: 20px;
    margin-top: 50px;
}

.lookbook-item {
    position: relative;
    overflow: hidden;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.lookbook-item.large {
    grid-row: span 2;
    grid-column: span 2;
}

.lookbook-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.lookbook-item:hover .lookbook-overlay {
    opacity: 1;
}

.lookbook-item:hover img {
    transform: scale(1.05);
}

.lookbook-overlay span {
    color: white;
    font-family: 'Italiana', serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
}

/* Instagram Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0;
}

.insta-item {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    filter: grayscale(20%);
}

.insta-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

@media (max-width: 992px) {
    .lookbook-masonry {
        grid-template-columns: repeat(2, 1fr);
    }
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .lookbook-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: 400px;
    }
    .lookbook-item.large {
        grid-row: span 1;
        grid-column: span 1;
    }
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Enhanced Lookbook */
.lookbook-item img {
    width: 100%;
    height: 110%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(-5%);
}

.lookbook-item:hover img {
    transform: translateY(0);
}

.lookbook-item::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 0 solid rgba(255,255,255,0.1);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.lookbook-item:hover::after {
    border-width: 25px;
}
/* Contact Split Layout */
.contact-split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: var(--white);
}

.contact-visual {
    position: relative;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.visual-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 10%;
    background: linear-gradient(to right, rgba(0,0,0,0.6), transparent);
}

.visual-content {
    color: white;
}

.visual-content h1 {
    font-family: 'Italiana', serif;
    font-size: 5rem;
    margin: 20px 0;
    line-height: 1.1;
}

.visual-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 400px;
    margin-bottom: 40px;
}

.contact-quick-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.q-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.q-item i {
    color: var(--accent);
}

/* Form Side */
.contact-form-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10%;
    background: var(--beige);
}

.form-container {
    width: 100%;
    max-width: 500px;
}

.form-container h2 {
    font-family: 'Italiana', serif;
    font-size: 3rem;
    margin: 10px 0 20px;
}

.form-lead {
    color: var(--gray-medium);
    margin-bottom: 40px;
}

.luxury-form-new .input-wrapper {
    position: relative;
    margin-bottom: 35px;
}

.luxury-form-new input, .luxury-form-new textarea {
    width: 100%;
    padding: 10px 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ccc;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.luxury-form-new label {
    position: absolute;
    left: 0;
    top: 10px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
    font-size: 0.9rem;
}

.luxury-form-new input:focus ~ label,
.luxury-form-new input:valid ~ label,
.luxury-form-new textarea:focus ~ label,
.luxury-form-new textarea:valid ~ label {
    top: -20px;
    font-size: 0.75rem;
    color: var(--accent);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.luxury-form-new input:focus, .luxury-form-new textarea:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.btn-accent-gold {
    background: var(--primary);
    color: white;
    padding: 18px 40px;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.btn-accent-gold:hover {
    background: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(184, 142, 47, 0.2);
}

.social-minimal {
    margin-top: 60px;
    display: flex;
    gap: 30px;
}

.social-minimal a {
    color: var(--primary);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition);
}

.social-minimal a:hover {
    color: var(--accent);
}

@media (max-width: 991px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
    }
    .contact-visual {
        display: none;
    }
    .contact-form-side {
        padding: 60px 20px;
    }
}

.alert-success-premium {
    background: #fdfaf5;
    border-left: 4px solid var(--accent);
    color: var(--primary);
    padding: 20px;
    margin-bottom: 30px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
}

.alert-success-premium i {
    color: var(--accent);
    font-size: 1.2rem;
}

/* ==========================================================================
   ULTRA CLEAN PRO E-COMMERCE PRODUCT GRID
   ========================================================================== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px 15px; /* Tight horizontal gap, large vertical gap */
    width: 100%;
}

/* New Modern App-Style Card (based on user reference) */
.product-card {
    display: flex;
    flex-direction: column;
    background: #fdfaf5; /* Soft beige default */
    border-radius: 30px;
    padding: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

/* Unified Card Background */
.product-card { background: #ffffff !important; }

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.6s ease;
    background: transparent;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

/* Wishlist Heart Circle */
.wishlist-btn-circle {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #e74c3c;
    border: none;
    cursor: pointer;
    z-index: 10;
}

/* Floating Info on Image */
.image-label-float {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.9);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

.product-info {
    padding: 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-name {
    font-family: 'Manrope', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0;
}

.product-description-mini {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: -8px;
}

/* Tags / Badges */
.tag-container {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.product-tag {
    background: #f1c40f; /* Gold tag */
    color: #333;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 700;
}

/* Features with Icons */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 5px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #555;
    font-weight: 600;
}

.feature-item i { color: #27ae60; }

/* Nutrition/Info Box */
.info-box-light {
    background: rgba(0,0,0,0.03);
    padding: 12px;
    border-radius: 15px;
    display: flex;
    justify-content: space-around;
    font-size: 12px;
    font-weight: 700;
}

/* Card Footer */
.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.price-main {
    font-size: 1.4rem;
    font-weight: 800;
    color: #e67e22;
}

.price-main span {
    font-size: 0.9rem;
    color: #999;
    margin-left: 5px;
}

.add-btn-green {
    background: #27ae60;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.add-btn-green:hover { background: #219150; }

.stock-status {
    font-size: 11px;
    color: #95a5a6;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

/* Clean Black Quick Add Bar */
.quick-add-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 14px 0;
    background: var(--black);
    color: #fff;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transform: translateY(100%); /* Hidden by default */
    z-index: 10;
}

.product-image:hover .quick-add-btn {
    transform: translateY(0);
}

.quick-add-btn:hover {
    background: #333;
}

/* Minimalist Top Right Actions */
.overlay-top-actions {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .overlay-top-actions {
    opacity: 1;
}

.overlay-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fff;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.2s ease;
    text-decoration: none;
}

.overlay-btn:hover {
    background: var(--black);
    color: #fff;
}

/* Minimalist Editorial Badge */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fff;
    color: var(--black);
    font-family: 'Manrope', sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 8px;
    z-index: 3;
    border: 1px solid #eaeaea;
}

/* Text Information - Left Aligned Pro Style */
.product-info {
    padding-top: 12px;
    text-align: left; /* Professional sites align text left */
}

.product-category {
    font-family: 'Manrope', sans-serif;
    font-size: 10px;
    color: var(--gray-medium);
    margin-bottom: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-name {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 6px 0;
    color: var(--black);
    text-transform: none; /* Sentence case is often used for cleaner look */
}

.product-price {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--black); /* Standard black price */
}

@media (max-width: 1200px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); gap: 40px 15px; }
}

@media (max-width: 768px) {
    .product-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 25px 10px; /* Essential 2-column mobile layout */
    }
    .overlay-top-actions { opacity: 1; }
    .quick-add-btn { display: none; } /* Mobile usually clicks through instead of quick add */
    .product-name { font-size: 12px; }
    .product-price { font-size: 12px; }
    .overlay-btn { width: 28px; height: 28px; font-size: 11px; }
}

/* --- HYPER-VIBRANT OVERRIDES --- */
.btn-accent, .add-btn-green {
    background: linear-gradient(135deg, var(--accent), #ff8f00) !important;
    color: white !important;
    box-shadow: 0 10px 20px rgba(255, 61, 0, 0.3) !important;
    border: none !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-accent:hover, .add-btn-green:hover {
    box-shadow: 0 15px 30px rgba(255, 61, 0, 0.5) !important;
    transform: translateY(-3px) scale(1.02);
}

.cart-count, .wishlist-icon .cart-count {
    background: var(--accent) !important;
    box-shadow: 0 0 15px rgba(255, 61, 0, 0.6);
    animation: glow-pulse 2s infinite;
}

@keyframes glow-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 61, 0, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(255, 61, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 61, 0, 0); }
}

.price-main {
    color: var(--primary) !important;
    font-size: 1.6rem !important;
}

.product-tag {
    background: var(--primary) !important;
    color: white !important;
}

.marquee-container {
    background: var(--primary) !important;
}

.nav-links li a:hover {
    color: var(--primary) !important;
}

.wishlist-btn-circle:hover {
    background: var(--primary) !important;
    color: white !important;
}

.product-card:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 20px 50px rgba(98, 0, 234, 0.2) !important;
}


/* --- ZENITH MINIMALIST OVERRIDES --- */
h1, .shop-title {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 800 !important;
    text-transform: uppercase;
    letter-spacing: 15px !important;
    font-size: 4rem !important;
    margin-bottom: 30px;
    text-align: center;
}

.subtitle {
    display: block;
    text-align: center;
    letter-spacing: 8px;
    text-transform: uppercase;
    font-size: 10px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

.product-card {
    border: none !important;
    background: #fff !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03) !important;
    padding: 30px !important;
    transition: var(--transition) !important;
    border-radius: 40px !important;
}

.product-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 40px 80px rgba(0,0,0,0.07) !important;
}

header {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 95% !important;
    max-width: 1300px !important;
    padding: 10px 40px !important;
    background: var(--glass) !important;
    backdrop-filter: blur(20px) saturate(180%) !important;
    border-radius: 100px !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1) !important;
    z-index: 1000 !important;
    margin: 0 !important;
}

header .container {
    max-width: 100% !important;
    padding: 0 !important;
}

.logo img {
    height: 70px !important;
    filter: invert(1) !important;
    mix-blend-mode: screen !important;
}

.nav-links li a {
    font-size: 11px !important;
    letter-spacing: 2px !important;
}


/* --- MIDNIGHT & GOLD LUXURY OVERRIDES --- */
.product-card {
    background: #121212 !important;
    border: 1px solid rgba(212, 175, 55, 0.1) !important;
    color: #fff !important;
}

.product-card:hover {
    border-color: var(--accent) !important;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8) !important;
}

.product-card h4, .price-main {
    color: #fff !important;
}

.subtitle {
    color: var(--accent) !important;
}

.btn-accent, .add-btn-green {
    background: linear-gradient(135deg, #D4AF37, #8B6D1B) !important;
    color: #000 !important; /* Black text on gold button for better contrast */
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2) !important;
}

header {
    background: rgba(0, 0, 0, 0.8) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

header .nav-links li a {
    color: #fff !important;
}

/* Gold Shimmer Animation */
@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.btn-accent, .add-btn-green {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #D4AF37, #8B6D1B) !important;
}

.btn-accent::after, .add-btn-green::after {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-25deg);
    animation: shimmer 3s infinite;
}

.product-card {
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.05) !important;
}

.product-card:hover {
    border-color: var(--accent) !important;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1) !important;
}

h1, .shop-title {
    background: linear-gradient(135deg, #fff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.2));
}

.price-main {
    color: var(--accent) !important;
    font-weight: 800 !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}


/* --- CELESTIAL PEAK OVERRIDES --- */
header, .modal-content, .cart-drawer-content {
    background: rgba(10, 10, 10, 0.75) !important;
    backdrop-filter: blur(30px) saturate(200%) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
}

/* Apple-style Scale & Blur Reveal */
.reveal {
    opacity: 0;
    filter: blur(10px);
    transform: scale(0.95) translateY(30px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                filter 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1) translateY(0);
}

/* Stardust Glowing Hover for Buttons */
.btn-accent:hover {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.4) !important;
    letter-spacing: 3px !important;
}

/* Thin Elegant Gold Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #000;
}
::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
}


/* --- COLOR INJECTION OVERRIDES --- */
.btn-accent, .add-btn-green {
    background: linear-gradient(135deg, var(--accent-secondary), #004d40) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.btn-accent::after, .add-btn-green::after {
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent) !important;
}

.cart-count {
    background: var(--accent-secondary) !important;
    box-shadow: 0 0 15px rgba(0, 105, 92, 0.6) !important;
}

.product-tag {
    background: var(--accent-secondary) !important;
    color: #fff !important;
}

.wishlist-btn-circle i {
    color: var(--accent) !important;
}

.wishlist-btn-circle:hover i {
    color: var(--accent-secondary) !important;
}

/* Suble Emerald Glow for Cards */
.product-card:hover {
    box-shadow: 0 30px 60px rgba(0, 105, 92, 0.15) !important;
}


/* --- TOTAL DARK MODE SWEEP --- */
.shop-header, .shop-layout, .sidebar-widget, .search-form input, .sort-select, .remove-btn, .modal-content, .cart-drawer-content, .toast-notification {
    background: #0a0a0a !important;
    color: #fff !important;
    border-color: rgba(255,255,255,0.1) !important;
}

.newsletter {
    background: #001a16 !important; /* Extra dark emerald for sectioning */
}

input, select, textarea {
    background: #121212 !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
}

.hero-couture, .manifesto-section, .philosophy-section, .lookbook-section, .instagram-section {
    background: #0a0a0a !important;
}

/* Ensure images have a slight dimming to fit the dark mood */
img:not(.logo img):not(.loader-logo) {
    filter: brightness(0.9) contrast(1.1);
}

.remove-btn {
    background: var(--accent) !important;
    color: #000 !important;
}


/* --- UNIVERSAL BUTTON REFINEMENT --- */
.btn, button:not(.navbar-toggler), a.btn, .btn-accent, .add-btn-green, .quick-add-btn {
    background: linear-gradient(135deg, var(--accent-secondary), #004d40) !important;
    color: white !important;
    border: none !important;
    border-radius: 50px !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-weight: 800 !important;
    box-shadow: 0 10px 20px rgba(0, 105, 92, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.btn:hover, button:not(.navbar-toggler):hover, a.btn:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 30px rgba(0, 105, 92, 0.5) !important;
    filter: brightness(1.1) !important;
}

/* Secondary Button (Optional) */
.btn-secondary {
    background: transparent !important;
    border: 1px solid var(--accent) !important;
    color: var(--accent) !important;
}

/* Fix for specifically reported white blocks */
#userMenuBtn, .cart-icon, .wishlist-icon {
    background: transparent !important;
}




/* --- PRO RESPONSIVE FOOTER & GLOBAL REFINEMENT --- */

/* --- ELITE DESIGN SYSTEM V5 (FINAL STABLE) --- */
.product-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px !important;
    padding: 60px 0 !important;
    width: 100% !important;
}

.product-card {
    position: relative;
    background: #0d0d0d;
    border-radius: 30px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.03);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    margin-bottom: 40px; /* Extra bottom margin */
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.8);
    border-color: rgba(212, 175, 55, 0.2);
}

.product-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 25px;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image-container img {
    transform: scale(1.08);
}

/* Floating Elements */
.price-tag-glass {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 18px;
    color: var(--accent);
    font-weight: 800;
    font-size: 13px;
    border-radius: 12px;
    z-index: 10;
}

.couture-seal {
    position: absolute;
    top: 25px;
    left: 20px;
    font-size: 8px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    z-index: 10;
}

/* Wishlist Icon */
.wishlist-form-ajax {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 30;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .wishlist-form-ajax {
    opacity: 1;
    transform: translateX(0);
}

.action-circle-premium {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-circle-premium:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}

/* Action Overlay */
.btn-add-cart-elite {
    width: 100%;
    background: var(--accent) !important;
    color: #fff !important;
    border: none;
    padding: 20px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-add-cart-elite:hover {
    background: #fff !important;
    color: #000 !important;
}

/* Info Section */
.product-info-refined {
    text-align: center;
}

.product-name-elite {
    font-family: 'Italiana', serif;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.product-meta-elite {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.elite-price {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: var(--accent);
}

.elite-status {
    font-size: 9px;
    color: #2ecc71;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 1200px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .product-grid { grid-template-columns: 1fr; } }

/* --- RESTORED PRO FOOTER --- */
footer {
    background: #000 !important;
    padding: 100px 0 50px 0 !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 105, 92, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

.shop-toolbar input[name="search"]:focus, 
.shop-toolbar select:focus {
    border-color: var(--accent) !important;
    background: rgba(255,255,255,0.07) !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
}

.shop-toolbar select {
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
}

/* ============================================
   ELITE RESPONSIVE SYSTEM â€” PISK LUXURY
   Mobile First: 480 / 768 / 992 / 1200px
   ============================================ */

/* ---- CONTAINER ---- */
@media (max-width: 1200px) {
    .container { padding: 0 30px; }
}
@media (max-width: 768px) {
    .container { padding: 0 20px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
}

/* ---- HEADER / NAV ---- */
@media (max-width: 992px) {
    .hamburger { display: flex !important; }

    #navLinks {
        display: none !important;
        position: fixed !important;
        inset: 0 !important;
        background: #000 !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 40px !important;
        z-index: 9999 !important;
    }

    #navLinks.active {
        display: flex !important;
    }

    #navLinks li a {
        font-size: 2rem !important;
        font-family: 'Italiana', serif !important;
        letter-spacing: 4px !important;
        color: #fff !important;
    }

    .header-right { gap: 15px !important; }
}

@media (max-width: 576px) {
    header { padding: 12px 0 !important; }
    .header-right .btn { display: none !important; }
}

/* ---- HERO / HOME ---- */
@media (max-width: 992px) {
    .hero-couture { min-height: 80vh !important; }
    h1 { font-size: 4rem !important; }
}

@media (max-width: 768px) {
    h1 { font-size: 3rem !important; letter-spacing: -1px !important; }
    h2 { font-size: 2.2rem !important; }
    .hero-couture { min-height: 70vh !important; padding: 60px 0 !important; }
}

@media (max-width: 480px) {
    h1 { font-size: 2.2rem !important; }
    h2 { font-size: 1.8rem !important; }
}

/* ---- PRODUCT GRID ---- */
@media (max-width: 1200px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 30px 0 !important;
    }
    .product-card { border-radius: 16px !important; padding: 10px !important; }
    .product-name-elite { font-size: 1rem !important; }
    .elite-price { font-size: 1rem !important; }
    .btn-add-cart-elite { padding: 12px !important; font-size: 9px !important; letter-spacing: 1px !important; }
}

@media (max-width: 380px) {
    .product-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
}

/* ---- SHOP TOOLBAR ---- */
@media (max-width: 768px) {
    .shop-toolbar .container {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 12px !important;
    }
    .shop-toolbar input[name="search"],
    .shop-toolbar select {
        width: 100% !important;
    }
}

/* ---- PHILOSOPHY / MANIFESTO ---- */
@media (max-width: 992px) {
    .philosophy-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

/* ---- INSTAGRAM / LOOKBOOK GRIDS ---- */
@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .lookbook-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* ---- ABOUT PAGE ---- */
@media (max-width: 992px) {
    /* Hero stats */
    .about-stats { gap: 30px !important; }

    /* Story section */
    .about-story-grid,
    [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    /* Values */
    [style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 768px) {
    /* About hero */
    .about-hero-stats { flex-wrap: wrap !important; gap: 30px !important; }

    /* Gallery 4 col -> 2 col */
    [style*="grid-template-columns: repeat(4, 1fr)"] {
        grid-template-columns: repeat(2, 1fr) !important;
        height: auto !important;
    }

    [style*="grid-template-columns: repeat(4, 1fr)"] > div {
        height: 200px !important;
    }
}

/* ---- CART DRAWER ---- */
@media (max-width: 480px) {
    .cart-drawer-content {
        max-width: 100% !important;
    }
}

/* ---- MODALS ---- */
@media (max-width: 576px) {
    .modal-content {
        margin: 20px !important;
        width: calc(100% - 40px) !important;
        padding: 20px !important;
        border-radius: 12px !important;
    }
    #quickAddModal .modal-content {
        max-width: 100% !important;
    }
}

/* ---- FOOTER ---- */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 40px !important;
    }
}
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
    footer { padding: 60px 0 30px !important; }
    .footer-bottom {
        flex-direction: column !important;
        gap: 10px !important;
        text-align: center !important;
    }
    .social-link-footer { margin: 0 auto !important; }
}

/* ---- CONTACT PAGE ---- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ---- CART PAGE ---- */
@media (max-width: 768px) {
    .cart-table thead { display: none !important; }
    .cart-table tr {
        display: block !important;
        margin-bottom: 20px !important;
        border: 1px solid rgba(255,255,255,0.05) !important;
        border-radius: 12px !important;
        padding: 15px !important;
    }
    .cart-table td {
        display: block !important;
        text-align: right !important;
        padding: 8px 0 !important;
        border: none !important;
    }
    .cart-table td::before {
        content: attr(data-label);
        float: left;
        font-weight: 700;
        font-size: 11px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.4);
    }
}

/* ---- GLOBAL SECTION PADDING ---- */
@media (max-width: 768px) {
    .section, section { padding: 60px 0 !important; }
    .manifesto-section, .philosophy-section { padding: 60px 0 !important; }
}
@media (max-width: 480px) {
    .section, section { padding: 40px 0 !important; }
}

/* ---- WHATSAPP BUTTON (mobile) ---- */
@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 20px !important;
        right: 20px !important;
        width: 50px !important;
        height: 50px !important;
        font-size: 1.4rem !important;
    }
}

/* ---- HAMBURGER ACTIVE ANIMATION ---- */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ---- HIDE SCROLLBAR (mobile nav) ---- */
.hide-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.hide-scrollbar::-webkit-scrollbar { display: none; }


/* ============================================
   RESPONSIVE â€” HOME PAGE SPECIFIC
   ============================================ */

/* Hero */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr !important;
        min-height: auto !important;
        padding-top: 0px !important;
        padding-bottom: 80px !important;
    }
    .hero-text { padding-right: 0 !important; text-align: center; }
    .hero-text .hero-h1 { font-size: 3.5rem !important; }
    .hero-text .hero-h1 span { font-size: 4rem !important; margin-left: 0 !important; }
    .hero-text div[style*="flex"] { justify-content: center; }
    .hero-image-col { display: none !important; }
}

@media (max-width: 576px) {
    .hero-text .hero-h1 { font-size: 2.8rem !important; }
    .hero-text .hero-h1 span { font-size: 3rem !important; }
}

/* Manifesto Grid */
@media (max-width: 992px) {
    .manifesto-grid {
        grid-template-columns: 1fr !important;
    }
    .manifesto-main-img { height: 50vw !important; min-height: 300px; }
    .manifesto-gallery { grid-template-columns: 1fr 1fr !important; }
    .manifesto-title { font-size: 3rem !important; }
}
@media (max-width: 576px) {
    .manifesto-gallery { grid-template-columns: 1fr !important; }
}

/* Philosophy section */
@media (max-width: 992px) {
    .section [style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
    .section [style*="height: 700px"] {
        height: 400px !important;
    }
    .section [style*="bottom: -50px; right: -50px"] {
        position: static !important;
        margin-top: 30px;
        width: 100% !important;
        height: auto !important;
        padding: 30px !important;
    }
}

/* Instagram strip */
@media (max-width: 768px) {
    .insta-strip {
        overflow-x: auto !important;
        scroll-snap-type: x mandatory;
    }
    .insta-post {
        min-width: 70vw !important;
        scroll-snap-align: start;
    }
}
@media (max-width: 480px) {
    .insta-post { min-width: 85vw !important; }
}

/* Shop toolbar */
@media (max-width: 768px) {
    .shop-toolbar { top: auto !important; position: relative !important; }
    .shop-toolbar .hide-scrollbar { 
        max-width: 100%;
        overflow-x: auto;
    }
}

/* Category filter links */
@media (max-width: 576px) {
    .shop-toolbar .container > div:first-child {
        display: none !important;
    }
}

/* --- REFINED GLOBAL RESPONSIVENESS --- */
@media (max-width: 991px) {
    .container { padding: 0 30px; }
    .hero-h1 { font-size: 4rem !important; }
    .hero-h1 span { font-size: 5rem !important; margin-left: 20px !important; }
    .manifesto-title { font-size: 4rem !important; }
    .manifesto-title .italic-serif { font-size: 5rem !important; margin-left: 30px !important; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    
    /* Header & Nav */
    header { padding: 10px 0 !important; }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #000;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
        gap: 30px !important;
        transition: 0.5s cubic-bezier(0.8, 0, 0.2, 1);
        z-index: 999;
    }
    .nav-links.active { right: 0; }
    .hamburger { display: flex !important; }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }
    
    /* Hero Section */
    .hero-grid { grid-template-columns: 1fr !important; padding-top: 0px !important; text-align: center; gap: 60px !important; }
    .hero-text { padding-right: 0 !important; }
    .hero-h1 { font-size: 3.5rem !important; }
    .hero-h1 span { font-size: 4.5rem !important; margin-left: 0 !important; display: block; }
    .hero-image-col { height: 50vh !important; justify-content: center !important; }
    .hero-float-img { display: none !important; }
    
    /* Sections */
    .section { padding: 60px 0; }
    .section h2 { font-size: 2.5rem !important; }
    
    /* Manifesto */
    .manifesto-grid { grid-template-columns: 1fr !important; }
    .manifesto-title { font-size: 3rem !important; margin-bottom: 30px !important; }
    .manifesto-title .italic-serif { font-size: 4rem !important; margin-left: 0 !important; }
    .manifesto-gallery { margin-left: 0 !important; justify-content: center !important; }
    
    /* Philosophy */
    .section .container > div[style*='grid-template-columns: 1fr 1fr'] {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }
    div[style*='height: 700px'] { height: 400px !important; }
    div[style*='bottom: -50px'] { position: relative !important; bottom: 0 !important; right: 0 !important; width: 100% !important; height: auto !important; margin-top: -30px; }
    
    /* Footer */
    .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 40px !important; }
    .footer-logo { grid-column: 1 / -1; text-align: center; }
    .footer-logo div { justify-content: center !important; }
}

@media (max-width: 576px) {
    .hero-h1 { font-size: 2.8rem !important; }
    .hero-h1 span { font-size: 3.5rem !important; }
    .product-grid { grid-template-columns: 1fr !important; }
    .footer-grid { grid-template-columns: 1fr !important; text-align: center; }
    .footer-col h4::after { left: 50%; transform: translateX(-50%); }
    .footer-form { flex-direction: column; }
    .modal-content { width: 95% !important; padding: 30px 20px !important; }
}

/* --- ADDITIONAL RESPONSIVE FIXES --- */
@media (max-width: 768px) {
    .shop-header { padding: 80px 0 40px 0 !important; }
    .shop-header h1 { font-size: 3rem !important; }
    
    .shop-toolbar .container { flex-direction: column !important; align-items: stretch !important; gap: 15px !important; }
    .shop-toolbar div[style*='display: flex; gap: 30px'] { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 15px !important; }
    .shop-toolbar form { width: 100%; }
    .shop-toolbar input { width: 100% !important; background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important; padding: 12px 15px !important; }
    .shop-toolbar select { width: 100% !important; background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(255,255,255,0.1) !important; padding: 12px !important; color: #fff; }
    
    /* Product Detail */
    div[style*='padding: 60px 0; display: flex; gap: 60px'] { padding: 30px 0 !important; gap: 30px !important; }
    div[style*='flex: 1; min-width: 300px'] { flex: none !important; width: 100% !important; }
    
    /* Cart Drawer */
    .cart-drawer { width: 100% !important; right: -100% !important; }
    .cart-drawer.active { right: 0 !important; }
    
    /* Main padding adjustment */
    main { padding-top: 80px !important; }
    
    /* Quick Add Modal Mobile */
    #quickAddModal .modal-content {
        width: 90% !important;
        max-width: none !important;
    }
    #quickAddImage { height: 180px !important; }
}

@media (max-width: 480px) {
    .hero-h1 { font-size: 2.5rem !important; }
    .hero-h1 span { font-size: 3rem !important; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* --- PAGE SPECIFIC RESPONSIVENESS --- */
@media (max-width: 768px) {
    /* Cart Table Responsive */
    .cart-table thead { display: none; }
    .cart-table tr { display: block; border-bottom: 2px solid rgba(255,255,255,0.05); padding: 20px 0; }
    .cart-table td { display: flex; justify-content: space-between; align-items: center; padding: 10px 0 !important; border: none !important; }
    .cart-table td::before { content: attr(data-label); font-weight: 700; text-transform: uppercase; font-size: 11px; color: var(--gray-medium); }
    .cart-table td:first-child { flex-direction: column; align-items: flex-start; gap: 15px; }
    .cart-table td:first-child::before { display: none; }
    
    /* Checkout Layout */
    div[style*='display: flex; gap: 40px; flex-wrap: wrap'] { gap: 30px !important; }
    div[style*='flex: 2; min-width: 300px'], div[style*='flex: 1; min-width: 300px'] { flex: none !important; width: 100% !important; }
    
    /* Checkout Form Gap */
    div[style*='display: flex; gap: 20px'] { flex-direction: column !important; gap: 10px !important; }
    
    /* Auth Modals width */
    .modal-content { width: 95% !important; }
    
    /* Grid adjustments for products on small screens */
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)) !important; gap: 15px !important; }
    .product-name-elite { font-size: 14px !important; }
    .elite-price { font-size: 1rem !important; }
    .btn-add-cart-elite { padding: 10px !important; font-size: 10px !important; }
}

@media (max-width: 480px) {
    .logo img { height: 45px !important; }
    .nav-icons { gap: 10px !important; }
    .nav-icons a, .nav-icons button { font-size: 0.9rem !important; }
    .cart-count { width: 15px !important; height: 15px !important; font-size: 8px !important; top: -5px !important; right: -5px !important; }
}

/* --- RESPONSIVE UTILITIES --- */
.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links li a:hover { color: var(--accent); }

.mobile-only { display: none !important; }

@media (max-width: 768px) {
    .hide-mobile { display: none !important; }
    .mobile-only { display: block !important; }
    
    .nav-links {
        background: rgba(0,0,0,0.98) !important;
        backdrop-filter: blur(20px);
        pointer-events: auto !important;
        visibility: hidden;
        opacity: 0;
        transform: translateX(100%);
        transition: all 0.5s cubic-bezier(0.8, 0, 0.2, 1) !important;
    }
    .nav-links.active {
        visibility: visible;
        opacity: 1;
        transform: translateX(0);
        right: 0 !important;
    }
    
    .nav-links li a {
        font-size: 1.5rem !important;
        letter-spacing: 5px !important;
    }
    
    /* Fix for overlapping header icons */
    .header-right { gap: 10px !important; }
    .nav-icons { gap: 10px !important; }
    
    /* Ensure modals and drawers are always on top */
    .modal { z-index: 9999 !important; }
    .cart-drawer { z-index: 9999 !important; }
}

@media (max-width: 768px) {
    .nav-links { pointer-events: none !important; }
    .nav-links.active { pointer-events: auto !important; }
}

/* --- PRO MOBILE MENU ANIMATION --- */
@media (max-width: 768px) {
    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: center !important;
        padding: 60px 40px !important;
        background: linear-gradient(135deg, rgba(10,10,10,0.98) 0%, rgba(0,45,38,0.98) 100%) !important;
        backdrop-filter: blur(25px) !important;
        position: fixed !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        z-index: 9998 !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.7s cubic-bezier(0.85, 0, 0.15, 1) !important;
    }
    
    .nav-links.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .nav-links li {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.5s cubic-bezier(0.85, 0, 0.15, 1);
        margin-bottom: 25px;
    }
    
    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Staggered delays */
    .nav-links.active li:nth-child(1) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.6s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.7s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.8s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.9s; }
    .nav-links.active li:nth-child(8) { transition-delay: 1.0s; }
    
    .nav-links li a {
        font-family: 'Italiana', serif !important;
        font-size: 2.8rem !important;
        color: #fff !important;
        letter-spacing: 2px !important;
        text-transform: capitalize !important;
        position: relative;
    }
    
    .nav-links li a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--accent);
        transition: width 0.4s ease;
    }
    
    .nav-links li a:hover::after { width: 100%; }
    
    /* Hamburger Morph into X */
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px) !important; background: var(--accent) !important; }
    .hamburger.active span:nth-child(2) { opacity: 0 !important; width: 0 !important; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px) !important; background: var(--accent) !important; }
    
    .hamburger span { transition: all 0.4s cubic-bezier(0.85, 0, 0.15, 1) !important; }
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 18px;
    cursor: pointer;
    z-index: 10001 !important;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.85, 0, 0.15, 1);
}

.hamburger:hover { transform: scale(1.1); }

.hamburger span {
    width: 100%;
    height: 1.5px;
    background: #fff;
    display: block;
    transition: 0.3s;
}

/* --- ULTRA-PRO MOBILE APP STYLE MENU --- */
@media (max-width: 768px) {
    body { transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1); overflow-x: hidden; }
    body.menu-open { /* transform removed - breaks fixed positioning */ }
    
    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding: 100px 40px !important;
        background: #000 !important;
        position: fixed !important;
        top: 0 !important;
        right: -80% !important;
        width: 80% !important;
        height: 100vh !important;
        z-index: 9999 !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transition: right 0.6s cubic-bezier(0.85, 0, 0.15, 1) !important;
        border-left: 1px solid rgba(255,255,255,0.05);
    }
    
    .nav-links.active {
        right: 0 !important;
    }
    
    .nav-links::before {
        content: 'MENU';
        position: absolute;
        top: 40px;
        left: 40px;
        font-family: 'Manrope';
        font-weight: 900;
        font-size: 10px;
        letter-spacing: 5px;
        color: var(--accent);
        opacity: 0.5;
    }
    
    .nav-links li {
        margin-bottom: 20px;
        transform: translateX(50px);
        opacity: 0;
        transition: all 0.5s ease;
    }
    
    .nav-links.active li {
        transform: translateX(0);
        opacity: 1;
    }
    
    .nav-links li a {
        font-size: 1.8rem !important;
        font-weight: 800 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        font-family: 'Manrope', sans-serif !important;
    }
    
    /* Social links in menu */
    .nav-links::after {
        content: 'PISK LUXURY HOUSE';
        position: absolute;
        bottom: 40px;
        left: 40px;
        font-size: 10px;
        letter-spacing: 3px;
        opacity: 0.3;
    }
}

/* html { overflow-x: hidden; } -- SUPPRIMÉ : bloque la barre de défilement verticale */

@media (max-width: 768px) {
    body.menu-open { pointer-events: none; /* transform removed - breaks fixed positioning */ }
    
    .nav-links {
        box-shadow: -50px 0 100px rgba(0,0,0,0.9) !important;
    }
}

/* --- REFINED LUXURY MINIMALIST MENU --- */
@media (max-width: 768px) {
    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        background: #050505 !important;
        padding: 0 !important;
    }
    
    .nav-links li {
        margin-bottom: 30px !important;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }
    
    .nav-links.active li {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-links li a {
        font-family: 'Italiana', serif !important;
        font-size: 1.8rem !important;
        font-weight: 400 !important;
        text-transform: uppercase !important;
        letter-spacing: 6px !important;
        color: rgba(255,255,255,0.8) !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-links li a:hover {
        color: var(--accent) !important;
        letter-spacing: 10px !important;
    }
    
    .mobile-footer {
        position: absolute;
        bottom: 50px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 0 !important;
    }
    
    /* Fix WhatsApp overlap */
    .whatsapp-float { z-index: 999 !important; }
}

/* --- FINAL MOBILE MENU FIX --- */
@media (max-width: 768px) {
    .nav-links {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100vh !important;
        background: #080808 !important;
        z-index: 9999 !important;
        transform: translateX(100%) !important;
        transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1) !important;
        padding: 0 !important;
        margin: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }
    
    .nav-links.active {
        transform: translateX(0) !important;
    }
    
    .nav-links li {
        display: block !important;
        opacity: 0 !important;
        transform: translateY(20px) !important;
        transition: all 0.5s ease !important;
        margin: 15px 0 !important;
    }
    
    .nav-links.active li {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    /* Staggered entry for active state */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.7s; }
    .nav-links.active li:nth-child(8) { transition-delay: 0.8s; }
    
    .nav-links li a {
        font-family: 'Italiana', serif !important;
        font-size: 2rem !important;
        color: #fff !important;
        letter-spacing: 5px !important;
        text-decoration: none !important;
        text-transform: uppercase !important;
    }
    
    /* Ensure hamburger is always visible */
    .hamburger {
        z-index: 10000 !important;
    }
    
    /* Remove body scale for simplicity and stability */
    body.menu-open { transform: none !important; }
}

/* --- FLOATING CART BUTTON --- */
.mobile-cart-floating {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    box-shadow: 0 15px 35px rgba(212,175,55,0.4);
    z-index: 998;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-cart-floating .cart-count {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #fff;
    color: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .mobile-cart-floating { display: flex; }
    .mobile-cart-floating:active { transform: scale(0.9); }
}

/* --- VISIBILITY FIXES --- */
@media (max-width: 1200px) {
    .hide-mobile { display: none !important; }
}

/* Ensure buttons are always bold and visible */
.btn, .btn-accent {
    font-weight: 800 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.cart-drawer-footer {
    padding: 30px 20px !important;
    background: rgba(255,255,255,0.02) !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
}

.close-drawer, .close-modal {
    color: #fff !important;
    opacity: 0.8;
    font-size: 32px !important;
}

/* Adjust floating buttons for small desktops */
@media (max-width: 991px) {
    .mobile-cart-floating { display: flex !important; }
    .whatsapp-float { display: flex !important; }
}

/* --- EMERGENCY VIEWPORT FIX FOR CART --- */
.cart-drawer {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 999999 !important;
    display: none !important;
    background: rgba(0,0,0,0.8) !important;
    justify-content: flex-end !important;
    pointer-events: auto !important;
}

.cart-drawer.active {
    display: flex !important;
}

.cart-drawer-content {
    height: 100vh !important;
    max-height: 100vh !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
}

.cart-drawer-body {
    flex: 1 !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
}

.cart-drawer-footer {
    margin-top: auto !important;
    position: sticky !important;
    bottom: 0 !important;
    background: #000 !important;
    padding: 30px !important;
    z-index: 10 !important;
}

/* --- EMERGENCY MODAL FIX --- */
.modal {
    z-index: 1000001 !important;
    background: rgba(0,0,0,0.8) !important;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    z-index: 1000002 !important;
    position: relative !important;
    background: #000 !important;
}

/* --- FINAL MODAL VISIBILITY FIX --- */
.modal {
    display: none !important;
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 2000000 !important;
    background: rgba(0,0,0,0.85) !important;
    backdrop-filter: blur(10px) !important;
    align-items: center !important;
    justify-content: center !important;
}

.modal.active {
    display: flex !important;
}

/* --- NEW PROFESSIONAL LATERAL MENU --- */
.nav-links-container {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list li a {
    color: #fff;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s;
}

.nav-list li a:hover {
    color: var(--accent);
}

.mobile-menu-header, .mobile-menu-body, .mobile-menu-footer, .close-menu {
    display: none;
}

@media (max-width: 991px) {
    .hamburger { display: flex !important; }
    
    .nav-links-container {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 100% !important;
        max-width: 400px !important;
        height: 100vh !important;
        background: #000 !important;
        z-index: 1000002 !important;
        flex-direction: column !important;
        align-items: stretch !important;
        transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
        box-shadow: -20px 0 60px rgba(0,0,0,0.8) !important;
        padding: 0 !important;
        display: flex !important;
    }

    .nav-links-container.active {
        right: 0 !important;
    }

    .mobile-menu-header { position: relative !important; display: flex !important; justify-content: space-between !important; align-items: center !important; padding: 25px 20px !important; background: #000 !important; }
}

/* --- ZERO GAP FULL SCREEN MENU --- */
@media (max-width: 991px) {
    .nav-links-container {
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        border-radius: 0 !important;
    }
    
    .mobile-menu-body {
        padding: 0 !important;
        height: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    
    .nav-list {
        width: 100% !important;
        gap: 0 !important;
    }
    
    .nav-list li {
        width: 100% !important;
        border-bottom: 1px solid rgba(255,255,255,0.03) !important;
    }
    
    .nav-list li a {
        display: block !important;
        padding: 25px 0 !important;
        width: 100% !important;
        font-size: 1.8rem !important;
    }
    
    .mobile-menu-footer {
        padding: 30px !important;
        margin: 0 !important;
    }
}

/* --- OPTIMIZING FOR ZERO SCROLL IN MENU --- */
@media (max-width: 991px) {
    .nav-list li a {
        padding: 15px 0 !important;
        font-size: 1.1rem !important;
        letter-spacing: 4px !important;
    }
    
    .mobile-menu-body {
        padding-top: 60px !important;
        padding-bottom: 20px !important;
    }
    
    .mobile-menu-footer {
        padding: 20px !important;
    }
    
    .btn-mobile-auth {
        padding: 12px !important;
        font-size: 11px !important;
    }
}

/* --- REFINED BEAM-STYLE MENU --- */
@media (max-width: 991px) {
    .nav-list li a {
        font-family: 'Manrope', sans-serif !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
        text-align: left !important;
        padding: 12px 25px !important;
        width: 100% !important;
        border: none !important;
    }
    
    .mobile-menu-body {
        align-items: flex-start !important;
        justify-content: flex-start !important;
        padding-left: 0 !important;
        padding-top: 80px !important;
    }
    
    .nav-list {
        align-items: flex-start !important;
    }
    
    .mobile-menu-footer {
        background: #000 !important;
        padding: 20px 25px !important;
    }
    
    .btn-mobile-auth {
        border-radius: 8px !important;
        height: 50px !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
    }
}

/* --- HARD LEFT ALIGNMENT FOR MENU --- */
@media (max-width: 991px) {
    .mobile-menu-body {
        padding-left: 0 !important;
    }
    
    .nav-list li a {
        padding-left: 20px !important;
        margin: 0 !important;
    }
    
    .mobile-menu-footer {
        padding-left: 20px !important;
    }
    
    .btn-mobile-auth {
        padding-left: 15px !important;
    }
}

/* --- MASTER CLEAN MOBILE MENU RESET --- */
@media (max-width: 991px) {
    .hamburger { display: flex !important; z-index: 1000 !important; }
    .hamburger.active { opacity: 0 !important; } /* Hide hamburger when menu is open */
    
    .nav-links-container {
        position: fixed !important;
        inset: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #000 !important;
        z-index: 1000000 !important;
        display: flex !important;
        flex-direction: column !important;
        padding: 0 !important;
        margin: 0 !important;
        left: -100% !important;
        right: auto !important;
        transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .nav-links-container.active {
        left: 0 !important;
    }

    .mobile-menu-header { position: relative !important; display: flex !important; justify-content: space-between !important; align-items: center !important; padding: 25px 20px !important; background: #000 !important; }
    
    .action-circle-premium {
        background: rgba(0,0,0,0.5) !important;
        border: 1px solid rgba(255,255,255,0.2) !important;
        width: 38px !important;
        height: 38px !important;
    }
}

/* --- PRODUCT ACTION BUTTONS (EYE & HEART) --- */
.product-actions-top {
    opacity: 0;
    transform: translateX(15px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-actions-top {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 991px) {
    .product-actions-top {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .action-circle-premium {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
    }
}

/* --- DEFINITIVE FIX FOR EYE & HEART ICONS --- */
.wishlist-form-ajax {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    margin: 0 !important;
}

.product-actions-top {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    z-index: 100 !important;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease !important;
}

.product-card:hover .product-actions-top {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

@media (max-width: 991px) {
    .product-actions-top {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* --- MASTER FIX: HEART & EYE ICONS --- */
.product-actions-top {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    z-index: 100 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(10px) !important;
    transition: all 0.3s ease !important;
}

.product-card:hover .product-actions-top {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

.wishlist-form-ajax {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.action-circle-premium {
    width: 44px !important;
    height: 44px !important;
    background: rgba(0,0,0,0.6) !important;
    backdrop-filter: blur(8px) !important;
    border-radius: 50% !important;
    border: 1px solid rgba(255,255,255,0.2) !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    font-size: 18px !important;
}

@media (max-width: 991px) {
    .product-actions-top {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        top: 10px !important;
        right: 10px !important;
    }
    .action-circle-premium {
        width: 38px !important;
        height: 38px !important;
        font-size: 15px !important;
    }
}

/* --- ALWAYS VISIBLE ICONS (NO HOVER NEEDED) --- */
.product-actions-top {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: flex !important;
    z-index: 500 !important;
}

.action-circle-premium {
    opacity: 1 !important;
    display: flex !important;
}

/* --- ENSURING WHATSAPP IS ALWAYS ON TOP --- */
.whatsapp-float {
    z-index: 1000000 !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* --- FIXING WHATSAPP POSITION STABILITY --- */
.whatsapp-float {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    transition: background 0.3s ease !important; /* No movement transition */
    transform: none !important;
    z-index: 9999999 !important;
}

/* --- DESKTOP VS MOBILE MENU MANAGEMENT --- */
.desktop-menu-links {
    display: block;
    flex: 1;
    margin-left: 50px;
}

.nav-list-desktop {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list-desktop li a {
    color: #fff;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 80px;
}

@media (max-width: 992px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 576px) { .footer-grid { grid-template-columns: 1fr; text-align: center; } }

/* --- ELITE SHOP TOOLBAR REFINEMENT --- */
.shop-toolbar {
    background: rgba(10, 10, 10, 0.8) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: relative !important;
    top: auto !important;
    z-index: 100;
    padding: 25px 0;
    transition: all 0.4s ease;
}

.shop-toolbar input[name="search"], 
.shop-toolbar select {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
    font-family: 'Manrope', sans-serif;
    font-size: 11px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 20px !important;
    border-radius: 4px;
    outline: none;
    transition: all 0.3s ease;
}

.nav-list-desktop li a:hover {
    color: var(--accent);
}

@media (max-width: 991px) {
    .desktop-menu-links {
        display: none !important;
    }
    .hamburger {
        display: flex !important;
    }
}

@media (min-width: 992px) {
    .hamburger {
        display: none !important;
    }
    .nav-links-container {
        display: none !important;
    }
}

/* --- CENTERING AND SHRINKING MOBILE MENU TEXT --- */
@media (max-width: 991px) {
    .mobile-menu-body {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        padding-top: 0 !important; /* Center vertically in the space */
    }
    
    .nav-list-mobile {
        align-items: center !important;
        width: 100% !important;
    }
    
    .nav-list-mobile li a {
        font-size: 24px !important; /* Smaller than before */
        text-align: center !important;
        padding: 10px 0 !important;
        letter-spacing: 4px !important;
    }
    
    .mobile-menu-footer {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        padding: 20px !important;
    }
    
    .btn-mobile-auth {
        width: 200px !important;
        justify-content: center !important;
        padding-left: 0 !important;
    }
}

/* --- HARD CENTERING FOR MOBILE AUTH BUTTONS --- */
@media (max-width: 991px) {
    .mobile-menu-footer div {
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }
    
    .btn-mobile-auth {
        margin-left: auto !important;
        margin-right: auto !important;
        width: 80% !important; /* Take more space but stay centered */
        max-width: 250px !important;
    }
}

/* --- REFINING MOBILE MENU SPACING AND FONT SIZE --- */
@media (max-width: 991px) {
    .mobile-menu-body {
        padding-top: 120px !important; /* Push down away from PISK/Cross */
        justify-content: flex-start !important; /* Start from top with padding */
    }
    
    .nav-list-mobile li a {
        font-size: 18px !important; /* Even smaller for elegance */
        letter-spacing: 5px !important;
        padding: 12px 0 !important;
    }
    
    .mobile-menu-header {
        padding: 30px !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    }
}

/* --- MINIMALIST MOBILE MENU SCALING --- */
@media (max-width: 991px) {
    .mobile-menu-body {
        padding-top: 80px !important; /* Slightly less padding to gain space */
    }
    
    .nav-list-mobile li a {
        font-size: 14px !important; /* Minimalist size */
        letter-spacing: 6px !important; /* Extra spacing for luxury look */
        padding: 8px 0 !important; /* Tighten vertical gap */
    }
    
    .nav-list-mobile li {
        margin-bottom: 5px !important;
    }
}

/* --- RESPONSIVE INSTAGRAM GALLERY --- */
.insta-gallery {
    display: flex;
    width: 100%;
    overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.insta-gallery::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari */
}

.insta-post {
    flex: 0 0 20% !important;
    min-width: 20% !important;
}

@media (max-width: 991px) {
    .insta-post {
        flex: 0 0 33.33% !important;
        min-width: 33.33% !important;
    }
}

@media (max-width: 768px) {
    .insta-post {
        flex: 0 0 50% !important;
        min-width: 50% !important;
    }
}


/* --- FIX MANIFESTO OVERLAP ON MOBILE --- */
@media (max-width: 991px) {
    .manifesto-main-img {
        height: auto !important;
        margin-bottom: 60px !important;
    }
    
    .manifesto-content {
        margin-top: 20px !important;
        padding-top: 0 !important;
    }
    
    .manifesto-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }
}

/* --- ENABLING HERO IMAGES ON MOBILE --- */
@media (max-width: 991px) {
    .hero-image-col {
        display: flex !important;
        height: 60vh !important;
        margin-top: 40px !important;
    }
    
    .hero-float-img {
        display: block !important;
        width: 150px !important;
        height: 220px !important;
        bottom: -20px !important;
        left: 0 !important;
        border-width: 5px !important;
        z-index: 10 !important;
    }
}

/* --- HORIZONTAL SOCIAL LINKS IN FOOTER --- */
.footer-social-row {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    gap: 15px !important;
}

.social-link-footer {
    margin: 0 !important; /* Remove any auto-centering that might break the row */
}

/* --- SHOP TOOLBAR REFINEMENT --- */
.shop-toolbar input,
.shop-toolbar select {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: #fff !important;
    padding: 12px 25px !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    outline: none !important;
    transition: all 0.4s ease !important;
    border-radius: 0 !important;
    appearance: none !important;
}

.shop-toolbar select {
    padding-right: 45px !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23d4af37'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 15px center !important;
    background-size: 12px !important;
    cursor: pointer !important;
}

.shop-toolbar input:focus,
.shop-toolbar select:focus {
    border-color: var(--accent) !important;
    background: rgba(255,255,255,0.08) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1) !important;
}

.shop-toolbar select option {
    background: #0a0a0a !important;
    color: #fff !important;
    padding: 10px !important;
}


/* --- FIX HORIZONTAL OVERFLOW ON DESKTOP --- */
body { overflow-x: hidden !important; }
/* .container max-width: 100% removed to restore centering */
.product-grid { display: grid !important; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important; width: 100% !important; box-sizing: border-box !important; }

/* --- FORCE NAVBAR FLUSH TO EDGES --- */
header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    transform: none !important;
    margin: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    border-radius: 0 !important;
    z-index: 100000 !important;
}

/* body padding-top removed - using main element padding-top instead */





/* ====== FIX DEFINITIF: CACHER LE MENU MOBILE SUR DESKTOP ====== */
@media (min-width: 992px) {
    #navLinks,
    .nav-links-container {
        display: none !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }
}

/* ====== FIX DEFINITIF: AFFICHER LE MENU MOBILE SUR TELEPHONE ====== */
@media (max-width: 991px) {
    #navLinks,
    .nav-links-container {
        display: flex !important;
        visibility: visible !important;
        pointer-events: all !important;
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        right: auto !important;
        width: 85% !important;
        max-width: 400px !important;
        height: 100vh !important;
        background: #000 !important;
        z-index: 1000002 !important;
        flex-direction: column !important;
        transition: left 0.4s ease !important;
    }
    #navLinks.active,
    .nav-links-container.active {
        left: 0 !important;
    }
    .mobile-menu-header,
    .mobile-menu-body,
    .mobile-menu-footer {
        display: flex !important;
    }
}




/* Final Header Spacing Fix */
header .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

header nav {
    width: 100% !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
    box-sizing: border-box !important;
}

@media (max-width: 576px) {
    header nav {
        padding: 0 20px !important;
    }
}

/* Mobile Header Icons Sizing and Centering */
@media (max-width: 768px) {
    header nav {
        position: relative !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .header-right {
        display: flex !important;
        align-items: center !important;
        height: 100% !important;
    }

    .nav-icons {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 20px !important;
        margin: 0 !important;
        padding: 0 !important;
        z-index: 1000 !important;
    }

    /* Reset universal button styling for the search button */
    #searchToggle {
        background: none !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        box-shadow: none !important;
        width: auto !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        transition: transform 0.3s ease !important;
    }

    /* Increase the icon sizes to be clean, elegant and highly tap-friendly */
    .nav-icons a, 
    .nav-icons button,
    .nav-icons a i, 
    .nav-icons button i {
        font-size: 1.4rem !important;
        color: #fff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Perfectly align the count badges (wishlist and cart) */
    .nav-icons .cart-count {
        font-size: 9px !important;
        width: 17px !important;
        height: 17px !important;
        top: -8px !important;
        right: -8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        line-height: 1 !important;
        background: var(--accent) !important;
        border: 1px solid #000 !important;
        border-radius: 50% !important;
        font-weight: 700 !important;
    }
}

/* Global Search Toggle Button Styling Reset */
#searchToggle {
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    box-shadow: none !important;
    width: auto !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: transform 0.3s ease !important;
}

/* Desktop Header Sizing and Menu Shifts */
@media (min-width: 992px) {
    /* Increase icon size on desktop */
    .nav-icons a,
    .nav-icons button,
    .nav-icons a i,
    .nav-icons button i {
        font-size: 1.35rem !important;
    }

    /* Shift the menu slightly to the right */
    .desktop-menu-links {
        margin-left: 120px !important;
    }

    /* Spacious gap between icons on desktop */
    .nav-icons {
        gap: 22px !important;
    }
}

/* --- PAGINATION ELITE - ULTIMATE LUXURY SYSTEM --- */
.pagination-elite {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    margin: 60px auto !important;
    flex-wrap: wrap !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

.pagination-elite a,
.pagination-elite span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 45px !important;
    height: 45px !important;
    padding: 0 16px !important;
    font-family: 'Manrope', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 4px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    cursor: pointer !important;
    white-space: nowrap !important;
}

/* Previous / Next links (PRÉCÉDENT / SUIVANT) can have more horizontal padding */
.pagination-elite a[rel="prev"],
.pagination-elite span:first-child,
.pagination-elite a[rel="next"],
.pagination-elite span:last-child {
    padding: 0 24px !important;
    font-family: 'Cormorant Garamond', serif !important;
    font-style: italic !important;
    font-size: 14px !important;
    letter-spacing: 1px !important;
}

/* Hover state */
.pagination-elite a:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--accent) !important;
    color: var(--accent) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15) !important;
}

/* Active Page */
.pagination-elite span.active {
    background: var(--accent) !important; /* Premium Gold */
    color: #000 !important;
    border-color: var(--accent) !important;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3) !important;
    font-weight: 800 !important;
}

/* Disabled State */
.pagination-elite span.disabled {
    background: rgba(255, 255, 255, 0.01) !important;
    border-color: rgba(255, 255, 255, 0.02) !important;
    color: rgba(255, 255, 255, 0.2) !important;
    cursor: not-allowed !important;
    transform: none !important;
    box-shadow: none !important;
}

/* Mobile Responsiveness for Pagination */
@media (max-width: 768px) {
    .pagination-elite {
        gap: 5px !important;
        margin: 40px auto !important;
        justify-content: center !important;
    }

    .pagination-elite a,
    .pagination-elite span {
        min-width: 32px !important;
        height: 32px !important;
        padding: 0 !important;
        font-size: 11px !important;
        border-radius: 3px !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* Replace "PRÉCÉDENT" with beautiful elegant arrow "‹" on mobile */
    .pagination-elite a[rel="prev"],
    .pagination-elite span:first-child {
        font-size: 0 !important;
        width: 32px !important;
    }
    .pagination-elite a[rel="prev"]::before,
    .pagination-elite span:first-child::before {
        content: "‹" !important;
        font-size: 18px !important;
        font-family: 'Cormorant Garamond', serif !important;
        font-weight: 300 !important;
    }

    /* Replace "SUIVANT" with beautiful elegant arrow "›" on mobile */
    .pagination-elite a[rel="next"],
    .pagination-elite span:last-child {
        font-size: 0 !important;
        width: 32px !important;
    }
    .pagination-elite a[rel="next"]::before,
    .pagination-elite span:last-child::before {
        content: "›" !important;
        font-size: 18px !important;
        font-family: 'Cormorant Garamond', serif !important;
        font-weight: 300 !important;
    }
}

/* Prevent automatic zoom on mobile devices when tapping input fields */
@media (max-width: 768px) {
    input, select, textarea, .form-control {
        font-size: 16px !important;
    }
}

/* --- LUXURY SEARCH SUGGESTION TAGS --- */
.suggestion-tag:hover {
    background: var(--accent) !important;
    color: #000 !important;
    border-color: var(--accent) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3) !important;
}








