/* ============================================================
   HAMMERWAVE — PREMIUM STREETWEAR STYLESHEET
   Palette: Matte White / Matte Black / Soft Gray only.
   Style language: Glassmorphism + Claymorphism, soft shadows,
   blur, rounded corners, subtle glow.
   ============================================================ */

:root {
    /* Vanilla / cream base palette */
    --matte-white:  #FBF7EF;
    --matte-white-2:#F3ECDD;
    --matte-black:  #241D16;
    --matte-black-2:#2E251B;
    --soft-gray:    #D8CBB4;
    --soft-gray-2:  #9C8F79;
    --line:         rgba(36,29,22,0.09);
    --glass-bg:     rgba(251,247,239,0.6);
    --glass-border: rgba(255,255,255,0.4);
    --glow:         rgba(232,90,37,0.14);

    /* Reddish-yellow-orange accent for all primary actions */
    --accent:       #E85A25;
    --accent-2:     #F2872E;
    --accent-dark:  #C4441B;
    --accent-light: #FBEADB;

    --font-heading: 'Poppins', sans-serif;
    --font-body:    'Manrope', sans-serif;

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;

    --shadow-clay:      8px 8px 20px rgba(90,60,20,0.10), -8px -8px 20px rgba(255,255,255,0.7);
    --shadow-clay-dark: 8px 8px 20px rgba(0,0,0,0.35), -4px -4px 16px rgba(255,255,255,0.03);
    --shadow-soft:      0 10px 30px rgba(90,60,20,0.10);

    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: auto; }

body {
    font-family: var(--font-body);
    background: var(--matte-white);
    color: var(--matte-black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--matte-black);
}

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

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--soft-gray-2);
    font-weight: 600;
    margin-bottom: 10px;
}
.section-tag::before {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--matte-black);
    box-shadow: 0 0 12px var(--glow);
}

.section-heading {
    font-size: clamp(28px, 4vw, 46px);
    margin-bottom: 8px;
}

.section-head-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease);
    position: relative;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(135deg, var(--accent-2), var(--accent) 60%, var(--accent-dark));
    color: var(--matte-white);
    box-shadow: 0 10px 26px rgba(232,90,37,0.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(232,90,37,0.45), 0 0 0 1px rgba(232,90,37,0.1);
}
.btn-outline {
    background: transparent;
    color: var(--matte-black);
    box-shadow: inset 0 0 0 1.5px var(--matte-black);
}
.btn-outline:hover {
    background: var(--matte-black);
    color: var(--matte-white);
    transform: translateY(-3px);
}
.btn-light {
    background: var(--matte-white);
    color: var(--accent-dark);
    box-shadow: var(--shadow-clay);
}
.btn-light:hover { transform: translateY(-3px); }
.btn::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}
.btn:hover::after { opacity: 1; }

/* ============================================================
   SPLASH SCREEN — simple dark-to-reveal
   ============================================================ */
#splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--matte-black);
    display: flex;
    align-items: center;
    justify-content: center;
}

#splash-logo-wrap {
    width: 130px;
    opacity: 0;
    transform: scale(0.9);
}
#splash-logo {
    width: 100%;
    filter: drop-shadow(0 0 24px rgba(232,90,37,0.35));
}

body.splash-active { overflow: hidden; height: 100vh; }

@media (max-width: 640px) {
    #splash-logo-wrap { width: 100px; }
}


/* ============================================================
   NAVBAR — glass, sticky, blurs on scroll
   ============================================================ */
