/* ============================================================
   TinyShop — Starter Theme: "Boutique Editorial"

   Warm serif headlines (DM Serif Display), clean Inter body.
   Soft pill shapes. Warm neutrals. Generous whitespace.
   Subtle depth. Confident but inviting. Feels like a magazine.
   ============================================================ */

/* --- Design Tokens --- */
:root {
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'DM Serif Display', Georgia, 'Times New Roman', serif;

    --color-bg: #FAFAF8;
    --color-bg-alt: #F0EFEC;
    --color-text: #1A1A1A;
    --color-text-muted: #8A8A82;
    --color-accent: #1A1A1A;
    --color-accent-hover: #333333;
    --color-border: #E5E4E0;
    --color-error: #D44;

    --pop: #C45D3E;
    --pop-soft: rgba(196, 93, 62, 0.08);

    --radius: 12px;
    --radius-sm: 8px;
    --radius-full: 999px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}


/* --- Entrance Animations --- */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

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

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal.revealed.d1 { transition-delay: 0.06s; }
.reveal.revealed.d2 { transition-delay: 0.12s; }
.reveal.revealed.d3 { transition-delay: 0.18s; }
.reveal.revealed.d4 { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}


/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
    background: var(--palette-anchor, #1A1A1A);
    color: var(--palette-anchor-text, #FFF);
    padding: 10px 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.announcement-bar-item {
    font-size: 12px;
    font-weight: 600;
    color: var(--palette-anchor-text, #FFF);
    letter-spacing: 0.08em;
}

.announcement-bar-item svg {
    color: var(--palette-anchor-text, #FFF);
    opacity: 0.35;
}


/* ============================================================
   TYPOGRAPHY — Serif headlines, clean body
   ============================================================ */
.shop-name,
.desktop-header-name,
.desktop-footer-name {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--color-text);
}

.product-title {
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.4;
}

.desktop-header-link,
.shop-tagline,
.desktop-footer-tagline {
    font-weight: 400;
}


/* ============================================================
   MOBILE HEADER — Warm, centered
   ============================================================ */
.mobile-header {
    padding: 24px 16px 20px;
}

.shop-logo {
    height: 48px;
    max-height: 64px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    margin: 0 auto var(--spacing-sm);
}

.shop-logo-placeholder {
    background: var(--palette-anchor, #1A1A1A);
    color: #FFF;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    letter-spacing: 0;
}

.shop-name {
    font-size: 1.5rem;
    color: var(--palette-anchor, #1A1A1A);
    letter-spacing: -0.01em;
}

.shop-tagline {
    color: var(--palette-depth, var(--color-text-muted));
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
}

.shop-contact i {
    color: var(--palette-anchor, #1A1A1A);
    font-size: 14px;
}

.shop-contact a,
.shop-contact button {
    color: var(--palette-depth, var(--color-text-muted));
    font-size: 14px;
}

.shop-social a {
    color: var(--color-text-muted);
    font-size: 16px;
    transition: color 0.2s;
}
.shop-social a:hover { color: var(--color-text); }
.shop-social a:active { opacity: 0.6; transform: scale(0.94); }


/* ============================================================
   SEARCH OVERLAY — Floating command bar
   ============================================================ */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9990;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 18vh 16px 20px;
}

.search-overlay-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    transform: translateY(-10px);
    transition: transform 0.25s var(--ease-out);
}

.search-overlay.active .search-overlay-inner {
    transform: translateY(0);
}

.search-palette {
    background: #FFF;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.06);
    padding: 0;
    display: flex;
    align-items: center;
    border: none;
}

.search-overlay-bar {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-palette-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
}

.search-overlay-input {
    width: 100%;
    padding: 18px 18px 18px 50px;
    border: none;
    background: transparent;
    color: var(--color-text);
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    outline: none;
}

.search-overlay-input::placeholder {
    color: #C0BFB8;
    font-weight: 400;
}

.search-palette-kbd {
    display: none;
    padding: 4px 8px;
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    margin-right: 12px;
}

.search-overlay-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: color 0.15s;
    flex-shrink: 0;
    cursor: pointer;
    border: none;
    background: none;
    border-left: 1px solid var(--color-border);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.search-overlay-close:hover {
    color: var(--color-text);
}


/* ============================================================
   NO-HERO STATE
   ============================================================ */
.shop-page--no-hero .mobile-header {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 24px;
}

.shop-page--no-hero .shop-search { margin-top: -4px; }
.shop-page--no-hero .products-section { margin-top: 8px; }


/* ============================================================
   HERO SLIDER — Full-bleed, cinematic
   ============================================================ */
.hero-slider {
    margin: 0 0 40px;
    border-radius: 0;
    overflow: visible;
}

.hero-slider-track {
    gap: 0;
    padding: 0;
    scroll-padding-inline: 0;
}

.hero-slide {
    flex: 0 0 100%;
    min-width: 100%;
    scroll-snap-align: start;
    border-radius: 0;
    overflow: hidden;
}

.hero-slider[data-count="1"] .hero-slider-track {
    overflow: hidden;
    justify-content: center;
    padding: 0;
}

.hero-slide-img {
    aspect-ratio: auto;
    height: 440px;
    border-radius: 0;
}

.hero-slide-content {
    align-items: flex-start;
    text-align: left;
    justify-content: flex-end;
    padding: 36px 24px;
    top: 0;
    background: linear-gradient(transparent 35%, rgba(0, 0, 0, 0.6));
}

.hero-slide-glass {
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    border: none;
    max-width: 460px;
}

.hero-slide-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: clamp(2.25rem, 8vw, 3rem);
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 14px;
    max-width: 440px;
}

.hero-slide-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    margin-bottom: 24px;
    max-width: 320px;
    font-weight: 400;
}

/* CTA: pill button */
.hero-slide-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #FFF;
    color: #1A1A1A;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 32px;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    min-height: 48px;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.01em;
}

.hero-slide-cta:hover {
    background: var(--pop);
    color: #FFF;
}

.hero-slide-cta:active {
    transform: scale(0.97);
}

.hero-slide-cta svg {
    width: 10px;
    height: 10px;
    flex-shrink: 0;
    transition: transform 0.2s var(--ease-out);
}

.hero-slide-cta:hover svg {
    transform: translateX(3px);
}

/* Dots — soft pills */
.hero-slider-dots {
    bottom: 18px;
}

.hero-slider-dot {
    background: rgba(255, 255, 255, 0.3);
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    transition: all 0.3s var(--ease-out);
}

.hero-slider-dot.active {
    background: #FFF;
    width: 24px;
}

/* Arrows — pill, translucent */
.hero-slider-prev,
.hero-slider-next {
    display: none;
    border-radius: var(--radius-full);
    border: none;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #1A1A1A;
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: var(--shadow-md);
    transition: background 0.15s, transform 0.15s;
}

.hero-slider-prev:hover,
.hero-slider-next:hover {
    background: #FFF;
    transform: translateY(-50%) scale(1.05);
}


/* ============================================================
   TRUST BADGES — Gentle marquee
   ============================================================ */
@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.trust-marquee {
    overflow: hidden;
    margin-bottom: 40px;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, black 5%, black 95%, transparent);
}

