@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@300;400;500;600;700;800&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&display=swap');

:root {
    --terracotta: #5e1c00; /* Sellzy Deep Teal */
    --terracotta-light: #852800; /* Sellzy Medium Teal */
    --terracotta-deep: #3d1200; /* Sellzy Rich Dark Teal */
    --bark: #0F172A; /* Slate 900 */
    --cream: #F8FAFC; /* Slate 50 background */
    --parchment: #F1F5F9; /* Slate 100 background */
    --warm-white: #FFFFFF; /* Pure white */
    --sage: #752300; /* Medium-Dark Sage Teal */
    --sand: #FBBF24; /* Sellzy Premium Gold */
    --text-dark: #0F172A; /* Slate 900 for high-contrast titles */
    --text-mid: #475569; /* Slate 600 for body text */
    --text-light: #64748B; /* Slate 500 for muted elements */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --font-accent: 'Cormorant Garamond', Georgia, serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--warm-white);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* =========== CUSTOM CURSOR =========== */
.cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-follower {
    position: fixed;
    width: 32px;
    height: 32px;
    border: 1.5px solid var(--terracotta);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
    opacity: 0.6;
}

body:has(.product-card:hover) .cursor {
    width: 16px;
    height: 16px;
    background: var(--terracotta-deep);
}

body:has(.btn-primary:hover) .cursor-follower {
    width: 48px;
    height: 48px;
    opacity: 0.3;
}

/* =========== NAV =========== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 48px;
    background: transparent;
    transition: background var(--transition), padding var(--transition), backdrop-filter var(--transition);
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.92);
    backdrop-filter: blur(12px);
    padding: 16px 48px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-dark);
    cursor: pointer;
    position: relative;
    padding-bottom: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--terracotta);
    transition: width var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: var(--bark);
    text-decoration: none;
}

.cart-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
    position: relative;
    display: flex;
    align-items: center;
    padding: 4px;
    transition: color var(--transition);
}

.cart-btn:hover {
    color: var(--terracotta);
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--terracotta);
    color: white;
    font-size: 10px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: opacity 0.3s, transform 0.3s;
}

.cart-count.visible {
    opacity: 1;
    transform: scale(1);
}

/* =========== HERO =========== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--cream) 0%, #FAF8F5 100%);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    padding: 160px 100px 120px;
    position: relative;
    overflow: hidden;
    gap: 80px;
    margin: 0; /* Occupy entire screen width! */
    border-radius: 0 0 80px 80px; /* Breathtaking bottom curves */
    box-shadow: 0 40px 90px rgba(11, 59, 48, 0.06);
    border-bottom: 1px solid rgba(11, 59, 48, 0.05);
}

.hero-texture {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(11, 59, 48, 0.04) 0%, transparent 60%),
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(11, 59, 48, 0.015) 40px, rgba(11, 59, 48, 0.015) 41px);
    pointer-events: none;
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.5;
}

.hero-content {
    max-width: 560px;
    animation: heroFadeIn 1.2s ease both;
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s 0.3s ease both;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(52px, 6vw, 80px);
    font-weight: 300;
    line-height: 1.05;
    color: var(--bark);
    margin-bottom: 28px;
    display: flex;
    flex-direction: column;
}

.hero-title-line {
    opacity: 0;
    animation: fadeUp 0.8s ease both;
}

.hero-title-line:nth-child(1) {
    animation-delay: 0.45s;
}

.hero-title-line:nth-child(2) {
    animation-delay: 0.6s;
}

.hero-title-line:nth-child(3) {
    animation-delay: 0.75s;
}

.italic {
    font-style: italic;
    color: var(--terracotta);
}

.hero-sub {
    font-size: 15px;
    font-weight: 300;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.8s 0.9s ease both;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0;
    animation: fadeUp 0.8s 1.05s ease both;
}

.hero-note {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.08em;
}

/* ===== HERO VISUAL REDESIGN ===== */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 540px;
    padding: 40px 0;
    box-sizing: border-box;
    opacity: 0;
    animation: fadeIn 1.2s 0.6s ease both;
}

