/* ============================================================
   LUSSO DIGITALE — Main Stylesheet
   Luxury Italian Electronics E-Commerce
   ============================================================ */

/* ------------------------------------------------------------
   CSS Custom Properties
   ------------------------------------------------------------ */
:root {
    /* Colors */
    --color-primary:        #0A0A0A;
    --color-white:          #FFFFFF;
    --color-gold:           #C9A96E;
    --color-rose-gold:      #B8967A;
    --color-ivory:          #F7F5F0;
    --color-carbon:         #111111;
    --color-text-primary:   #1A1A1A;
    --color-text-secondary: #999999;
    --color-text-dark:      #E8E4DD;
    --color-border:         #D4C5A9;
    --color-error:          #8B2F2F;
    --color-success:        #2F5B3A;
    --color-card-dark:      #141414;
    --color-card-img:       #1A1A1A;

    /* Typography */
    --font-heading:  'Cormorant Garamond', Georgia, serif;
    --font-body:     'Jost', 'Helvetica Neue', Arial, sans-serif;
    --font-accent:   'Playfair Display', Georgia, serif;

    /* Font Sizes */
    --fs-h1:    3.5rem;
    --fs-h2:    2.5rem;
    --fs-h3:    1.75rem;
    --fs-h4:    1.25rem;
    --fs-body:  1rem;
    --fs-small: 0.875rem;
    --fs-price: 2rem;

    /* Line Heights */
    --lh-heading: 1.2;
    --lh-body:    1.7;
    --lh-caption: 1.5;

    /* Letter Spacing */
    --ls-h1:  0.03em;
    --ls-h2:  0.02em;
    --ls-nav: 0.12em;
    --ls-cta: 0.15em;
    --ls-tag: 0.2em;

    /* Spacing */
    --space-xs:  8px;
    --space-sm:  16px;
    --space-md:  24px;
    --space-lg:  32px;
    --space-xl:  48px;
    --space-2xl: 64px;
    --space-3xl: 80px;
    --space-4xl: 100px;
    --space-5xl: 120px;

    /* Section Padding */
    --section-pad: 100px;

    /* Max Width */
    --max-width: 1280px;

    /* Header Height */
    --header-height: 80px;

    /* Transitions */
    --transition-base: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;

    /* Border */
    --border-gold: 1px solid var(--color-gold);
    --border-soft: 1px solid var(--color-border);
}

/* ------------------------------------------------------------
   Reset & Base
   ------------------------------------------------------------ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--color-primary); }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: #a88850; }

/* Text selection */
::selection { background: var(--color-gold); color: var(--color-primary); }

body {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: var(--fs-body);
    line-height: var(--lh-body);
    color: var(--color-text-primary);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body.menu-open,
body.cart-open,
body.search-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

ul { list-style: none; }

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Skip Link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 9999;
    padding: 12px 24px;
    background: var(--color-gold);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* Focus States */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* Section */
.section {
    padding: var(--section-pad) 0;
}

/* Gold Hairline */
.gold-line {
    display: block;
    width: 80px;
    height: 1px;
    background: var(--color-gold);
    margin: 20px auto;
    position: relative;
    overflow: hidden;
}
.gold-line--left { margin-left: 0; }
.gold-line::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    width: 0; height: 100%;
    background: var(--color-gold);
    transition: width 0.8s ease, left 0.8s ease;
}
.gold-line.is-visible::before {
    width: 100%;
    left: 0;
}

/* Section Heading Group */
.section-heading-group {
    text-align: center;
    margin-bottom: var(--space-xl);
}
.section-heading-group--left {
    text-align: left;
}

.section-overline {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: var(--ls-tag);
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-primary);
    letter-spacing: var(--ls-h2);
    line-height: var(--lh-heading);
}

.section-title--dark { color: var(--color-white); }

.section-descriptor {
    margin-top: 16px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: var(--color-text-secondary);
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */
h1 { font-family: var(--font-heading); font-size: var(--fs-h1); font-weight: 600; letter-spacing: var(--ls-h1); line-height: var(--lh-heading); }
h2 { font-family: var(--font-heading); font-size: var(--fs-h2); font-weight: 600; letter-spacing: var(--ls-h2); line-height: var(--lh-heading); }
h3 { font-family: var(--font-heading); font-size: var(--fs-h3); font-weight: 600; line-height: var(--lh-heading); }
h4 { font-family: var(--font-heading); font-size: var(--fs-h4); font-weight: 600; line-height: var(--lh-heading); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-block;
    padding: 16px 40px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: var(--ls-cta);
    cursor: pointer;
    transition: var(--transition-base);
    border: 1px solid transparent;
    text-align: center;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-gold);
    color: var(--color-primary);
    border-color: var(--color-gold);
}
.btn--primary:hover {
    background: var(--color-primary);
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn--secondary {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}
.btn--secondary:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}