#site-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 500;
    background: transparent;
    transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), padding 0.4s var(--ease);
    padding: 18px 0;
}
#site-navbar.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    box-shadow: 0 8px 32px rgba(18,18,18,0.06);
    border-bottom: 1px solid var(--glass-border);
    padding: 12px 0;
}
.nav-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.05em;
}
.nav-logo img { width: 38px; height: 38px; object-fit: contain; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}
.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--matte-black);
    position: relative;
    padding: 4px 0;
    transition: opacity 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    width: 0%; height: 2px;
    background: var(--matte-black);
    transition: width 0.35s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.icon-btn {
    position: relative;
    width: 46px; height: 46px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: var(--matte-black);
    font-size: 19px;
    transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.icon-btn:hover { background: rgba(18,18,18,0.06); transform: translateY(-2px); }
.badge {
    position: absolute;
    top: 0px; right: 0px;
    background: var(--accent);
    color: var(--matte-white);
    font-size: 11px;
    font-weight: 800;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 6px rgba(232,90,37,0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}
.hamburger span {
    display: block; height: 2px; width: 100%;
    background: var(--matte-black);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

#search-overlay {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.4s var(--ease);
}
#search-overlay.open { max-height: 100px; padding: 20px 24px; }
.search-form {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
}
.search-form input {
    flex: 1;
    border: none;
    background: transparent;
    border-bottom: 1.5px solid var(--matte-black);
    padding: 10px 4px;
    font-size: 18px;
    font-family: var(--font-heading);
    color: var(--matte-black);
    outline: none;
}
.search-form button { font-size: 18px; color: var(--matte-black); padding: 8px; }

#notif-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 24px;
    width: 320px;
    max-height: 0;
    overflow: hidden;
    background: rgba(245,245,243,0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
    opacity: 0;
}
#notif-dropdown.open { max-height: 420px; opacity: 1; overflow-y: auto; }
.notif-dropdown-header {
    padding: 16px 20px;
    font-weight: 700;
    font-family: var(--font-heading);
    border-bottom: 1px solid var(--line);
}
.notif-empty { padding: 24px 20px; color: var(--soft-gray-2); font-size: 14px; }
#notif-list .notif-item {
    display: flex; gap: 12px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    align-items: flex-start;
}
#notif-list .notif-item i { color: var(--matte-black); margin-top: 2px; }

#mobile-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 80vw); height: 100vh;
    background: var(--matte-white);
    box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    z-index: 600;
    display: flex;
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 24px;
    transition: right 0.5s var(--ease);
}
#mobile-nav.open { right: 0; }
#mobile-nav a { font-size: 18px; font-weight: 600; font-family: var(--font-heading); }

/* ============================================================
   TOAST NOTIFICATIONS (slide in)
   ============================================================ */
#notification-container {
    position: fixed;
    top: 24px; right: 24px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.toast {
    display: flex; align-items: center; gap: 12px;
    background: rgba(18,18,18,0.92);
    color: var(--matte-white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-clay-dark);
    font-size: 14px;
    font-weight: 500;
    min-width: 260px;
    transform: translateX(120%);
    opacity: 0;
    backdrop-filter: blur(10px);
}
.toast i { font-size: 16px; }
.toast.show { transform: translateX(0); opacity: 1; }

/* ============================================================
   HERO
   ============================================================ */
