/* ============================================
   2025–2026 DESIGN SYSTEM
   Glassmorphism · Bento Grid · Grain Texture
   Oversized Type · Card Play · Micro-motion
   ============================================ */

/* --- Tokens --- */
:root {
    --brand: #c8a97e;
    --brand-dark: #a88b5e;
    --brand-light: #f5efe6;
    --brand-bg: #fdf9f3;
    --accent: #e8d5b8;
    --dark: #0c0c0c;
    --dark-2: #161616;
    --dark-3: #1f1f1f;
    --text: #1a1a1a;
    --text-2: #555;
    --text-3: #999;
    --border: #e0ddd8;
    --bg: #f0eee9;
    --bg-2: #e8e5df;
    --white: #fff;
    --glass: rgba(255,255,255,0.55);
    --glass-border: rgba(255,255,255,0.35);
    --glass-dark: rgba(12,12,12,0.65);
    --r: 20px;
    --r-sm: 14px;
    --r-xs: 8px;
    --shadow: 0 4px 30px rgba(0,0,0,0.05);
    --shadow-up: 0 -4px 30px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
    --shadow-brand: 0 12px 40px rgba(200,169,126,0.15);
    --ease: cubic-bezier(.4,0,.2,1);
    --ease-spring: cubic-bezier(.34,1.56,.64,1);
    --grain: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overscroll-behavior: none; }
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.65;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    position: relative;
}
/* Grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: var(--grain);
    pointer-events: none;
    z-index: 9999;
    opacity: 0.5;
}
a { color: inherit; text-decoration: none; transition: all .3s var(--ease); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

/* --- Scroll-reveal animation --- */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ANNOUNCEMENT ===== */
.announcement-bar {
    background: var(--dark);
    color: rgba(255,255,255,.5);
    text-align: center;
    padding: 10px 0;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}
.announcement-bar strong { color: var(--brand); }
.announcement-bar .sep {
    display: inline-block;
    width: 3px; height: 3px;
    background: var(--brand);
    border-radius: 50%;
    margin: 0 14px;
    vertical-align: middle;
    opacity: .5;
}

/* ===== HEADER (glass) ===== */
.header {
    background: var(--glass);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}
.header-top {
    border-bottom: 1px solid rgba(0,0,0,.04);
    padding: 7px 0;
    font-size: 12px;
    color: var(--text-3);
}
.header-top .container { display: flex; justify-content: space-between; align-items: center; }
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

/* Logo — oversized bold */
.logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 5px;
    color: var(--dark);
    text-transform: uppercase;
}
.logo-accent { color: var(--brand); }
.logo-dot {
    display: inline-block;
    width: 6px; height: 6px;
    background: var(--brand);
    border-radius: 50%;
    margin-left: 1px;
    margin-bottom: 16px;
}

/* Nav */
.nav { display: flex; gap: 2px; align-items: center; }
.nav > a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    padding: 8px 16px;
    border-radius: var(--r-xs);
    position: relative;
    letter-spacing: .3px;
}
.nav > a::after {
    content: '';
    position: absolute;
    bottom: 2px; left: 50%;
    width: 0; height: 2px;
    background: var(--brand);
    border-radius: 1px;
    transform: translateX(-50%);
    transition: width .3s var(--ease);
}
.nav > a:hover { color: var(--dark); }
.nav > a:hover::after { width: 18px; }

/* Header CTA pill */
.header-contact {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; font-weight: 600;
    background: var(--dark);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    transition: all .3s var(--ease);
}
.header-contact:hover {
    background: var(--brand);
    transform: translateY(-1px);
    box-shadow: var(--shadow-brand);
}
.header-contact svg { flex-shrink: 0; }

/* ===== HERO — Oversized Type ===== */
.hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}
.hero-tag {
    display: inline-flex;
    align-items: center; gap: 8px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    color: var(--brand-dark);
    font-size: 11px; font-weight: 700;
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 28px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(44px, 6vw, 80px);
    font-weight: 900;
    color: var(--dark);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 20px;
}
.hero h1 .highlight {
    color: var(--brand);
    position: relative;
}
.hero h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 0; right: 0;
    height: 8px;
    background: var(--accent);
    border-radius: 4px;
    opacity: .4;
    z-index: -1;
}
.hero p {
    font-size: 18px;
    color: var(--text-2);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
}
.hero-cta {
    display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}