.btn--primary-dark {
    background: var(--color-gold);
    color: var(--color-primary);
    border-color: var(--color-gold);
}
.btn--primary-dark:hover {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn--sm {
    padding: 12px 24px;
    font-size: 0.7rem;
}

.btn--full { width: 100%; display: block; }

.btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.header--transparent {
    background: transparent;
}

.header--solid,
.site-header.is-scrolled {
    background: var(--color-primary);
    box-shadow: 0 1px 0 rgba(201, 169, 110, 0.15);
}

.header__inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* Logo */
.header__logo {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    text-decoration: none;
}
.header__logo-wordmark {
    font-family: var(--font-accent);
    font-weight: 700;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-gold);
    letter-spacing: 0.05em;
    line-height: 1;
}
.header__logo-tagline {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-secondary);
    margin-top: 3px;
}

/* Nav */
.header__nav { display: flex; }
.header__nav-list {
    display: flex;
    align-items: center;
    gap: 36px;
}
.header__nav-link {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: var(--ls-nav);
    color: var(--color-white);
    position: relative;
    padding-bottom: 4px;
    text-decoration: none;
}
.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width 0.3s ease;
}
.header__nav-link:hover::after,
.header__nav-link--active::after {
    width: 100%;
}
.header__nav-link--active {
    color: var(--color-white);
}

/* Actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.header__action-btn {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: color 0.3s ease;
}
.header__action-btn:hover { color: var(--color-gold); }
.header__action-btn svg { width: 20px; height: 20px; }

.header__cart-btn {
    position: relative;
}
.header__cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    background: var(--color-gold);
    color: var(--color-primary);
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 500;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.header__lang {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    color: #666;
    cursor: default;
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px 0;
    background: none;
    border: none;
    cursor: pointer;
}
.header__hamburger-line {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-gold);
    transition: var(--transition-base);
}

/* Hamburger → X */
.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(10, 10, 10, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.search-overlay:not([hidden]) {
    opacity: 1;
    visibility: visible;
}
.search-overlay[hidden] {
    display: flex !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.search-overlay__close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--color-white);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}
.search-overlay__close:hover { color: var(--color-gold); }
.search-overlay__close svg { width: 28px; height: 28px; }

.search-overlay__inner {
    width: 100%;
    max-width: 700px;
    padding: 0 40px;
}
.search-overlay__label {
    display: block;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.search-overlay__input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 2rem;
    color: var(--color-white);
    padding: 16px 0;
    outline: none;
    transition: border-color 0.3s ease;
}
.search-overlay__input::placeholder { color: #444; }
.search-overlay__input:focus { border-bottom-color: var(--color-gold); }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1500;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}
.mobile-menu:not([hidden]) {
    opacity: 1;
    visibility: visible;
}
.mobile-menu[hidden] {
    display: flex !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.mobile-menu__nav { text-align: center; }
.mobile-menu__list { display: flex; flex-direction: column; gap: 32px; }
.mobile-menu__item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease var(--delay, 0s), transform 0.4s ease var(--delay, 0s);
}
.mobile-menu:not([hidden]) .mobile-menu__item {
    opacity: 1;
    transform: translateY(0);
}
.mobile-menu__link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2rem;
    color: var(--color-white);
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}
.mobile-menu__link:hover { color: var(--color-gold); }

/* ============================================================
   CART DRAWER
   ============================================================ */
.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 1800;
    pointer-events: none;
}
.cart-drawer:not([hidden]) { pointer-events: all; }
.cart-drawer[hidden] { display: block !important; }

.cart-drawer__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.cart-drawer:not([hidden]) .cart-drawer__overlay { opacity: 1; }

.cart-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: var(--color-primary);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.cart-drawer:not([hidden]) .cart-drawer__panel { transform: translateX(0); }

.cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid #1A1A1A;
    flex-shrink: 0;
}
.cart-drawer__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--color-white);
    letter-spacing: 0.02em;
}
.cart-drawer__close {
    color: var(--color-text-secondary);
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    transition: color 0.3s;
}
.cart-drawer__close:hover { color: var(--color-gold); }
.cart-drawer__close svg { width: 20px; height: 20px; }

.cart-drawer__body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 32px;
}