#page-content { padding-top: 0; }

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, var(--matte-white) 0%, var(--matte-white-2) 100%);
}
.hero-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 140px 24px 80px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
}
.hero-text .section-tag { margin-bottom: 18px; }
.hero-title {
    font-size: clamp(42px, 7vw, 84px);
    line-height: 0.98;
    margin-bottom: 22px;
}
.hero-title span { display: block; color: var(--soft-gray-2); }
.hero-sub {
    font-size: 17px;
    color: var(--soft-gray-2);
    max-width: 420px;
    margin-bottom: 34px;
    line-height: 1.6;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-visual {
    position: relative;
    display: flex; align-items: center; justify-content: center;
}
.hero-clay-panel {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    background: var(--matte-white);
    box-shadow: var(--shadow-clay);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-clay-panel img { width: 55%; opacity: 0.92; filter: drop-shadow(0 30px 40px rgba(0,0,0,0.15)); }

.hero-clay-panel video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}
.hero-glow {
    position: absolute;
    width: 60%; height: 60%;
    background: radial-gradient(circle, rgba(18,18,18,0.08), transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: 0;
}
.hero-scroll-cue {
    position: absolute;
    bottom: 34px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--soft-gray-2);
}
.hero-scroll-cue .line { width: 1px; height: 34px; background: var(--soft-gray-2); overflow: hidden; position: relative; }
.hero-scroll-cue .line::after {
    content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%;
    background: var(--accent);
    animation: scrollCue 1.8s infinite ease-in-out;
}
@keyframes scrollCue { 0% { top: -100%; } 100% { top: 100%; } }

/* ============================================================
   PROMO MARQUEE STRIP
   ============================================================ */
.marquee-strip {
    background: var(--matte-black);
    color: var(--matte-white);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}
.marquee-track {
    display: inline-flex;
    gap: 60px;
    animation: marqueeScroll 22s linear infinite;
}
.marquee-track span {
    font-family: var(--font-heading);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex; align-items: center; gap: 14px;
}
.marquee-track span i { font-size: 8px; color: var(--soft-gray); }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   SECTION WRAPPER
   ============================================================ */
.section { padding: 100px 0; }
.section-alt { background: var(--matte-white-2); }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
}
.product-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.product-card {
    position: relative;
    background: var(--matte-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-clay);
    overflow: hidden;
    transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
    opacity: 0;
    transform: translateY(40px);
}
.product-card.in-view { opacity: 1; transform: translateY(0); }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 44px rgba(18,18,18,0.14); }

.product-card-media {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--matte-white-2);
}
.product-card-media img {
    width: 100%; height: 100%; object-fit: cover;
    transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}
.product-card-media .img-hover { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .img-hover { opacity: 1; }
.product-card:hover .img-main { transform: scale(1.05); }

.product-tag {
    position: absolute; top: 14px; left: 14px;
    background: var(--accent);
    color: var(--matte-white);
    font-size: 10px; font-weight: 700; letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
    z-index: 2;
}
.product-discount {
    position: absolute; top: 14px; right: 14px;
    background: var(--matte-white);
    color: var(--matte-black);
    font-size: 10px; font-weight: 700;
    padding: 6px 10px;
    border-radius: 999px;
    box-shadow: var(--shadow-soft);
    z-index: 2;
}
.product-quick-actions {
    position: absolute; right: 14px; top: 54px;
    display: flex; flex-direction: column; gap: 10px;
    opacity: 0; transform: translateX(10px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    z-index: 2;
}
.product-card:hover .product-quick-actions { opacity: 1; transform: translateX(0); }
.quick-action-btn {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(245,245,243,0.9);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    color: var(--matte-black);
    font-size: 16px;
    box-shadow: var(--shadow-soft);
    transition: background 0.3s, transform 0.3s;
}
.quick-action-btn:hover { background: var(--accent); color: var(--matte-white); transform: scale(1.08); }
.quick-action-btn.active { background: var(--accent); color: var(--matte-white); }

.product-card-body { padding: 20px; }
.product-card-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--soft-gray-2); margin-bottom: 6px; }
.product-card-name { font-family: var(--font-heading); font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.product-card-rating { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--soft-gray-2); margin-bottom: 10px; }
.product-card-rating i { color: var(--matte-black); font-size: 11px; }
.product-card-price-row { display: flex; align-items: center; justify-content: space-between; }
.price-group { display: flex; align-items: center; gap: 8px; }
.price-current { font-family: var(--font-heading); font-weight: 700; font-size: 16px; }
.price-old { font-size: 13px; color: var(--soft-gray-2); text-decoration: line-through; }
.add-to-cart-mini {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--matte-white);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px;
    box-shadow: 0 6px 16px rgba(232,90,37,0.35);
    transition: transform 0.3s var(--ease);
}
.add-to-cart-mini:hover { transform: scale(1.1) rotate(6deg); }

