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

/* ============================================================
   PRODUCT PAGES — Uptown Healing (LV-inspired luxe)
   Used by all product detail pages. Single source of truth.
   ============================================================ */

:root {
    /* Refined sage green palette */
    --primary: #7FA99B;
    --primary-light: #9BBDB0;
    --primary-dark: #6A8F81;
    --secondary: #C5D6CE;
    --accent: #8FB5A5;
    --light: #F7F9F8;
    --dark: #2F3E36;
    --text: #3A4A42;
    --white: #ffffff;
    --gray-50: #FAFBFA;
    --gray-100: #F5F7F6;
    --gray-200: #E8EBE9;
    --gray-300: #D5DAD7;
    --gray-400: #B4BCB8;
    --gray-500: #93A099;
    --gray-600: #728078;
    --gray-700: #556058;
    --gray-800: #3A4A42;
    --gray-900: #1F2821;

    /* Luxe tokens */
    --lux-ink: #1b231d;     /* deep CTA hover */
    --lux-paper: #f6f5f1;   /* warm field / soft fills */
    --lux-line: #e4e2db;    /* hairline */
    --lux-muted: #8c8f88;   /* muted label gray */
    --lux-gold: #c2a14d;    /* restrained star gold */

    --font-display: 'Cormorant Garamond', serif;
    --font-sans: 'Inter', sans-serif;
    --font-nav: 'Libre Baskerville', serif;

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 2px 8px rgba(127, 169, 155, 0.08);
    --shadow-lg: 0 8px 24px rgba(127, 169, 155, 0.12);
    --border-radius: 0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   HEADER
======================================== */

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--lux-line);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: none;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.header-main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 40px;
    padding: 20px 0;
    min-height: 80px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 32px;
    justify-content: flex-start;
}

.header-left nav {
    display: flex;
    gap: 28px;
    align-items: center;
}

.header-left nav > a,
.header-left nav .nav-item > a {
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-nav);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition);
    padding: 8px 0;
    white-space: nowrap;
}

.header-left nav > a:hover,
.header-left nav .nav-item > a:hover {
    color: var(--primary);
}

.nav-item {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    min-width: 800px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dropdown-column h4 {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--lux-line);
}

.dropdown-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-column ul li {
    margin-bottom: 10px;
}

.dropdown-column ul li a {
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    transition: var(--transition);
    display: block;
    padding: 6px 0;
}

.dropdown-column ul li a:hover {
    color: var(--primary);
    padding-left: 8px;
}

/* ========================================
   LEARN MEGA-MENU (two-zone)
   Caps the taller Learn dropdown to the viewport and lets the
   lower (Transplant Care) zone scroll into reach. 120px ≈ sticky
   header + a small gap.
======================================== */

.dropdown-menu-learn {
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

.dropdown-menu-learn .learn-zone-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    margin: 0 0 14px;
}

.dropdown-menu-learn .learn-zone-divider {
    height: 1px;
    background: var(--gray-200, #e5e7eb);
    margin: 22px 0;
}

.dropdown-menu-learn .dropdown-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 66%;
}

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

.logo {
    display: block;
}

.logo img {
    height: 64px;
    width: auto;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
}

.search-toggle {
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
    font-size: 18px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle:hover {
    color: var(--primary);
}

.account-link a {
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-nav);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    transition: var(--transition);
    white-space: nowrap;
}

.account-link a:hover {
    color: var(--primary);
}

.cart-link a {
    color: var(--text);
    text-decoration: none;
    font-size: 20px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    position: relative;
}