/* ===== TRUST — Glass cards ===== */
.trust-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 72px;
}
.trust-item {
    display: flex; align-items: center; gap: 14px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 22px 24px;
    border-radius: var(--r);
    transition: all .35s var(--ease);
}
.trust-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}
.trust-icon {
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--brand-light), var(--accent));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all .3s var(--ease);
}
.trust-item:hover .trust-icon {
    background: var(--brand);
    transform: rotate(-6deg) scale(1.08);
    box-shadow: var(--shadow-brand);
}
.trust-item:hover .trust-icon svg { stroke: #fff; }
.trust-icon svg { stroke: var(--brand-dark); transition: all .3s; }
.trust-text .t-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 1px; }
.trust-text .t-desc { font-size: 11.5px; color: var(--text-3); }

/* ===== SECTIONS ===== */
.section { margin-bottom: 80px; }
.section-header {
    display: flex; align-items: flex-end; justify-content: space-between;
    margin-bottom: 36px;
}
.section-head-left { display: flex; flex-direction: column; gap: 4px; }
.section-title {
    font-size: 32px;
    font-weight: 900;
    color: var(--dark);
    letter-spacing: -1px;
    line-height: 1.1;
}
.section-subtitle {
    font-size: 15px;
    color: var(--text-3);
    font-weight: 400;
}
.section-link {
    font-size: 12px; font-weight: 600;
    color: var(--dark);
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 22px;
    background: var(--glass);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    letter-spacing: .5px; text-transform: uppercase;
    transition: all .3s var(--ease);
}
.section-link:hover {
    background: var(--dark); color: #fff;
    border-color: var(--dark);
    transform: translateY(-2px);
}

/* ===== BENTO PRODUCT GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
/* Bento: first item spans 2x2 */
.product-grid.bento {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
}
.product-grid.bento .product-card:first-child {
    grid-column: span 2;
    grid-row: span 2;
}
.product-grid.bento .product-card:first-child .img-wrap {
    aspect-ratio: auto;
    height: 100%;
}
.product-grid.bento .product-card:first-child .card-body {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.7));
    padding: 32px 28px;
    border-radius: 0 0 var(--r) var(--r);
}
.product-grid.bento .product-card:first-child .card-cat,
.product-grid.bento .product-card:first-child .name,
.product-grid.bento .product-card:first-child .price { color: #fff; }
.product-grid.bento .product-card:first-child .name { font-size: 20px; }
.product-grid.bento .product-card:first-child .price { font-size: 22px; }
.product-grid.bento .product-card:first-child .price .old { color: rgba(255,255,255,.5); }

/* Product card — glass + tilt */
.product-card {
    background: var(--white);
    border-radius: var(--r);
    overflow: hidden;
    display: block;
    position: relative;
    transition: all .4s var(--ease);
}
.product-card:hover {
    transform: translateY(-8px) rotate(-0.5deg);
    box-shadow: var(--shadow-lg);
}
.product-card .img-wrap {
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
    aspect-ratio: 4/3;
}
.product-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease);
}
.product-card:hover img { transform: scale(1.06); }

/* Hover overlay with glassmorphism */
.product-card .card-overlay {
    position: absolute; inset: 0;
    background: var(--glass-dark);
    backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity .35s var(--ease);
    z-index: 2;
}
.product-card:hover .card-overlay { opacity: 1; }
.card-overlay span {
    font-size: 13px; font-weight: 600;
    color: #fff;
    padding: 10px 24px;
    border: 1.5px solid rgba(255,255,255,.4);
    border-radius: 50px;
    letter-spacing: .5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    background: rgba(255,255,255,.1);
    transition: all .3s;
}
.product-card:hover .card-overlay span {
    background: var(--brand);
    border-color: var(--brand);
}