/* Category / collection cards */
.collection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.collection-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--matte-black);
    box-shadow: var(--shadow-clay);
}
.collection-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.75; transition: transform 0.6s var(--ease), opacity 0.4s; }
.collection-card:hover img { transform: scale(1.06); opacity: 0.9; }
.collection-card-label {
    position: absolute; bottom: 24px; left: 24px; right: 24px;
    color: var(--matte-white);
    display: flex; align-items: center; justify-content: space-between;
}
.collection-card-label h3 { color: var(--matte-white); font-size: 22px; }
.collection-card-label i {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(245,245,243,0.15);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s, transform 0.3s;
}
.collection-card:hover .collection-card-label i { background: var(--matte-white); color: var(--matte-black); transform: rotate(45deg); }

/* Promo banner */
.promo-banner {
    position: relative;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--accent-dark), var(--accent) 55%, var(--accent-2));
    color: var(--matte-white);
    padding: 90px 60px;
    text-align: center;
    overflow: hidden;
}
.promo-banner::before {
    content: '';
    position: absolute; inset: -40%;
    background: radial-gradient(circle at 30% 30%, rgba(245,245,243,0.08), transparent 60%);
}
.promo-banner h2 { color: var(--matte-white); font-size: clamp(30px, 5vw, 54px); margin-bottom: 18px; }
.promo-banner p { color: var(--soft-gray); max-width: 480px; margin: 0 auto 30px; }

/* Newsletter section (homepage, separate from footer) */
.newsletter-section {
    text-align: center;
    padding: 90px 0;
}
.newsletter-section h2 { margin-bottom: 14px; }
.newsletter-section p { color: var(--soft-gray-2); margin-bottom: 30px; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
    position: relative;
    background: var(--matte-black);
    color: var(--soft-gray);
    padding-top: 60px;
    overflow: hidden;
}
.footer-wave { position: absolute; top: -1px; left: 0; width: 100%; line-height: 0; }
.footer-wave svg { width: 100%; height: 70px; display: block; }
.footer-wave path { fill: var(--matte-white); }

.footer-inner {
    max-width: 1320px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
    gap: 40px;
}
.footer-logo { width: 46px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; line-height: 1.7; margin-bottom: 20px; }
.social-icons { display: flex; gap: 12px; }
.social-icons a {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(245,245,243,0.08);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s, transform 0.3s;
}
.social-icons a:hover { background: var(--matte-white); color: var(--matte-black); transform: translateY(-3px); }

.footer-col h4 { color: var(--matte-white); font-size: 14px; margin-bottom: 18px; letter-spacing: 0.04em; }
.footer-col a { display: block; font-size: 13px; color: var(--soft-gray); margin-bottom: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--matte-white); }

.footer-newsletter form { display: flex; gap: 8px; margin-top: 6px; }
.footer-newsletter input {
    flex: 1; padding: 12px 14px; border-radius: 999px; border: 1px solid rgba(245,245,243,0.15);
    background: rgba(245,245,243,0.05); color: var(--matte-white); font-size: 13px; outline: none;
}
.footer-newsletter button {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--matte-white); color: var(--matte-black);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.3s;
}
.footer-newsletter button:hover { transform: scale(1.08); }
.newsletter-msg { font-size: 12px; margin-top: 10px; min-height: 16px; }

.footer-bottom {
    border-top: 1px solid rgba(245,245,243,0.1);
    text-align: center;
    padding: 20px 24px;
    font-size: 12px;
}

/* ============================================================
   PAGE HEADER (Shop / About / Contact banners)
   ============================================================ */
.page-banner {
    padding: 160px 0 60px;
    text-align: center;
    background: linear-gradient(180deg, var(--matte-white-2), var(--matte-white));
}
.page-banner .section-tag { justify-content: center; }
.breadcrumb { font-size: 13px; color: var(--soft-gray-2); margin-top: 10px; }
.breadcrumb a { color: var(--accent-dark); font-weight: 600; }

/* ============================================================
   SHOP FILTER BAR
   ============================================================ */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; padding: 60px 0 100px; }