.trust-marquee-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.trust-marquee:hover .trust-marquee-track {
    animation-play-state: paused;
}

.trust-marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    letter-spacing: 0;
    cursor: default;
}

.trust-marquee-item i {
    font-size: 15px;
    color: var(--pop);
}

.trust-marquee-sep {
    color: var(--color-border);
    font-size: 16px;
    padding: 0 16px;
    line-height: 1;
    user-select: none;
}

@media (prefers-reduced-motion: reduce) {
    .trust-marquee-track { animation: none; }
}


/* ============================================================
   SECTION HEADERS — Serif, warm
   ============================================================ */
.section-header {
    margin-bottom: 20px;
    padding-bottom: 0;
    border-bottom: none;
}

.section-header-center {
    position: relative;
    justify-content: center;
    text-align: center;
}

.section-header-center .section-link {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--color-text);
}

.section-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--pop);
    text-decoration: none;
    letter-spacing: 0;
    text-transform: none;
    transition: opacity 0.15s;
}

.section-link:hover { opacity: 0.7; }

.section-count {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 400;
}


/* ============================================================
   CATEGORY BAND — Horizontal cards
   ============================================================ */
.category-band {
    margin-bottom: 40px;
}

.category-cards-wrapper { position: relative; }

.category-cards-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 0 16px;
    scroll-padding-inline: 16px;
}

.category-card {
    flex: 0 0 65%;
    min-width: 180px;
    max-width: 260px;
    scroll-snap-align: start;
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    display: block;
    text-decoration: none;
    color: #FFF;
    transition: transform 0.2s var(--ease-out);
}

.category-card:active { transform: scale(0.98); }

.category-card-img {
    aspect-ratio: 4 / 5;
    background: var(--color-bg-alt);
    overflow: hidden;
}

.category-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

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

.category-card-info {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(0, 0, 0, 0.65));
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 18px;
    gap: 8px;
}

.category-card-name {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.2;
}

.category-card-arrow {
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity 0.2s, transform 0.2s;
}

.category-card:hover .category-card-arrow {
    opacity: 1;
    transform: translate(2px, -2px);
}

.category-card-count { display: none; }

/* Tags mode — pill chips */
.category-band--tags .category-tags-wrap {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    padding: 0 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.category-band--tags .category-tags-wrap::-webkit-scrollbar { display: none; }

.category-tag {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    padding: 10px 22px;
    border-radius: var(--radius-full);
    background: transparent;
    border: 1.5px solid var(--color-border);
    color: var(--color-text);
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    scroll-snap-align: start;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.category-tag:last-child { border-right: 1.5px solid var(--color-border); }

.category-tag:active {
    background: var(--color-text);
    color: #FFF;
    border-color: var(--color-text);
}


/* ============================================================
   COLLECTION BANNERS
   ============================================================ */
.collection-banners {
    display: grid;
    gap: 12px;
    margin-bottom: 40px;
    padding: 0 16px;
}

.cb-2-col { grid-template-columns: 1fr; }
.cb-3-col,
.cb-4-col { grid-template-columns: 1fr 1fr; }
.cb-full-width { grid-template-columns: 1fr; }

.product-slider-section { margin-bottom: 40px; }

.collection-banner {
    border-radius: var(--radius);
    overflow: hidden;
}

.collection-banner img {
    transition: transform 0.7s var(--ease-out);
}

.collection-banner:hover img {
    transform: scale(1.04);
}

.collection-banner-content {
    padding: 22px;
    background: linear-gradient(transparent 15%, rgba(0, 0, 0, 0.6));
}

.collection-banner-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.375rem;
    letter-spacing: -0.01em;
}

.collection-banner-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 14px;
}

.collection-banner-link {
    font-size: 13px;
    font-weight: 600;
    color: #FFF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: none;
    letter-spacing: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 2px;
    transition: border-color 0.2s, color 0.2s;
}

.collection-banner:hover .collection-banner-link {
    border-color: #FFF;
}

.collection-banner-link svg {
    width: 9px;
    height: 9px;
    transition: transform 0.2s;
}

.collection-banner:hover .collection-banner-link svg {
    transform: translate(3px, -3px);
}

/* Text positions */
.cb-pos-bottom-left .collection-banner-content,
.cb-pos-bottom-center .collection-banner-content,
.cb-pos-center .collection-banner-content,
.cb-pos-top-left .collection-banner-content {
    top: 0; bottom: 0; display: flex; flex-direction: column;
}

.cb-pos-bottom-left .collection-banner-content {
    justify-content: flex-end; align-items: flex-start; text-align: left;
    background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.55));
}
.cb-pos-bottom-center .collection-banner-content {
    justify-content: flex-end; align-items: center; text-align: center;
    background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.55));
}
.cb-pos-center .collection-banner-content {
    justify-content: center; align-items: center; text-align: center;
    background: rgba(0, 0, 0, 0.35);
}
.cb-pos-top-left .collection-banner-content {
    justify-content: flex-start; align-items: flex-start; text-align: left;
    background: linear-gradient(rgba(0, 0, 0, 0.55) 0%, transparent 70%);
}

/* Sizes */
.cb-size-small .collection-banner { aspect-ratio: 16 / 9; }
.cb-size-medium .collection-banner { aspect-ratio: 4 / 3; }
.cb-size-tall .collection-banner { aspect-ratio: 3 / 4; }
.cb-full-width .collection-banner { aspect-ratio: 16 / 7; }