.hero-visual::before {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-badge {
    position: absolute;
    top: -20px;
    right: -10px;
    width: 110px;
    height: 110px;
    color: var(--terracotta);
    animation: spin 20s linear infinite;
    z-index: 3;
}

.badge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: var(--terracotta);
    animation: spin 20s linear infinite reverse;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hero-img-frame {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 4/5;
    border-radius: 40px;
    overflow: visible;
    position: relative;
    z-index: 1;
}

/* Glassmorphic Specification Card */
.hero-glass-specs {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 28px;
    padding: 24px;
    width: 220px;
    box-shadow: 0 30px 60px rgba(11, 59, 48, 0.15);
    z-index: 3;
    animation: floatSpecs 4s ease-in-out infinite;
}

@keyframes floatSpecs {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.specs-title {
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--terracotta);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.specs-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.specs-item {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: var(--bark);
    border-bottom: 1px solid rgba(11, 59, 48, 0.05);
    padding-bottom: 4px;
}

.specs-item span:first-child {
    color: var(--text-light);
    font-weight: 500;
}

.specs-item span:last-child {
    font-weight: 600;
}

/* Floating Luxury Tag */
.hero-floating-tag {
    position: absolute;
    top: 40px;
    left: -10px;
    background: #FBBF24;
    color: #5e1c00;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    box-shadow: 0 12px 28px rgba(251, 191, 36, 0.3);
    z-index: 3;
    animation: floatTag 4s ease-in-out infinite 2s;
}

@keyframes floatTag {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

.hero-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #5e1c00 0%, #3d1200 50%, #031814 100%);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border-radius: 40px;
    box-shadow: 0 30px 80px rgba(11, 59, 48, 0.25);
}

.leather-pattern {
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(255, 255, 255, 0.04) 18px, rgba(255, 255, 255, 0.04) 19px),
        repeating-linear-gradient(90deg, transparent, transparent 18px, rgba(255, 255, 255, 0.04) 18px, rgba(255, 255, 255, 0.04) 19px);
}

.hero-img-label {
    background: rgba(44, 26, 14, 0.75);
    backdrop-filter: blur(8px);
    padding: 20px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.hero-img-label span:first-child {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.1em;
}

.hero-img-price {
    font-size: 13px;
    font-weight: 400;
    color: var(--sand) !important;
}

.hero-scroll-line {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--terracotta), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translateX(-50%) scaleY(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scaleY(1.2);
    }
}

/* =========== BUTTONS =========== */
.btn-primary {
    background: var(--terracotta);
    color: white;
    border: none;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    background: var(--terracotta-deep);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(181, 86, 30, 0.35);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary.full {
    width: 100%;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--terracotta);
    color: var(--terracotta);
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--terracotta);
    color: white;
}

/* =========== MARQUEE =========== */
.marquee-strip {
    background: var(--bark);
    color: var(--sand);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-inner {
    display: inline-flex;
    gap: 40px;
    animation: marquee 25s linear infinite;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 400;
}

.dot {
    color: var(--terracotta-light);
    font-size: 14px;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

/* =========== STATEMENT =========== */
.statement {
    padding: 80px 64px;
    display: flex;
    align-items: center;
    gap: 48px;
    background: var(--parchment);
    margin: 16px;
    border-radius: 40px;
    border: 1px solid rgba(196, 170, 132, 0.15);
}

.statement-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--sand), transparent);
}

.statement-quote {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.5vw, 28px);
    font-style: italic;
    font-weight: 300;
    color: var(--bark);
    text-align: center;
    line-height: 1.6;
    max-width: 700px;
    flex-shrink: 0;
}

/* =========== SHOP =========== */
.shop {
    padding: 100px 64px;
    background: var(--warm-white);
    margin: 16px;
    border-radius: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 70px rgba(11, 59, 48, 0.02);
}

.shop-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 60px;
}

.section-eyebrow {
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 12px;
    font-weight: 400;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 300;
    color: var(--bark);
    line-height: 1.1;
}

.section-title.center {
    text-align: center;
}

.section-eyebrow.center {
    text-align: center;
}

.filter-row {
    display: flex;
    gap: 8px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--parchment);
    color: var(--text-mid);
    padding: 8px 20px;
    font-family: var(--font-body);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--bark);
    border-color: var(--bark);
    color: white;
}