.filter-panel {
    background: var(--matte-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-clay);
    padding: 26px;
    align-self: start;
    position: sticky;
    top: 110px;
}
.filter-group { margin-bottom: 28px; }
.filter-group h4 { font-size: 14px; margin-bottom: 14px; }
.filter-group label {
    display: flex; align-items: center; gap: 10px;
    font-size: 13px; color: var(--soft-gray-2);
    margin-bottom: 10px; cursor: pointer;
}
.filter-group input[type="checkbox"] { accent-color: var(--accent); width: 15px; height: 15px; }
.price-range { width: 100%; accent-color: var(--accent); }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; flex-wrap: wrap; gap: 14px; }
.shop-toolbar select {
    padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line);
    background: var(--matte-white); font-size: 13px; box-shadow: var(--shadow-soft);
}
.results-count { font-size: 13px; color: var(--soft-gray-2); }

.pagination { display: flex; justify-content: center; gap: 10px; margin-top: 50px; }
.pagination a, .pagination span {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600;
    background: var(--matte-white); box-shadow: var(--shadow-soft);
}
.pagination .active { background: var(--accent); color: var(--matte-white); }

/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-detail { padding: 140px 0 100px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }

.gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--matte-white-2);
    box-shadow: var(--shadow-clay);
    cursor: zoom-in;
    position: relative;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-thumbs { display: flex; gap: 12px; margin-top: 16px; }
.gallery-thumbs img {
    width: 78px; height: 90px; object-fit: cover; border-radius: var(--radius-sm);
    box-shadow: var(--shadow-soft); cursor: pointer; opacity: 0.6; transition: opacity 0.3s, box-shadow 0.3s;
}
.gallery-thumbs img.active { opacity: 1; box-shadow: 0 0 0 2px var(--accent); }

.product-info-cat { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--soft-gray-2); margin-bottom: 10px; }
.product-info h1 { font-size: clamp(28px, 4vw, 40px); margin-bottom: 14px; }
.product-info-rating { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 13px; color: var(--soft-gray-2); }
.product-info-rating i { color: var(--matte-black); font-size: 12px; }
.product-info-price { display: flex; align-items: center; gap: 14px; margin-bottom: 26px; }
.product-info-price .price-current { font-size: 30px; }
.product-info-price .price-old { font-size: 18px; }
.product-info-desc { color: var(--soft-gray-2); font-size: 14px; line-height: 1.8; margin-bottom: 30px; }

.option-group { margin-bottom: 26px; }
.option-group h4 { font-size: 13px; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.size-options, .color-options { display: flex; gap: 10px; flex-wrap: wrap; }
.size-chip {
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; font-weight: 600;
    background: var(--matte-white); box-shadow: var(--shadow-soft);
    cursor: pointer; transition: all 0.3s var(--ease);
}
.size-chip.active, .size-chip:hover { background: var(--accent); color: var(--matte-white); }
.color-chip {
    width: 34px; height: 34px; border-radius: 50%;
    box-shadow: var(--shadow-soft); cursor: pointer;
    border: 3px solid var(--matte-white);
    outline: 1px solid var(--line);
    transition: transform 0.3s var(--ease);
}
.color-chip.active { transform: scale(1.15); outline: 2px solid var(--accent); }

.qty-selector { display: flex; align-items: center; gap: 16px; background: var(--matte-white); border-radius: 999px; box-shadow: var(--shadow-soft); padding: 6px; width: fit-content; }
.qty-selector button { width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background 0.3s; }
.qty-selector button:hover { background: var(--matte-white-2); }
.qty-selector span { min-width: 30px; text-align: center; font-weight: 700; }

.product-actions-row { display: flex; gap: 14px; margin: 30px 0; flex-wrap: wrap; }
.product-actions-row .btn-primary,
.product-actions-row .btn-outline { flex: 1; min-width: 150px; }
.product-actions-row .icon-btn { width: 56px; height: 56px; background: var(--matte-white); box-shadow: var(--shadow-soft); }

.delivery-info { display: flex; flex-direction: column; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); }
.delivery-info div { display: flex; gap: 10px; font-size: 13px; color: var(--soft-gray-2); align-items: flex-start; }
.delivery-info i { color: var(--matte-black); margin-top: 2px; }

