@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');

: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 {
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(5px);
    z-index: 100;
}

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

.logo img {
    max-height: 140px;
    display: block;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

nav a:hover {
    color: var(--gold-color);
}

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

.cart-icon {
    font-size: 1.2rem;
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--text-color);
    color: var(--bg-color);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
}

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

.lang-switch a.active {
    font-weight: bold;
    border-bottom: 1px solid #000;
}

/* Mobile Navigation Hidden by Default */
.mobile-nav {
    display: none;
    background: #fff;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
}
.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.mobile-nav a {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.mobile-nav.active {
    display: block;
}
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}
.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    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);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('https://images.unsplash.com/photo-1599643478524-fb66f70d00f0?q=80&w=1920&auto=format&fit=crop');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.6rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.hero .btn {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.hero .btn:hover {
    background: #ffffff;
    color: #000000;
}

.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);
}

.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 {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px;
        background: #fff;
        box-shadow: 0 -5px 15px rgba(0,0,0,0.05);
        z-index: 99;
        margin: 0;
    }
    
    .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;
    }
    .hero {
        height: 68vh;
        min-height: 420px;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }
    .desktop-nav {
        display: none;
    }
    .hamburger-menu {
        display: flex;
    }
    .hero h1 {
        font-size: 2.4rem;
    }
    .hero p {
        font-size: 1.1rem;
    }
    .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;
    }
}