/* Sale badge */
.product-card .sale-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--dark);
    color: var(--brand);
    font-size: 10px; font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    z-index: 3;
}

/* Card body */
.product-card .card-body {
    padding: 18px 20px 22px;
}
.product-card .card-cat {
    font-size: 10.5px;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-weight: 700;
    margin-bottom: 6px;
}
.product-card .name {
    font-size: 15px; font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}
.product-card .price {
    font-size: 17px; font-weight: 800;
    color: var(--dark);
    letter-spacing: -.3px;
}
.product-card .price .old {
    text-decoration: line-through;
    color: var(--text-3);
    font-weight: 400;
    font-size: 13px;
    margin-left: 8px;
}

/* ===== CATEGORY GRID ===== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}
.category-card {
    text-align: center;
    padding: 40px 24px 36px;
    background: var(--white);
    border-radius: var(--r);
    display: block;
    position: relative;
    overflow: hidden;
    transition: all .4s var(--ease);
}
.category-card:hover {
    transform: translateY(-6px) rotate(0.5deg);
    box-shadow: var(--shadow-lg);
}
.category-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s var(--ease);
}
.category-card:hover::after { transform: scaleX(1); }
.category-card .cat-icon {
    width: 76px; height: 76px;
    margin: 0 auto 18px;
    background: linear-gradient(135deg, var(--brand-light), var(--accent));
    border-radius: 22px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: all .4s var(--ease-spring);
}
.category-card:hover .cat-icon {
    background: var(--brand);
    transform: scale(1.1) rotate(-4deg);
    box-shadow: var(--shadow-brand);
    border-radius: 26px;
}
.category-card:hover .cat-icon svg { stroke: #fff; }
.category-card .cat-icon img { width: 76px; height: 76px; object-fit: cover; border-radius: 22px; }
.category-card .name { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.category-card .count { font-size: 12px; color: var(--text-3); }

/* ===== DARK PROMO SECTION (full-width break) ===== */
.promo-section {
    background: var(--dark);
    color: #fff;
    padding: 72px 0;
    text-align: center;
    margin: 0 0 80px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.promo-section::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--grain);
    opacity: .6;
    pointer-events: none;
}
.promo-section .promo-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; padding: 0 32px; }
.promo-section .promo-label {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,169,126,.15);
    border: 1px solid rgba(200,169,126,.25);
    color: var(--brand);
    font-size: 11px; font-weight: 700;
    padding: 6px 18px; border-radius: 50px;
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 24px;
}
.promo-section h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
}
.promo-section p {
    font-size: 16px;
    color: rgba(255,255,255,.5);
    margin-bottom: 32px;
    line-height: 1.7;
}
.promo-section .deco-ring {
    position: absolute;
    border: 30px solid rgba(200,169,126,.06);
    border-radius: 50%;
}
.promo-section .deco-ring.r1 { width: 300px; height: 300px; top: -80px; right: -60px; }
.promo-section .deco-ring.r2 { width: 200px; height: 200px; bottom: -50px; left: -40px; }