.product-tabs { margin-top: 80px; }
.tab-headers { display: flex; gap: 30px; border-bottom: 1px solid var(--line); margin-bottom: 30px; flex-wrap: wrap; }
.tab-headers button {
    padding: 14px 0; font-weight: 600; font-size: 14px; color: var(--soft-gray-2);
    border-bottom: 2px solid transparent; transition: color 0.3s, border-color 0.3s;
}
.tab-headers button.active { color: var(--accent); border-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.size-chart-table { width: 100%; border-collapse: collapse; }
.size-chart-table th, .size-chart-table td { padding: 12px 16px; text-align: center; border: 1px solid var(--line); font-size: 13px; }
.size-chart-table th { background: var(--matte-white-2); }

.review-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--matte-black); color: var(--matte-white); display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.review-name { font-weight: 700; font-size: 14px; }
.review-stars { color: var(--matte-black); font-size: 11px; margin: 4px 0 8px; }
.review-comment { font-size: 13px; color: var(--soft-gray-2); line-height: 1.6; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-layout { display: grid; grid-template-columns: 1.6fr 1fr; gap: 40px; padding: 140px 0 100px; align-items: start; }
.cart-item {
    display: grid; grid-template-columns: 100px 1fr auto auto; align-items: center; gap: 20px;
    background: var(--matte-white); border-radius: var(--radius-md); box-shadow: var(--shadow-clay);
    padding: 20px; margin-bottom: 18px;
}
.cart-item img { width: 100px; height: 110px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-item-name { font-weight: 700; font-family: var(--font-heading); margin-bottom: 6px; }
.cart-item-meta { font-size: 12px; color: var(--soft-gray-2); margin-bottom: 8px; }
.cart-item-remove { font-size: 12px; color: var(--soft-gray-2); text-decoration: underline; cursor: pointer; }
.cart-empty { text-align: center; padding: 100px 20px; }
.cart-empty i { font-size: 50px; color: var(--soft-gray); margin-bottom: 20px; }

.order-summary { background: var(--matte-white); border-radius: var(--radius-md); box-shadow: var(--shadow-clay); padding: 30px; position: sticky; top: 110px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 14px; color: var(--soft-gray-2); }
.summary-row.total { font-weight: 700; color: var(--matte-black); font-size: 18px; border-top: 1px solid var(--line); padding-top: 16px; margin-top: 6px; }
.coupon-row { display: flex; gap: 10px; margin: 20px 0; }
.coupon-row input { flex: 1; padding: 12px 16px; border-radius: 999px; border: 1px solid var(--line); font-size: 13px; }
.coupon-row button { padding: 12px 20px; border-radius: 999px; background: var(--accent); color: var(--matte-white); font-size: 13px; font-weight: 600; }
.coupon-msg { font-size: 12px; margin-top: -8px; margin-bottom: 12px; min-height: 14px; }

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 40px; padding: 140px 0 100px; align-items: start; }
.checkout-form-card { background: var(--matte-white); border-radius: var(--radius-md); box-shadow: var(--shadow-clay); padding: 34px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; color: var(--soft-gray-2); }
.form-group input, .form-group textarea, .form-group select {
    padding: 14px 16px; border-radius: var(--radius-sm); border: 1px solid var(--line);
    background: var(--matte-white-2); font-size: 14px; font-family: var(--font-body); outline: none;
    transition: box-shadow 0.3s, border-color 0.3s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--accent); box-shadow: 0 0 0 3px rgba(232,90,37,0.12);
}

