@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

html {
    background-color: #000; /* Hide subpixel gaps at the very top */
}

:root {
    --bg-color: #fcfbf9; /* Off-white/champagne */
    --text-color: #1a1a1a; /* Charcoal/black */
    --gold-color: #c5a059; /* Brushed gold/champagne */
    --border-color: #e0e0e0;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Inter', sans-serif;
    --transition: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-secondary);
    font-size: 15px; /* Decreased base size for minimal look */
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.8px;
}

h1 {
    font-size: 2.2rem;
}

h2 {
    font-size: 1.8rem;
}

h3 {
    font-size: 1.3rem;
}

a {
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--gold-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

}

/* Header */
header:not(.site-header) {
    border-bottom: 1px solid var(--border-color);
    padding: 0;
    background: #fff;
}

.site-header {
    border-bottom: 1px solid #dbdbdb;
    padding: 0;
    background: #f3f3f3;
    position: sticky;
    top: 0;
    z-index: 110;
}

.site-header-home {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 0;
    background: transparent;
}

.nav-shell {
    max-width: 1880px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111;
}

.brand-icon {
    width: 28px;
    height: 28px;
    stroke: currentColor;
    stroke-width: 1.1;
    fill: none;
}

.brand-word {
    font-family: var(--font-secondary);
    font-size: 2.75rem;
    font-weight: 300;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav-links ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-secondary);
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    color: #111;
}

.nav-links a:hover {
    color: #111;
    opacity: 0.7;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.cart-icon {
    width: 24px;
    height: 24px;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #111;
}

.cart-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    min-width: 15px;
    height: 15px;
    background: #111;
    color: #fff;
    font-size: 0.62rem;
    line-height: 15px;
    text-align: center;
    border-radius: 50%;
    padding: 0 2px;
}

.desktop-lang-switch {
    display: none;
}

.lang-switch a {
    font-size: 0.78rem;
    text-transform: uppercase;
    margin-left: 4px;
}

.lang-switch a.active {
    font-weight: 600;
    border-bottom: 1px solid currentColor;
}

.site-header-home .brand-lockup,
.site-header-home .nav-links a,
.site-header-home .cart-icon,
.site-header-home .lang-switch a,
.site-header-home .hamburger-menu span {
    color: #f5f5f5;
}

.site-header-home .nav-links a:hover {
    color: #ffffff;
    opacity: 0.9;
}

/* Mobile Navigation Panel */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: #ffffff !important;
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    overflow-y: auto;
}
.mobile-nav-inner {
    min-height: 100%;
    padding-top: 120px;
    padding-bottom: 60px;
    position: relative;
}
.mobile-nav.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}
.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 24px;
    font-size: 42px;
    font-weight: 200;
    line-height: 1;
    color: #000000 !important;
    cursor: pointer;
    z-index: 10001;
    transition: var(--transition);
}
.close-menu-btn:hover {
    opacity: 0.6;
}
.mobile-primary-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.mobile-primary-links a {
    font-family: var(--font-secondary);
    font-size: 2.2rem;
    font-weight: 300;
    line-height: 1.2;
    color: #000000 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mobile-nav-lang {
    margin-top: 40px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #000000 !important;
}
.mobile-nav-lang a {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: #000000 !important;
    text-transform: uppercase;
}
.mobile-nav-lang .active {
    font-weight: 700;
    border-bottom: 1px solid #000;
}
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: 0;
    background: transparent;
    padding: 0;
    z-index: 101;
}
.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: currentColor;
    transition: var(--transition);
}
.hamburger-menu.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

body.mobile-nav-open {
    overflow: hidden;
}

/* Hero Section */
.hero-home {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: 60% center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #f5f5f5;
}

.hero-home .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.68) 33%, rgba(0, 0, 0, 0.1) 78%, rgba(0, 0, 0, 0.05) 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1880px;
    margin: 0 auto;
    padding-top: 84px;
}

.hero-copy {
    max-width: 620px;
    margin-left: clamp(18px, 10vw, 210px);
}

.hero-home h1 {
    font-family: var(--font-secondary);
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: 0.015em;
    text-transform: uppercase;
    margin-bottom: 26px;
}

.hero-home p {
    max-width: 540px;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
}

.hero-cta {
    width: min(560px, 100%);
    text-align: center;
    padding: 14px 34px;
    font-size: 2.15rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    background: #e8e8e8;
    color: #111;
    border: 1px solid #e8e8e8;
}

.hero-cta:hover {
    background: #ffffff;
    color: #111;
    border-color: #ffffff;
    box-shadow: none;
    transform: none;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--text-color);
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border: 1px solid var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: var(--gold-color);
    border-color: var(--gold-color);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(197, 160, 89, 0.2);
    transform: translateY(-2px);
}

.btn:disabled {
    background: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
    color: #666;
    box-shadow: none;
    transform: none;
}

.btn-outline {
    background: transparent;
    color: var(--text-color);
}
.btn-outline:hover {
    background: var(--gold-color);
    color: #ffffff;
    border-color: var(--gold-color);
}

/* Luxury Trust Badges Section */
.luxury-trust-section {
    background-color: #111111; /* Very dark grey, softer than pure black */
    color: #ffffff;
    padding: 6rem 2rem;
    border-bottom: 1px solid #222;
}

.luxury-trust-section .trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    text-align: center;
}

.luxury-trust-section .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.luxury-trust-section .trust-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: #CBA135; /* Elegant Champagne Gold */
}

.luxury-trust-section .trust-icon svg {
    width: 100%;
    height: 100%;
    /* stroke-width is set to 1 in HTML for an ultra-thin, refined look */
}

.luxury-trust-section .trust-title {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    color: #F8F8F8;
}

.luxury-trust-section .trust-desc {
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    color: #A0A0A0; /* Muted text for subtle contrast */
    max-width: 280px;
    margin: 0 auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .luxury-trust-section {
        padding: 4rem 1.5rem;
    }
    
    .luxury-trust-section .trust-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .luxury-trust-section .trust-desc {
        max-width: 100%;
    }
}