.cart-link a:hover {
    color: var(--primary);
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--dark);
    color: var(--white);
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0 4px;
    font-family: var(--font-sans);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    padding-top: 100px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-overlay-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.search-overlay .search-form {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.search-overlay input {
    width: 100%;
    padding: 24px 60px 24px 24px;
    border: none;
    font-size: 18px;
    font-weight: 300;
    color: var(--text);
    font-family: var(--font-sans);
}

.search-overlay input::placeholder {
    color: var(--gray-400);
}

.search-overlay input:focus {
    outline: none;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: var(--white);
    border: none;
    color: var(--text);
    font-size: 32px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-close:hover {
    background: var(--dark);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 20px;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-menu nav a {
    color: var(--text);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 12px 0;
    border-bottom: 1px solid var(--lux-line);
    transition: color 0.2s;
}

.mobile-menu nav a:hover {
    color: var(--primary);
}

/* ========================================
   PRODUCT DETAIL
======================================== */

.product-detail {
    padding: 72px 0;
    background: white;
}

.product-container {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 72px;
    align-items: start;
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    width: 100%;
    height: 620px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    margin-bottom: 20px;
    border: none;
    background: linear-gradient(165deg, var(--lux-paper) 0%, #ecebe5 100%);
    cursor: zoom-in;
    position: relative;
}

.main-image::after {
    display: none;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    pointer-events: none;
}

.main-image:hover img {
    transform: scale(1.04);
}

.main-image img.changing {
    opacity: 0;
}

.gallery-nav {
    display: none !important;
}

.image-counter {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(27, 35, 29, 0.55);
    color: white;
    padding: 8px 16px;
    border-radius: 0;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    z-index: 10;
    backdrop-filter: blur(6px);
}

/* Thumbnails */
.thumbnail-gallery {
    display: flex;
    gap: 12px;
    margin-top: 15px;
    overflow-x: auto;
    padding: 5px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--gray-200);
}

.thumbnail-gallery::-webkit-scrollbar {
    height: 6px;
}

.thumbnail-gallery::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 3px;
}

.thumbnail-gallery::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.thumbnail {
    flex-shrink: 0;
    width: 66px;
    height: 66px;
    border: 1px solid var(--lux-line);
    border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
    padding: 0;
    position: relative;
}

.thumbnail::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s ease;
}

.thumbnail:hover::after {
    background: rgba(0, 0, 0, 0.06);
}

.thumbnail.active {
    border-color: var(--dark);
    box-shadow: none;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Zoom Overlay */
.zoom-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: default;
}

.zoom-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.zoom-overlay img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    transform-origin: center center;
    transition: none;
    border-radius: 0;
    user-select: none;
    -webkit-user-drag: none;
    position: relative;
}

.zoom-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 28px;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    color: var(--dark);
}

.zoom-close:hover {
    transform: scale(1.1) rotate(90deg);
    background: var(--dark);
    color: white;
}

.zoom-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 30px;
    display: flex;
    gap: 15px;
    z-index: 10002;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.zoom-btn {
    width: 45px;
    height: 45px;
    border: none;
    background: var(--dark);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.zoom-btn:hover {
    background: var(--lux-ink);
    transform: scale(1.1);
}

.zoom-btn:active {
    transform: scale(0.95);
}

.zoom-instruction {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    border-radius: 0;
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.04em;
    color: var(--dark);
    z-index: 10002;
}

/* Product Info */
.product-info {
    padding-top: 6px;
}

.product-category {
    color: var(--lux-muted);
    font-family: var(--font-sans);
    font-size: 10.5px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 18px;
}

.product-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.6vw, 42px);
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 16px;
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}

.stars {
    color: var(--lux-gold);
    font-size: 15px;
    letter-spacing: 2px;
}

.rating-text {
    color: var(--lux-muted);
    font-family: var(--font-sans);
    font-size: 12.5px;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--lux-line);
}

.current-price {
    font-family: var(--font-sans);
    font-size: 21px;
    font-weight: 500;
    color: var(--dark);
    letter-spacing: 0.01em;
}

.product-description {
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    color: var(--gray-700);
    line-height: 1.95;
    max-width: 46ch;
    margin-bottom: 36px;
}