/* ===== PRODUCT DETAIL ===== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    margin-top: 8px;
}
.product-detail .image {
    border-radius: var(--r);
    overflow: hidden;
    background: var(--bg-2);
    box-shadow: var(--shadow);
}
.product-detail .image img {
    width: 100%; height: 540px;
    object-fit: cover;
    transition: transform .5s var(--ease);
}
.product-detail .image:hover img { transform: scale(1.03); }
.product-detail .info { padding: 8px 0; }
.product-detail .info .cat-label {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    color: var(--brand-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
    background: var(--brand-light);
    padding: 6px 18px;
    border-radius: 50px;
}
.product-detail .info h1 {
    font-size: 34px; font-weight: 900;
    margin-bottom: 24px;
    line-height: 1.15;
    color: var(--dark);
    letter-spacing: -1px;
}

/* Price box — glass */
.product-detail .info .price-box {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 28px;
    padding: 20px 24px;
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
}
.product-detail .info .price {
    font-size: 32px; font-weight: 900;
    color: var(--dark);
    letter-spacing: -.5px;
}
.product-detail .info .price .old {
    text-decoration: line-through;
    color: var(--text-3);
    font-size: 18px; font-weight: 400;
    margin-left: 12px;
}
.product-detail .info .discount-tag {
    background: var(--brand);
    color: #fff;
    font-size: 12px; font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
}
.product-detail .info .divider {
    height: 1px;
    background: linear-gradient(90deg, var(--border), transparent);
    margin: 0 0 24px;
}
.product-detail .info .desc {
    color: var(--text-2);
    margin-bottom: 28px;
    line-height: 1.85;
}
.product-detail .info .meta {
    display: flex; gap: 12px; margin-bottom: 28px; flex-wrap: wrap;
}
.product-detail .info .meta-item {
    font-size: 13px; color: var(--text-2);
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: var(--bg-2);
    border-radius: var(--r-sm);
}
.product-detail .info .meta-item strong { color: var(--dark); font-weight: 700; }
.product-detail .info .meta-item .status-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34,197,94,.4);
}
.product-detail .info .meta-item .status-dot.out {
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239,68,68,.4);
}

/* Contact box — dark glass */
.contact-box {
    background: var(--dark);
    border-radius: var(--r);
    padding: 28px 32px;
    margin-top: 8px;
    color: #fff;
    position: relative;
    overflow: hidden;
}
.contact-box::before {
    content: '';
    position: absolute; top: -30px; right: -30px;
    width: 120px; height: 120px;
    border: 20px solid var(--brand);
    border-radius: 50%;
    opacity: .06;
}
.contact-box .title {
    font-size: 11px; font-weight: 700;
    color: var(--brand);
    letter-spacing: 1.5px; text-transform: uppercase;
    margin-bottom: 10px;
}
.contact-box .phone {
    font-size: 28px; font-weight: 900;
    color: #fff;
    letter-spacing: -.5px;
}
.contact-box .note { font-size: 13px; color: rgba(255,255,255,.4); margin-top: 6px; }

/* ===== BREADCRUMB ===== */
.breadcrumb {
    display: flex; align-items: center;
    font-size: 13px; color: var(--text-3);
    margin: 24px 0; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-3); font-weight: 500; }
.breadcrumb a:hover { color: var(--brand-dark); }
.breadcrumb .sep { padding: 0 10px; display: inline-flex; color: var(--border); }
.breadcrumb .current { color: var(--dark); font-weight: 600; }

