/* ============================================================
   ELEKTOR — Main Stylesheet
   ============================================================ */

/* ----------------------------------------------------------
   1. CSS CUSTOM PROPERTIES (Design Tokens)
   ---------------------------------------------------------- */
:root {
    /* Colors */
    --bg-primary:      #0d0d0d;
    --bg-secondary:    #1a1a1a;
    --bg-tertiary:     #121212;
    --accent:          #FF6B2C;
    --accent-gold:     #FFB347;
    --grad-a:          linear-gradient(135deg, #FF6B2C, #FFB347);
    --grad-b:          linear-gradient(135deg, #6C63FF, #00D4FF);
    --grad-c:          linear-gradient(135deg, #FF2D7C, #A855F7);
    --grad-green:      linear-gradient(135deg, #34D399, #06B6D4);
    --text-primary:    #FFFFFF;
    --text-secondary:  #B0B0B0;
    --text-muted:      #666666;
    --border:          #2a2a2a;
    --card-shadow:     rgba(255, 107, 44, 0.08);
    --success:         #34D399;
    --error:           #EF4444;

    /* Typography */
    --font-heading:    'Clash Display', 'Bebas Neue', sans-serif;
    --font-body:       'Outfit', sans-serif;
    --font-mono:       'JetBrains Mono', monospace;

    /* Spacing */
    --section-pad:     120px;
    --card-pad:        32px;
    --container-max:   1320px;
    --grid-gap:        24px;

    /* Transitions */
    --ease:            cubic-bezier(0.4, 0, 0.2, 1);
    --transition:      all 0.3s var(--ease);
}

/* ----------------------------------------------------------
   2. RESET & BASE
   ---------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul { list-style: none; }

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: var(--font-body);
}

input, textarea, select {
    font-family: var(--font-body);
    outline: none;
}

/* Accessibility */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: var(--accent);
    color: #fff;
    padding: 8px 16px;
    z-index: 9999;
    font-size: 14px;
    border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

/* ----------------------------------------------------------
   3. LAYOUT UTILITIES
   ---------------------------------------------------------- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.section--alt {
    background-color: var(--bg-tertiary);
}

.section--secondary {
    background-color: var(--bg-secondary);
}

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

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
}

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

.section-header {
    margin-bottom: 56px;
}

.section-header--centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

/* ----------------------------------------------------------
   4. TYPOGRAPHY
   ---------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 700;
}

h1 { font-size: 64px; }
h2 { font-size: 48px; }
h3 { font-size: 32px; }
h4 { font-size: 24px; }

p { margin-bottom: 0; }

.text-muted    { color: var(--text-muted); }
.text-accent   { color: var(--accent); }
.text-success  { color: var(--success); }
.text-centered { text-align: center; }

.mono { font-family: var(--font-mono); }

.section-sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 16px;
}

/* ----------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-decoration: none;
    white-space: nowrap;
}

.btn--primary {
    background: var(--grad-a);
    color: #fff;
    border-color: transparent;
}
.btn--primary:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 32px rgba(255, 107, 44, 0.35);
    color: #fff;
}

.btn--secondary {
    background: transparent;
    color: var(--accent);
    border-color: var(--accent);
}
.btn--secondary:hover {
    background: rgba(255, 107, 44, 0.1);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
}

.btn--ghost {
    background: transparent;
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.2);
}
.btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.btn--full { width: 100%; justify-content: center; }

.btn--sm {
    padding: 10px 24px;
    font-size: 13px;
}

/* ----------------------------------------------------------
   6. HEADER
   ---------------------------------------------------------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 80px;
    background: rgba(13, 13, 13, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(13, 13, 13, 0.98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 32px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-accent { color: var(--accent); }

/* Desktop Nav */
.main-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    position: relative;
    padding-bottom: 4px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s var(--ease);
}

.nav-link:hover {
    color: var(--text-primary);
}
.nav-link:hover::after,
.nav-link--active::after {
    width: 100%;
}
.nav-link--active {
    color: var(--text-primary);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 18px;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
}

.icon-btn:hover { color: var(--text-primary); }

.cart-btn { position: relative; }

.cart-badge {
    position: absolute;
    top: 4px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    background: var(--grad-a);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

.hamburger-btn { display: none; }

/* ----------------------------------------------------------
   7. MOBILE MENU
   ---------------------------------------------------------- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding: 20px;
}

.mobile-nav__link {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 12px 24px;
    transition: var(--transition);
    width: 100%;
    text-align: center;
}

.mobile-nav__link:hover { color: var(--text-primary); }

.mobile-nav__divider {
    width: 60px;
    height: 1px;
    background: var(--border);
    margin: 8px auto;
}

.mobile-overlay {
    display: none;
}

/* ----------------------------------------------------------
   8. SEARCH OVERLAY
   ---------------------------------------------------------- */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(13,13,13,0.98);
    z-index: 1100;
    padding: 32px 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-100%);
    transition: transform 0.3s var(--ease);
    backdrop-filter: blur(20px);
}

.search-overlay.is-open {
    transform: translateY(0);
}

.search-overlay__inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
}

.search-form {
    display: flex;
    flex: 1;
    align-items: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-body);
}