/* Options */
.product-options {
    margin-bottom: 35px;
}

.option-group {
    margin-bottom: 25px;
}

.option-label {
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 10.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-700);
    margin-bottom: 14px;
    display: block;
}

/* Format Options */
.format-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.format-option {
    padding: 15px 18px;
    border: 1px solid var(--lux-line);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.25s ease;
    background: var(--white);
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--text);
    font-size: 12.5px;
    letter-spacing: 0.04em;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.format-option:hover {
    border-color: var(--dark);
    background-color: var(--white);
    transform: none;
    box-shadow: none;
}

.format-option.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
    box-shadow: none;
}

.format-description {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0;
    opacity: 0.7;
}

.format-option.active .format-description {
    opacity: 0.85;
}

/* Size Options */
.size-options {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.size-option {
    padding: 12px 24px;
    border: 1px solid var(--lux-line);
    border-radius: 0;
    cursor: pointer;
    transition: all 0.25s ease;
    background: white;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12.5px;
    letter-spacing: 0.04em;
    color: var(--text);
    min-width: 80px;
    text-align: center;
}

.size-option:hover:not(:disabled) {
    border-color: var(--dark);
    background-color: var(--white);
}

.size-option.selected {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.size-option:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    background-color: var(--gray-100);
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 15px;
}

.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--lux-line);
    border-radius: 0;
    overflow: hidden;
}

.quantity-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 18px;
    color: var(--gray-700);
    transition: var(--transition);
}

.quantity-btn:hover {
    background: var(--lux-paper);
    color: var(--dark);
}

.quantity-input {
    width: 60px;
    height: 40px;
    border: none;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    appearance: textfield;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Action Buttons */
.product-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.btn {
    padding: 18px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Primary CTA — LV pill, text only */
.btn-primary {
    background: var(--dark);
    color: white;
    flex: 1;
    border-radius: 100px;
    padding: 18px 42px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    box-shadow: none;
}

.btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(27, 35, 29, 0.22);
    background: var(--lux-ink);
}

.btn-primary:disabled {
    background: var(--gray-300);
    color: var(--gray-600);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Add to Cart button gets its background set inline by JS — force the luxe dark. */
#add-to-cart-btn {
    background: var(--dark) !important;
}
#add-to-cart-btn:hover:not(:disabled) {
    background: var(--lux-ink) !important;
}
#add-to-cart-btn:disabled {
    background: var(--gray-300) !important;
}

.product-actions .btn i {
    display: none;
}

.btn-outline {
    border: 1px solid var(--dark);
    background: white;
    color: var(--dark);
    border-radius: 100px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.btn-outline:hover {
    background: var(--dark);
    color: white;
}

/* Product Features — hairline strip */
.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
    padding: 28px 0;
    background: transparent;
    border: none;
    border-top: 1px solid var(--lux-line);
    border-bottom: 1px solid var(--lux-line);
    border-radius: 0;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-icon {
    color: var(--lux-muted);
    font-size: 15px;
}

.feature-text {
    font-family: var(--font-sans);
    font-size: 12.5px;
    color: var(--gray-700);
}

/* Product Tabs */
.product-tabs {
    margin-top: 72px;
}

.tab-navigation {
    display: flex;
    border-bottom: 1px solid var(--lux-line);
    margin-bottom: 36px;
}

.tab-btn {
    padding: 16px 26px;
    background: none;
    border: none;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--lux-muted);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-btn:hover {
    color: var(--dark);
    background-color: transparent;
}

.tab-btn.active {
    color: var(--dark);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--dark);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.tab-pane {
    padding: 20px 0;
}

.tab-pane h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 28px;
    color: var(--dark);
    margin-bottom: 8px;
}

.tab-pane h4,
.step-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
}