.payment-methods { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin: 24px 0; }
.payment-method {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    padding: 18px 10px; border-radius: var(--radius-sm); background: var(--matte-white-2);
    box-shadow: var(--shadow-soft); cursor: pointer; font-size: 12px; font-weight: 600;
    transition: all 0.3s var(--ease); border: 2px solid transparent;
}
.payment-method.active { border-color: var(--accent); background: var(--accent-light); }
.payment-method i { font-size: 20px; }

/* ---------- HOLD TO PLACE ORDER BUTTON ---------- */
.hold-order-wrap { margin-top: 30px; text-align: center; }
#hold-order-btn {
    position: relative;
    width: 100%;
    padding: 22px 20px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-2), var(--accent) 60%, var(--accent-dark));
    color: var(--matte-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.04em;
    overflow: hidden;
    isolation: isolate;
    box-shadow: var(--shadow-clay-dark);
    user-select: none;
    -webkit-user-select: none;
    touch-action: none;
}
#hold-order-btn .hold-progress-ring {
    position: absolute; inset: 0;
    border-radius: 999px;
    background: conic-gradient(var(--matte-white) calc(var(--progress, 0) * 1%), transparent 0%);
    opacity: 0.18;
    z-index: 0;
    transition: opacity 0.2s;
}
#hold-order-btn .hold-label { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; gap: 10px; }
#hold-order-btn.holding { box-shadow: 0 0 0 6px rgba(18,18,18,0.08), var(--shadow-clay-dark); }
#hold-order-btn .hold-particles {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hold-particle {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--matte-white);
    opacity: 0;
}
#hold-order-btn .hold-wave {
    position: absolute; bottom: 0; left: 0; width: 200%; height: 100%;
    background: repeating-linear-gradient(90deg, rgba(245,245,243,0.12) 0 40px, transparent 40px 80px);
    transform: translateX(0);
    z-index: 0;
    opacity: 0;
}
#hold-order-btn.holding .hold-wave { opacity: 1; animation: holdWaveMove 1.2s linear infinite; }
@keyframes holdWaveMove { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.hold-hint { font-size: 12px; color: var(--soft-gray-2); margin-top: 12px; }

/* ---------- Order Success Overlay ---------- */
#order-success-overlay {
    position: fixed; inset: 0; z-index: 9500;
    background: rgba(245,245,243,0.97);
    backdrop-filter: blur(20px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.4s var(--ease);
}
#order-success-overlay.show { opacity: 1; visibility: visible; }
.success-card { text-align: center; padding: 40px; }
.success-check {
    width: 110px; height: 110px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-2), var(--accent-dark));
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 20px 40px rgba(232,90,37,0.35);
}
.success-check svg { width: 54px; height: 54px; }
.success-check svg path {
    stroke: var(--matte-white); stroke-width: 5; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 60; stroke-dashoffset: 60;
}
#order-success-overlay.show .success-check svg path { animation: drawCheck 0.6s 0.3s var(--ease) forwards; }
@keyframes drawCheck { to { stroke-dashoffset: 0; } }
.success-card h2 { font-size: 26px; margin-bottom: 10px; }
.success-card p { color: var(--soft-gray-2); margin-bottom: 30px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story { padding: 100px 0; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-story-visual { border-radius: var(--radius-lg); background: var(--matte-black); aspect-ratio: 4/5; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-clay-dark); }
.about-story-visual img { width: 45%; filter: brightness(0) invert(1); opacity: 0.9; }
.about-story p { color: var(--soft-gray-2); line-height: 1.8; margin-bottom: 18px; }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.value-card { background: var(--matte-white); border-radius: var(--radius-md); box-shadow: var(--shadow-clay); padding: 34px; text-align: left; }
.value-card i { font-size: 26px; margin-bottom: 20px; display: block; }
.value-card h3 { font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--soft-gray-2); line-height: 1.7; }