.cart-drawer__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    height: 200px;
    text-align: center;
    color: #555;
}
.cart-drawer__empty svg { width: 40px; height: 40px; stroke: #444; }
.cart-drawer__empty p { font-size: 0.9rem; color: #666; }

.cart-drawer__items { display: flex; flex-direction: column; gap: 20px; }

.cart-item {
    display: flex;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #1A1A1A;
}
.cart-item__image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    flex-shrink: 0;
    background: #1A1A1A;
}
.cart-item__info { flex: 1; }
.cart-item__brand {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    font-weight: 400;
}
.cart-item__name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--color-white);
    margin: 4px 0;
}
.cart-item__price { font-size: 0.9rem; color: #ccc; }
.cart-item__remove {
    font-size: 0.75rem;
    color: #555;
    text-decoration: underline;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-body);
    margin-top: 6px;
    display: inline-block;
}
.cart-item__remove:hover { color: var(--color-error); }

.cart-drawer__footer {
    padding: 24px 32px;
    border-top: 1px solid #1A1A1A;
    flex-shrink: 0;
}
.cart-drawer__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}
.cart-drawer__subtotal-label {
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.cart-drawer__subtotal-value {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.1rem;
    color: var(--color-white);
}
.cart-drawer__note {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 16px;
}

/* ============================================================
   PRODUCT CARD
   ============================================================ */
.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-base);
}

.product-card--dark {
    background: var(--color-card-dark);
}
.product-card--light {
    background: var(--color-white);
}

.product-card__image-link { display: block; }
.product-card__image-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
}

.product-card--dark .product-card__image-wrap { background: var(--color-card-img); }
.product-card--light .product-card__image-wrap { background: #F0EEEA; }

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card__image { transform: scale(1.03); }

.product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-gold);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 10px;
    z-index: 2;
}

.product-card__body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-card__brand {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 8px;
}

.product-card__name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.3;
    margin-bottom: 8px;
    position: relative;
}

.product-card--dark .product-card__name { color: var(--color-white); }
.product-card--light .product-card__name { color: var(--color-text-primary); }

.product-card__name-link {
    color: inherit;
    text-decoration: none;
    position: relative;
}
.product-card__name-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-gold);
    transition: width 0.4s ease;
}
.product-card:hover .product-card__name-link::after { width: 100%; }

.product-card__description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}
.product-card--dark .product-card__description { color: #777; }
.product-card--light .product-card__description { color: #888; }

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: auto;
}

.product-card__price {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.3rem;
}
.product-card--dark .product-card__price { color: var(--color-white); }
.product-card--light .product-card__price { color: var(--color-text-primary); }

.product-card__add-btn {
    flex-shrink: 0;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.4) 100%);
}
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 40px;
    max-width: 800px;
}
.hero__overline {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold);
    margin-bottom: 20px;
}
.hero__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 4rem;
    color: var(--color-white);
    letter-spacing: 0.02em;
    line-height: 1.15;
    max-width: 700px;
    margin: 0 auto;
}
.hero__subtitle {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1.1rem;
    color: var(--color-text-dark);
    max-width: 550px;
    margin: 24px auto 0;
    line-height: 1.7;
}
.hero__cta { margin-top: 40px; }

.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}
.hero__scroll-line {
    width: 100px;
    height: 1px;
    background: var(--color-gold);
    opacity: 0.6;
}
.hero__scroll-icon {
    color: var(--color-gold);
    animation: bounce 2s infinite;
}
.hero__scroll-icon svg { width: 20px; height: 20px; }
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============================================================
   BRAND BAR
   ============================================================ */
.brand-bar {
    padding: 50px 0;
    background: var(--color-white);
}
.brand-bar__overline {
    display: block;
    text-align: center;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 32px;
}
.brand-bar__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}
.brand-bar__logo {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-primary);
    opacity: 0.35;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}
.brand-bar__logo:hover { opacity: 0.7; }

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.categories__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: var(--space-xl);
}

.category-card {
    position: relative;
    cursor: pointer;
    transition: var(--transition-base);
    border: 1px solid transparent;
}
.category-card:hover {
    border-color: var(--color-gold);
}
.category-card__image-wrap {
    aspect-ratio: 4 / 5;
    overflow: hidden;
}
.category-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.category-card:hover .category-card__image { transform: scale(1.03); }
.category-card__body { padding: 24px; background: var(--color-white); }
.category-card__name {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}
.category-card__description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}
.category-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}
.category-card__link svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.category-card__link:hover svg { transform: translateX(4px); }

/* ============================================================
   FEATURED PRODUCTS (dark section)
   ============================================================ */
.featured-products {
    background: var(--color-primary);
}
.featured-products .section-title { color: var(--color-white); }

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: var(--space-xl);
}