.cb-4-col .collection-banner-content { padding: 14px; }
.cb-4-col .collection-banner-title { font-size: 1.125rem; }
.cb-4-col .collection-banner-desc { font-size: 13px; margin-bottom: 8px; }
.cb-4-col .collection-banner-link { font-size: 12px; }


/* ============================================================
   PRODUCT SLIDER
   ============================================================ */
.product-slider-card {
    width: calc(50% - 6px);
    min-width: 148px;
}

.product-slider-card .product-card-img {
    aspect-ratio: 3 / 4;
}


/* ============================================================
   PRODUCT GRID — Gentle spacing
   ============================================================ */
.product-grid {
    gap: 12px;
}


/* ============================================================
   PRODUCT CARDS — Clean, warm
   ============================================================ */
.product-card {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
    transition: transform 0.2s var(--ease-out);
}

.product-card:active { transform: scale(0.98); }

.product-card-img {
    border-radius: var(--radius);
    background: var(--color-bg-alt);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    position: relative;
}

.product-card-img img {
    opacity: 1;
    transition: transform 0.6s var(--ease-out);
}

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

.product-card-body {
    padding: 12px 4px 8px;
}

.product-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
    display: flex;
    align-items: baseline;
    gap: 8px;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.product-title {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price .price-compare {
    color: #C0BFB8;
    font-weight: 400;
    text-decoration: line-through;
    font-size: 13px;
}

.product-price .price-sale {
    color: var(--pop);
    font-weight: 600;
}

/* Badges — soft labels */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}

.product-badge {
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 5px 12px;
    position: static;
    width: fit-content;
}

.product-badge-sale {
    background: var(--pop);
    color: #FFF;
}

.product-badge-sold {
    background: rgba(0,0,0,0.7);
    color: #FFF;
}

.product-badge-new {
    background: #FFF;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
}

.product-badge-featured {
    background: var(--color-text);
    color: #FFF;
}

.page-shop .product-card-sold { opacity: 1; }

/* ATC button — hidden by default on mobile */
.product-card-atc {
    display: none;
    appearance: none;
    border: none;
    background: none;
    padding: 0;
    margin: 0;
    font: inherit;
    cursor: pointer;
}

.product-card-atc svg { flex-shrink: 0; }
.product-card-atc-label { display: none; }

.product-card-atc-added {
    background: var(--pop) !important;
    color: #FFF !important;
}

.product-card-sold .product-card-img img { opacity: 0.35; }


/* ============================================================
   BUTTONS — Pill, warm
   ============================================================ */
.btn-accent {
    background: var(--palette-anchor, #1A1A1A);
    color: #FFF;
    border-radius: var(--radius-full);
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: background 0.2s, transform 0.1s;
}

.btn-accent:hover:not(:disabled) {
    background: var(--palette-depth, #333);
}

.btn-accent:active:not(:disabled) {
    transform: scale(0.97);
}


/* ============================================================
   LOAD MORE — Pill, outlined
   ============================================================ */
.load-more-wrap {
    text-align: center;
    padding: 0 16px 40px;
    margin-top: 12px;
}

.load-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-full);
    background: transparent;
    color: var(--color-text);
    font-weight: 600;
    font-size: 14px;
    padding: 14px 28px;
    width: 100%;
    cursor: pointer;
    transition: background 0.15s, border-color 0.15s;
    letter-spacing: 0;
}

.load-more-btn:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-text-muted);
}

.load-more-btn:active { transform: scale(0.98); }

.load-more-count {
    color: inherit;
    opacity: 0.4;
    font-weight: 400;
    font-size: 13px;
}

.load-more-btn.loading {
    pointer-events: none;
    opacity: 0.3;
}


/* ============================================================
   MISC
   ============================================================ */
.cart-badge-hidden { display: none; }

.empty-state-icon {
    font-size: 48px;
    color: var(--color-border);
    opacity: 0.5;
    margin-bottom: 16px;
}

.empty-state-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
}


/* ============================================================
   SCROLL ARROWS
   ============================================================ */
.scroll-arrow {
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-border);
    background: #FFF;
    color: var(--color-text);
    width: 38px;
    height: 38px;
    box-shadow: var(--shadow-sm);
    transition: background 0.15s, border-color 0.15s, transform 0.15s;
}

.scroll-arrow:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-text-muted);
    transform: scale(1.05);
}


/* ============================================================
   THEME SWITCHER
   ============================================================ */
.theme-switcher { border-radius: var(--radius-sm); }
.theme-switcher a { border-radius: var(--radius-sm); }


/* ============================================================
   RESPONSIVE — Tablet 768px+
   ============================================================ */
@media (min-width: 768px) {
    .collection-banners { gap: 16px; }
    .cb-2-col { grid-template-columns: 1fr 1fr; }
    .cb-3-col { grid-template-columns: repeat(3, 1fr); }
    .cb-4-col { grid-template-columns: repeat(4, 1fr); }

    .hero-slide-img { height: 500px; }

    .category-card {
        flex: 0 0 40%;
        max-width: 300px;
    }

    .hero-slide-cta {
        font-size: 15px;
        padding: 16px 36px;
    }
}


/* ============================================================
   RESPONSIVE — Desktop 1024px+
   ============================================================ */