.tab-pane p {
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.85;
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 15px 0;
    border-bottom: 1px solid var(--lux-line);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.85;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li strong {
    font-weight: 600;
    color: var(--dark);
}

.benefit-icon {
    color: var(--lux-muted);
    font-size: 18px;
    margin-top: 2px;
}

/* Usage Instructions */
.usage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.usage-step {
    text-align: center;
    padding: 30px;
    background: transparent;
    border-radius: 0;
    border: 1px solid var(--lux-line);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 18px;
    margin: 0 auto 20px;
}

.step-title {
    margin-bottom: 10px;
    color: var(--dark);
}

/* Ingredients Box */
.ingredients-box {
    list-style: none;
    padding: 0;
}

.ingredients-box li {
    padding: 8px 0;
    color: var(--gray-700);
    font-family: var(--font-sans);
    font-weight: 300;
    font-size: 14px;
    line-height: 1.85;
}

/* ========================================
   REVIEWS
======================================== */

.reviews-summary-section {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 40px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 0;
    border: 1px solid var(--lux-line);
    margin-bottom: 40px;
    box-shadow: none;
}

.reviews-summary-left {
    text-align: center;
}

.average-rating-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 600;
    color: var(--dark);
    line-height: 1;
}

.rating-stars {
    color: var(--lux-gold);
    font-size: 20px;
    letter-spacing: 2px;
}

.rating-count {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--lux-muted);
    margin-top: 8px;
}

.reviews-summary-right {
    flex: 1;
}

.rating-bars {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-bar-row {
    display: grid;
    grid-template-columns: 40px 1fr 50px 60px;
    align-items: center;
    gap: 12px;
}

.bar-label {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: right;
}

.rating-bar-container {
    height: 6px;
    background: var(--gray-200);
    border-radius: 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    min-width: 100px;
}

.rating-bar-fill {
    height: 100%;
    background: var(--dark);
    border-radius: 0;
    transition: width 0.5s ease;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0%;
}

.bar-percentage {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    text-align: right;
}

.bar-count {
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--lux-muted);
    text-align: left;
}

.reviews-summary-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.btn-write-review {
    background: transparent;
    color: var(--dark);
    border: 1px solid var(--dark);
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: none;
}

.btn-write-review:hover {
    background: var(--dark);
    color: white;
    transform: none;
    box-shadow: none;
}

/* Reviews Container */
.reviews-container {
    margin-bottom: 60px;
}

.review-success-message {
    background: var(--lux-paper);
    color: var(--dark);
    padding: 20px;
    border-radius: 0;
    margin-bottom: 20px;
    display: none;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--lux-line);
    font-family: var(--font-sans);
}

.review-success-message.show {
    display: flex;
}

.review-item {
    background: white;
    padding: 28px;
    border-radius: 0;
    margin-bottom: 20px;
    border: 1px solid var(--lux-line);
    box-shadow: none;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-author-name {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark);
    font-size: 18px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--lux-muted);
    font-family: var(--font-sans);
    font-size: 13px;
}

.verified-badge {
    background: transparent;
    color: var(--dark);
    padding: 3px 8px;
    border: 1px solid var(--lux-line);
    border-radius: 0;
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.review-date {
    color: var(--lux-muted);
    font-size: 13px;
}

.review-rating {
    color: var(--lux-gold);
    font-size: 16px;
}

.review-title {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 18px;
}

.review-content {
    color: var(--gray-700);
    font-family: var(--font-sans);
    line-height: 1.7;
    font-size: 14px;
}

/* Admin Response */
.admin-response {
    background: var(--lux-paper);
    border-left: 2px solid var(--dark);
    border-radius: 0;
    padding: 22px 24px;
    margin-top: 20px;
    box-shadow: none;
    animation: adminResponseFadeIn 0.3s ease-in;
}

.admin-response-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.admin-response-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--dark);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: none;
}

.admin-response-icon i {
    animation: leafPulse 2s ease-in-out infinite;
}

.admin-response-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-response-title {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--dark);
}