/* ============================================================
   VALUE PROPOSITION STRIP
   ============================================================ */
.value-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: var(--space-xl);
}
.value-item {
    text-align: center;
    padding: 0 16px;
}
.value-item__icon {
    margin: 0 auto 20px;
    width: 40px;
    height: 40px;
    color: var(--color-gold);
}
.value-item__icon svg { width: 40px; height: 40px; }
.value-item__title {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}
.value-item__description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.7;
}

/* ============================================================
   HERO PRODUCT FEATURE
   ============================================================ */
.product-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
.product-feature__image {
    position: relative;
    overflow: hidden;
}
.product-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-feature__content {
    background: var(--color-carbon);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.product-feature__overline {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 16px;
}
.product-feature__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--color-white);
    line-height: 1.15;
    margin-bottom: 24px;
}
.product-feature__description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: #AAAAAA;
    line-height: 1.8;
    margin-bottom: 24px;
}
.product-feature__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
}
.product-feature__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    color: #AAAAAA;
}
.product-feature__list li::before {
    content: '';
    display: block;
    width: 5px;
    height: 5px;
    background: var(--color-gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
}
.product-feature__price {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.8rem;
    color: var(--color-white);
    margin-bottom: 32px;
}

/* ============================================================
   NEW ARRIVALS CAROUSEL
   ============================================================ */
.new-arrivals { background: var(--color-white); }
.new-arrivals__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}
.new-arrivals__header-left .section-title { text-align: left; }
.new-arrivals__header-right {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.9rem;
    color: #888;
    white-space: nowrap;
}
.carousel-wrapper {
    position: relative;
}
.carousel__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    overflow: hidden;
    transition: transform 0.5s ease;
}
.carousel__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}
.carousel__btn {
    width: 48px;
    height: 48px;
    border: 1px solid var(--color-gold);
    background: transparent;
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}
.carousel__btn:hover {
    background: var(--color-gold);
    color: var(--color-primary);
}
.carousel__btn svg { width: 20px; height: 20px; }

/* ============================================================
   BRAND STORY / QUOTE
   ============================================================ */
.brand-story {
    background: var(--color-primary);
    text-align: center;
}
.brand-story__inner {
    max-width: 700px;
    margin: 0 auto;
}
.brand-story__quote-mark {
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 700;
    font-size: 6rem;
    color: var(--color-gold);
    opacity: 0.3;
    line-height: 0.8;
    display: block;
    margin-bottom: 24px;
}
.brand-story__quote {
    font-family: var(--font-heading);
    font-weight: 400;
    font-style: italic;
    font-size: 1.5rem;
    color: var(--color-text-dark);
    line-height: 1.8;
    margin-bottom: 32px;
}
.brand-story__author {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 40px;
    display: block;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter {
    background: var(--color-ivory);
    text-align: center;
}
.newsletter__inner {
    max-width: 600px;
    margin: 0 auto;
}
.newsletter__title { margin-bottom: 0; }
.newsletter__text {
    margin: 16px 0 32px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}
.newsletter__form {
    display: flex;
    gap: 0;
}
.newsletter__input {
    flex: 1;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-right: none;
    padding: 16px 20px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--color-text-primary);
    outline: none;
    transition: border-color 0.3s;
}
.newsletter__input::placeholder { color: #AAA; }
.newsletter__input:focus { border-color: var(--color-gold); }
.newsletter__submit {
    flex-shrink: 0;
    padding: 16px 32px;
    background: var(--color-gold);
    color: var(--color-primary);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    border: 1px solid var(--color-gold);
    cursor: pointer;
    transition: var(--transition-base);
}
.newsletter__submit:hover {
    background: var(--color-primary);
    color: var(--color-gold);
}
.newsletter__disclaimer {
    margin-top: 16px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.75rem;
    color: #999;
}

/* ============================================================
   PAGE HERO (compact)
   ============================================================ */
.page-hero {
    background: var(--color-primary);
    padding: 120px 0 60px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.page-hero--tall {
    min-height: 60vh;
    padding: 140px 0 80px;
}
.page-hero__pattern {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(201,169,110,0.03) 0px,
        rgba(201,169,110,0.03) 1px,
        transparent 1px,
        transparent 10px
    );
}
.page-hero__content { position: relative; z-index: 2; text-align: center; }
.page-hero--tall .page-hero__content { padding: 0 40px; }

.page-hero__image {
    position: absolute;
    inset: 0;
}
.page-hero__image img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10,10,10,0.5);
}
.page-hero__breadcrumb {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 16px;
}
.page-hero__breadcrumb a { color: #888; }
.page-hero__breadcrumb a:hover { color: var(--color-gold); }
.page-hero__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 3rem;
    color: var(--color-white);
    letter-spacing: 0.02em;
    line-height: 1.15;
}
.page-hero__descriptor {
    margin-top: 16px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: #888;
}