@media (min-width: 1024px) {

    /* Desktop header — clean, warm */
    .clean-header {
        position: static;
        background: var(--color-bg);
        border-bottom: 1px solid var(--color-border);
        padding: 0;
        margin-bottom: 0;
        box-shadow: none;
    }

    .clean-header .desktop-header-inner {
        max-width: none;
        margin: 0;
        padding: 0;
    }

    .desktop-header-logo {
        border-radius: var(--radius-sm);
        height: 40px;
        max-width: 140px;
        object-fit: contain;
    }

    .desktop-header-name {
        font-family: var(--font-heading);
        font-size: 1.25rem;
        font-weight: 400;
        color: var(--color-text);
        letter-spacing: -0.01em;
    }

    .desktop-header-tagline {
        font-size: 13px;
        color: var(--color-text-muted);
        font-weight: 400;
    }

    .clean-header .desktop-header-brand {
        display: flex; flex-direction: row; align-items: center; gap: 12px;
    }

    .desktop-header-brand-text {
        display: flex; flex-direction: column; gap: 2px;
    }

    .desktop-header-logo-placeholder {
        background: var(--palette-anchor, #1A1A1A);
        color: #FFF;
        font-weight: 400;
        font-family: var(--font-heading);
        border-radius: var(--radius-sm);
    }

    .desktop-header-link {
        display: inline-flex;
        align-items: center;
        font-weight: 500;
        color: var(--color-text-muted);
        font-size: 14px;
        gap: 6px;
        padding: 8px 14px;
        border-radius: var(--radius-full);
        letter-spacing: 0;
        text-transform: none;
        transition: color 0.15s, background 0.15s;
    }

    .desktop-header-link:hover {
        color: var(--color-text);
        background: var(--color-bg-alt);
    }
    .desktop-header-link i { font-size: 13px; }

    .desktop-header-btn {
        border: 1.5px solid var(--color-border);
        color: var(--color-text-muted);
        background: transparent;
        border-radius: var(--radius-full);
        transition: color 0.15s, border-color 0.15s, background 0.15s;
    }

    .desktop-header-btn:hover {
        color: var(--color-text);
        border-color: var(--color-text-muted);
        background: var(--color-bg-alt);
    }

    /* Centered layout */
    .desktop-header-centered .desktop-header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        height: auto;
        padding: 16px 0;
    }
    .desktop-header-centered .desktop-header-nav {
        grid-column: 1; grid-row: 1; justify-self: start; gap: 0;
    }
    .desktop-header-centered .desktop-header-brand {
        grid-column: 2; grid-row: 1; justify-self: center;
        flex-direction: column; align-items: center;
    }
    .desktop-header-centered .desktop-header-brand-text {
        align-items: center; text-align: center;
    }
    .desktop-header-centered .desktop-header-actions {
        grid-column: 3; grid-row: 1; justify-self: end;
    }

    .shop-content { overflow: visible; }

    /* Hero — full viewport width */
    .hero-slider {
        width: 100vw;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
        margin: 0 0 56px;
    }

    .hero-slider-track { gap: 0; padding: 0; }

    .hero-slide {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .hero-slide-img {
        height: 80vh;
        max-height: 750px;
    }

    .hero-slide-content {
        padding: 72px;
        background: linear-gradient(transparent 25%, rgba(0, 0, 0, 0.5));
    }

    .hero-slide-title {
        font-size: clamp(3rem, 5.5vw, 4.5rem);
        max-width: 650px;
        line-height: 1.0;
        letter-spacing: -0.02em;
    }

    .hero-slide-desc {
        font-size: 17px;
        max-width: 420px;
        line-height: 1.55;
    }

    .hero-slide-cta {
        padding: 18px 44px;
        font-size: 15px;
    }

    /* Arrows */
    .hero-slider-prev,
    .hero-slider-next {
        display: flex;
        width: 48px;
        height: 48px;
    }
    .hero-slider-prev { left: 24px; }
    .hero-slider-next { right: 24px; }

    .hero-slider-dots { bottom: 24px; }

    /* Trust */
    .trust-marquee { margin-bottom: 56px; padding: 18px 0; }
    .trust-marquee-item { font-size: 14px; gap: 10px; }

    /* Sections */
    .section-header { margin-bottom: 24px; }
    .section-header-center .section-link { right: 0; }

    .section-title { font-size: 1.75rem; }

    /* Categories */
    .category-band { margin-bottom: 56px; }
    .category-cards-track { gap: 16px; padding: 0; }

    .category-card {
        flex: 0 0 calc(25% - 12px);
        min-width: 160px;
        max-width: none;
    }

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

    .category-card-img { aspect-ratio: 3 / 4; }
    .category-card-info { padding: 22px; }
    .category-card-name { font-size: 1.25rem; }

    /* Tags */
    .category-tag { padding: 10px 24px; font-size: 14px; }
    .category-tag:hover {
        background: var(--color-text);
        color: #FFF;
        border-color: var(--color-text);
    }

    /* Arrows outside */
    .category-cards-wrapper .scroll-arrow-prev { left: -48px; }
    .category-cards-wrapper .scroll-arrow-next { right: -48px; }

    /* Collection banners */
    .collection-banners { gap: 16px; margin-bottom: 56px; padding: 0; }

    .cb-size-small .collection-banner { aspect-ratio: 16 / 9; }
    .cb-size-medium .collection-banner { aspect-ratio: 4 / 3; }
    .cb-size-tall .collection-banner { aspect-ratio: 3 / 4; }
    .cb-full-width .collection-banner { aspect-ratio: 16 / 7; }

    .cb-2-col .collection-banner-content,
    .cb-full-width .collection-banner-content { padding: 40px; }
    .cb-3-col .collection-banner-content { padding: 28px; }
    .cb-4-col .collection-banner-content { padding: 18px; }

    .cb-2-col .collection-banner-title,
    .cb-full-width .collection-banner-title { font-size: 2rem; }
    .cb-3-col .collection-banner-title { font-size: 1.25rem; }

    /* Product slider */
    .product-slider-section { margin-bottom: 56px; overflow: visible; }
    .product-slider-section .scroll-arrow-prev { left: -48px; }
    .product-slider-section .scroll-arrow-next { right: -48px; }

    /* Product grid */
    .product-grid { gap: 16px; }

    /* Product cards — reveal ATC on hover */
    .product-card:hover .product-card-img img {
        transform: scale(1.04);
    }

    .product-card-atc {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        bottom: 10px;
        right: 10px;
        left: auto;
        width: 42px;
        height: 42px;
        padding: 0;
        background: #FFF;
        color: var(--color-text);
        border: none;
        border-radius: var(--radius-full);
        box-shadow: var(--shadow-md);
        cursor: pointer;
        opacity: 0;
        transform: translateY(4px);
        transition: opacity 0.2s, transform 0.2s var(--ease-out), background 0.15s;
    }

    .product-card:hover .product-card-atc {
        opacity: 1;
        transform: translateY(0);
    }

    .product-card-atc:hover {
        background: var(--pop);
        color: #FFF;
    }

    /* Slider cards */
    .product-slider-card {
        width: calc(25% - 12px);
        min-width: 160px;
    }

    .product-slider-card:hover { transform: scale(0.99); }

    /* Products section */
    .products-section { margin-bottom: 48px; }

    .product-title { font-size: 14px; }
    .product-price { font-size: 16px; }

    /* Load more */
    .load-more-wrap { padding: 0 0 40px; }
    .load-more-btn { width: auto; min-width: 260px; display: inline-flex; }

    /* Search overlay */
    .search-overlay { padding: 18vh 20px 20px; }
    .search-palette-kbd { display: inline-block; }
    .search-overlay-input { font-size: 17px; }

    /* Desktop footer — warm, serif */
    .desktop-footer {
        background: #1A1A1A;
        border-top: none;
        color: #FFF;
    }

    .desktop-footer-name {
        font-family: var(--font-heading);
        color: #FFF;
        font-weight: 400;
        font-size: 1.25rem;
        letter-spacing: -0.01em;
    }

    .desktop-footer-link {
        color: rgba(255, 255, 255, 0.45);
        font-size: 14px;
        letter-spacing: 0;
        text-transform: none;
        transition: color 0.15s;
    }

    .desktop-footer-link:hover { color: #FFF; }

    .desktop-footer-divider { background: rgba(255, 255, 255, 0.1); }

    .desktop-footer-social a {
        color: rgba(255, 255, 255, 0.4);
        transition: color 0.15s;
    }

    .desktop-footer-social a:hover {
        color: #FFF;
    }

    .desktop-footer-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        color: rgba(255, 255, 255, 0.25);
        font-size: 13px;
    }
}


/* ============================================================
   PRODUCT DETAIL PAGE
   ============================================================ */
.product-page { animation: none; }

.product-page > .container {
    padding-left: 0;
    padding-right: 0;
}

.product-page .product-info,
.product-page .product-variations,
.product-page .product-whatsapp-wrap,
.product-page .product-share-inline,
.product-page .sticky-cta,
.product-page .breadcrumb,
.product-page .more-products {
    padding-left: 16px;
    padding-right: 16px;
}

/* Gallery — full bleed on mobile, rounded on desktop */
.product-gallery {
    margin: 0;
    border-radius: 0;
    background: var(--color-bg-alt);
    overflow: clip;
}

.product-gallery-track { border-radius: 0; }
.product-gallery-slide { animation: none; background: var(--color-bg-alt); }
.product-gallery-slide img { opacity: 1; }

/* Nav buttons */
.product-nav-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-full);
    border: none;
}