/* =========== PRODUCT GRID =========== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}

.footer {
    background: #faf8f4; /* Matches header's rgb(250, 248, 244) background precisely */
    border-radius: 60px 60px 0 0;
    overflow: hidden;
    position: relative;
}

.product-card {
    background: var(--cream);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: fadeUp 0.6s ease both;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(44, 26, 14, 0.15);
}

.product-card:nth-child(3n+2) {
    margin-top: 32px;
}

.product-img {
    width: 100%;
    aspect-ratio: 4/5;
    position: relative;
    overflow: hidden;
}

.product-img-bg {
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease;
    position: relative;
}

.product-card:hover .product-img-bg {
    transform: scale(1.06);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(44, 26, 14, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.product-card:hover .product-overlay {
    background: rgba(44, 26, 14, 0.35);
}

.overlay-text {
    color: white;
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s 0.1s, transform 0.3s 0.1s;
}

.product-card:hover .overlay-text {
    opacity: 1;
    transform: translateY(0);
}

.product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--terracotta);
    color: white;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.product-info {
    padding: 24px 24px 20px;
}

.product-cat {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
    font-weight: 500;
}

.product-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 400;
    color: var(--bark);
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}

.product-material {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 16px;
    font-weight: 300;
}

.product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid rgba(196, 170, 132, 0.3);
}

.product-price {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 400;
    color: var(--terracotta);
}

.product-price span {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 300;
    color: var(--text-light);
}

.add-to-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--terracotta);
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition), transform var(--transition);
    flex-shrink: 0;
}

.add-to-cart:hover {
    background: var(--terracotta-deep);
    transform: scale(1.1);
}

.add-to-cart:active {
    transform: scale(0.95);
}