/* ============================================================
   FILTER BAR
   ============================================================ */
.filter-bar {
    background: var(--color-white);
    border-bottom: 1px solid #E8E4DD;
    height: 60px;
    position: sticky;
    top: var(--header-height);
    z-index: 100;
    display: flex;
    align-items: center;
}
.filter-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}
.filter-bar__pills {
    display: flex;
    align-items: center;
    gap: 8px;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.filter-bar__pills::-webkit-scrollbar { display: none; }
.filter-pill {
    padding: 6px 16px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    white-space: nowrap;
    border: 1px solid #DDD;
    background: transparent;
    color: #666;
    transition: var(--transition-fast);
}
.filter-pill.is-active {
    background: var(--color-primary);
    color: var(--color-gold);
    border-color: var(--color-primary);
}
.filter-pill:hover:not(.is-active) { border-color: var(--color-gold); color: var(--color-gold); }

.filter-bar__sort {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.filter-bar__sort-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: #888;
    white-space: nowrap;
}
.sort-select {
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    color: var(--color-text-primary);
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    padding-right: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0px center;
}

/* ============================================================
   PRODUCTS GRID (catalog page)
   ============================================================ */
.catalog-grid {
    background: var(--color-ivory);
}
.catalog-grid__inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.catalog-grid__actions {
    text-align: center;
    margin-top: 60px;
}
.catalog-grid__count {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.8rem;
    color: #999;
    margin-top: 16px;
}

/* Catalog cards in light variant */
.catalog-grid .product-card--light {
    border: 1px solid transparent;
    transition: border-color 0.3s;
}
.catalog-grid .product-card--light:hover { border-color: var(--color-border); }

/* ============================================================
   PRODUCT PAGE
   ============================================================ */
.product-page { padding-top: var(--header-height); }
.product-hero {
    display: grid;
    grid-template-columns: 55fr 45fr;
    min-height: 600px;
    padding: 60px 0;
    background: var(--color-white);
}
.product-gallery { padding: 0 40px 0 60px; }
.product-gallery__main {
    background: #F0EEEA;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 16px;
}
.product-gallery__main-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 40px;
    transition: opacity 0.3s ease;
}
.product-gallery__thumbs {
    display: flex;
    gap: 12px;
}
.product-gallery__thumb {
    width: 80px;
    height: 80px;
    border: 1px solid transparent;
    cursor: pointer;
    overflow: hidden;
    background: #F0EEEA;
    transition: border-color 0.3s;
    flex-shrink: 0;
}
.product-gallery__thumb.is-active { border-color: var(--color-gold); }
.product-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { padding: 0 60px 0 40px; }
.product-info__breadcrumb {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.75rem;
    color: #999;
    margin-bottom: 24px;
}
.product-info__breadcrumb a { color: #999; }
.product-info__breadcrumb a:hover { color: var(--color-gold); }
.product-info__brand {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-gold);
    display: block;
    margin-bottom: 8px;
}
.product-info__name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--color-text-primary);
    line-height: 1.15;
    margin-bottom: 16px;
}
.product-info__rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}
.rating-stars { display: flex; gap: 2px; color: var(--color-gold); }
.rating-stars .ph { font-size: 16px; }
.product-info__reviews-link {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: #999;
    text-decoration: underline;
}
.product-info__reviews-link:hover { color: var(--color-gold); }

.product-info__description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 28px;
}
.product-info__price-block { margin-bottom: 8px; }
.product-info__price {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 2rem;
    color: var(--color-text-primary);
}
.product-info__price-note {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 28px;
}

.product-info__selector { margin-bottom: 24px; }
.product-info__selector-label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
    margin-bottom: 12px;
}
.color-swatches { display: flex; gap: 10px; }
.color-swatch {
    width: 24px;
    height: 24px;
    border: 1px solid #DDD;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.color-swatch.is-active {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    width: fit-content;
}
.qty-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--color-text-primary);
    cursor: pointer;
    border: none;
    background: none;
    transition: color 0.2s;
}
.qty-btn:hover { color: var(--color-gold); }
.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    height: 40px;
    outline: none;
}

.product-info__add-btn { margin: 20px 0; width: 100%; }

.product-info__reassurance {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #EEE;
}
.reassurance-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    color: #666;
}
.reassurance-item svg { width: 16px; height: 16px; color: var(--color-gold); flex-shrink: 0; }