.search-input::placeholder { color: var(--text-muted); }

.search-submit {
    padding: 16px 20px;
    color: var(--accent);
    font-size: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.search-close {
    color: var(--text-muted);
    font-size: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    transition: var(--transition);
}
.search-close:hover { color: var(--text-primary); }

/* ----------------------------------------------------------
   9. HERO SECTION
   ---------------------------------------------------------- */
.hero {
    height: 100vh;
    min-height: 640px;
    background: var(--bg-primary);
    display: grid;
    grid-template-columns: 55fr 45fr;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding-top: 80px;
}

.hero__content {
    padding: 0 64px 0 max(24px, calc((100vw - 1320px) / 2 + 24px));
    z-index: 2;
}

.hero__label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
    display: block;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s var(--ease) 0.1s forwards;
}

.hero__headline {
    font-size: 64px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s var(--ease) 0.2s forwards;
}

.hero__sub {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s var(--ease) 0.35s forwards;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s var(--ease) 0.5s forwards;
}

.hero__image-wrap {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero__image-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(to right, var(--bg-primary), transparent);
    z-index: 1;
    pointer-events: none;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-muted);
    font-size: 20px;
    animation: pulse 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

/* ----------------------------------------------------------
   10. CARD COMPONENT
   ---------------------------------------------------------- */
.card {
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--card-pad);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--card-shadow);
}

/* ----------------------------------------------------------
   11. CATEGORY CARDS
   ---------------------------------------------------------- */
.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    display: block;
    transition: var(--transition);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 107, 44, 0.15);
}

.category-card--sale {
    border-color: rgba(255, 45, 124, 0.4);
}

.category-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card:hover .category-card__img {
    transform: scale(1.05);
}

.category-card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    pointer-events: none;
}

.category-card__content {
    position: absolute;
    bottom: 28px;
    left: 24px;
}

.category-card__icon {
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 8px;
    display: block;
}

.category-card__title {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--text-primary);
    font-weight: 700;
}

.category-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--grad-c);
    color: #fff;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    border-radius: 4px;
}

/* ----------------------------------------------------------
   12. PRODUCT CARD
   ---------------------------------------------------------- */
.product-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--card-shadow);
}

.product-card__image-wrap {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--bg-tertiary);
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

/* Quick view overlay */
.product-card__quickview {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.product-card__quickview i { font-size: 24px; }
.product-card:hover .product-card__quickview { opacity: 1; }

/* Badges */
.product-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 10px;
    border-radius: 4px;
    color: #fff;
    font-weight: 500;
    z-index: 1;
}

.product-card__badge--sale { background: var(--grad-c); }
.product-card__badge--new  { background: var(--grad-a); }

/* Wishlist */
.product-card__wishlist {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    z-index: 2;
    transition: var(--transition);
    border: none;
    backdrop-filter: blur(4px);
}

.product-card__wishlist:hover {
    background: var(--accent);
}

.product-card__wishlist.is-wishlisted i {
    font-weight: 900;
    color: #fff;
}