/* FAQ Section */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}
.faq-item h3 {
    font-size: 1.2rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-item h3:hover {
    color: var(--gold-color);
}
.faq-item h3::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}
.faq-item.active h3::after {
    transform: rotate(45deg);
}
.faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
}
.faq-item.active .faq-content {
    grid-template-rows: 1fr;
}
.faq-content-inner {
    overflow: hidden;
}
.faq-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
    padding-top: 15px;
    opacity: 0;
    transition: opacity 0.4s ease-out;
}
.faq-item.active p {
    opacity: 1;
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--bg-color);
    border-top: 1px solid var(--border-color);
}
.newsletter-form {
    max-width: 500px;
    margin: 30px auto 0;
    display: flex;
    gap: 10px;
}
.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    font-family: var(--font-secondary);
    font-size: 1rem;
    background: transparent;
}
.newsletter-form input:focus {
    outline: none;
    border-color: var(--gold-color);
}

/* Cookies Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #111;
    color: #fff;
    padding: 20px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}
.cookie-banner.show {
    transform: translateY(0);
}
.cookie-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.cookie-banner a {
    color: var(--gold-color);
    text-decoration: underline;
}
.cookie-btn {
    background: var(--gold-color);
    color: #fff;
    border: none;
    padding: 10px 25px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}
.cookie-btn:hover {
    background: #fff;
    color: #111;
}

/* Products Grid */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    text-align: center;
    position: relative;
    display: block;
    transition: var(--transition);
    padding-bottom: 15px;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-img {
    position: relative;
    overflow: hidden;
    margin: 0 auto 25px;
    background: #f9f9f9;
    width: 100%;
    max-width: 360px;
    height: 300px;
    max-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-img img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 300px;
    max-height: 300px;
    object-fit: cover;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--gold-color);
    color: #ffffff !important;
    padding: 6px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1;
    z-index: 10;
    font-family: var(--font-secondary);
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.product-grid .product-title {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    text-align: center;
    color: #111;
}

.product-grid .product-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    text-align: center;
}

.out-of-stock-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.9);
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}
.product-card.out-of-stock {
    opacity: 0.6;
    pointer-events: none;
}

/* Categories Filter */
.category-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    list-style: none;
}
.category-filter a {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding-bottom: 5px;
}
.category-filter a.active, .category-filter a:hover {
    border-bottom: 1px solid #000;
}

/* Product Page CRO Refactoring */
.product-single {
    display: grid;
    grid-template-columns: 60% 40%;
    gap: 0;
    padding: 0;
    align-items: flex-start;
}

.product-single-left {
    padding-right: 4rem;
}

.product-image-container {
    max-width: 100%;
    text-align: center;
    background: #fcfbf9;
}

.product-image-container img,
.product-gallery .main-img {
    max-width: 100%;
    max-height: 500px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.gallery-thumb-btn {
    border: 1px solid var(--border-color);
    background: #fff;
    padding: 0;
    cursor: pointer;
    aspect-ratio: 1 / 1;
}

.gallery-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumb-btn.active {
    border-color: var(--gold-color);
}

.product-single-right {
    padding: 4rem 2rem 4rem 0;
}

.product-sticky-info {
    position: sticky;
    top: 100px;
}

.breadcrumbs {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    color: #888;
}

.breadcrumbs a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}
.breadcrumbs a:hover {
    color: #111;
}

.product-single .product-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 400;
}

.product-single .product-price {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.product-social-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

.product-stock-status {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.stock-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.pulse-green {
    background-color: #388e3c;
    box-shadow: 0 0 0 0 rgba(56, 142, 60, 0.7);
    animation: pulse-green-anim 2s infinite;
}

@keyframes pulse-green-anim {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 142, 60, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(56, 142, 60, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(56, 142, 60, 0); }
}

.pulse-red {
    background-color: #d32f2f;
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    animation: pulse-red-anim 2s infinite;
}

@keyframes pulse-red-anim {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

.stock-dot.out {
    background-color: #999;
}

.product-add-to-cart-wrapper {
    margin-bottom: 2rem;
}

.btn-luxury-cart {
    width: 100%;
    background: #111;
    color: #fff;
    padding: 1.2rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-luxury-cart:hover {
    background: #333;
    letter-spacing: 2px;
}

.btn-luxury-cart:disabled {
    background: #ccc;
    cursor: not-allowed;
    letter-spacing: 1px;
}

.product-trust-micro {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 3rem;
}

.micro-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: #555;
}

.micro-badge svg {
    color: var(--gold-color);
}

.product-accordions {
    border-top: 1px solid #eee;
}

.product-accordions .faq-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.product-accordions .faq-item h3 {
    font-family: var(--font-secondary);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Product Adjustments */
@media (max-width: 768px) {
    .product-single {
        grid-template-columns: 1fr;
    }
    
    .product-single-left {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .product-single-right {
        padding: 0 1rem 2rem 1rem;
    }
    
    .product-add-to-cart-wrapper .btn-luxury-cart {
        padding: 1rem;
    }
    
    .product-accordions {
        margin-bottom: 80px;
    }

    .product-gallery-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Cart / Checkout */
.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 40px;
}

.cart-table th, .cart-table td {
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.cart-product-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-total {
    text-align: right;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.cart-actions {
    text-align: right;
}

.cart-remove-link {
    color: #b71c1c;
    font-size: 0.9rem;
    text-decoration: none;
}

.cart-remove-link:hover {
    text-decoration: underline;
}

/* Admin Dashboard */
.admin-container {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
}

.admin-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.admin-toolbar-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.admin-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.admin-gallery-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1px solid var(--border-color);
    padding: 8px;
    background: #fff;
    cursor: pointer;
}

.admin-gallery-item img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

/* Reviews Carousel */
.reviews-carousel-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
}

.reviews-viewport {
    overflow: hidden;
    width: 100%;
}

.reviews-track {
    display: flex;
    gap: 0;
    transform: translateX(0);
    transition: transform 0.45s ease;
    will-change: transform;
}

.review-card {
    display: block;
    background: #fff;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 4px;
    text-align: left;
    min-width: 30%;
    margin: 0 1%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    color: inherit;
    min-height: 220px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.05);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 14px;
}

.review-stars svg {
    width: 14px;
    height: 14px;
    fill: var(--gold-color);
}

.review-text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #444;
    margin-bottom: 16px;
    font-style: italic;
}

.review-author {
    font-size: 0.9rem;
    font-weight: 500;
    color: #1f1f1f;
    font-family: 'Inter', sans-serif;
}

.reviews-arrow {
    width: 34px;
    height: 34px;
    border: none;
    background: transparent;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #222;
    transition: color 0.25s ease, opacity 0.25s ease;
}

.reviews-arrow:hover {
    color: var(--gold-color);
}

.reviews-arrow:disabled {
    opacity: 0.25;
    cursor: default;
}

.reviews-arrow svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}
.admin-table th, .admin-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    text-align: left;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}
.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--border-color);
    font-family: inherit;
}
.messages {
    padding: 15px;
    margin-bottom: 20px;
    background: #f0f0f0;
    border-left: 4px solid var(--text-color);
}