/* Product Color Gradients */
.bg-terracotta {
    background: linear-gradient(135deg, #8b3d12 0%, #c8733d 50%, #6b3010 100%);
}

.bg-bark {
    background: linear-gradient(135deg, #1a0e07 0%, #3d2010 50%, #6b4a2a 100%);
}

.bg-caramel {
    background: linear-gradient(135deg, #c8933d 0%, #e8b870 50%, #a07030 100%);
}

.bg-sage {
    background: linear-gradient(135deg, #3d5030 0%, #6b7c5a 50%, #8a9e70 100%);
}

.bg-midnight {
    background: linear-gradient(135deg, #0e0e1a 0%, #2a2a45 50%, #1a1a30 100%);
}

.bg-blush {
    background: linear-gradient(135deg, #b87060 0%, #d49080 50%, #c87868 100%);
}

.bg-cream {
    background: linear-gradient(135deg, #c4aa84 0%, #e0cba8 50%, #a89070 100%);
}

.bg-forest {
    background: linear-gradient(135deg, #1a2e1a 0%, #2a4a2a 50%, #3a5e3a 100%);
}

.product-img-bg .leather-texture {
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(0deg, transparent, transparent 12px, rgba(255, 255, 255, 0.03) 12px, rgba(255, 255, 255, 0.03) 13px),
        repeating-linear-gradient(90deg, transparent, transparent 12px, rgba(255, 255, 255, 0.03) 12px, rgba(255, 255, 255, 0.03) 13px);
}

/* =========== CRAFT SECTION =========== */
.craft {
    padding: 120px 80px;
    background: var(--bark);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin: 16px;
    border-radius: 40px;
    box-shadow: 0 40px 80px rgba(11, 59, 48, 0.18);
}

.craft::before {
    content: 'KISERO';
    position: absolute;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: 280px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: 0.05em;
    pointer-events: none;
}

.craft-text .section-eyebrow {
    color: var(--sand);
}

.craft-text .section-title {
    color: var(--cream);
}

.craft-text .section-title em {
    color: var(--terracotta-light);
    font-style: italic;
}

.craft-body {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.55);
    margin: 28px 0 36px;
    max-width: 440px;
}

.craft-steps {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 44px;
}

.craft-steps li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    line-height: 1.5;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.step-num {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--terracotta-light);
    flex-shrink: 0;
    margin-top: -3px;
}

.craft-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.craft-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(4px);
    transition: transform var(--transition), background var(--transition);
}

.craft-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
}

.craft-card-1 {
    grid-column: 1;
    grid-row: 1;
}

.craft-card-2 {
    grid-column: 2;
    grid-row: 1;
    margin-top: 40px;
}

.craft-card-3 {
    grid-column: 1;
    grid-row: 2;
    margin-top: -10px;
}

.craft-card-4 {
    grid-column: 2;
    grid-row: 2;
    margin-top: 20px;
}

.craft-swatch {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    margin-bottom: 12px;
}

.swatch-terracotta {
    background: linear-gradient(135deg, #8b3d12, #c8733d);
}

.swatch-bark {
    background: linear-gradient(135deg, #1a0e07, #4a3020);
}

.swatch-sage {
    background: linear-gradient(135deg, #3d5030, #8a9e70);
}

.swatch-ivory {
    background: linear-gradient(135deg, #c4aa84, #e8d8b8);
}

.craft-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-weight: 300;
}

/* =========== TESTIMONIALS =========== */
.testimonials {
    padding: 100px 64px;
    background: var(--parchment);
    text-align: center;
    margin: 16px;
    border-radius: 40px;
    border: 1px solid rgba(196, 170, 132, 0.15);
}

.testimonials .section-eyebrow {
    margin-bottom: 12px;
}

.testimonials .section-title {
    margin-bottom: 60px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.testi-card {
    background: var(--warm-white);
    border-radius: 20px;
    padding: 36px 32px;
    text-align: left;
    border: 1px solid rgba(196, 170, 132, 0.3);
    transition: transform var(--transition), box-shadow var(--transition);
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(44, 26, 14, 0.1);
}

.testi-card--accent {
    background: var(--bark);
    border-color: transparent;
}

.testi-card--accent .testi-quote {
    color: rgba(255, 255, 255, 0.85);
}

.testi-card--accent .testi-author {
    color: var(--terracotta-light);
}

.testi-quote {
    font-family: var(--font-display);
    font-size: 17px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.testi-author {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    font-weight: 500;
}

/* =========== FOOTER =========== */
.footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 48px 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    letter-spacing: 0.3em;
    color: white;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.8;
    font-weight: 300;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-title {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sand);
    font-weight: 600;
    margin-bottom: 4px;
}

.footer-col a {
    font-size: 14px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color var(--transition);
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 300;
    opacity: 0.4;
}

/* =========== CART SIDEBAR =========== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 200;
    pointer-events: none;
    transition: background 0.4s;
}

.cart-overlay.active {
    background: rgba(0, 0, 0, 0.5);
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    height: 100vh;
    background: var(--warm-white);
    z-index: 201;
    transform: translateX(100%);
    transition: transform var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.open {
    transform: translateX(0);
}

.cart-header {
    padding: 32px 28px 20px;
    border-bottom: 1px solid var(--parchment);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 300;
    color: var(--bark);
    letter-spacing: 0.04em;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-light);
    transition: color 0.2s;
}

.cart-close:hover {
    color: var(--terracotta);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 28px;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 16px;
    text-align: center;
    color: var(--text-light);
}

.cart-empty-icon {
    font-size: 36px;
    color: var(--sand);
}

.cart-empty p {
    font-size: 14px;
    line-height: 1.7;
}

.cart-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--parchment);
    animation: fadeUp 0.3s ease;
}

.cart-item-img {
    width: 72px;
    height: 80px;
    border-radius: 10px;
    flex-shrink: 0;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.cart-item-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.cart-item-name {
    font-family: var(--font-display);
    font-size: 15px;
    color: var(--bark);
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.cart-item-cat {
    font-size: 11px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.cart-item-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
}

.cart-item-price {
    font-size: 14px;
    color: var(--terracotta);
    font-family: var(--font-display);
    margin: 0;
    white-space: nowrap;
}

.cart-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.cart-qty-btn {
    background: none;
    border: none;
    width: 28px;
    height: 28px;
    font-size: 16px;
    line-height: 1;
    cursor: pointer;
    color: var(--bark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
    flex-shrink: 0;
}

.cart-qty-btn:hover {
    background: var(--terracotta);
    color: #fff;
}

.cart-qty-num {
    font-size: 13px;
    font-weight: 600;
    color: var(--bark);
    min-width: 22px;
    text-align: center;
    font-family: var(--font-body);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 13px;
    padding: 2px 4px;
    transition: color 0.2s;
    flex-shrink: 0;
    line-height: 1;
}

.cart-item-remove:hover {
    color: var(--terracotta);
}

.cart-footer {
    padding: 20px 28px 28px;
    border-top: 1px solid var(--parchment);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--bark);
}

/* =========== MODAL =========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 300;
    pointer-events: none;
    transition: background 0.4s;
}

.modal-overlay.active {
    background: rgba(0, 0, 0, 0.65);
    pointer-events: all;
}

.product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%) scale(0.95);
    width: min(90vw, 900px);
    max-height: 85vh;
    background: var(--warm-white);
    border-radius: 24px;
    z-index: 301;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow-y: auto;
}

.product-modal.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: all;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bark);
    color: white;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    z-index: 10;
    transition: background var(--transition);
}

.modal-close:hover {
    background: var(--terracotta);
}

.modal-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal-img-wrap {
    border-radius: 24px 0 0 24px;
    overflow: hidden;
    aspect-ratio: 3/4;
}

.modal-img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
}

.modal-details {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
}

.modal-cat {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 10px;
    font-weight: 500;
}

.modal-name {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 300;
    color: var(--bark);
    line-height: 1.1;
    margin-bottom: 12px;
}

.modal-price {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--terracotta);
    margin-bottom: 20px;
}

.modal-desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 28px;
}

.modal-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 32px;
    padding: 20px;
    background: var(--cream);
    border-radius: 12px;
}

.modal-meta>div {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.meta-label {
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 11px;
    color: var(--text-light);
}

.modal-note {
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
    margin-top: 12px;
    letter-spacing: 0.05em;
}

/* =========== ANIMATIONS =========== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* =========== PHILOSOPHY SHOWCASE =========== */
.philosophy-showcase {
    padding: 100px 64px;
    background: #ffffff;
    margin: 16px;
    border-radius: 40px;
    border: 1px solid var(--border);
    box-shadow: 0 30px 70px rgba(11, 59, 48, 0.02);
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.philosophy-left {
    padding-right: 40px;
}

.philo-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 3.5vw, 48px);
    font-weight: 300;
    line-height: 1.25;
    color: var(--bark);
    margin: 0;
}

.philo-heading em {
    font-style: italic;
    color: var(--terracotta);
    font-weight: 400;
}

.philosophy-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.philo-paragraph {
    font-family: var(--font-display);
    font-size: 24px;
    line-height: 1.5;
    color: var(--bark);
    margin: 0 0 24px;
    font-weight: 300;
}

.philo-subparagraph {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0 0 35px;
    font-weight: 300;
}

.btn-philo {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--terracotta);
    border: 1px solid var(--terracotta);
    color: white;
    padding: 14px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all var(--transition);
}

.btn-philo:hover {
    background: transparent;
    color: var(--terracotta);
    transform: translateY(-2px);
}

/* =========== RESPONSIVE =========== */
@media (max-width: 900px) {
    .nav {
        padding: 20px 24px;
    }

    .nav.scrolled {
        padding: 14px 24px;
    }

    .nav-left {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr !important;
        padding: 120px 24px 60px !important;
        text-align: center !important;
        min-height: auto !important;
        border-radius: 0 0 40px 40px !important;
    }

    .hero-visual {
        order: -1;
        max-width: 360px;
        margin: 0 auto;
    }

    .hero-badge {
        right: 10px;
        top: -10px;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .hero-scroll-line {
        display: none;
    }

    .statement {
        padding: 60px 24px;
        gap: 24px;
    }

    .shop {
        padding: 60px 24px;
    }

    .shop-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .craft {
        grid-template-columns: 1fr;
        padding: 80px 24px;
        gap: 48px;
    }

    .testimonials {
        padding: 60px 24px;
    }

    .testi-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .modal-inner {
        grid-template-columns: 1fr;
    }

    .modal-img-wrap {
        border-radius: 24px 24px 0 0;
        aspect-ratio: 16/9;
    }

    .modal-details {
        padding: 28px 24px;
    }

    .cart-sidebar {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .philosophy-showcase {
        padding: 60px 24px;
    }

    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .philosophy-left {
        padding-right: 0;
    }
}

@media (max-width: 600px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .filter-row {
        flex-wrap: wrap;
    }
}

/* ========================================================
   KISERO — Brand Logo & Responsive Mobile Menu Overlay
   ======================================================== */

.nav-logo-link {
    display: block;
    height: 48px;
    color: var(--bark);
    transition: transform 0.3s;
    flex-shrink: 0;
}

.nav-logo-link:hover {
    transform: scale(1.02);
}

.kisero-logo-svg {
    height: 100%;
    display: block;
}

/* Mobile Toggle Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
    margin-left: 8px;
}

.menu-toggle .bar {
    width: 100%;
    height: 1.5px;
    background-color: var(--text-dark);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu Slide In overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: rgba(250, 248, 244, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 300;
    color: var(--bark);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s, transform 0.3s;
}

.mobile-menu-link:hover {
    color: var(--terracotta);
    transform: translateY(-4px);
}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    .nav-right .nav-link {
        display: none;
    }

    .nav-preferences {
        display: none;
    }
}

/* Mobile menu close button */
.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
    color: var(--bark);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
    z-index: 1001;
}

.mobile-menu-close:hover {
    background: rgba(11, 59, 48, 0.08);
    color: var(--terracotta);
}

/* ── NAVIGATION PREFERENCES (LANGUAGE & CURRENCY) ── */
.nav-preferences {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-right: 15px;
}

.pref-selector {
    position: relative;
    cursor: pointer;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bark);
    padding: 6px 10px;
    border-radius: 4px;
    border: 1px solid rgba(196, 170, 132, 0.3);
    background: transparent;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.3s ease;
}

.pref-selector:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
}

.pref-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 6px;
    background: #ffffff;
    border: 1px solid rgba(196, 170, 132, 0.3);
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(42, 34, 31, 0.08);
    display: none;
    flex-direction: column;
    min-width: 70px;
    z-index: 1000;
    overflow: hidden;
}

.pref-selector:hover .pref-dropdown {
    display: flex;
}

.pref-dropdown a {
    padding: 8px 12px;
    font-size: 10px;
    color: var(--bark);
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.pref-dropdown a:hover {
    background: var(--cream);
    color: var(--terracotta);
}

/* ==========================================================================
   SELLZY THEME LAYOUT OVERRIDES & EXTENSIONS
   ========================================================================== */

/* Modern Serif Em Accent Fusion */
h1 em, h2 em, h3 em, h4 em, .accent-serif {
    font-family: var(--font-accent) !important;
    font-style: italic !important;
    font-weight: 400 !important;
    letter-spacing: normal !important;
}

/* Three-tiered Header Elements */
.nav-preferences .pref-selector {
    border-radius: 50px !important;
    padding: 8px 16px !important;
    border: 1px solid rgba(15, 23, 42, 0.15) !important;
    font-size: 11px !important;
    background: var(--warm-white) !important;
}
.nav-preferences .pref-selector:hover {
    border-color: var(--terracotta) !important;
    background: var(--cream) !important;
}
.nav-preferences .pref-dropdown {
    border-radius: 12px !important;
    border-color: rgba(15, 23, 42, 0.1) !important;
    box-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.1) !important;
}

/* Cart Toggle Rounded Styling */
#cart-toggle {
    border: 1px solid rgba(15, 23, 42, 0.15);
    background: var(--warm-white);
    border-radius: 50px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
#cart-toggle:hover {
    border-color: var(--terracotta);
    background: var(--cream);
}
.cart-count {
    position: static !important;
    background: var(--sand) !important;
    color: var(--text-dark) !important;
    font-weight: 700 !important;
    font-size: 11px !important;
    width: 22px !important;
    height: 22px !important;
    border-radius: 50% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Redesigned Edge-to-Edge Hero Layout */
.hero {
    min-height: 100vh !important;
    margin: 0 !important; /* Spans the absolute full width */
    max-width: 100% !important; /* Full width */
    border-radius: 0 0 80px 80px !important; /* Beautiful bottom capsule curves */
    background: linear-gradient(135deg, var(--cream) 0%, #FAF8F5 100%) !important;
    padding: 160px 100px 120px !important;
    grid-template-columns: 1.2fr 1.12fr !important;
    gap: 80px !important;
    box-shadow: 0 40px 90px rgba(11, 59, 48, 0.06) !important;
    border: none !important;
    border-bottom: 1px solid rgba(11, 59, 48, 0.05) !important;
}

.hero-content h1 {
    font-size: clamp(48px, 5vw, 76px) !important;
    font-weight: 300 !important;
    letter-spacing: -0.01em !important;
    line-height: 1.15 !important;
}

.hero-img-frame {
    border-radius: 40px !important;
    box-shadow: 0 30px 80px rgba(11, 59, 48, 0.2) !important;
}

.hero-img-label {
    background: rgba(11, 59, 48, 0.85) !important;
}

/* Sellzy Modern Product Card */
.product-card, .p-card {
    background: var(--warm-white) !important;
    border: 1.5px solid rgba(15, 23, 42, 0.06) !important;
    border-radius: 28px !important;
    padding: 12px !important;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.01) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}
.product-card:hover, .p-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(11, 59, 48, 0.25) !important;
}
.product-img, .p-img {
    height: 240px !important;
    width: 100% !important;
    border-radius: 20px !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #FAF9F6 !important; /* Elegant parchment/peach tint */
    border: 1px solid rgba(15, 23, 42, 0.03) !important;
    aspect-ratio: auto !important;
}
.product-img-bg, .p-img-bg {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.product-card:hover .product-img-bg, .p-card:hover .product-img-bg {
    transform: scale(1.08) !important;
}
.product-badge, .p-badge {
    top: 12px !important;
    left: 12px !important;
    background: var(--terracotta) !important;
    color: white !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    padding: 5px 12px !important;
    border-radius: 50px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
}
.product-info, .p-info {
    padding: 16px 8px 4px !important;
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
}
.product-cat, .p-cat {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: var(--text-light) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 4px !important;
}
.product-name, .p-name {
    font-family: var(--font-display) !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: var(--bark) !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
    letter-spacing: -0.01em !important;
}
.product-material, .p-mat {
    font-size: 12px !important;
    color: var(--text-mid) !important;
    margin-bottom: 12px !important;
}
.product-footer, .p-foot {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-top: 1px solid rgba(15, 23, 42, 0.06) !important;
    padding-top: 12px !important;
    margin-top: 8px !important;
}
.product-price, .p-price {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: var(--terracotta) !important;
}

/* Pill add-to-cart layout inside cards */
.add-to-cart, .add-btn {
    width: auto !important;
    height: auto !important;
    border-radius: 50px !important;
    padding: 8px 16px !important;
    background: var(--bark) !important;
    color: white !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all 0.3s ease !important;
}
.add-to-cart:hover, .add-btn:hover {
    background: var(--terracotta) !important;
    box-shadow: 0 4px 12px rgba(11, 59, 48, 0.2) !important;
}

/* Sleek Oval Tabs / Filters */
.filter-btn, .filt-btn {
    border-radius: 50px !important;
    border: 1.5px solid rgba(15, 23, 42, 0.1) !important;
    background: var(--warm-white) !important;
    color: var(--text-mid) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    letter-spacing: 0.02em !important;
    transition: all 0.3s ease !important;
}
.filter-btn.active, .filter-btn:hover, .filt-btn.active, .filt-btn:hover {
    background: var(--terracotta) !important;
    border-color: var(--terracotta) !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(11, 59, 48, 0.15) !important;
}

/* Curved Luxury Footer Redesign - Sellzy Style */
.footer {
    background: #5e1c00 !important; /* Elegant brand deep-teal */
    color: rgba(255, 255, 255, 0.8) !important;
    position: relative !important;
    overflow: visible !important; /* Let newsletter tab overlap top edge! */
    padding: 110px 48px 0px !important; /* Tight padding to minimize vertical footprint */
    border-radius: 60px 60px 0 0 !important;
    margin-top: 100px !important; /* Leave space above the footer for the overlapping newsletter card */
}

/* Sellzy Subscribe to Newsletter Card */
.footer-newsletter-card {
    position: absolute;
    top: -95px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1000px;
    background: white;
    border-radius: 40px;
    padding: 28px 64px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    text-align: center;
    box-sizing: border-box;
    z-index: 10;
}
.footer-newsletter-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: #0F172A; /* Deep slate charcoal */
    margin: 0 0 6px;
    letter-spacing: -0.01em;
}
.footer-newsletter-card p {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-light);
    margin: 0 0 20px;
}
.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}
.newsletter-input-wrapper {
    position: relative;
    flex-grow: 1;
}
.newsletter-input-wrapper i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    font-size: 16px;
}
.newsletter-input-wrapper input {
    width: 100%;
    padding: 12px 20px 12px 50px;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    box-sizing: border-box;
    transition: all 0.2s ease;
}
.newsletter-input-wrapper input:focus {
    border-color: #5e1c00;
    box-shadow: 0 0 0 3px rgba(11, 59, 48, 0.08);
}
.btn-subscribe {
    background: #5e1c00;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-subscribe:hover {
    background: #3d1200;
    transform: translateY(-1px);
}