/* ===== CATEGORY PAGE HERO ===== */
.cat-hero {
    background: linear-gradient(135deg, var(--brand-light), var(--accent));
    border-radius: var(--r);
    padding: 44px 48px;
    margin-bottom: 40px;
    display: flex; align-items: center; justify-content: space-between;
    position: relative; overflow: hidden;
}
.cat-hero::after {
    content: '';
    position: absolute; right: -30px; top: -30px;
    width: 180px; height: 180px;
    border: 30px solid var(--brand);
    border-radius: 50%;
    opacity: .06;
}
.cat-hero h1 { font-size: 30px; font-weight: 900; color: var(--dark); letter-spacing: -.5px; }
.cat-hero .cat-count { font-size: 14px; color: var(--text-2); margin-top: 8px; }
.cat-hero .cat-count strong { color: var(--brand-dark); font-weight: 700; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px;
    border: 1.5px solid var(--dark);
    background: var(--dark);
    color: #fff;
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    letter-spacing: .6px;
    text-transform: uppercase;
    transition: all .3s var(--ease);
}
.btn:hover {
    background: var(--brand); border-color: var(--brand);
    transform: translateY(-2px);
    box-shadow: var(--shadow-brand);
}
.btn-brand { background: var(--brand); border-color: var(--brand); }
.btn-brand:hover { background: var(--brand-dark); border-color: var(--brand-dark); }
.btn-glass {
    background: var(--glass);
    backdrop-filter: blur(8px);
    border-color: var(--glass-border);
    color: var(--dark);
}
.btn-glass:hover { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-outline {
    background: transparent;
    border-color: var(--border);
    color: var(--dark);
}
.btn-outline:hover { background: var(--dark); border-color: var(--dark); color: #fff; }

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 6px; margin-top: 40px; justify-content: center; }
.pagination a, .pagination span {
    padding: 10px 16px;
    border-radius: var(--r-sm);
    font-size: 14px; font-weight: 600;
    background: var(--white);
    color: var(--text-2);
    border: 1px solid var(--border);
    transition: all .3s var(--ease);
}
.pagination a:hover { background: var(--brand-light); border-color: var(--brand); color: var(--dark); }
.pagination .active { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ===== NEWSLETTER ===== */
.newsletter {
    background: linear-gradient(135deg, var(--brand-light), var(--accent));
    border-radius: var(--r);
    padding: 56px 48px;
    text-align: center;
    margin-bottom: -40px;
    position: relative;
    overflow: hidden;
}
.newsletter::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--grain);
    opacity: .4;
    pointer-events: none;
}
.newsletter h3 {
    font-size: 28px; font-weight: 900;
    color: var(--dark);
    letter-spacing: -.5px;
    margin-bottom: 10px;
    position: relative; z-index: 1;
}
.newsletter p {
    font-size: 15px; color: var(--text-2);
    margin-bottom: 28px;
    position: relative; z-index: 1;
}
.newsletter-form {
    display: flex; gap: 10px;
    max-width: 440px;
    margin: 0 auto;
    position: relative; z-index: 1;
}
.newsletter-form input {
    flex: 1;
    padding: 14px 20px;
    border: 1.5px solid var(--border);
    border-radius: 50px;
    font-size: 14px;
    background: var(--white);
    outline: none;
    font-family: inherit;
    transition: border-color .3s;
}
.newsletter-form input:focus { border-color: var(--brand); }
.newsletter-form button {
    padding: 14px 28px;
    background: var(--dark);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 13px; font-weight: 600;
    cursor: pointer;
    letter-spacing: .5px;
    text-transform: uppercase;
    font-family: inherit;
    transition: all .3s var(--ease);
}
.newsletter-form button:hover {
    background: var(--brand);
    transform: translateY(-1px);
}