/* ============================================================
   PRODUCT TABS
   ============================================================ */
.product-tabs { background: var(--color-white); }
.tabs__nav {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #EEE;
    margin-bottom: 48px;
}
.tab-btn {
    padding: 16px 24px;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #999;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
    border-right: 1px solid #DDD;
}
.tab-btn:last-child { border-right: none; }
.tab-btn.is-active {
    color: var(--color-text-primary);
}
.tab-btn.is-active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-gold);
}
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

.tab-description p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    max-width: 800px;
    margin-bottom: 24px;
}
.tab-description__image {
    margin-top: 40px;
    width: 100%;
    max-width: 800px;
    height: 300px;
    object-fit: cover;
}

.specs-table { width: 100%; max-width: 700px; }
.specs-table tr { border-bottom: 1px solid rgba(201,169,110,0.15); }
.specs-table td {
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 0.9rem;
}
.specs-table td:first-child {
    font-weight: 400;
    color: #888;
    width: 40%;
    padding-right: 24px;
}
.specs-table td:last-child {
    font-weight: 300;
    color: var(--color-text-primary);
}

.reviews__overall {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid #EEE;
}
.reviews__score {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 4rem;
    color: var(--color-text-primary);
    line-height: 1;
}
.reviews__score-info { display: flex; flex-direction: column; gap: 8px; }
.reviews__score-label { font-size: 0.85rem; color: #999; }

.review-list { display: flex; flex-direction: column; gap: 32px; }
.review-item { padding-bottom: 32px; border-bottom: 1px solid #EEE; }
.review-item__header { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; }
.review-item__author { font-weight: 400; font-size: 0.9rem; }
.review-item__stars { color: var(--color-gold); font-size: 14px; }
.review-item__text { font-weight: 300; font-size: 0.95rem; color: #555; line-height: 1.7; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { background: var(--color-white); }
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding: 60px 0;
}
.story-block + .story-block { border-top: 1px solid #EEE; }
.story-block--reverse .story-block__image { order: 2; }
.story-block--reverse .story-block__content { order: 1; }
.story-block__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.story-block__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--color-text-primary);
}
.story-block__text {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}
.story-block__text + .story-block__text { margin-top: 16px; }

.values-section { background: var(--color-primary); }
.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: var(--space-xl);
}
.value-card { text-align: center; }
.value-card__number {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 3rem;
    color: var(--color-gold);
    opacity: 0.5;
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}
.value-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 16px;
}
.value-card__description {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    color: #888;
    line-height: 1.7;
    max-width: 300px;
    margin: 0 auto;
}

.team-section { background: var(--color-ivory); }
.team__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: var(--space-xl);
}
.team-card { text-align: center; }
.team-card__image-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 1;
}
.team-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}
.team-card:hover .team-card__image { filter: grayscale(60%) sepia(20%); }
.team-card__name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--color-text-primary);
    margin-bottom: 6px;
}
.team-card__role {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.85rem;
    color: var(--color-gold);
}

.stats-section { background: var(--color-white); }
.stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.stat-item__number {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3rem;
    color: var(--color-gold);
    display: block;
    line-height: 1;
    margin-bottom: 12px;
}
.stat-item__label {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #555;
}

/* ============================================================
   EDITORIAL / IL NOSTRO MONDO
   ============================================================ */
.editorial-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}
.editorial-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.editorial-feature__content {
    background: var(--color-ivory);
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.category-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    border-left: 3px solid var(--color-gold);
    padding-left: 12px;
    margin-bottom: 20px;
}
.editorial-feature__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 2rem;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
}
.editorial-feature__excerpt {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}
.read-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
}
.read-link svg { width: 16px; height: 16px; transition: transform 0.3s; }
.read-link:hover svg { transform: translateX(4px); }
.read-time {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.8rem;
    color: #999;
    margin-top: 16px;
}