/* Footer layout elements */
.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.2fr;
    gap: 40px; /* Reduced gap to bring columns closer */
    margin-bottom: 20px;
    border-bottom: none !important; /* We will use the curving divider line instead! */
    padding-bottom: 0px;
}
@media(max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}
.footer-brand {
    display: flex;
    flex-direction: column;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #FBBF24 !important; /* Beautiful gold accent matches Sellzy logo */
    margin: 0 0 10px !important;
}
.footer-tagline {
    font-family: var(--font-body);
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6) !important;
    margin: 0 0 15px;
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 12px;
}
.footer-socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.footer-socials a:hover {
    background: white;
    color: #5e1c00;
    transform: translateY(-2px);
}

/* Navigation lists */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media(max-width: 576px) {
    .footer-links {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-col-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    color: white !important;
    margin-bottom: 8px !important;
    border-bottom: none !important;
    padding-bottom: 0 !important;
}
.footer-col a {
    font-family: var(--font-body);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}
.footer-col a::before {
    content: '›';
    margin-right: 6px;
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.2s ease;
}
.footer-col a:hover {
    color: #FBBF24 !important; /* Gold on hover! */
    transform: translateX(4px);
}
.footer-col a:hover::before {
    color: #FBBF24;
}

/* Contact information list */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-row-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}
.contact-row-item i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
}