/* Legal Pages */
.legal-page-section {
    background: var(--bg-color);
}

.legal-page-container {
    max-width: 860px;
    background: #fff;
    border: 1px solid #ece8e1;
    padding: 36px 34px;
}

.legal-page-title {
    margin-bottom: 8px;
    font-size: 2.2rem;
}

.legal-page-updated {
    font-size: 0.88rem;
    color: #777;
    margin-bottom: 24px;
}

.legal-page-container h2 {
    font-size: 1.18rem;
    margin: 24px 0 8px 0;
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 0;
}

.legal-page-container p,
.legal-page-container li {
    color: #444;
    line-height: 1.8;
    font-size: 0.96rem;
}

.legal-page-container ul {
    padding-left: 18px;
}

/* Footer */
footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    background: #fff;
}
.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}
.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col a {
    font-size: 0.9rem;
    color: #666;
}
.footer-col a:hover {
    color: var(--gold-color);
}
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .product-single {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .site-header {
        padding: 14px 0;
    }
    .site-header-home {
        position: absolute;
    }
    .nav-shell {
        gap: 14px;
    }
    .brand-word {
        font-size: 1.1rem;
    }
    .brand-icon {
        width: 24px;
        height: 24px;
    }
    .hero-home {
        min-height: 100vh;
        background-size: cover;
        background-position: 66% center;
        background-repeat: no-repeat;
    }
    .desktop-nav {
        display: none;
    }
    .hamburger-menu {
        display: flex;
        color: inherit;
    }
    .hero-copy {
        margin-left: 0;
        max-width: 100%;
        padding: 0 2px;
    }
    .hero-home h1 {
        font-size: 2.55rem;
        line-height: 1.14;
        margin-bottom: 18px;
    }
    .hero-home p {
        font-size: 1.1rem;
        line-height: 1.55;
        margin-bottom: 24px;
    }
    .hero-cta {
        width: 100%;
        font-size: 1.1rem;
        padding: 12px 22px;
    }
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .section-padding {
        padding: 50px 0;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
        gap: 20px;
    }
    .product-card {
        max-width: 100%;
    }
    .product-img {
        max-width: 100%;
        height: 240px;
        max-height: 240px;
    }
    .product-img img {
        height: 240px;
        max-height: 240px;
    }
    .cart-table thead {
        display: none;
    }
    .cart-table,
    .cart-table tbody,
    .cart-table tr,
    .cart-table td {
        display: block;
        width: 100%;
    }
    .cart-table tr {
        border: 1px solid var(--border-color);
        background: #fff;
        padding: 12px;
        margin-bottom: 12px;
    }
    .cart-table td {
        border: none;
        padding: 8px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        text-align: right;
        font-size: 0.95rem;
    }
    .cart-table td::before {
        content: attr(data-label);
        color: #666;
        font-weight: 600;
        text-align: left;
    }
    .cart-table td.cart-product-cell {
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }
    .cart-table td.cart-product-cell::before {
        display: none;
    }
    .cart-item-img {
        width: 64px;
        height: 64px;
    }
    .cart-total {
        text-align: left;
        font-size: 1.1rem;
        margin: 8px 0 20px;
    }
    .cart-actions {
        text-align: left;
    }
    .cart-actions .btn {
        width: 100%;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .newsletter-form .btn {
        width: 100%;
        padding: 15px;
    }
    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .admin-container {
        margin: 20px auto;
        padding: 12px;
    }

    .admin-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-toolbar h1 {
        font-size: 1.6rem;
        margin: 0;
    }

    .admin-toolbar-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .admin-toolbar-actions .btn {
        width: 100%;
        text-align: center;
        padding: 12px 14px;
    }

    .admin-table thead {
        display: none;
    }

    .admin-table,
    .admin-table tbody,
    .admin-table tr,
    .admin-table td {
        display: block;
        width: 100%;
    }

    .admin-table tr {
        border: 1px solid var(--border-color);
        background: #fff;
        margin-bottom: 12px;
        padding: 10px 12px;
    }

    .admin-table td {
        border: none;
        padding: 6px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        text-align: right;
    }

    .admin-table td::before {
        content: attr(data-label);
        color: #666;
        font-weight: 600;
        text-align: left;
    }

    .admin-table td img {
        width: 56px;
        height: 56px;
    }

    .legal-page-container {
        padding: 24px 18px;
    }

    .legal-page-title {
        font-size: 1.8rem;
    }

    .reviews-carousel-shell {
        grid-template-columns: 30px 1fr 30px;
        gap: 10px;
    }

    .review-card {
        margin: 0;
        min-width: 100%;
        min-height: 200px;
        padding: 24px;
    }

    .product-image-container img,
    .product-gallery .main-img {
        max-height: 350px;
    }
}

/* Charmant Full Homepage Redesign */
body {
    background: #f1f1f1;
    color: #101010;
}

main {
    background: #f1f1f1;
}

.section-padding {
    padding: 88px 0;
}

.charm-features {
    background: #f1f1f1;
    padding-top: 70px;
    padding-bottom: 70px;
}

.charm-features-grid {
    max-width: 1480px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.charm-feature-card {
    background: #ececec;
    border: 1px solid #ebebeb;
    min-height: 190px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.charm-feature-card svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: #101010;
    stroke-width: 1.25;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.charm-feature-card h3 {
    font-family: var(--font-secondary);
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0;
}

.charm-signature {
    background: #f1f1f1;
    padding-top: 50px;
}

.signature-frame {
    border: 1px solid #dddddd;
    min-height: 230px;
    padding: 56px 48px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
}

.signature-left h2 {
    font-family: var(--font-secondary);
    font-size: 4.1rem;
    font-weight: 300;
    line-height: 1.14;
    letter-spacing: 0.01em;
}

.signature-dot,
.charm-section-dot {
    width: 13px;
    height: 13px;
    background: #000;
    border-radius: 50%;
}

.signature-right p {
    color: #6d6d6d;
    font-size: 1.9rem;
    line-height: 1.55;
    max-width: 620px;
}

.signature-images {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.signature-images img {
    width: 100%;
    aspect-ratio: 1.32;
    object-fit: cover;
}

.charm-newest {
    padding-top: 62px;
}

.charm-section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
}

.charm-section-head h2,
.happy-title {
    font-family: var(--font-secondary);
    font-size: 5.1rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    line-height: 1;
}

.view-all-link {
    font-size: 1.35rem;
    color: #101010;
}

.charm-section-dot {
    margin: 26px 0 22px;
}

.product-grid.charm-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 22px;
}

.storefront-card {
    max-width: 100%;
    margin: 0;
    padding-bottom: 0;
    text-align: left;
    box-shadow: none;
}

.storefront-card:hover {
    transform: none;
    box-shadow: none;
}

.storefront-card .product-img {
    width: 100%;
    max-width: 100%;
    height: 355px;
    max-height: 355px;
    margin-bottom: 14px;
    background: #ececec;
}

.storefront-card .product-img img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    transition: transform 0.35s ease;
}

.storefront-card:hover .product-img img {
    transform: scale(1.03);
}

.product-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-row-meta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    border-bottom: 1px solid #d8d8d8;
    padding: 0 0 14px;
}