.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 8px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-bottom: 46px; opacity: 0; transform: translateX(-20px); }
.timeline-item.in-view { opacity: 1; transform: translateX(0); transition: all 0.6s var(--ease); }
.timeline-item::before {
    content: ''; position: absolute; left: -40px; top: 4px;
    width: 18px; height: 18px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 0 6px var(--matte-white), 0 0 0 7px var(--line);
}
.timeline-item h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--soft-gray-2); margin-bottom: 6px; }
.timeline-item p { font-size: 14px; color: var(--soft-gray-2); line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; padding: 60px 0 100px; }
.contact-info-card { background: var(--matte-black); color: var(--matte-white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-clay-dark); }
.contact-info-card h3 { color: var(--matte-white); margin-bottom: 24px; }
.contact-info-row { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-row i { width: 40px; height: 40px; border-radius: 50%; background: rgba(245,245,243,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-row div span { display: block; font-size: 12px; color: var(--soft-gray); margin-bottom: 4px; }
.contact-map { border-radius: var(--radius-md); overflow: hidden; margin-top: 26px; aspect-ratio: 16/9; background: rgba(245,245,243,0.08); display: flex; align-items: center; justify-content: center; color: var(--soft-gray); font-size: 13px; }
.contact-form-card { background: var(--matte-white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-clay); }

/* ============================================================
   AUTH PAGES (login/register)
   ============================================================ */
.auth-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 140px 20px 60px; }
.auth-card { width: 100%; max-width: 440px; background: var(--matte-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-clay); padding: 44px; text-align: center; }
.auth-card img { width: 56px; margin: 0 auto 20px; }
.auth-card h2 { margin-bottom: 8px; }
.auth-card p.sub { color: var(--soft-gray-2); font-size: 13px; margin-bottom: 30px; }
.auth-card form { text-align: left; display: flex; flex-direction: column; gap: 16px; }
.auth-switch { margin-top: 22px; font-size: 13px; color: var(--soft-gray-2); }
.auth-switch a { font-weight: 700; color: var(--accent-dark); }
.form-error { background: rgba(200,0,0,0.06); color: #a32020; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 16px; }
.form-success { background: rgba(0,120,0,0.06); color: #1f6b1f; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 13px; margin-bottom: 16px; }

/* ============================================================
   SIMPLE STATIC PAGE (FAQ / policies)
   ============================================================ */
.static-page { padding: 60px 0 100px; max-width: 820px; margin: 0 auto; }
.static-page h2 { margin: 34px 0 14px; font-size: 22px; }
.static-page p { color: var(--soft-gray-2); line-height: 1.8; margin-bottom: 14px; }
.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; cursor: pointer; }
.faq-item h3 { font-size: 16px; display: flex; justify-content: space-between; align-items: center; }
.faq-item .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); font-size: 14px; color: var(--soft-gray-2); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 300px; padding-top: 12px; }
.faq-item.open i { transform: rotate(45deg); }
.faq-item i { transition: transform 0.3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .collection-grid { grid-template-columns: repeat(2, 1fr); }
    .shop-layout { grid-template-columns: 220px 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 120px; }
    .hero-text { order: 2; }
    .hero-visual { order: 1; max-width: 340px; margin: 0 auto; }
    .hero-cta { justify-content: center; }
    .product-detail-grid { grid-template-columns: 1fr; }
    .cart-layout, .checkout-layout, .contact-layout { grid-template-columns: 1fr; }
    .about-story { grid-template-columns: 1fr; }
    .shop-layout { grid-template-columns: 1fr; }
    .filter-panel { position: static; }
}

@media (max-width: 700px) {
    .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .product-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
    .collection-grid { grid-template-columns: 1fr; }
    .value-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .cart-item { grid-template-columns: 70px 1fr; row-gap: 10px; }
    .form-row { grid-template-columns: 1fr; }
    .payment-methods { grid-template-columns: repeat(2, 1fr); }
    .section { padding: 60px 0; }
    .promo-banner { padding: 60px 24px; }
}

@media (max-width: 480px) {
    .nav-logo span { display: none; }
    .container { padding: 0 18px; }
}