/* Sellzy Curved Divider Line & Copyright */
.footer-divider-curved {
    position: relative;
    width: 100%;
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-divider-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}
.footer-divider-arch {
    position: relative;
    z-index: 2;
    background: #5e1c00; /* Matches footer background exactly to hide the horizontal line */
    padding: 10px 48px;
    border-radius: 30px 30px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    top: 1px; /* Sits directly over the divider line to frame it */
}
.footer-divider-arch p {
    margin: 0;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

@media(max-width: 768px) {
    .footer {
        padding: 140px 20px 0px !important;
        border-radius: 40px 40px 0 0 !important;
    }
    .footer-newsletter-card {
        padding: 24px 20px !important;
        top: -120px !important;
    }
    .footer-newsletter-card h3 {
        font-size: 20px !important;
    }
    .newsletter-form {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .btn-subscribe {
        width: 100% !important;
        justify-content: center !important;
    }
    .footer-divider-arch {
        padding: 10px 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: center;
    }
    .footer-divider-arch p {
        white-space: normal !important;
    }
}

/* ==========================================================================
   MOBILE PREFERENCES (HAMBURGER SELECTORS)
   ========================================================================== */
@media (max-width: 900px) {
    .nav-preferences {
        display: none !important;
    }
}

.mobile-nav-preferences {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(11, 59, 48, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: center;
}

.mobile-pref-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mobile-pref-label {
    font-family: 'Outfit', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 8px;
}

.mobile-pref-group {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.mobile-pref-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(11, 59, 48, 0.12);
    color: #5e1c00;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: #ffffff;
}

.mobile-pref-btn.active {
    background: #5e1c00;
    color: #ffffff;
    border-color: #5e1c00;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(11, 59, 48, 0.1);
}

.mobile-pref-btn:hover {
    border-color: #5e1c00;
    background: rgba(11, 59, 48, 0.03);
}