/* Product Info */
.product-card__info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.product-card__name {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__colors {
    display: flex;
    gap: 6px;
    align-items: center;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

.product-card__pricing {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.product-card__price {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 500;
    color: var(--text-primary);
}

.product-card__price--sale { color: var(--accent); }

.product-card__old-price {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* ----------------------------------------------------------
   13. FEATURE CARDS (Brand Values)
   ---------------------------------------------------------- */
.feature-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: var(--card-pad);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--card-shadow);
}

.feature-card__icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    color: #fff;
}

.feature-card__icon-wrap--a { background: var(--grad-a); }
.feature-card__icon-wrap--b { background: var(--grad-b); }
.feature-card__icon-wrap--c { background: var(--grad-c); }
.feature-card__icon-wrap--g { background: var(--grad-green); }

.feature-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feature-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ----------------------------------------------------------
   14. LOOKBOOK / EDITORIAL BANNER
   ---------------------------------------------------------- */
.lookbook {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.lookbook__bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.lookbook__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(13,13,13,0.88) 40%, rgba(13,13,13,0.15) 100%);
}

.lookbook__content {
    position: relative;
    z-index: 2;
    padding: 0 max(24px, calc((100vw - 1320px) / 2 + 24px));
    max-width: 60%;
}

.lookbook__label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    display: block;
}