.product-nav-btn.cart-trigger {
    background: rgba(255, 255, 255, 0.9);
    color: var(--color-text);
}

.product-nav-btn:hover { background: #FFF; box-shadow: var(--shadow-md); }

/* Gallery dots — soft pills */
.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    position: relative;
}
.gallery-dot::before { content: ""; position: absolute; inset: -10px; }
.gallery-dot.active {
    background: #FFF;
    width: 24px;
}

/* Badges */
.product-detail-badge {
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 6px 16px;
}

.badge-sold { background: rgba(0,0,0,0.7); color: #FFF; }
.badge-featured { background: var(--color-text); color: #FFF; }
.badge-new { background: #FFF; color: var(--color-text); box-shadow: var(--shadow-sm); }

/* Breadcrumb */
.breadcrumb {
    font-size: 13px;
    padding: 16px 0 0;
    gap: 6px;
}

.breadcrumb a { color: var(--color-text-muted); transition: color 0.15s; }
.breadcrumb a:hover { color: var(--color-text); text-decoration: none; }
.breadcrumb-sep { color: var(--color-border); font-size: 10px; }
.breadcrumb-current { color: var(--color-text); font-weight: 600; }

/* Product info */
.product-info-category {
    font-size: 13px;
    font-weight: 600;
    color: var(--pop);
    letter-spacing: 0;
    margin-bottom: 8px;
}

.product-info-name {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.15;
    color: var(--color-text);
}

.product-info-price .price-current {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.01em;
    font-variant-numeric: tabular-nums;
}

.product-info-price .price-sale { color: var(--pop); }

.product-info-price .price-compare {
    font-size: 15px;
    color: #C0BFB8;
}

/* Discount badge */
.price-discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    background: var(--pop);
    color: #FFF;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0;
}

.savings-message {
    font-size: 13px;
    font-weight: 600;
    color: #16A34A;
    letter-spacing: 0;
}

/* Stock badge */
.stock-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: #F0FDF4;
    color: #16A34A;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.stock-badge-low { background: #FFFBEB; color: #D97706; }

/* Description */
.product-full-desc-toggle {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    padding: 18px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.product-full-desc-body {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.product-full-desc-body table { font-size: 14px; }
.product-full-desc-body th { background: var(--color-bg-alt); }

/* Variations — pill chips */
.product-variation-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.product-variation-option {
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    padding: 10px 22px;
    border: 1.5px solid var(--color-border);
    transition: all 0.15s;
}

.product-variation-option.selected {
    border-color: var(--color-text);
    background: var(--color-text);
    color: #FFF;
}

/* WhatsApp CTA */
a.product-whatsapp-cta {
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 15px;
    padding: 15px 28px;
}

/* Share */
.product-share-label {
    font-size: 13px;
    font-weight: 600;
}

.product-share-btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--color-bg-alt);
    color: var(--color-text-muted);
    transition: background 0.15s, color 0.15s;
}

.product-share-btn:hover {
    background: var(--color-text);
    color: #FFF;
}

/* Sticky CTA */
.sticky-cta {
    background: #FFF;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    border-top: none;
}

.sticky-cta .btn {
    border-radius: var(--radius-full);
    background: var(--color-text);
    color: #FFF;
    font-weight: 600;
    font-size: 15px;
    padding: 15px 28px;
    letter-spacing: 0;
}

.sticky-cta .btn:hover { background: var(--pop); }

/* More products */
.more-products {
    border-top: 1px solid var(--color-border);
}

.more-products-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    text-transform: none;
    color: var(--color-text);
    margin-bottom: 18px;
}

.more-products-scroll {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
}

.more-product-card {
    flex: 0 0 140px;
    scroll-snap-align: start;
}

.more-product-card .product-card-img { aspect-ratio: 3 / 4; }

/* Product page: Desktop */
@media (min-width: 1024px) {
    .product-page {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 32px 48px;
    }

    .product-page > .container { padding: 0; }

    .product-page .product-info,
    .product-page .product-variations,
    .product-page .product-whatsapp-wrap,
    .product-page .product-share-inline,
    .product-page .sticky-cta,
    .product-page .breadcrumb,
    .product-page .more-products {
        padding-left: 0;
        padding-right: 0;
    }

    .product-page .product-gallery {
        margin: 0;
        background: transparent;
    }

    .product-page .product-gallery-track {
        border-radius: var(--radius);
        background: var(--color-bg-alt);
    }

    .product-page .product-gallery-slide { aspect-ratio: 1/1; }

    .gallery-thumb { border-radius: var(--radius-sm); }
    .gallery-thumb.active { border-color: var(--color-text); }

    .product-info-name { font-size: 2.25rem; }
    .product-info-price .price-current { font-size: 1.375rem; }
    .product-info-price .price-compare { font-size: 16px; }

    .more-products-scroll { gap: 16px; }
    .more-product-card { flex: 0 0 calc(25% - 12px); }

    .product-share-btn {
        width: 36px;
        height: 36px;
        background: none;
        opacity: 0.4;
    }
    .product-share-btn:hover { background: none; color: var(--color-text); opacity: 1; }
}


/* ============================================================
   SEARCH PAGE
   ============================================================ */
.search-page-header {
    padding: 40px 16px 28px;
    text-align: left;
}

.search-page-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.search-page-form {
    max-width: 520px;
    margin: 0 0 14px;
}

.search-page-bar {
    position: relative;
    background: #FFF;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-border);
    display: flex;
    align-items: center;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.search-page-bar:focus-within {
    border-color: var(--color-text-muted);
    box-shadow: var(--shadow-sm);
}

.search-page-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
    pointer-events: none;
}

.search-page-input {
    width: 100%;
    padding: 14px 44px 14px 46px;
    border: none;
    background: transparent;
    color: var(--color-text);
    font-family: inherit;
    font-size: 16px;
    font-weight: 400;
    outline: none;
}

.search-page-input::placeholder { color: #C0BFB8; font-weight: 400; }

.search-page-clear {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    border: none;
    background: none;
    cursor: pointer;
    transition: color 0.12s;
}

.search-page-clear:hover { color: var(--color-text); }

.search-page-count {
    text-align: left;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 400;
}

/* Skeleton */
@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton-pulse {
    background: linear-gradient(90deg, #EDECE8 25%, #E4E3DF 50%, #EDECE8 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s ease infinite;
}

.product-card-skeleton { pointer-events: none; }
.product-card-skeleton .product-card-img { aspect-ratio: 3 / 4; }

.search-skeleton { pointer-events: none; }

.search-skeleton-img {
    aspect-ratio: 3 / 4;
    border-radius: var(--radius);
    background: linear-gradient(90deg, #EDECE8 25%, #E4E3DF 50%, #EDECE8 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s ease infinite;
}

.search-skeleton-body { padding: 12px 4px 0; }

.search-skeleton-line {
    border-radius: 6px;
    background: linear-gradient(90deg, #EDECE8 25%, #E4E3DF 50%, #EDECE8 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.4s ease infinite;
}

.search-skeleton-title { height: 12px; width: 45%; margin-bottom: 8px; }
.search-skeleton-price { height: 14px; width: 30%; }


/* ============================================================
   COLLECTIONS PAGE
   ============================================================ */
.page-shop .floating-contact-cta .btn { color: #FFF; }

.collections-header {
    padding: 28px 16px 8px;
}

.collections-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--color-text);
}

.collection-list {
    padding: 0 16px 40px;
}

.collection-list > * {
    border-bottom: 1px solid var(--color-border);
}

.collection-list > *:first-child {
    border-top: 1px solid var(--color-border);
}

.collection-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    padding: 14px 0;
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background 0.15s;
}

.collection-item:hover,
.collection-item:active { color: inherit; text-decoration: none; }
.collection-item:active { background: var(--color-bg-alt); }

.collection-item-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.collection-item-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.collection-item-count { font-size: 13px; color: var(--color-text-muted); }

.collection-item-arrow {
    color: #DDD;
    flex-shrink: 0;
    transition: transform 0.15s, color 0.15s;
}

.collection-item:hover .collection-item-arrow {
    transform: translateX(3px);
    color: var(--pop);
}

.collection-children { padding-left: 16px; }

.collection-item--child { min-height: 44px; padding: 10px 0; }
.collection-item--child .collection-item-name {
    font-weight: 400;
    color: var(--color-text-muted);
    font-size: 14px;
}

.browse-collections { padding: 0 16px 40px; }

.browse-collections-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.browse-collections .collection-list { padding: 0; }
.collections-empty { text-align: center; padding: 48px 16px; color: var(--color-text-muted); }

/* Desktop */
@media (min-width: 1024px) {
    .collections-header { padding: 40px 0 16px; }
    .collections-title { font-size: 2.5rem; }

    .collection-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 0 0 56px;
    }

    .collection-list > * {
        border: 1px solid var(--color-border);
        border-bottom: none;
        padding: 0;
    }

    .collection-list > *:nth-child(odd) { border-right: none; }
    .collection-list > *:nth-last-child(-n+2) { border-bottom: 1px solid var(--color-border); }

    .collection-item {
        padding: 16px 18px;
    }

    .collection-item:hover { background: var(--color-bg-alt); }

    .browse-collections .collection-list {
        grid-template-columns: 1fr 1fr;
    }
}


/* ============================================================
   ACCOUNT PAGE
   ============================================================ */
.account-header { padding: 28px 16px 8px; }

.account-greeting {
    display: flex; align-items: center; justify-content: space-between;
}

.account-greeting-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.account-owner-signin { margin-top: 4px; font-size: 13px; color: var(--color-text-muted); }
.account-owner-signin i { margin-right: 2px; }

.account-logout-btn {
    background: transparent;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: border-color 0.15s, color 0.15s;
}

.account-logout-btn:hover { border-color: var(--color-text); color: var(--color-text); }

.account-section { padding: 0 16px 24px; }

.account-section-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 10px;
}

.account-section-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: -0.01em;
    margin-bottom: 10px;
}