.admin-response-date {
    font-family: var(--font-sans);
    font-size: 12px;
    color: var(--lux-muted);
}

.admin-response-text {
    font-family: var(--font-sans);
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-800);
    padding-left: 50px;
}

/* Review Modal */
.review-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
    backdrop-filter: blur(5px);
}

.review-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.review-modal {
    background: white;
    border-radius: 0;
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
    position: relative;
}

.review-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid var(--lux-line);
    position: sticky;
    top: 0;
    background: white;
    border-radius: 0;
    z-index: 10;
}

.review-modal-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.review-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gray-100);
    color: var(--gray-600);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.2s ease;
}

.review-modal-close:hover {
    background: var(--dark);
    color: white;
    transform: rotate(90deg);
}

.review-modal-body {
    padding: 30px;
}

.review-modal-subtitle {
    color: var(--lux-muted);
    font-family: var(--font-sans);
    font-size: 13px;
    margin-bottom: 25px;
}

.review-form {
    display: grid;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: var(--font-sans);
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--lux-line);
    border-radius: 0;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--dark);
    box-shadow: 0 0 0 3px rgba(47, 62, 54, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-sans);
}

.star-rating-input {
    display: flex;
    gap: 5px;
    font-size: 32px;
    padding: 10px 0;
}

.star-rating-input .star {
    cursor: pointer;
    color: var(--gray-300);
    transition: all 0.2s ease;
    user-select: none;
}

.star-rating-input .star:hover,
.star-rating-input .star.selected {
    color: var(--lux-gold);
    transform: scale(1.1);
}

.review-modal-footer {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--lux-line);
}

.btn-cancel {
    flex: 1;
    padding: 14px 30px;
    border: 1px solid var(--dark);
    border-radius: 100px;
    background: white;
    color: var(--dark);
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cancel:hover {
    background: var(--dark);
    color: white;
    border-color: var(--dark);
}

.form-submit {
    flex: 2;
    background: var(--dark);
    color: white;
    padding: 14px 30px;
    border: none;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(27, 35, 29, 0.22);
    background: var(--lux-ink);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.review-modal::-webkit-scrollbar {
    width: 8px;
}

.review-modal::-webkit-scrollbar-track {
    background: var(--gray-100);
}

.review-modal::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

.review-modal::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

body.modal-open {
    overflow: hidden;
}

.no-reviews {
    text-align: center;
    padding: 40px;
    color: var(--lux-muted);
    font-family: var(--font-sans);
    background: var(--lux-paper);
    border-radius: 0;
}

.reviews-loading {
    text-align: center;
    padding: 40px;
    color: var(--lux-muted);
    font-family: var(--font-sans);
}

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-300);
    border-top-color: var(--dark);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 50%;
    border-top-color: var(--dark);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   RELATED PRODUCTS
======================================== */

.related-products {
    padding: 80px 0;
    background: white;
    border-top: 1px solid var(--lux-line);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 3.4vw, 44px);
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 52px;
    height: 1px;
    background: var(--primary);
    margin: 20px auto 0;
}

.section-subtitle {
    font-family: var(--font-sans);
    font-size: 13.5px;
    color: var(--lux-muted);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    border: 1px solid var(--lux-line);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(27, 35, 29, 0.10);
    border-color: var(--dark);
}

.product-card a {
    text-decoration: none;
    color: inherit;
}

.product-card-image {
    height: 300px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-card-info {
    padding: 22px 20px;
}

.product-card-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.product-card-price {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--dark);
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    background-color: var(--dark);
    color: var(--gray-300);
    padding: 70px 0 0;
    margin-top: 80px;
}

.footer-main {
    padding: 0 0 40px;
}

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

.footer-widget {
    margin-bottom: 0;
}