.lookbook__title {
    font-size: 56px;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.lookbook__sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* ----------------------------------------------------------
   15. NEWSLETTER
   ---------------------------------------------------------- */
.newsletter {
    background: var(--bg-secondary);
    padding: var(--section-pad) 0;
}

.newsletter__inner {
    max-width: 640px;
    margin: 0 auto;
    text-align: center;
}

.newsletter__title {
    font-size: 40px;
    margin-bottom: 16px;
}

.newsletter__sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.newsletter__form {
    display: flex;
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.newsletter__input {
    flex: 1;
    background: var(--bg-tertiary);
    border: none;
    padding: 16px 20px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: var(--font-body);
}

.newsletter__input::placeholder { color: var(--text-muted); }
.newsletter__input:focus { background: #161616; }

.newsletter__btn {
    border-radius: 0;
    border-left: 1px solid var(--border);
    flex-shrink: 0;
}

.newsletter__disclaimer {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
    line-height: 1.5;
}

.newsletter__disclaimer a {
    color: var(--accent);
}

/* ----------------------------------------------------------
   16. FLASH MESSAGES / ALERTS
   ---------------------------------------------------------- */
.alert {
    padding: 16px 24px;
    border-radius: 8px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.alert--success {
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    color: var(--success);
}

.alert--error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--error);
}

/* ----------------------------------------------------------
   17. FOOTER
   ---------------------------------------------------------- */
.site-footer {
    background: var(--bg-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 80px;
    padding-bottom: 40px;
}

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

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-address {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-contact-link:hover {
    color: var(--accent);
}

.footer-heading {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-muted);
}

.footer-payments {
    display: flex;
    gap: 8px;
    align-items: center;
    opacity: 0.6;
}

/* ----------------------------------------------------------
   18. PAGE HEADER (inner pages)
   ---------------------------------------------------------- */
.page-header {
    padding: 140px 0 64px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: color 0.2s ease;
}
.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb__sep { color: var(--border); }
.breadcrumb__current { color: var(--text-secondary); }

.page-header__count {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
}

/* ----------------------------------------------------------
   19. FILTER BAR (Catalog)
   ---------------------------------------------------------- */
.filter-bar {
    background: var(--bg-tertiary);
    border-radius: 10px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    border: 1px solid var(--border);
    position: sticky;
    top: 88px;
    z-index: 10;
}

.filter-select {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 13px;
    border-radius: 6px;
    padding: 10px 36px 10px 16px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    transition: var(--transition);
    flex-shrink: 0;
}

.filter-select:focus,
.filter-select.is-active {
    border-color: var(--accent);
    outline: none;
}

.filter-bar__spacer { flex: 1; }

/* ----------------------------------------------------------
   20. PAGINATION
   ---------------------------------------------------------- */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination__info {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 16px;
}

.pagination__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
}

.pagination__btn:hover,
.pagination__btn--active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

/* ----------------------------------------------------------
   21. PRODUCT DETAIL PAGE
   ---------------------------------------------------------- */
.product-detail {
    padding: 60px 0;
}

.product-detail__split {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 64px;
    align-items: start;
}

/* Gallery */
.product-gallery__main {
    aspect-ratio: 3/4;
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid rgba(255,255,255,0.06);
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    cursor: zoom-in;
}

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

.product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.product-gallery__thumb {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: border-color 0.2s ease;
    background: var(--bg-secondary);
}

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

.product-gallery__thumb.is-active,
.product-gallery__thumb:hover {
    border-color: var(--accent);
}

/* Product Info */
.product-info__brand {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.product-info__title {
    font-size: 36px;
    margin-bottom: 16px;
}

.product-info__price {
    font-family: var(--font-mono);
    font-size: 24px;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 20px;
}

.product-info__price--sale { color: var(--accent); }

.product-info__old-price {
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 8px;
}

.product-info__desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.product-option {
    margin-bottom: 20px;
}

.product-option__label {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-option__label span {
    color: var(--text-primary);
    font-weight: 500;
}

.color-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.color-option {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.color-option.is-selected,
.color-option:hover {
    border-color: var(--text-primary);
    transform: scale(1.15);
}

.size-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-btn {
    min-width: 48px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: var(--font-body);
    cursor: pointer;
    transition: var(--transition);
}

.size-btn:hover,
.size-btn.is-selected {
    border-color: var(--accent);
    background: rgba(255, 107, 44, 0.1);
    color: var(--accent);
}

.size-btn.is-oos {
    opacity: 0.3;
    text-decoration: line-through;
    cursor: not-allowed;
}

.size-guide-link {
    font-size: 13px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.qty-btn {
    width: 40px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.qty-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.qty-display {
    width: 56px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--text-primary);
    background: var(--bg-tertiary);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
}

.product-info__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.trust-badge i { color: var(--accent); font-size: 16px; }

/* ----------------------------------------------------------
   22. ACCORDION
   ---------------------------------------------------------- */
.accordion {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin-top: 48px;
}

.accordion__item {
    border-bottom: 1px solid var(--border);
}

.accordion__item:last-child { border-bottom: none; }

.accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    background: var(--bg-secondary);
    transition: background 0.2s ease;
    user-select: none;
}

.accordion__header:hover { background: #1f1f1f; }

.accordion__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.accordion__icon {
    color: var(--text-muted);
    font-size: 16px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion__item.is-open .accordion__icon {
    transform: rotate(45deg);
}

.accordion__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.accordion__item.is-open .accordion__body {
    max-height: 500px;
}

.accordion__content {
    padding: 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    background: var(--bg-tertiary);
}

/* ----------------------------------------------------------
   23. CART PAGE
   ---------------------------------------------------------- */
.cart-layout {
    display: grid;
    grid-template-columns: 65fr 35fr;
    gap: 40px;
    align-items: start;
}

.cart-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 16px;
}

.cart-item__image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-tertiary);
}

.cart-item__details {
    flex: 1;
}

.cart-item__name {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.cart-item__options {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.cart-item__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px;
    flex-shrink: 0;
}

.cart-item__price {
    font-family: var(--font-mono);
    font-size: 18px;
    color: var(--text-primary);
}

.cart-item__remove {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 4px;
}

.cart-item__remove:hover { color: var(--error); }

/* Order Summary */
.order-summary {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 32px;
    border: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 100px;
}

.order-summary__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.order-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.order-summary__row--total {
    border-top: 1px solid var(--border);
    padding-top: 16px;
    margin-top: 8px;
    margin-bottom: 0;
}

.order-summary__total-price {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-primary);
}

.order-summary__vat {
    font-size: 12px;
    color: var(--text-muted);
    text-align: right;
    margin-bottom: 24px;
}

.order-summary__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

.promo-form {
    display: flex;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    margin-top: 20px;
}

.promo-input {
    flex: 1;
    background: var(--bg-tertiary);
    border: none;
    padding: 12px 16px;
    color: var(--text-primary);
    font-size: 13px;
    font-family: var(--font-body);
}

.promo-input::placeholder { color: var(--text-muted); }

.promo-btn {
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: none;
    border-left: 1px solid var(--border);
    color: var(--accent);
    font-size: 13px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.promo-btn:hover { background: rgba(255,107,44,0.1); }

/* Empty cart */
.cart-empty {
    text-align: center;
    padding: 80px 24px;
}

.cart-empty__icon {
    font-size: 64px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ----------------------------------------------------------
   24. CHECKOUT PAGE
   ---------------------------------------------------------- */
.checkout-header {
    height: 72px;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    padding: 0 24px;
}

.checkout-header__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-header__back {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 6px;
}

.checkout-header__back:hover { color: var(--text-primary); }

/* Progress bar */
.checkout-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 32px 0;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-step__circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--text-muted);
    transition: var(--transition);
}

.progress-step__label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
    transition: color 0.3s ease;
}

.progress-step.is-active .progress-step__circle {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.progress-step.is-active .progress-step__label {
    color: var(--text-primary);
}

.progress-step.is-done .progress-step__circle {
    background: var(--success);
    border-color: var(--success);
    color: #fff;
}

.progress-connector {
    width: 80px;
    height: 2px;
    background: var(--border);
    margin: 0 8px;
    flex-shrink: 0;
}

/* Checkout Layout */
.checkout-layout {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 48px;
    padding: 48px 0;
    align-items: start;
}

/* Form sections */
.form-section {
    margin-bottom: 40px;
}

.form-section__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

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

.form-row--3 {
    grid-template-columns: 2fr 1.5fr 1.5fr;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.form-group--full { grid-column: 1 / -1; }

.form-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 14px 16px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: var(--font-body);
    transition: border-color 0.2s ease;
    width: 100%;
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-muted); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent);
    outline: none;
}

.form-input.is-error,
.form-select.is-error,
.form-textarea.is-error {
    border-color: var(--error);
}

.form-error-msg {
    font-size: 12px;
    color: var(--error);
    display: none;
}

.form-group.is-error .form-error-msg { display: block; }

.form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Shipping / Payment method cards */
.method-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 12px;
    user-select: none;
}

.method-card.is-selected {
    border-color: var(--accent);
    background: rgba(255, 107, 44, 0.05);
}

.method-card__radio {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.method-card.is-selected .method-card__radio {
    border-color: var(--accent);
}

.method-card.is-selected .method-card__radio::after {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--accent);
    border-radius: 50%;
}

.method-card__icon {
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.method-card__info { flex: 1; }

.method-card__title {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.method-card__sub {
    font-size: 13px;
    color: var(--text-muted);
}

.method-card__price {
    font-family: var(--font-mono);
    font-size: 15px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.method-card__price--free { color: var(--success); }

/* Card payment fields */
.card-fields {
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    margin-top: 4px;
    display: none;
}

.card-fields.is-visible { display: block; }

/* Custom checkbox */
.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
    margin-bottom: 16px;
}

.checkbox-group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    background: var(--bg-secondary);
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
    position: relative;
}

.checkbox-group input[type="checkbox"]:checked {
    background: var(--accent);
    border-color: var(--accent);
}

.checkbox-group input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 8px;
    height: 12px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.checkbox-group__label {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    cursor: pointer;
}

.checkout-security-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 16px;
    justify-content: center;
}

/* Checkout Order Summary */
.checkout-summary {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.06);
    position: sticky;
    top: 100px;
}