.product-row-meta .product-title {
    font-size: 1.55rem;
    font-weight: 400;
    color: #111;
    margin: 0;
    line-height: 1.35;
}

.product-row-meta .product-price {
    font-size: 1.6rem;
    color: #121212;
    white-space: nowrap;
    padding-top: 2px;
}

.quick-add-form {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.storefront-card:hover .quick-add-form,
.storefront-card:focus-within .quick-add-form {
    opacity: 1;
    transform: translateY(0);
}

.quick-add-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #111;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.quick-add-btn svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: #111;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-add-btn:hover {
    background: #111;
}

.quick-add-btn:hover svg {
    stroke: #fff;
}

.happy-clients {
    padding-top: 78px;
    background: #f1f1f1;
    position: relative;
}

.happy-title {
    text-align: center;
    margin-bottom: 54px;
}

.happy-grid-wall {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
}

.happy-grid-wall img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

.happy-quote-card {
    width: min(640px, calc(100% - 36px));
    background: #ebebeb;
    border: 1px solid #e2e2e2;
    margin: -184px auto 0;
    padding: 30px 42px 42px;
    position: relative;
    z-index: 3;
}

.happy-quote-card p {
    font-size: 1.75rem;
    color: #6b6b6b;
    line-height: 1.55;
    text-align: left;
}

.happy-quote-card .signature-dot {
    margin: 0 auto 22px;
}

.charm-newsletter {
    background: #f1f1f1;
    border-top: none;
    padding-top: 84px;
    padding-bottom: 86px;
}

.newsletter-ring-icon {
    width: 126px;
    margin: 0 auto 22px;
}