.footer-widget.footer-about {
    padding-right: 0;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-logo img {
    height: 80px;
}

.footer-description {
    margin-bottom: 24px;
    color: var(--gray-400);
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 300;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.widget-title {
    color: white;
    font-family: var(--font-sans);
    font-size: 12px;
    margin-bottom: 24px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.widget-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.widget-menu li {
    margin-bottom: 12px;
}

.widget-menu a {
    color: var(--gray-400);
    text-decoration: none;
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 300;
    transition: color 0.2s;
}

.widget-menu a:hover {
    color: var(--white);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    padding: 32px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-description {
    color: var(--gray-400);
    font-family: var(--font-sans);
    font-size: 13.5px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: var(--font-sans);
    font-size: 14px;
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(127, 169, 155, 0.1);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--gray-500);
}

.newsletter-submit {
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    cursor: pointer;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: var(--transition);
    border-radius: 0;
}

.newsletter-submit:hover {
    background: var(--primary-dark);
}

.newsletter-privacy {
    color: var(--gray-500);
    font-family: var(--font-sans);
    font-size: 12px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.copyright {
    color: var(--gray-500);
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.04em;
}

/* Loading indicator */
.loading {
    text-align: center;
    padding: 40px;
    color: var(--gray-500);
    font-size: 18px;
}

.loading::after {
    content: "...";
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { content: "."; }
    40% { content: ".."; }
    60%, 100% { content: "..."; }
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1200px) {
    .container { padding: 0 30px; }
    .header-container { padding: 0 30px; }
    .footer-widgets { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer-newsletter { grid-column: 1 / -1; }
    .dropdown-menu { min-width: 700px; }
    .header-left nav { gap: 20px; }
    .header-left nav > a,
    .header-left nav .nav-item > a { font-size: 10.5px; letter-spacing: 0.16em; }
}

@media (max-width: 992px) {
    .header-main { grid-template-columns: auto 1fr auto; gap: 20px; }
    .mobile-menu-toggle { display: block; }
    .header-left nav { display: none; }

    .product-container { grid-template-columns: 1fr; gap: 40px; }
    .product-gallery { position: static; }
    .main-image { height: 460px; }

    .products-grid { grid-template-columns: repeat(2, 1fr); }

    .footer-widgets { grid-template-columns: repeat(2, 1fr); }
    .footer-widget.footer-about { grid-column: 1 / -1; text-align: center; padding-right: 0; }
    .footer-logo img { height: 120px; }
    .social-links { justify-content: center; }

    .reviews-summary-section { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .reviews-summary-left { padding-bottom: 20px; border-bottom: 1px solid var(--lux-line); }
    .reviews-summary-right { padding-bottom: 20px; border-bottom: 1px solid var(--lux-line); }
    .rating-bar-row { grid-template-columns: 50px 1fr 60px 70px; }
    .reviews-summary-actions { width: 100%; }
    .btn-write-review { width: 100%; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .header-container { padding: 0 20px; }
    .header-main { padding: 15px 0; min-height: 70px; }
    .logo img { height: 50px; }
    .header-right { gap: 15px; }
    .account-link { display: none; }
    .search-toggle { font-size: 18px; }
    .cart-link a { font-size: 18px; }

    .product-features { grid-template-columns: 1fr; gap: 15px; padding: 24px 0; }
    .products-grid { grid-template-columns: 1fr; gap: 20px; }
    .format-options { grid-template-columns: 1fr; }
    .size-options { justify-content: stretch; }
    .size-option { flex: 1; min-width: 0; }
    .product-actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }

    .tab-navigation { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .tab-navigation::-webkit-scrollbar { display: none; }
    .tab-btn { padding: 14px 18px; white-space: nowrap; }

    .usage-steps { grid-template-columns: 1fr; gap: 20px; }

    .footer-widgets { grid-template-columns: 1fr; gap: 40px; }
    .footer-newsletter { grid-column: 1; }
    .newsletter-form { flex-direction: column; }
    .newsletter-submit { width: 100%; padding: 14px 24px; }

    .related-products { padding: 60px 0; }
    .section-header { margin-bottom: 40px; }

    .review-modal { max-width: 95%; max-height: 95vh; }
    .review-modal-header { padding: 20px; }
    .review-modal-title { font-size: 22px; }
    .review-modal-body { padding: 20px; }
    .form-row { grid-template-columns: 1fr; gap: 15px; }
    .review-modal-footer { flex-direction: column; }
    .btn-cancel, .form-submit { width: 100%; }
    .star-rating-input { justify-content: center; font-size: 28px; }

    .reviews-summary-section { padding: 25px 20px; gap: 20px; }
    .rating-number { font-size: 48px; }
    .rating-stars { font-size: 18px; }
    .rating-bar-row { grid-template-columns: 35px 1fr 45px 50px; gap: 8px; }
    .bar-label, .bar-percentage, .bar-count { font-size: 12px; }

    .review-item { padding: 22px 16px; }
    .review-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .review-author { flex-direction: column; align-items: flex-start; gap: 8px; }
    .review-meta { flex-wrap: wrap; }
    .admin-response { padding: 16px; }
    .admin-response-text { padding-left: 0; margin-top: 12px; }

    .zoom-controls { bottom: 20px; padding: 10px 15px; gap: 10px; }
    .zoom-btn { width: 40px; height: 40px; font-size: 18px; }
    .zoom-instruction { font-size: 12px; padding: 8px 15px; top: 20px; }
    .zoom-close { width: 40px; height: 40px; font-size: 24px; }
}

@media (max-width: 576px) {
    .product-detail { padding: 40px 0; }
    .product-title { font-size: clamp(26px, 8vw, 34px); }
    .product-category { font-size: 10px; letter-spacing: 0.26em; }
    .product-description { font-size: 14px; }
    .main-image { height: 360px; }
    .thumbnail { width: 60px; height: 60px; }
    .option-label { font-size: 10px; }
    .format-option, .size-option { font-size: 12px; padding: 12px 16px; }
    .format-description { font-size: 11px; }
    .product-features { padding: 20px 0; }
    .feature-text { font-size: 12px; }
    .product-tabs { margin-top: 56px; }
    .tab-btn { padding: 12px 14px; font-size: 10.5px; }
    .related-products { padding: 40px 0; }
    .product-card-image { height: 240px; }
    .product-card-title { font-size: 18px; }
    .product-card-price { font-size: 15px; }
    .image-counter { font-size: 11px; padding: 6px 12px; }
    .quantity-btn { width: 35px; height: 35px; font-size: 16px; }
    .quantity-input { width: 50px; height: 35px; font-size: 15px; }
    .rating-number { font-size: 40px; }
    .star-rating-input { font-size: 24px; }
    .review-modal-title { font-size: 20px; }
}

/* ========================================
   ANIMATIONS & UTILITIES
======================================== */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-50px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes adminResponseFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes leafPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideOut {
    from { transform: translateX(0); opacity: 1; }
    to { transform: translateX(100%); opacity: 0; }
}

.notification {
    animation: slideIn 0.3s ease;
    font-family: var(--font-sans);
}

html {
    scroll-behavior: smooth;
}

::selection { background: var(--primary); color: white; }
::-moz-selection { background: var(--primary); color: white; }

*:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

@media print {
    .site-header,
    .site-footer,
    .related-products,
    .product-actions,
    .product-tabs,
    .search-overlay,
    .zoom-overlay {
        display: none !important;
    }
    .product-container { grid-template-columns: 1fr; }
    .product-info { page-break-inside: avoid; }
}

@media (prefers-contrast: high) {
    :root { --gray-300: #999; --gray-600: #333; --lux-line: #999; }
    .btn { border: 2px solid currentColor; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Utility classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.hidden { display: none !important; }
.visible { display: block !important; }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}
.clearfix::after { content: ""; display: table; clear: both; }