.checkout-summary__item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.checkout-summary__img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bg-tertiary);
}

.checkout-summary__details { flex: 1; }

.checkout-summary__name {
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 4px;
}

.checkout-summary__opts {
    font-size: 12px;
    color: var(--text-muted);
}

.checkout-summary__price {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.checkout-summary__edit {
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 20px;
    display: block;
}

/* ----------------------------------------------------------
   25. CHI SIAMO — ABOUT PAGE
   ---------------------------------------------------------- */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
    margin-top: 80px;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.9) 30%, rgba(13,13,13,0.3));
}

.about-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero__title { font-size: 56px; }

.about-hero__sub {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 12px;
}

/* Story section */
.story-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.story-block:last-child { border-bottom: none; }

.story-block--reverse { direction: rtl; }
.story-block--reverse > * { direction: ltr; }

.story-block__image {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.story-block__label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    display: block;
}

.story-block__title {
    font-size: 36px;
    margin-bottom: 20px;
}

.story-block__body {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Mission cards */
.mission-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 32px;
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px var(--card-shadow);
}

.mission-card__top-bar {
    height: 4px;
    border-radius: 2px;
    margin: -32px -32px 28px;
}

.mission-card__top-bar--a { background: var(--grad-a); }
.mission-card__top-bar--b { background: var(--grad-b); }
.mission-card__top-bar--g { background: var(--grad-green); }