/* ===== EMPTY / ALERT ===== */
.empty-state { text-align: center; padding: 80px 20px; color: var(--text-3); }
.empty-state p { font-size: 17px; margin-bottom: 24px; }
.alert { padding: 14px 20px; margin-bottom: 20px; font-size: 14px; border-radius: var(--r-sm); font-weight: 500; }
.alert-success { background: #f0f9f0; color: #2d6a2d; border: 1px solid #d0e8d0; }
.alert-error { background: #fdf0f0; color: #a02020; border: 1px solid #f0d0d0; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: #777;
    margin-top: 80px;
    position: relative;
}
.footer::before {
    content: '';
    position: absolute; inset: 0;
    background: var(--grain);
    opacity: .4;
    pointer-events: none;
}
.footer * { position: relative; z-index: 1; }
.footer a { color: #777; }
.footer a:hover { color: var(--brand); }

.footer-brand {
    display: flex; align-items: center; justify-content: center;
    gap: 40px; padding: 52px 0;
    border-bottom: 1px solid #1e1e1e;
    flex-wrap: wrap;
}
.footer-brand .f-logo {
    font-size: 36px; font-weight: 900; letter-spacing: 5px; color: #fff;
}
.footer-brand .f-logo .f-accent { color: var(--brand); }
.footer-brand .f-tagline {
    font-size: 14px; color: #555;
    border-left: 1px solid #2a2a2a;
    padding-left: 40px;
    line-height: 1.6;
    max-width: 300px;
}

.footer-main { padding: 48px 0 0; }
.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid #1e1e1e;
}
.footer-col h4 {
    font-size: 11px; font-weight: 700;
    color: var(--brand);
    margin-bottom: 20px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}
.footer-col p { font-size: 14px; line-height: 1.7; margin-bottom: 6px; }
.footer-col .footer-desc { font-size: 14px; line-height: 1.85; margin-bottom: 24px; color: #555; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
    font-size: 14px;
    display: inline-flex; align-items: center; gap: 0;
}
.footer-col ul li a::before {
    content: ''; display: inline-block;
    width: 0; height: 1px;
    background: var(--brand);
    transition: all .3s var(--ease);
    margin-right: 0;
}
.footer-col ul li a:hover::before { width: 14px; margin-right: 8px; }
.footer-col ul li a:hover { color: #fff; }

.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    background: #1a1a1a;
    border-radius: 12px;
    transition: all .3s var(--ease);
}
.footer-social a:hover {
    background: var(--brand); color: #fff;
    transform: translateY(-3px) rotate(-4deg);
    box-shadow: var(--shadow-brand);
}

.footer-bottom {
    text-align: center;
    padding: 28px 0;
    font-size: 13px;
    color: #444;
}
.footer-bottom strong { color: #777; }

/* ===== MAIN ===== */
.main { min-height: 60vh; padding: 0 0 0; }

/* ===== SLIDESHOW ===== */
.slideshow {
    position: relative; overflow: hidden;
    margin-bottom: 40px;
    border-radius: var(--r);
    margin-top: 24px;
    box-shadow: var(--shadow-lg);
}
.slideshow .slides { display: flex; transition: transform .7s var(--ease); }
.slideshow .slide { min-width: 100%; position: relative; }
.slideshow .slide img { width: 100%; height: 480px; object-fit: cover; }
.slideshow .slide::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 60%;
    background: linear-gradient(transparent, rgba(0,0,0,.5));
    pointer-events: none;
}
.slideshow .slide-content {
    position: absolute; bottom: 48px; left: 48px;
    color: #fff; z-index: 2;
}
.slideshow .slide-content h2 { font-size: 34px; font-weight: 800; }
.slideshow .slide-content p { font-size: 16px; opacity: .9; }
.slide-nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: var(--glass); backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    width: 48px; height: 48px; border-radius: 50%;
    cursor: pointer; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    z-index: 3;
    transition: all .3s var(--ease);
}
.slide-nav:hover {
    background: var(--brand); color: #fff;
    border-color: var(--brand);
    transform: translateY(-50%) scale(1.1);
}
.slide-prev { left: 20px; }
.slide-next { right: 20px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .product-grid, .product-grid.bento { grid-template-columns: repeat(3, 1fr); }
    .product-grid.bento .product-card:first-child { grid-column: span 2; grid-row: span 1; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .trust-bar { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .container { padding: 0 18px; }
    .product-grid, .product-grid.bento { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-grid.bento .product-card:first-child { grid-column: span 2; }
    .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .product-detail { grid-template-columns: 1fr; gap: 28px; }
    .product-detail .image img { height: 340px; }
    .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    .header-inner { height: 60px; }
    .header-top { display: none; }
    .trust-bar { grid-template-columns: 1fr 1fr; gap: 10px; }
    .trust-item { padding: 16px 18px; }
    .nav > a { padding: 6px 10px; font-size: 12px; }
    .hero h1 { letter-spacing: -1px; }
    .section-title { font-size: 24px; }
    .cat-hero { flex-direction: column; text-align: center; padding: 32px 24px; }
    .footer-brand { flex-direction: column; text-align: center; gap: 16px; }
    .footer-brand .f-tagline { border-left: none; padding-left: 0; }
    .header-contact { display: none; }
    .promo-section { margin: 0 -18px 60px; padding: 56px 0; }
    .newsletter { padding: 40px 24px; }
    .newsletter-form { flex-direction: column; }
}
@media (max-width: 480px) {
    .product-grid, .product-grid.bento { grid-template-columns: 1fr 1fr; gap: 10px; }
    .product-grid.bento .product-card:first-child { grid-column: span 2; }
    .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .product-card .card-body { padding: 12px 14px 16px; }
    .product-card .name { font-size: 13px; }
    .product-card .price { font-size: 14px; }
    .trust-bar { grid-template-columns: 1fr; }
    .hero { padding: 48px 0 32px; }
    .category-card { padding: 28px 16px; }
}