.articles-section { background: var(--color-white); }
.articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: var(--space-xl);
}
.article-card { display: flex; flex-direction: column; }
.article-card__image-wrap {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    margin-bottom: 20px;
}
.article-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.article-card:hover .article-card__image { transform: scale(1.03); }
.article-card__category {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gold);
    margin-bottom: 10px;
}
.article-card__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--color-text-primary);
    line-height: 1.3;
    margin-bottom: 12px;
}
.article-card__excerpt {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.88rem;
    color: #777;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
    flex: 1;
}
.article-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.article-card__time { font-size: 0.8rem; color: #999; font-weight: 300; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--color-ivory); }
.contact-grid {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 80px;
    align-items: start;
}
.contact-form__title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.75rem;
    margin-bottom: 32px;
    color: var(--color-text-primary);
}
.form-field { margin-bottom: 28px; }
.form-field__label {
    display: block;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
    margin-bottom: 8px;
}
.form-field__input,
.form-field__select,
.form-field__textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #CCC;
    padding: 14px 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    color: var(--color-text-primary);
    outline: none;
    transition: border-color 0.3s ease;
    display: block;
}
.form-field__input:focus,
.form-field__select:focus,
.form-field__textarea:focus {
    border-bottom-color: var(--color-gold);
}
.form-field__textarea { resize: vertical; min-height: 120px; }
.form-field__select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='1.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    cursor: pointer;
}
.form-field__error {
    display: block;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.8rem;
    color: var(--color-error);
    margin-top: 6px;
    display: none;
}
.form-field.has-error .form-field__error { display: block; }
.form-field.has-error .form-field__input,
.form-field.has-error .form-field__textarea { border-bottom-color: var(--color-error); }

.checkbox-field { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 24px; }
.checkbox-field__input { display: none; }
.checkbox-field__custom {
    width: 18px; height: 18px;
    flex-shrink: 0;
    border: 1px solid var(--color-border);
    cursor: pointer;
    position: relative;
    transition: background 0.2s, border-color 0.2s;
    margin-top: 2px;
}
.checkbox-field__input:checked + .checkbox-field__custom {
    background: var(--color-gold);
    border-color: var(--color-gold);
}
.checkbox-field__input:checked + .checkbox-field__custom::after {
    content: '';
    position: absolute;
    left: 5px; top: 2px;
    width: 5px; height: 9px;
    border: 2px solid var(--color-primary);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}