.mission-card__icon {
    font-size: 28px;
    margin-bottom: 16px;
}

.mission-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.mission-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Stats bar */
.stats-bar {
    background: var(--bg-tertiary);
    padding: 64px 0;
}

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

.stat-item {
    text-align: center;
}

.stat-item__number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item__label {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Team CTA */
.team-cta {
    position: relative;
    height: 480px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-cta__bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.team-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(13,13,13,0.75);
}

.team-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 560px;
    padding: 0 24px;
}

.team-cta__title { font-size: 40px; margin-bottom: 16px; }

.team-cta__sub {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.team-cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ----------------------------------------------------------
   26. CONTATTI PAGE
   ---------------------------------------------------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 48px;
    align-items: start;
}

.contact-form-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.06);
}

.contact-form__title {
    font-family: var(--font-body);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 28px;
}

.contact-info-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 16px;
    transition: var(--transition);
}

.contact-info-card:hover {
    border-color: rgba(255,255,255,0.1);
}

.contact-info-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.contact-info-card__icon--a { background: var(--grad-a); }
.contact-info-card__icon--b { background: var(--grad-b); }
.contact-info-card__icon--c { background: var(--grad-c); }

.contact-info-card__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-info-card__line {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-info-card__line a {
    color: var(--accent);
}

.contact-info-card__line a:hover {
    text-decoration: underline;
}

.contact-info-card__meta {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
}

.map-placeholder {
    height: 400px;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-muted);
    margin-top: 48px;
    overflow: hidden;
    position: relative;
}

.map-placeholder__icon { font-size: 48px; }
.map-placeholder__text { font-size: 14px; }

/* ----------------------------------------------------------
   27. GUIDA TAGLIE
   ---------------------------------------------------------- */
.tab-bar {
    display: flex;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
    gap: 0;
}

.tab-btn {
    padding: 14px 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    border: none;
    background: transparent;
    border-bottom: 2px solid transparent;
    transition: var(--transition);
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tab-btn:hover { color: var(--text-primary); }

.tab-btn.is-active {
    color: var(--text-primary);
    border-bottom-color: var(--accent);
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* Size tables */
.size-table-wrap {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 32px;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.size-table th {
    background: var(--bg-tertiary);
    color: var(--accent);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.size-table td {
    padding: 14px 20px;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.size-table tr:nth-child(even) td { background: #161616; }
.size-table tr:last-child td { border-bottom: none; }
.size-table tr:hover td { background: rgba(255,107,44,0.04); }

/* How to measure */
.measure-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--grid-gap);
    margin-top: 32px;
}

.measure-step {
    background: var(--bg-secondary);
    border-radius: 12px;
    padding: 28px;
    border: 1px solid rgba(255,255,255,0.06);
    text-align: center;
}

.measure-step__icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 16px;
}

.measure-step__title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.measure-step__desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ----------------------------------------------------------
   28. SPEDIZIONI & RESI
   ---------------------------------------------------------- */
.shipping-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-gap);
    margin-bottom: 48px;
}

.shipping-card {
    background: var(--bg-secondary);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

.shipping-card__top {
    height: 6px;
}

.shipping-card__top--a { background: var(--grad-a); }
.shipping-card__top--b { background: var(--grad-b); }

.shipping-card__body {
    padding: 28px 32px;
}

.shipping-card__title {
    font-family: var(--font-body);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.shipping-card__price {
    font-family: var(--font-mono);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 16px;
}

.shipping-card__detail {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.shipping-card__detail i { color: var(--accent); }

.return-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.return-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-secondary);
    border-radius: 10px;
    padding: 20px 24px;
    border: 1px solid rgba(255,255,255,0.06);
}

.return-step__number {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grad-a);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 500;
    flex-shrink: 0;
}

.return-step__text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding-top: 6px;
}