.charm-newsletter h2 {
    font-family: var(--font-secondary);
    font-size: 5rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.newsletter-sub {
    color: #666;
    font-size: 1.65rem;
    margin-top: 10px;
}

.newsletter-msg {
    margin-top: 14px;
    font-size: 1.05rem;
}

.newsletter-ok {
    color: #2e7d32;
}

.newsletter-error {
    color: #c62828;
}

.charm-newsletter-form {
    max-width: 760px;
    margin-top: 32px;
    gap: 0;
}

.charm-newsletter-form input {
    background: #f0f0f0;
    border: 1px solid #d5d5d5;
    height: 56px;
    font-size: 1.1rem;
}

.charm-newsletter-form .btn {
    min-width: 150px;
    height: 56px;
    padding: 0 26px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.15rem;
}

.charm-newsletter-form .btn:hover {
    transform: none;
    box-shadow: none;
    background: #262626;
    border-color: #262626;
}

.charm-footer {
    background: #f1f1f1;
    border-top: 1px solid #dddddd;
    padding: 52px 0 22px;
}

.charm-footer-top {
    max-width: 1480px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 36px 22px;
}

.charm-footer .footer-col h4 {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
    color: #111;
    letter-spacing: 0;
}

.charm-footer .footer-col p,
.charm-footer .footer-col li,
.charm-footer .footer-col a {
    font-size: 1.05rem;
    color: #111;
    line-height: 1.62;
}

.charm-footer .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.charm-footer-brandline {
    margin-top: 44px;
}

.brandline-inner {
    max-width: 1880px;
    display: flex;
    align-items: center;
    gap: 26px;
    color: #111;
}

.brandline-icon {
    width: 118px;
    height: 118px;
    fill: none;
    stroke: currentColor;
    stroke-width: 5;
}

.brandline-inner span {
    font-size: clamp(3.2rem, 12vw, 12rem);
    line-height: 0.95;
    font-weight: 300;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-bottom {
    border-top: none;
    padding-top: 12px;
    text-align: right;
    color: #666;
}

.related-products-section {
    padding-top: 32px;
}

@media (max-width: 1200px) {
    .charm-features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .product-grid.charm-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .signature-frame {
        grid-template-columns: 1fr;
        gap: 22px;
    }
    .signature-dot {
        display: none;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 58px 0;
    }
    .charm-features-grid {
        grid-template-columns: 1fr;
    }
    .charm-feature-card {
        min-height: 148px;
    }
    .charm-feature-card h3 {
        font-size: 1.35rem;
    }
    .signature-left h2 {
        font-size: 2.25rem;
    }
    .signature-right p {
        font-size: 1.07rem;
    }
    .signature-images {
        grid-template-columns: 1fr;
    }
    .charm-section-head h2,
    .happy-title,
    .charm-newsletter h2 {
        font-size: 2.25rem;
    }
    .product-grid.charm-product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 18px 14px;
    }
    .storefront-card .product-img {
        height: 210px;
        max-height: 210px;
    }
    .product-row-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .product-row-meta .product-title {
        font-size: 0.95rem;
    }
    .product-row-meta .product-price {
        font-size: 0.95rem;
    }
    .quick-add-form {
        opacity: 1;
        transform: none;
        right: 8px;
        bottom: 8px;
    }
    .quick-add-btn {
        width: 34px;
        height: 34px;
    }
    .happy-grid-wall {
        grid-template-columns: 1fr 1fr;
    }
    .happy-grid-wall img {
        height: 220px;
    }
    .happy-quote-card {
        margin-top: -100px;
        padding: 22px 20px 24px;
    }
    .happy-quote-card p {
        font-size: 1rem;
    }
    .newsletter-sub {
        font-size: 1rem;
    }
    .charm-newsletter-form {
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .charm-newsletter-form .btn {
        width: 100%;
    }
    .charm-footer-top {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .brandline-icon {
        width: 62px;
        height: 62px;
        stroke-width: 4;
    }
    .brandline-inner {
        gap: 12px;
    }
    .footer-bottom {
        text-align: left;
    }
}

@media (min-width: 769px) {
    .mobile-nav {
        display: none;
    }
}

/* Mobile Reference Pass */
@media (max-width: 768px) {
    .site-header {
        padding: 10px 0;
        background: #f1f1f1;
    }

    .site-header-home {
        position: absolute;
        background: transparent;
        border-bottom: 0;
    }

    .nav-shell {
        gap: 10px;
        min-height: 58px;
    }

    .brand-word {
        display: none;
    }

    .brand-icon {
        width: 30px;
        height: 30px;
    }

    .desktop-nav,
    .desktop-lang-switch {
        display: none;
    }

    .header-actions {
        margin-left: auto;
        gap: 14px;
    }

    .hamburger-menu {
        display: inline-flex;
    }

    .mobile-nav {
        transform: translateX(-100%);
    }

    .mobile-nav.active {
        transform: translateX(0);
    }

    .mobile-nav-inner {
        padding-top: 96px;
    }

    .mobile-primary-links a {
        font-size: 1.6rem;
    }

    .hero-home {
        min-height: 100svh;
        background-size: cover;
        background-position: 67% center;
    }

    .hero-home .hero-overlay {
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.46) 45%, rgba(0, 0, 0, 0.14) 100%);
    }

    .hero-inner {
        padding-top: 96px;
        padding-bottom: 36px;
    }

    .hero-copy {
        margin-left: 0;
        max-width: 320px;
        padding: 0;
    }

    .hero-home h1 {
        font-size: 3.05rem;
        line-height: 1.03;
        margin-bottom: 20px;
    }

    .hero-home p {
        font-size: 0.88rem;
        line-height: 1.45;
        margin-bottom: 24px;
        max-width: 240px;
    }

    .hero-cta {
        width: 100%;
        padding: 11px 16px;
        font-size: 0.84rem;
    }

    .section-padding {
        padding: 40px 0;
    }

    .charm-features {
        padding-top: 24px;
        padding-bottom: 24px;
    }

    .charm-features-grid {
        gap: 14px;
    }

    .charm-feature-card {
        min-height: 170px;
    }

    .charm-feature-card h3 {
        font-size: 0.82rem;
    }

    .charm-signature {
        padding-top: 24px;
    }

    .signature-frame {
        border: 0;
        padding: 0;
        min-height: 0;
        gap: 10px;
    }

    .signature-left h2 {
        font-size: 1.95rem;
    }

    .signature-right p {
        font-size: 0.95rem;
    }

    .signature-images {
        display: none;
    }

    .charm-newest {
        padding-top: 20px;
    }

    .charm-section-head h2,
    .happy-title,
    .charm-newsletter h2 {
        font-size: 1.05rem;
        letter-spacing: 0.02em;
    }

    .view-all-link {
        font-size: 0.84rem;
    }

    .charm-section-dot {
        margin: 16px 0 18px;
        width: 10px;
        height: 10px;
    }

    .product-grid.charm-product-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .storefront-card .product-img {
        height: auto;
        max-height: none;
        aspect-ratio: 1 / 1;
        margin-bottom: 12px;
    }

    .storefront-card .product-img img {
        object-fit: contain;
    }

    .product-row-meta {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        border-bottom: 1px solid #d8d8d8;
        padding-bottom: 10px;
    }

    .product-row-meta .product-title {
        font-size: 0.9rem;
        margin: 0;
    }

    .product-row-meta .product-price {
        font-size: 0.82rem;
        background: #f5f5f5;
        border: 1px solid #e4e4e4;
        padding: 6px 10px;
    }

    .quick-add-form {
        opacity: 1;
        transform: none;
        right: 10px;
        top: 10px;
        bottom: auto;
    }

    .quick-add-btn {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        border-color: #111;
        background: #111;
    }

    .quick-add-btn svg {
        stroke: #fff;
    }

    .happy-clients {
        padding-top: 28px;
    }

    .happy-title {
        margin-bottom: 20px;
    }

    .happy-grid-wall {
        grid-template-columns: 1fr;
    }

    .happy-grid-wall img {
        height: 520px;
    }

    .happy-grid-wall img:nth-child(n+2) {
        display: none;
    }

    .happy-quote-card {
        margin-top: -108px;
        padding: 26px 22px 28px;
    }

    .happy-quote-card p {
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .charm-newsletter {
        padding-top: 36px;
        padding-bottom: 42px;
    }

    .newsletter-ring-icon {
        width: 84px;
        margin-bottom: 12px;
    }

    .newsletter-sub {
        margin-top: 8px;
        font-size: 0.85rem;
    }

    .charm-newsletter-form {
        margin-top: 18px;
    }

    .charm-newsletter-form input,
    .charm-newsletter-form .btn {
        height: 52px;
        font-size: 0.95rem;
    }

    .charm-footer {
        padding: 26px 0 20px;
    }

    .charm-footer-top {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .charm-footer .footer-col h4 {
        margin-bottom: 12px;
        font-size: 0.9rem;
    }

    .charm-footer .footer-col p,
    .charm-footer .footer-col li,
    .charm-footer .footer-col a {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .brandline-inner {
        margin-top: 12px;
    }

    .brandline-icon {
        width: 44px;
        height: 44px;
        stroke-width: 4;
    }

    .brandline-inner span {
        font-size: clamp(2rem, 14vw, 3rem);
        letter-spacing: 0.05em;
    }

    .footer-bottom {
        text-align: left;
        padding-top: 8px;
        font-size: 0.76rem;
    }
}

/* UI Refinement Pass */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header:not(.site-header-home),
.site-header.header-scrolled {
    background: rgba(243, 243, 243, 0.96);
    border-bottom-color: #dddddd;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.site-header-home {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
}

.site-header-home.header-scrolled .brand-lockup,
.site-header-home.header-scrolled .nav-links a,
.site-header-home.header-scrolled .cart-icon,
.site-header-home.header-scrolled .lang-switch a,
.site-header-home.header-scrolled .hamburger-menu span {
    color: #111;
}

.nav-logo {
    display: block;
    width: auto;
    max-height: 48px;
    max-width: 172px;
    object-fit: contain;
}

.brand-lockup {
    line-height: 0;
}

.desktop-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-right: 2px;
}

.mobile-lang-switch {
    display: none;
}

.lang-switch a {
    color: #101010;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-header-home .lang-switch a {
    color: #f5f5f5;
}

.site-header-home.header-scrolled .lang-switch a {
    color: #111;
}

.charm-signature .signature-images img {
    background: #ececec;
    border: 1px solid #e6e6e6;
}

.happy-clients {
    background: #f4f4f4;
    padding-top: 64px;
}

.happy-clients .container {
    max-width: 1480px;
}

.testimonials-minimal-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.testimonial-minimal-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 24px 22px;
    color: #222;
    min-height: 215px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-minimal-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-minimal-card .review-stars {
    margin-bottom: 12px;
}

.testimonial-minimal-card .review-stars svg {
    width: 14px;
    height: 14px;
    fill: #c5a059;
}

.testimonial-minimal-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
    flex: 1;
}

.testimonial-minimal-card span {
    margin-top: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #111;
}

.charm-footer {
    padding: 42px 0 20px;
}

.charm-footer-top {
    gap: 26px;
}

.footer-bottom {
    text-align: center;
    margin-top: 24px;
    border-top: 1px solid #dfdfdf;
    padding-top: 14px;
    color: #666;
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .testimonials-minimal-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-logo {
        max-height: 34px;
        max-width: 122px;
    }

    .desktop-lang-switch {
        display: none;
    }

    .mobile-lang-switch {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .mobile-lang-switch a {
        font-size: 0.75rem;
    }

    .mobile-nav-lang a {
        color: #101010;
    }

    .happy-clients {
        padding-top: 36px;
    }

    .testimonials-minimal-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .testimonial-minimal-card {
        min-height: 0;
        padding: 18px 16px;
    }

    .testimonial-minimal-card p {
        font-size: 0.9rem;
    }

    .charm-footer {
        padding: 28px 0 16px;
    }

    .charm-footer-top {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .charm-footer .footer-col {
        width: 100%;
    }

    .charm-footer .footer-col h4 {
        margin-bottom: 8px;
        font-size: 0.88rem;
    }

    .charm-footer .footer-col ul {
        gap: 6px;
    }

    .charm-footer .footer-col a,
    .charm-footer .footer-col p,
    .charm-footer .footer-col li {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .footer-bottom {
        margin-top: 14px;
        padding-top: 10px;
        text-align: left;
    }
}

/* Final Header / Footer / Testimonials Override */
.site-header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: background-color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease, color 0.35s ease;
}

.site-header .nav-logo {
    max-height: 56px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
}

.site-header:not(.site-header-home) {
    background: #ffffff;
    border-bottom: 1px solid #e7e7e7;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.site-header.site-header-home {
    background: transparent;
    border-bottom: 1px solid transparent;
    box-shadow: none;
}

.site-header.site-header-home:not(.scrolled) .nav-links a,
.site-header.site-header-home:not(.scrolled) .cart-icon,
.site-header.site-header-home:not(.scrolled) .lang-switch a {
    color: #f7f7f7;
}

.site-header.site-header-home:not(.scrolled) .hamburger-menu span {
    background-color: #f7f7f7;
}

.site-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e3e3e3;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.site-header.scrolled .nav-links a,
.site-header.scrolled .cart-icon,
.site-header.scrolled .lang-switch a {
    color: #111;
}

.site-header.scrolled .hamburger-menu span {
    background-color: #111;
}

.desktop-lang-switch,
.mobile-lang-switch {
    z-index: 2;
}

.desktop-lang-switch a,
.mobile-lang-switch a,
.mobile-nav-lang a {
    color: #111;
    opacity: 1;
}

.site-header.site-header-home:not(.scrolled) .desktop-lang-switch a,
.site-header.site-header-home:not(.scrolled) .mobile-lang-switch a {
    color: #ffffff;
}

.happy-clients .container {
    max-width: 1120px;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 16px;
    align-items: center;
}

.testimonials-viewport {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    transform: translateX(0);
    transition: transform 0.55s ease;
    will-change: transform;
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
}

.testimonial-minimal-card {
    width: min(860px, 100%);
    padding: 40px 44px;
    min-height: 300px;
    border: 1px solid #e5e5e5;
    background: #ffffff;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.04);
}

.testimonial-minimal-card p {
    font-size: 1.12rem;
    line-height: 1.75;
    color: #3f3f3f;
}

.testimonial-minimal-card span {
    font-size: 1rem;
    font-weight: 600;
}

.review-stars {
    margin-bottom: 18px;
}

.review-stars svg {
    width: 16px;
    height: 16px;
    fill: #c5a059;
}

.testimonial-nav {
    width: 42px;
    height: 42px;
    border: 1px solid #d8d8d8;
    border-radius: 50%;
    background: #ffffff;
    color: #111;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.testimonial-nav svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.testimonial-nav:hover {
    background: #111;
    border-color: #111;
    color: #fff;
}

.testimonial-dots {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.testimonial-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: 0;
    padding: 0;
    background: #cfcfcf;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.testimonial-dot.active {
    background: #111;
    transform: scale(1.15);
}

@media (max-width: 768px) {
    .site-header {
        padding: 12px 0;
    }

    .site-header.site-header-home {
        position: sticky;
        top: 0;
    }

    .nav-shell {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .site-header .nav-logo {
        max-height: 40px;
        max-width: 140px;
    }

    .desktop-nav,
    .desktop-lang-switch {
        display: none;
    }

    .header-actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .mobile-lang-switch {
        display: inline-flex;
        align-items: center;
        gap: 4px;
    }

    .mobile-lang-switch a {
        font-size: 0.78rem;
        letter-spacing: 0.06em;
    }

    .hamburger-menu {
        display: inline-flex;
    }

    .charm-footer {
        padding: 34px 0 16px;
    }

    .charm-footer-top {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .charm-footer .footer-col {
        display: block;
        width: 100%;
        text-align: left;
        align-items: flex-start;
    }

    .charm-footer .footer-col h4 {
        margin-bottom: 9px;
        font-size: 0.88rem;
    }

    .charm-footer .footer-col ul {
        gap: 6px;
    }

    .charm-footer .footer-col p,
    .charm-footer .footer-col li,
    .charm-footer .footer-col a {
        font-size: 0.92rem;
        line-height: 1.62;
        text-align: left;
    }

    .footer-bottom {
        margin-top: 16px;
        padding-top: 10px;
        text-align: left;
        font-size: 0.8rem;
    }

    .testimonials-carousel {
        grid-template-columns: 36px 1fr 36px;
        gap: 8px;
    }

    .testimonial-nav {
        width: 38px;
        height: 38px;
    }

    .testimonial-minimal-card {
        width: 100%;
        min-height: 0;
        padding: 26px 20px;
    }

    .testimonial-minimal-card p {
        font-size: 0.98rem;
        line-height: 1.65;
    }
}

/* Critical Header State Override */
.site-header .nav-logo {
    max-height: 72px !important;
    max-width: 220px !important;
}

.site-header .hamburger-menu {
    color: #111;
}

.site-header.site-header-home:not(.scrolled) {
    background: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}

.site-header.site-header-home:not(.scrolled) .nav-links a,
.site-header.site-header-home:not(.scrolled) .cart-icon,
.site-header.site-header-home:not(.scrolled) .lang-switch a,
.site-header.site-header-home:not(.scrolled) .mobile-lang-switch a,
.site-header.site-header-home:not(.scrolled) .hamburger-menu {
    color: #ffffff !important;
}

.site-header.site-header-home:not(.scrolled) .hamburger-menu span {
    background-color: #ffffff !important;
}

.site-header.scrolled {
    background: #ffffff !important;
    border-bottom: 1px solid #e5e5e5 !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06) !important;
}

.site-header.scrolled .nav-links a,
.site-header.scrolled .cart-icon,
.site-header.scrolled .lang-switch a,
.site-header.scrolled .mobile-lang-switch a,
.site-header.scrolled .hamburger-menu {
    color: #111111 !important;
}

.site-header.scrolled .hamburger-menu span {
    background-color: #111111 !important;
}

.desktop-lang-switch a,
.mobile-lang-switch a {
    opacity: 1 !important;
    font-weight: 500;
}

@media (max-width: 768px) {
    .site-header .nav-logo {
        max-height: 52px !important;
        max-width: 170px !important;
    }
}

/* HARD OVERRIDE: Header + Hero */
header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 999 !important;
    background-color: transparent !important;
    transition: all 0.3s ease-in-out !important;
}

header a,
header .nav-link,
header .cart-icon,
header .lang-switch,
header .lang-switch a,
header .mobile-lang-switch a,
header .desktop-nav a,
header .hamburger-menu {
    color: #ffffff !important;
}

header .hamburger-menu span {
    background-color: #ffffff !important;
}

header.scrolled {
    background-color: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

header.scrolled a,
header.scrolled .nav-link,
header.scrolled .cart-icon,
header.scrolled .lang-switch,
header.scrolled .lang-switch a,
header.scrolled .mobile-lang-switch a,
header.scrolled .desktop-nav a,
header.scrolled .hamburger-menu {
    color: #000000 !important;
}

header.scrolled .hamburger-menu span {
    background-color: #000000 !important;
}

header .logo img,
.nav-logo {
    max-height: 90px !important;
    width: auto !important;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    header .logo img,
    .nav-logo {
        max-height: 72px !important;
    }
}

.hero-home {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Admin UX and Responsive Hardening */
.admin-page header,
.admin-page .admin-topbar {
    position: static !important;
    top: auto !important;
    left: auto !important;
    width: auto !important;
    z-index: auto !important;
    background: #ffffff !important;
    box-shadow: none !important;
    border-bottom: 1px solid #e7e7e7 !important;
}

.admin-page header a,
.admin-page .admin-topbar a,
.admin-page .admin-topbar .btn {
    color: #111 !important;
}

.admin-page .admin-container {
    max-width: 1160px;
    margin: 28px auto 36px;
}

.admin-page .admin-toolbar {
    gap: 16px;
}

.admin-page .admin-toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.admin-product-form .admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.admin-product-form .admin-form-grid .form-group:nth-child(4),
.admin-product-form .admin-form-grid .form-group:nth-child(5),
.admin-product-form .admin-form-grid .form-group:last-child {
    grid-column: 1 / -1;
}

.admin-product-form .form-help {
    display: block;
    margin-top: 6px;
    color: #666;
    font-size: 0.85rem;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-pagination {
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.admin-login-page {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    padding: 16px;
}

.admin-login-box {
    background: #fff;
    border: 1px solid #e6e6e6;
    width: 100%;
    max-width: 420px;
    padding: 32px;
}

.admin-login-box h2 {
    margin-bottom: 16px;
    text-align: center;
}

@media (max-width: 900px) {
    .admin-product-form .admin-form-grid {
        grid-template-columns: 1fr;
    }

    .admin-page .admin-toolbar-actions .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .admin-page .admin-container {
        margin: 16px auto 22px;
        padding: 12px;
    }

    .admin-page .header-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .admin-page .logo {
        font-size: 1.05rem;
        font-weight: 600;
        color: #111 !important;
    }

    .admin-page .admin-toolbar h1 {
        font-size: 1.3rem;
        margin: 0;
    }

    .admin-page .admin-toolbar {
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .admin-pagination {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-pagination .btn {
        width: 100%;
        text-align: center;
    }

    .admin-login-box {
        padding: 22px 16px;
    }
}

/* Internal pages: force solid header and readable nav */
header.internal-header {
    background-color: #ffffff !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 999 !important;
    border: 0 !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

header.internal-header a,
header.internal-header .nav-link,
header.internal-header .cart-icon,
header.internal-header .lang-switch,
header.internal-header .lang-switch a,
header.internal-header .desktop-nav a,
header.internal-header .mobile-lang-switch a,
header.internal-header .hamburger-menu {
    color: #000000 !important;
}

header.internal-header .hamburger-menu span {
    background-color: #000000 !important;
}

body.internal-page main {
    padding-top: 190px !important; /* Adjusted for significantly larger logo */
    margin-top: 0 !important;
    border-top: 0 !important;
}

body.internal-page .site-header + main {
    border-top: 0 !important;
}

@media (max-width: 768px) {
    body.internal-page main {
        padding-top: 130px !important; /* Adjusted for larger mobile logo */
    }
}

/* Final logo visibility bump */
header .nav-logo {
    height: auto !important;
    max-height: 160px !important;
    width: auto !important;
    max-width: 400px !important;
    object-fit: contain !important;
    display: block;
    margin: 0;
    padding: 0 !important;
}

.site-header .nav-shell {
    min-height: 120px;
}

@media (max-width: 768px) {
    header .nav-logo {
        height: auto !important;
        max-height: 120px !important;
        max-width: 300px !important;
    }

    .site-header .nav-shell {
        min-height: 130px;
        padding: 10px 16px;
    }
}

/* Product Grid + Signature Collection Fixes */
.storefront-card .product-img {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
    overflow: hidden;
}

.storefront-card .product-img img {
    display: block !important;
    vertical-align: middle !important;
}

.storefront-card .product-row-meta {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 3px !important;
    padding-top: 10px !important;
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
}

.storefront-card .product-row-meta .product-title {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.96rem !important;
    font-weight: 400 !important;
    line-height: 1.45 !important;
    text-align: left !important;
    margin: 0 !important;
    color: #111 !important;
}

.storefront-card .product-row-meta .product-price {
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #1c1c1c !important;
    background: transparent !important;
    border: 0 !important;
}

@media (max-width: 768px) {
    .signature-images {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-top: 16px !important;
    }

    .signature-images img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 180px !important;
        object-fit: cover !important;
    }

    .storefront-card .product-row-meta .product-title {
        font-size: 0.9rem !important;
    }

    .storefront-card .product-row-meta .product-price {
        font-size: 0.86rem !important;
    }
}

/* Mobile single-product CTA stacking fix */
@media (max-width: 768px) {
    /* Ensure the main product container doesn't trap the fixed CTA behind later sections */
    .product-single {
        position: relative !important;
        z-index: 10 !important;
    }

    .product-add-to-cart-wrapper {
        position: fixed !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        z-index: 99999 !important; /* Absolute top priority */
        background-color: #ffffff !important;
        box-shadow: 0 -8px 22px rgba(0, 0, 0, 0.15) !important;
        border-top: 1px solid #ececec !important;
        padding: 12px 14px calc(12px + env(safe-area-inset-bottom)) !important;
        margin: 0 !important;
        display: block !important;
    }

    .product-single-right {
        padding-bottom: 120px !important;
    }

    .product-accordions {
        margin-bottom: 20px !important;
    }

    .related-products-section,
    .reviews-section,
    footer {
        position: relative !important;
        z-index: 1 !important; /* Keep these below the fixed CTA */
    }
}

/* --- HARD MOBILE LOGO OVERRIDE --- */
@media (max-width: 768px) {
    /* 1. Force the image itself to be larger */
    header .logo img, header .nav-logo, header a.navbar-brand img, .site-header .nav-logo {
        max-height: 85px !important; /* Significantly larger minimum size */
        height: 85px !important;
        width: auto !important;
        min-height: 70px !important;
        object-fit: contain !important;
        display: block !important;
    }

    /* 2. Remove restrictions from the container wrapping the logo */
    header .logo, header a.navbar-brand, .brand-lockup {
        display: block !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    /* 3. Ensure the mobile header itself is tall enough so the logo doesn't bleed out */
    header, .site-header .nav-shell {
        min-height: 100px !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
}