.account-section-header .account-section-title { margin-bottom: 0; }

.account-edit-toggle {
    background: none;
    border: none;
    padding: 4px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--pop);
    cursor: pointer;
}

/* Read-only profile */
.account-profile-view {
    background: #FFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    overflow: hidden;
}

.account-profile-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 16px;
}

.account-profile-row + .account-profile-row {
    border-top: 1px solid var(--color-border);
}

.account-profile-label { font-size: 13px; color: var(--color-text-muted); }

.account-profile-value {
    font-size: 15px; font-weight: 600; color: var(--color-text);
    text-align: right; word-break: break-all;
}

/* Profile edit form */
.account-profile-form { padding: 10px 0 0; }
.account-profile-form .account-field { margin-bottom: 12px; }

.account-profile-form .account-field label {
    display: block; margin-bottom: 6px;
    font-size: 13px; font-weight: 600; color: var(--color-text-muted);
}

.account-profile-form .account-field input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-family: inherit;
    color: var(--color-text);
    background: #FFF;
    transition: border-color 0.15s, box-shadow 0.15s;
    -webkit-appearance: none;
}

.account-profile-form .account-field input:focus {
    outline: none;
    border-color: var(--color-text);
    box-shadow: 0 0 0 3px rgba(26,26,26,0.06);
}