.conditions-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.conditions-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-secondary);
}

.conditions-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 8px;
}

/* ----------------------------------------------------------
   29. LEGAL PAGES
   ---------------------------------------------------------- */
.legal-content {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 48px 0 16px;
    color: var(--text-primary);
}

.legal-content h3 {
    font-size: 20px;
    margin: 32px 0 12px;
}

.legal-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 6px;
}

.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    font-size: 14px;
}

.legal-table th {
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-weight: 600;
    padding: 12px 16px;
    text-align: left;
    border: 1px solid var(--border);
}

.legal-table td {
    padding: 12px 16px;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

/* ----------------------------------------------------------
   30. SECTION HEADER ROW (with link)
   ---------------------------------------------------------- */
.section-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-row__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
    flex-shrink: 0;
    margin-bottom: 4px;
}

.section-row__link:hover { text-decoration: underline; }

/* ----------------------------------------------------------
   31. SCROLL ANIMATIONS
   ---------------------------------------------------------- */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered grid children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

.stagger-children.is-visible > *:nth-child(1) { transition-delay: 0s;     opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(2) { transition-delay: 0.07s;  opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(3) { transition-delay: 0.14s;  opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(4) { transition-delay: 0.21s;  opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(5) { transition-delay: 0.28s;  opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(6) { transition-delay: 0.35s;  opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(7) { transition-delay: 0.42s;  opacity: 1; transform: none; }
.stagger-children.is-visible > *:nth-child(8) { transition-delay: 0.49s;  opacity: 1; transform: none; }

/* ----------------------------------------------------------
   32. RELATED PRODUCTS SECTION
   ---------------------------------------------------------- */
.related-products {
    padding: var(--section-pad) 0;
    border-top: 1px solid var(--border);
}

/* ----------------------------------------------------------
   33. SECTION SPACER
   ---------------------------------------------------------- */
.section-divider {
    height: 1px;
    background: var(--border);
}

/* ----------------------------------------------------------
   34. INFO NOTE
   ---------------------------------------------------------- */
.submit-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 12px;
    text-align: center;
}

/* ----------------------------------------------------------
   35. PRODUCT IMAGE PLACEHOLDER
   ---------------------------------------------------------- */
.img-placeholder {
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--border);
    font-size: 32px;
    width: 100%;
    height: 100%;
}

/* ----------------------------------------------------------
   36. ACCESSIBILITY — SR-ONLY
   ---------------------------------------------------------- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ----------------------------------------------------------
   37. MISSING BASE RULES (structural grouping classes)
   ---------------------------------------------------------- */

/* Footer column — no padding needed; footer-grid handles layout */
.footer-col { /* intentional grouping hook */ }
.footer-brand { /* extended in responsive.css */ }

/* Cart items container */
.cart-items {
    display: flex;
    flex-direction: column;
}

/* Product info container */
.product-info {
    display: flex;
    flex-direction: column;
}

/* ----------------------------------------------------------
   38. MISSING / INCONSISTENT INTERACTIVE STATES
   ---------------------------------------------------------- */

/* Newsletter input — focus border (matches all other form inputs) */
.newsletter__input:focus {
    border-color: var(--accent);
    outline: none;
    background: #161616;
}

/* Tab button — hover shows underline preview */
.tab-btn:hover {
    color: var(--text-primary);
    border-bottom-color: rgba(255, 107, 44, 0.4);
}

/* Filter select — hover border highlight */
.filter-select:hover {
    border-color: rgba(255, 255, 255, 0.2);
}

/* Search submit — hover state */
.search-submit:hover {
    color: var(--accent-gold);
}