.checkbox-field__label { font-family: var(--font-body); font-weight: 300; font-size: 0.85rem; color: #666; cursor: pointer; }
.checkbox-field__label a { color: var(--color-gold); text-decoration: underline; }

.form-submit-note { font-size: 0.8rem; color: #999; font-weight: 300; margin-top: 12px; }

.contact-info__title { font-family: var(--font-heading); font-weight: 600; font-size: 1.75rem; margin-bottom: 32px; color: var(--color-text-primary); }
.contact-info__item { margin-bottom: 32px; }
.contact-info__item-header { display: flex; align-items: center; gap: 12px; margin-bottom: 8px; }
.contact-info__item-header svg { width: 24px; height: 24px; color: var(--color-gold); }
.contact-info__item-value { font-family: var(--font-body); font-weight: 400; font-size: 1.1rem; color: var(--color-text-primary); }
.contact-info__item-detail { font-family: var(--font-body); font-weight: 300; font-size: 0.85rem; color: #888; margin-top: 4px; }
.contact-info__map {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border: 1px solid var(--color-border);
    margin-top: 32px;
}

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-page { background: var(--color-white); padding-top: var(--header-height); }
.cart-header { padding: 60px 0 40px; border-bottom: 1px solid #EEE; }
.cart-header__breadcrumb { font-size: 0.75rem; color: #999; margin-bottom: 12px; }
.cart-header__title { font-family: var(--font-heading); font-weight: 600; font-size: 2.5rem; margin-bottom: 8px; }
.cart-header__count { font-size: 1rem; color: #888; font-weight: 300; }

.cart-content { padding: 40px 0 80px; }
.cart-grid {
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 60px;
    align-items: start;
}

.cart-items { display: flex; flex-direction: column; gap: 0; }
.cart-row {
    display: grid;
    grid-template-columns: 100px 1fr auto auto;
    gap: 20px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #E8E4DD;
}
.cart-row__image {
    width: 100px;
    height: 100px;
    object-fit: cover;
    background: #F5F3EE;
}
.cart-row__info {}
.cart-row__brand { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--color-gold); font-weight: 400; }
.cart-row__name { font-family: var(--font-heading); font-size: 1.1rem; color: var(--color-text-primary); margin: 4px 0; }
.cart-row__variant { font-size: 0.8rem; color: #999; font-weight: 300; }
.cart-row__remove { font-size: 0.8rem; color: #999; cursor: pointer; background: none; border: none; font-family: var(--font-body); text-decoration: underline; margin-top: 8px; display: block; }
.cart-row__remove:hover { color: var(--color-error); }
.cart-row__total { font-family: var(--font-body); font-weight: 400; font-size: 1.1rem; color: var(--color-text-primary); }

.cart-actions { margin-top: 32px; }

.order-summary {
    background: var(--color-ivory);
    padding: 40px;
    position: sticky;
    top: calc(var(--header-height) + 20px);
}
.order-summary__title { font-family: var(--font-heading); font-weight: 600; font-size: 1.5rem; margin-bottom: 24px; }
.order-summary__row { display: flex; justify-content: space-between; margin-bottom: 16px; font-size: 0.95rem; }
.order-summary__row--total {
    font-weight: 500;
    font-size: 1.5rem;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
    margin-top: 8px;
}
.order-summary__iva { font-size: 0.75rem; color: #999; font-weight: 300; margin-bottom: 24px; }
.order-summary__free { color: var(--color-success); }
.order-summary__checkout { margin-bottom: 16px; }
.promo-code { margin-top: 24px; border-top: 1px solid #E0DAD0; padding-top: 24px; }
.promo-code__toggle { font-size: 0.85rem; color: #888; cursor: pointer; background: none; border: none; font-family: var(--font-body); text-decoration: underline; }
.promo-code__toggle:hover { color: var(--color-gold); }
.promo-code__form {
    display: none;
    margin-top: 12px;
    display: flex;
    gap: 0;
}
.promo-code__input {
    flex: 1;
    border: 1px solid var(--color-border);
    padding: 10px 14px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
    background: #fff;
}
.promo-code__apply {
    padding: 10px 20px;
    background: var(--color-primary);
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--color-primary);
    cursor: pointer;
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { padding-top: var(--header-height); }
.legal-header {
    background: var(--color-ivory);
    padding: 60px 0;
    border-bottom: 1px solid #E0DAD0;
}
.legal-header__title { font-family: var(--font-heading); font-weight: 600; font-size: 2.5rem; color: var(--color-text-primary); }
.legal-content {
    padding: 60px 0 100px;
    background: var(--color-white);
}
.legal-content__inner { max-width: 800px; }
.legal-content h3 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--color-text-primary);
    margin: 40px 0 16px;
}
.legal-content h3:first-child { margin-top: 0; }
.legal-content p {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}
.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}
.legal-content ul li {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-primary);
    border-top: 1px solid #1A1A1A;
}
.site-footer__upper { padding: 80px 0 60px; }
.site-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer__logo { display: inline-flex; flex-direction: column; text-decoration: none; margin-bottom: 20px; }
.footer__logo-wordmark { font-family: var(--font-accent); font-style: italic; font-weight: 700; font-size: 1.4rem; color: var(--color-gold); letter-spacing: 0.05em; line-height: 1; }
.footer__logo-tagline { font-family: var(--font-body); font-weight: 300; font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--color-text-secondary); margin-top: 3px; }

.footer__brand-statement { font-family: var(--font-body); font-weight: 300; font-size: 0.9rem; color: #888; line-height: 1.7; margin-bottom: 24px; }

.footer__social { display: flex; gap: 16px; }
.footer__social-link { width: 36px; height: 36px; border: 1px solid #2A2A2A; display: flex; align-items: center; justify-content: center; color: #666; transition: var(--transition-fast); }
.footer__social-link:hover { border-color: var(--color-gold); color: var(--color-gold); }
.footer__social-link svg { width: 16px; height: 16px; }

.footer-col__heading {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 20px;
}
.footer-col__list { display: flex; flex-direction: column; gap: 10px; }
.footer-col__link { font-family: var(--font-body); font-weight: 400; font-size: 0.85rem; color: #888; transition: color 0.3s; }
.footer-col__link:hover { color: var(--color-gold); }
.footer-col__contact { margin-top: 20px; display: flex; flex-direction: column; gap: 4px; }
.footer-col__contact p { font-family: var(--font-body); font-weight: 300; font-size: 0.85rem; color: #666; }

.site-footer__lower { border-top: 1px solid #2A2520; padding: 24px 0; }
.site-footer__lower-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-footer__copyright { font-family: var(--font-body); font-weight: 300; font-size: 0.75rem; color: #555; }
.site-footer__payments { display: flex; align-items: center; gap: 12px; }
.payment-icon { height: 28px; color: #888; opacity: 0.4; transition: opacity 0.3s; }
.payment-icon:hover { opacity: 0.8; }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-gold { color: var(--color-gold); }
.mt-xl { margin-top: var(--space-xl); }
.hidden { display: none !important; }
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* Form success/error messages */
.form-message {
    padding: 16px 20px;
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    display: none;
}
.form-message.is-visible { display: block; }
.form-message--success { background: rgba(47,91,58,0.1); color: var(--color-success); border: 1px solid rgba(47,91,58,0.3); }
.form-message--error { background: rgba(139,47,47,0.1); color: var(--color-error); border: 1px solid rgba(139,47,47,0.3); }

/* Cart pulse animation */
@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.cart-pulse { animation: cartPulse 0.4s ease; }