.account-profile-form .account-field input::placeholder { color: #C0BFB8; }

.account-form-actions { display: flex; gap: 8px; margin-top: 6px; }

.account-cancel-btn {
    flex: 1;
    padding: 14px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    background: #FFF;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    min-height: 48px;
    transition: background 0.15s;
}

.account-cancel-btn:active { background: var(--color-bg-alt); }

.account-profile-form .account-submit {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: var(--radius-sm);
    background: var(--color-text);
    color: #FFF;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    min-height: 48px;
    transition: background 0.15s;
}

.account-profile-form .account-submit:active { background: var(--pop); }

.account-profile-form .account-submit:disabled {
    opacity: 0.5; cursor: not-allowed;
}

/* Orders */
.account-orders { display: flex; flex-direction: column; gap: 12px; }

.account-order-card {
    background: #FFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 18px;
}

.account-order-card + .account-order-card { border-top: 1px solid var(--color-border); }

.account-order-header {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 4px;
}

.account-order-number {
    font-size: 14px; font-weight: 700; color: var(--color-text);
    font-variant-numeric: tabular-nums;
}

.account-order-status {
    font-size: 12px; font-weight: 600; padding: 4px 10px;
    border-radius: var(--radius-full); letter-spacing: 0;
}

.account-order-status--pending { background: #FFFBEB; color: #92400E; }
.account-order-status--paid { background: #F0FDF4; color: #166534; }
.account-order-status--cancelled,
.account-order-status--refunded { background: #FEF2F2; color: #991B1B; }

.account-order-date { font-size: 13px; color: var(--color-text-muted); margin-bottom: 14px; }

.account-order-items { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }

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

.account-order-item-img {
    width: 44px; height: 44px; border-radius: var(--radius-sm);
    object-fit: cover; background: var(--color-bg-alt);
}

.account-order-item-name { font-size: 14px; font-weight: 500; color: #444; }
.account-order-item-meta { font-size: 12px; color: var(--color-text-muted); }

.account-order-total {
    font-size: 15px; font-weight: 700; color: var(--color-text);
    padding-top: 10px; border-top: 1px solid var(--color-border);
    font-variant-numeric: tabular-nums;
}

.account-empty { text-align: center; padding: 36px 16px; color: var(--color-text-muted); font-size: 14px; }

/* Auth state */
.account-auth-wrapper {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    min-height: 60vh; padding: 40px 20px;
}

.account-auth-card { width: 100%; max-width: 400px; }

.account-auth-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--color-text);
    text-align: center;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.account-auth-sub {
    text-align: center; font-size: 14px; color: var(--color-text-muted);
    margin-bottom: 32px;
}

/* Auth forms */
.account-form { padding: 0; }
.account-form .account-field { margin-bottom: 12px; }

.account-form .account-field input {
    width: 100%;
    padding: 15px 18px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: inherit;
    color: var(--color-text);
    background: #FFF;
    transition: border-color 0.15s, box-shadow 0.15s;
    -webkit-appearance: none;
}

.account-form .account-field:first-child input {
    border-top: 1.5px solid var(--color-border);
}

.account-form .account-field input:focus {
    outline: none;
    border-color: var(--color-text);
    box-shadow: 0 0 0 3px rgba(26,26,26,0.06);
    position: relative;
    z-index: 1;
}

.account-form .account-field input::placeholder { color: #C0BFB8; }

/* Password */
.account-password-field { position: relative; }
.account-password-field input { padding-right: 46px; }

.account-password-toggle {
    position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
    width: 38px; height: 38px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none; cursor: pointer;
    color: var(--color-text-muted); padding: 0;
}

.account-password-toggle:active { color: var(--color-text); }

/* Auth submit */
.account-form .account-submit {
    display: block;
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--radius-full);
    background: var(--color-text);
    color: #FFF;
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    min-height: 52px;
    margin-top: 8px;
    letter-spacing: 0;
    transition: background 0.15s;
}

.account-form .account-submit:active { background: var(--pop); }
.account-form .account-submit:hover:not(:disabled) { background: #333; }
.account-form .account-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* Auth footer */
.account-auth-footer {
    text-align: center; margin-top: 24px;
    font-size: 14px; color: var(--color-text-muted);
}

.account-auth-link {
    background: none; border: none;
    color: var(--color-text); font-weight: 600;
    font-family: inherit; font-size: 14px;
    cursor: pointer; text-decoration: underline;
    text-underline-offset: 3px;
}

/* Feedback */
.account-error {
    padding: 14px 16px; margin-bottom: 0;
    border-radius: var(--radius-sm); background: var(--pop); color: #FFF;
    font-size: 14px; font-weight: 600; display: none;
}

.account-success {
    padding: 14px 16px; margin-bottom: 0;
    border-radius: var(--radius-sm); background: #16A34A; color: #FFF;
    font-size: 14px; font-weight: 600; display: none;
}

.shop-content { min-height: 80vh; }

@media (max-width: 1023px) {
    .account-section:last-child { padding-bottom: 80px; }
}

@media (min-width: 1024px) {
    .page-account .shop-content { max-width: 640px; margin: 0 auto; }
    .account-header { padding: 40px 0 16px; }
    .account-greeting-name { font-size: 2rem; }
    .account-auth-wrapper { min-height: 50vh; padding: 56px 20px; }
    .account-auth-title { font-size: 2rem; }
    .account-section { padding: 0 0 28px; }
    .account-profile-view { max-width: 420px; }
    .account-profile-form { max-width: 420px; }
    .account-edit-toggle:hover { text-decoration: underline; }
    .account-orders { max-width: 520px; }
}


/* ============================================================
   SINGLE COLLECTION PAGE
   ============================================================ */
.collection-hero { padding: 24px 16px 0; }

.collection-hero-text { padding: 8px 0 0; }
.collection-hero-text .collection-hero-title { color: var(--color-text); }
.collection-hero-text .collection-hero-count { margin-top: 4px; }

.collections-breadcrumb {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; color: var(--color-text-muted);
}

.collections-breadcrumb a {
    color: var(--color-text-muted); transition: color 0.15s; text-decoration: none;
}
.collections-breadcrumb a:hover { color: var(--color-text); }

.breadcrumb-sep { color: #DDD; font-size: 10px; }
.breadcrumb-current { color: var(--color-text); font-weight: 600; }

.collection-hero .collections-breadcrumb { margin-bottom: 16px; }

/* Banner */
.collection-hero-banner {
    position: relative; border-radius: var(--radius);
    overflow: hidden; aspect-ratio: 16 / 7;
}

.collection-hero-banner img {
    width: 100%; height: 100%; object-fit: cover; display: block;
}

.collection-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 24px;
}

.collection-hero-title {
    font-family: var(--font-heading);
    font-size: 1.75rem; font-weight: 400;
    color: #FFF; letter-spacing: -0.01em;
}

.collection-hero-desc {
    font-size: 14px; color: rgba(255, 255, 255, 0.8); margin-top: 6px;
}

.collection-hero-count {
    font-size: 14px; font-weight: 400;
    color: var(--color-text-muted); margin: 0;
}

.collection-toolbar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; padding: 18px 16px 0; margin-bottom: 8px;
}

.collection-sort {
    appearance: none; -webkit-appearance: none;
    padding: 10px 34px 10px 16px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-border);
    background: #FFF url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='%238A8A82'%3E%3Cpath d='M0 0l5 6 5-6z'/%3E%3C/svg%3E") no-repeat right 14px center;
    font-family: inherit; font-size: 13px; font-weight: 600;
    color: var(--color-text); cursor: pointer; min-height: 40px; flex-shrink: 0;
    transition: border-color 0.15s;
}

.collection-sort:focus { outline: none; border-color: var(--color-text-muted); }

/* Subcategory filters */
.collection-filters {
    display: flex; gap: 8px; overflow-x: auto;
    -webkit-overflow-scrolling: touch; flex: 1; min-width: 0;
}

.collection-filter {
    flex-shrink: 0;
    padding: 9px 18px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-border);
    background: transparent;
    font-family: inherit; font-size: 13px; font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer; transition: all 0.15s;
}

.collection-filter:last-child { border-right: 1.5px solid var(--color-border); }
.collection-filter:active { transform: scale(0.97); }

.collection-filter.active {
    background: var(--color-text); color: #FFF; border-color: var(--color-text);
}

.collection-filter.active + .collection-filter { border-left-color: var(--color-border); }

@media (min-width: 768px) {
    .collection-hero-title { font-size: 2rem; }
    .collection-hero-overlay { padding: 32px; }
    .collection-hero-banner { aspect-ratio: 16 / 5; }
    .collection-filter { font-size: 14px; padding: 10px 20px; }
}

@media (min-width: 1024px) {
    .collection-hero { padding: 36px 0 0; }
    .collection-hero-banner { aspect-ratio: 16 / 5; }
    .collection-hero-overlay { padding: 48px; }
    .collection-hero-title { font-size: 3.5rem; letter-spacing: -0.02em; }
    .collection-hero-text .collection-hero-title { font-size: 4rem; }
    .collection-hero-desc { font-size: 16px; margin-top: 8px; }
    .collection-toolbar { margin-top: 24px; padding: 0; gap: 8px; }
    .collection-hero-count { font-size: 15px; }

    .collection-filters { overflow-x: visible; flex-wrap: wrap; }

    .collection-filter:hover:not(.active) {
        background: var(--color-bg-alt); color: var(--color-text); border-color: var(--color-text-muted);
    }

    .collection-sort { padding: 10px 40px 10px 20px; min-height: 42px; }

    .search-page-header { text-align: left; padding: 48px 0 36px; }
    .search-page-title { font-size: 3.5rem; letter-spacing: -0.02em; }
    .search-page-form { max-width: 480px; margin: 0 0 16px; }
}


/* ============================================================
   BOTTOM NAV — Frosted, warm
   ============================================================ */
.bottom-nav {
    background: rgba(250, 250, 248, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-color: var(--color-border);
}

.bottom-nav-tab {
    color: #C0BFB8;
    transition: color 0.15s;
}

.bottom-nav-tab.active { color: var(--color-text); }

.bottom-nav-tab .cart-badge {
    background: var(--pop);
}


/* ============================================================
   CONTACT SHEET
   ============================================================ */
.contact-sheet { background: #FFF; border-radius: var(--radius) var(--radius) 0 0; }

.contact-sheet-title {
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1.125rem;
    color: var(--color-text);
}

.contact-sheet-item { color: var(--color-text); }

.contact-sheet-icon {
    background: var(--color-bg-alt);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--color-text);
    transition: background 0.15s;
}

.contact-sheet-icon:hover { background: var(--color-border); }

.contact-sheet-social-link {
    background: var(--color-bg-alt);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--color-text);
    transition: background 0.15s;
}

.contact-sheet-social-link:hover { background: var(--color-border); }


/* ============================================================
   MOBILE FOOTER
   ============================================================ */
.mobile-footer {
    border-top: 1px solid var(--color-border);
}

.mobile-footer-logo-placeholder {
    background: var(--palette-anchor, #1A1A1A);
    color: #FFF;
    border-radius: var(--radius-sm);
    font-weight: 400;
    font-family: var(--font-heading);
}

.mobile-footer-name {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.mobile-footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

.mobile-footer-social a {
    border-radius: var(--radius-sm);
    background: var(--color-bg-alt);
    transition: background 0.15s;
}

.mobile-footer-social a:hover {
    background: var(--color-text);
    color: #FFF;
}
