/* ==========================================================================
   KRAFTEN EDITORIAL CATALOG & SALES PLATFORM — CSS DESIGN SYSTEM
   Visual-first Luxury Lookbook + Dual Wholesale/Retail Conversion Engine
   ========================================================================== */

:root {
    --bg-dark: #08100C;
    --bg-surface: #0E1A14;
    --bg-card: rgba(18, 32, 25, 0.85);
    --bg-card-hover: rgba(25, 46, 36, 0.95);
    
    --gold: #C8A96E;
    --gold-bright: #E4C894;
    --gold-glow: rgba(200, 169, 110, 0.28);
    --emerald: #143525;
    --emerald-light: #255C41;
    --accent-green: #40916C;
    
    --text-white: #FFFFFF;
    --text-light: #E0EBE4;
    --text-muted: #8B9B92;
    --border-glass: rgba(200, 169, 110, 0.18);
    --border-glass-bright: rgba(200, 169, 110, 0.45);
    
    --ff-serif: 'Cinzel', Georgia, serif;
    --ff-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

section[id], .catalog-spread, [id] {
    scroll-margin-top: 90px;
}

body {
    font-family: var(--ff-sans);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Accessibility Skip-to-content Link */
.sr-only-skip {
    position: absolute;
    top: -9999px;
    left: 14px;
    background: var(--gold);
    color: #08100C;
    padding: 10px 18px;
    font-weight: 700;
    font-size: 0.88rem;
    border-radius: var(--radius-sm);
    z-index: 999999;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: top 0.2s ease;
}
.sr-only-skip:focus {
    top: 14px;
}

/* ================= AMBIENT FX LAYER ================= */
.ambient-fx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.ambient-fx .glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
    animation: orbFloat 20s infinite alternate ease-in-out;
}

.ambient-fx .orb-1 {
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.35), transparent 70%);
    top: -100px;
    right: -150px;
}

.ambient-fx .orb-2 {
    width: 750px;
    height: 750px;
    background: radial-gradient(circle, rgba(27, 67, 50, 0.45), transparent 70%);
    bottom: -200px;
    left: -150px;
    animation-duration: 25s;
}

@keyframes orbFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 40px) scale(1.1); }
}

/* ================= TOP EDITORIAL NAVIGATION BAR ================= */
.catalog-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0;
    background: rgba(8, 16, 12, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition);
}

.site-announcement-bar {
    background: linear-gradient(90deg, rgba(20, 53, 37, 0.95), rgba(8, 16, 12, 0.98), rgba(20, 53, 37, 0.95));
    border-bottom: 1px solid rgba(200, 169, 110, 0.25);
    color: #E5C384;
    font-size: 0.76rem;
    font-weight: 600;
    text-align: center;
    padding: 6px 20px;
    letter-spacing: 0.4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.site-announcement-bar .announcement-link {
    color: #FFF;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.2s ease;
}

.site-announcement-bar .announcement-link:hover {
    color: var(--gold-bright);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 12px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #FFF;
}

.nav-brand img {
    height: 38px;
    width: auto;
}

.nav-brand-title {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #FFF;
}

.nav-brand-sub {
    font-size: 0.68rem;
    color: var(--gold);
    display: block;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.nav-links-menu {
    display: flex;
    align-items: center;
    gap: 26px;
}

.nav-link-item {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

.nav-link-item:hover {
    color: var(--gold);
}

.nav-actions-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-nav-action {
    padding: 9px 18px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-nav-wholesale {
    background: var(--gold);
    color: #08100C;
}

.btn-nav-wholesale:hover {
    background: var(--gold-bright);
    box-shadow: 0 4px 18px var(--gold-glow);
    transform: translateY(-2px);
}

.btn-nav-retail {
    background: rgba(64, 145, 108, 0.25);
    border: 1px solid rgba(64, 145, 108, 0.5);
    color: #74C69D;
}

.btn-nav-retail:hover {
    background: #40916C;
    color: #FFF;
    transform: translateY(-2px);
}

.btn-nav-cart {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: var(--gold);
    position: relative;
}

.btn-nav-cart:hover {
    background: rgba(200, 169, 110, 0.2);
}

.cart-count-badge {
    background: #E63946;
    color: #FFF;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    font-weight: 800;
    margin-left: 4px;
}

/* ================= HERO: DYNAMIC PRODUCT SLIDING BANNER (CAROUSEL) ================= */
.hero-carousel-sec {
    position: relative;
    padding-top: 105px;
    z-index: 1;
    overflow: hidden;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 580px;
    max-height: 750px;
    overflow: hidden;
    background: #000;
}

.carousel-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.04);
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.slide-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.68) contrast(1.08);
}

.slide-overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 16, 12, 0.95) 0%, rgba(8, 16, 12, 0.72) 48%, rgba(8, 16, 12, 0.35) 100%);
    z-index: 1;
}

.slide-content-wrap {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    width: 100%;
    padding: 0 45px;
}

.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 16, 12, 0.85);
    border: 1px solid var(--border-glass-bright);
    color: var(--gold);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    animation: slideUpFade 0.6s ease-out forwards;
}

.slide-title {
    font-family: var(--ff-serif);
    font-size: 3.6rem;
    font-weight: 900;
    line-height: 1.15;
    color: #FFF;
    margin-bottom: 20px;
    max-width: 850px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.95), 0 2px 10px rgba(0, 0, 0, 0.9);
}

.slide-desc {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 680px;
    line-height: 1.65;
    margin-bottom: 35px;
}

.slide-btn-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* CAROUSEL CONTROLS */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(8, 16, 12, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass-bright);
    color: var(--gold);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-nav-btn:hover {
    background: var(--gold);
    color: #08100C;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 25px var(--gold-glow);
}

.carousel-prev { left: 25px; }
.carousel-next { right: 25px; }

.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.indicator-dot {
    width: 32px;
    height: 5px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
}

.indicator-dot.active {
    width: 60px;
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
}

/* ================= TRUST STRIP ACCREDITATIONS ================= */
.trust-strip-sec {
    background: rgba(200, 169, 110, 0.05);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    padding: 16px 24px;
    position: relative;
    z-index: 5;
}

.trust-strip-inner {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-strip-inner span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.5px;
}

/* ================= EDITORIAL CATALOG COLLECTIONS ================= */
.catalog-section {
    position: relative;
    z-index: 1;
    padding: 80px 24px 60px;
    max-width: 1320px;
    margin: 0 auto;
}

.catalog-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.catalog-eyebrow {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.catalog-title {
    font-family: var(--ff-serif);
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFF;
    line-height: 1.2;
    margin-bottom: 16px;
}

.catalog-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* EDITORIAL SPREAD ITEM */
.catalog-spread {
    display: grid;
    grid-template-columns: 1fr 1.18fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 60px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 32px;
    backdrop-filter: blur(14px);
    transition: var(--transition);
}

.catalog-spread:hover {
    border-color: var(--border-glass-bright);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 35px var(--gold-glow);
}

.spread-img-box {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #08100C;
    height: 100%;
    min-height: 380px;
    display: flex;
    flex-direction: column;
}

.spread-img-box img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    flex: 1;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s ease;
}

.catalog-spread:hover .spread-img-box img {
    transform: scale(1.03);
}

.spread-tag-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    background: rgba(8, 16, 12, 0.88);
    border: 1px solid var(--border-glass-bright);
    color: var(--gold);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(8px);
}

.spread-info-box {
    padding: 4px 6px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.spread-col-num {
    font-family: var(--ff-serif);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 2px;
    display: block;
    margin-bottom: 6px;
}

.spread-col-title {
    font-family: var(--ff-serif);
    font-size: 1.85rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 12px;
    line-height: 1.22;
}

.spread-col-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 18px;
}

.spread-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 0.88rem;
}

.spread-specs-table th {
    text-align: left;
    color: var(--gold);
    padding: 7px 8px;
    border-bottom: 1px solid var(--border-glass);
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.spread-specs-table td {
    padding: 8px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
}

.spread-features-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 22px;
}

.chip-tag {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 0.74rem;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: var(--radius-full);
}

.spread-action-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-spread-wholesale {
    padding: 11px 22px;
    border-radius: var(--radius-full);
    background: var(--gold);
    color: #08100C;
    font-weight: 700;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-spread-wholesale:hover {
    background: var(--gold-bright);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-spread-retail {
    padding: 11px 22px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-glass);
    color: #FFF;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-spread-retail:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ================= GRAND FINALE SALES GATEWAY (SAYFANIN SONU) ================= */
.sales-grand-section, .sales-hub-section {
    position: relative;
    z-index: 1;
    padding: 100px 36px 80px;
    border-top: 1px solid var(--border-glass);
    background: linear-gradient(180deg, rgba(8, 16, 12, 0.7) 0%, rgba(14, 26, 20, 0.98) 100%);
}

.sales-hub-header, .sales-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 50px;
}

.sales-title {
    font-family: var(--ff-serif);
    font-size: 2.8rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 15px;
    line-height: 1.25;
}

.sales-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.dual-sales-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    max-width: 1320px;
    margin: 0 auto;
}

.sales-module-card, .sales-hub-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 45px;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.sales-module-card:hover, .sales-hub-card:hover {
    transform: translateY(-6px);
}

.sales-module-card.wholesale, .sales-hub-card.wholesale {
    border-color: rgba(200, 169, 110, 0.35);
    background: radial-gradient(circle at top left, rgba(200, 169, 110, 0.08), transparent 70%), var(--bg-card);
}

.sales-module-card.wholesale:hover, .sales-hub-card.wholesale:hover {
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(200, 169, 110, 0.25);
}

.sales-module-card.retail, .sales-hub-card.retail {
    border-color: rgba(64, 145, 108, 0.35);
    background: radial-gradient(circle at top right, rgba(64, 145, 108, 0.08), transparent 70%), var(--bg-card);
}

.sales-module-card.retail:hover, .sales-hub-card.retail:hover {
    border-color: #74C69D;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(64, 145, 108, 0.25);
}

.sales-badge-pill, .sales-hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
    align-self: flex-start;
}

.sales-badge-pill.wholesale, .badge-b2b {
    background: rgba(200, 169, 110, 0.18);
    color: var(--gold);
    border: 1px solid var(--gold);
}

.sales-badge-pill.retail, .badge-b2c {
    background: rgba(64, 145, 108, 0.22);
    color: #74C69D;
    border: 1px solid rgba(64, 145, 108, 0.6);
}

.sales-card-title {
    font-family: var(--ff-serif);
    font-size: 2.1rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 14px;
    letter-spacing: 0.5px;
}

.sales-card-desc, .sales-card-sub {
    color: var(--text-light);
    font-size: 1.02rem;
    line-height: 1.65;
    margin-bottom: 25px;
}

.sales-perks-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sales-perks-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.94rem;
    color: var(--text-light);
    line-height: 1.5;
}

.sales-perks-list li i {
    color: var(--gold);
    font-size: 1.05rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.sales-module-card.retail .sales-perks-list li i {
    color: #74C69D;
}

.btn-sales-primary {
    width: 100%;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    margin-top: auto;
}

.btn-sales-primary.wholesale {
    background: var(--gold);
    color: #08100C;
    border: none;
}

.btn-sales-primary.wholesale:hover {
    background: var(--gold-bright);
    box-shadow: 0 10px 30px var(--gold-glow);
    transform: translateY(-3px);
}

.btn-sales-primary.retail {
    background: #2D6A4F;
    color: #FFF;
    border: 1px solid #40916C;
}

.btn-sales-primary.retail:hover {
    background: #40916C;
    box-shadow: 0 10px 30px rgba(64, 145, 108, 0.4);
    transform: translateY(-3px);
}

/* ================= RETAIL PRODUCT CARDS & LID TOGGLE ================= */
.retail-shelf-sec {
    max-width: 1320px;
    width: 100%;
    margin: 40px auto 70px;
    padding: 0 24px;
    box-sizing: border-box;
}

.retail-shelf-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 35px;
}

.retail-shelf-title {
    font-family: var(--ff-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFF;
    letter-spacing: 0.5px;
}

.retail-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.filter-tab-btn {
    padding: 9px 18px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-light);
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-tab-btn:hover {
    background: rgba(200, 169, 110, 0.12);
    border-color: var(--gold);
    color: var(--gold);
}

.filter-tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #08100C;
    box-shadow: 0 4px 18px var(--gold-glow);
}

.retail-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 30px;
    width: 100%;
}

@media (max-width: 1200px) {
    .retail-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .retail-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 540px) {
    .retail-showcase-grid {
        grid-template-columns: 1fr;
    }
}

.retail-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    box-sizing: border-box;
}

.retail-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.retail-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    margin-bottom: 14px;
    background: radial-gradient(circle, rgba(200, 169, 110, 0.08), transparent 70%);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.retail-card-name {
    font-family: var(--ff-serif);
    font-size: 1.12rem;
    font-weight: 700;
    color: #FFF;
    margin-bottom: 6px;
    line-height: 1.3;
}

.retail-card-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 3.7em;
}

.retail-specs-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 14px;
}

.micro-spec-chip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #B5C9BE;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3px 7px;
    border-radius: 4px;
    white-space: nowrap;
}

.micro-spec-chip i {
    color: var(--gold);
    font-size: 0.58rem;
}

/* QTY STEPPER COMPONENT */
.qty-stepper-box {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 10px 12px;
    margin: 6px 0 12px;
}

.qty-stepper-label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.qty-stepper-title {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qty-box-info {
    font-size: 0.74rem;
    color: var(--gold-bright);
    background: rgba(200, 169, 110, 0.12);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(200, 169, 110, 0.25);
}

.qty-stepper-ctrl {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background: rgba(8, 16, 12, 0.7);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 4px;
}

.btn-step-action {
    width: 36px;
    height: 34px;
    background: rgba(200, 169, 110, 0.15);
    border: 1px solid var(--border-glass);
    border-radius: 4px;
    color: var(--gold-bright);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-step-action:hover {
    background: var(--gold);
    color: #08100C;
}

.qty-stepper-display {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.qty-stepper-number {
    font-size: 1.15rem;
    font-weight: 800;
    color: #FFF;
    letter-spacing: 0.5px;
}

.qty-stepper-unit {
    font-size: 0.74rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* UNIT PRICE BADGE ROW */
.unit-price-badge-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.74rem;
}

.unit-price-label {
    color: var(--text-muted);
    font-weight: 500;
}

.unit-price-val {
    color: var(--gold-bright);
}

.unit-kdv-inc {
    font-size: 0.68rem;
    color: #B5C9BE;
}

.lid-selector-pill {
    display: flex;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 3px;
    margin-bottom: 12px;
}

.lid-pill-btn {
    flex: 1;
    padding: 5px 0;
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
}

.lid-pill-btn.active {
    background: var(--gold);
    color: #08100C;
}

.retail-price-box {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(200, 169, 110, 0.2);
    border-radius: 8px;
    padding: 10px 12px;
    margin: 8px 0 14px;
}

.price-kdv-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-main {
    font-size: 1.45rem;
    font-weight: 900;
    color: var(--gold-bright);
    letter-spacing: -0.5px;
    line-height: 1;
}

.price-kdv-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    font-weight: 800;
    color: #08100C;
    background: var(--gold);
    padding: 3px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.price-prev {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: auto;
}

.price-kdv-sub {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.74rem;
    margin-top: 6px;
    flex-wrap: wrap;
}

.price-base-text {
    color: #D8E2DC;
    font-weight: 600;
}

.price-vat-calc {
    color: var(--accent-green);
    font-weight: 700;
}

.btn-card-add {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--gold);
    color: #08100C;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: auto;
}

.btn-card-add:hover {
    background: var(--gold-bright);
    box-shadow: 0 4px 15px var(--gold-glow);
}

.btn-custom-print-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 10px;
    padding: 8px 10px;
    background: rgba(45, 106, 79, 0.15);
    border: 1px dashed rgba(45, 106, 79, 0.5);
    border-radius: 8px;
    color: #74C69D;
    font-size: 0.76rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    text-align: center;
}

.btn-custom-print-wa:hover {
    background: rgba(45, 106, 79, 0.35);
    border-color: #52B788;
    color: #FFF;
    transform: translateY(-2px);
}

.cart-summary-kdv {
    display: flex;
    justify-content: space-between;
    font-size: 0.88rem;
    color: var(--gold);
    margin: 6px 0;
}

/* ================= CART DRAWER & CHECKOUT MODAL ================= */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    z-index: 150;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.cart-drawer-overlay.open {
    opacity: 1;
    pointer-events: all;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: -480px;
    width: 440px;
    max-width: 90vw;
    height: 100vh;
    background: #0B1610;
    border-left: 1px solid var(--border-glass);
    z-index: 160;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.6);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cart-drawer.open {
    right: 0;
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-glass);
}

.cart-drawer-title {
    font-family: var(--ff-serif);
    font-size: 1.35rem;
    color: #FFF;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-items-list {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cart-item {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.06);
    align-items: center;
}

.cart-item-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    background: rgba(200, 169, 110, 0.1);
    border-radius: 6px;
    padding: 4px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FFF;
}

.cart-item-pack {
    font-size: 0.75rem;
    color: var(--gold);
}

.cart-item-price {
    font-weight: 700;
    color: #FFF;
    margin-top: 3px;
    font-size: 0.9rem;
}

.cart-qty-ctrl {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 4px;
    padding: 2px 6px;
}

.qty-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    cursor: pointer;
    font-size: 1rem;
    font-weight: bold;
}

.cart-drawer-footer {
    border-top: 1px solid var(--border-glass);
    padding-top: 20px;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.cart-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 18px;
}

.btn-checkout-now {
    width: 100%;
    padding: 14px;
    border-radius: var(--radius-full);
    border: none;
    background: var(--gold);
    color: #08100C;
    font-weight: 800;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    margin-bottom: 10px;
}

.btn-checkout-now:hover {
    background: var(--gold-bright);
    box-shadow: 0 6px 20px var(--gold-glow);
}

.btn-checkout-wa {
    width: 100%;
    padding: 12px;
    border-radius: var(--radius-full);
    border: 1px solid #25D366;
    background: transparent;
    color: #25D366;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
}

.btn-checkout-wa:hover {
    background: rgba(37, 211, 102, 0.15);
}

/* ================= MOCK CREDIT CARD MODAL ================= */
.modal-checkout {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-checkout.open {
    opacity: 1;
    pointer-events: all;
}

.checkout-box {
    background: #111E17;
    border: 1px solid var(--border-glass-bright);
    border-radius: var(--radius-lg);
    max-width: 520px;
    width: 100%;
    padding: 35px;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
}

.card-mockup {
    background: linear-gradient(135deg, #1A3326, #08100C);
    border: 1px solid var(--border-glass-bright);
    border-radius: var(--radius-md);
    padding: 22px;
    margin-bottom: 22px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    position: relative;
}

.card-chip {
    width: 38px;
    height: 26px;
    background: #D4AF37;
    border-radius: 4px;
    margin-bottom: 18px;
}

.card-number-display {
    font-family: 'Courier New', Courier, monospace;
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #FFF;
    margin-bottom: 14px;
}

.card-footer-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 5px;
}

.form-input {
    width: 100%;
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    color: #FFF;
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: var(--gold);
}

/* ================= ADMIN PRICE & LID MODAL ================= */
.modal-admin {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(14px);
    z-index: 220;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-admin.open {
    opacity: 1;
    pointer-events: all;
}

.admin-box {
    background: #0E1A13;
    border: 1px solid var(--gold);
    border-radius: var(--radius-lg);
    max-width: 820px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    padding: 35px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);
}

.admin-item-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 12px;
    align-items: center;
}

/* ================= BENTO BLOG (SEO PRESERVATION) ================= */
.bento-grid-sec, .blog-bento-sec {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 24px 70px;
    border-top: 1px solid var(--border-glass);
}

.bento-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.bento-sec-title {
    font-family: var(--ff-serif);
    font-size: 2.2rem;
    font-weight: 800;
    color: #FFF;
    margin-bottom: 12px;
}

.bento-sec-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bento-grid, .bento-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.bento-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition);
    position: relative;
}

.bento-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(20, 36, 28, 0.95);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(200, 169, 110, 0.15);
}

.bento-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}

.bento-title {
    font-family: var(--ff-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFF;
    line-height: 1.4;
    margin-bottom: 14px;
}

.bento-excerpt {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.bento-link {
    color: var(--gold-bright);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    align-self: flex-start;
}

.bento-link:hover {
    color: #FFF;
    gap: 12px;
}

/* ================= MINIMAL CORPORATE FOOTER ================= */
.site-footer {
    border-top: 1px solid var(--border-glass);
    padding: 60px 36px 35px;
    background: #050B08;
    text-align: center;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    margin: 0 auto 15px;
    display: block;
}

.footer-desc {
    color: #D1DDD6;
    font-size: 0.9rem;
    max-width: 600px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.footer-contact-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    color: var(--gold);
    font-size: 0.88rem;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-contact-row span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.footer-links-row a {
    color: #B8C7C0;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links-row a:hover {
    color: var(--gold);
}

.footer-copy {
    font-size: 0.8rem;
    color: #A0B0A7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* ================= RESPONSIVE SYSTEM (MOBILE FIRST & TABLET) ================= */

/* Tablet & Smaller Laptops (<= 1024px) */
@media (max-width: 1024px) {
    .catalog-nav {
        padding: 14px 24px;
    }

    .nav-links-menu {
        display: none;
    }

    .catalog-spread {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .spread-img-box {
        height: 320px;
        min-height: 320px;
    }

    .dual-sales-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .bento-grid, .bento-grid-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .slide-title {
        font-size: 2.8rem;
    }
}

/* Tablets & Large Phones (<= 768px) */
@media (max-width: 768px) {
    /* Global Anti-Overflow & Mobile Rhythm */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }

    /* Ambient FX containment */
    .ambient-fx {
        display: none; /* Reduce mobile GPU load */
    }

    /* Top Navigation Bar */
    .catalog-nav {
        padding: 10px 14px;
    }

    .nav-container {
        gap: 8px;
    }

    .nav-brand {
        gap: 8px;
    }

    .nav-brand img {
        height: 30px;
    }

    .nav-brand-title {
        font-size: 1.05rem;
        letter-spacing: 1px;
    }

    .nav-brand-sub {
        display: none;
    }

    .nav-actions-wrap {
        gap: 6px;
    }

    .btn-nav-action {
        padding: 7px 11px;
        font-size: 0.74rem;
        gap: 5px;
    }

    .btn-nav-cart {
        padding: 7px 10px;
        font-size: 0.8rem;
    }

    .cart-count-badge {
        font-size: 0.65rem;
        padding: 2px 5px;
        margin-left: 2px;
    }

    /* Hero Dynamic Sliding Carousel */
    .hero-carousel-sec {
        padding-top: 54px;
    }

    .hero-carousel {
        min-height: 540px;
        height: 82vh;
        max-height: 660px;
    }

    .carousel-slide {
        padding: 24px 18px 36px;
        align-items: flex-end; /* Ground content towards the bottom */
    }

    .slide-overlay-gradient {
        background: linear-gradient(180deg, rgba(8, 16, 12, 0.35) 0%, rgba(8, 16, 12, 0.72) 40%, rgba(8, 16, 12, 0.96) 90%);
    }

    .slide-content-wrap {
        width: 100%;
    }

    .slide-tag {
        font-size: 0.68rem;
        letter-spacing: 1.2px;
        padding: 5px 12px;
        margin-bottom: 12px;
        white-space: normal;
        line-height: 1.3;
    }

    .slide-title {
        font-size: 1.75rem;
        line-height: 1.22;
        margin-bottom: 12px;
        letter-spacing: -0.2px;
    }

    .slide-desc {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 20px;
        color: var(--text-light);
    }

    .slide-btn-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .slide-btn-row .btn-spread-wholesale,
    .slide-btn-row .btn-spread-retail {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 12px 16px;
        font-size: 0.86rem;
    }

    /* Hide desktop nav arrows on mobile; touch swipe & dots are used */
    .carousel-nav-btn {
        display: none !important;
    }

    .carousel-indicators {
        bottom: 10px;
        gap: 7px;
    }

    .indicator-dot {
        width: 18px;
        height: 4px;
    }

    .indicator-dot.active {
        width: 32px;
    }

    /* Trust Strip Accreditations */
    .trust-strip-sec {
        padding: 14px 14px;
    }

    .trust-strip-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 12px;
    }

    .trust-strip-inner span {
        font-size: 0.74rem;
        gap: 6px;
        line-height: 1.35;
    }

    .trust-strip-inner span:last-child {
        grid-column: 1 / -1;
        justify-content: center;
    }

    /* Editorial Catalog Lookbook */
    .catalog-section {
        padding: 45px 14px 20px;
    }

    .catalog-header {
        margin-bottom: 30px;
    }

    .catalog-eyebrow {
        font-size: 0.72rem;
        letter-spacing: 1.8px;
        margin-bottom: 8px;
    }

    .catalog-title {
        font-size: 1.6rem;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .catalog-desc {
        font-size: 0.88rem;
        line-height: 1.5;
    }

    .catalog-spread {
        padding: 16px;
        margin-bottom: 30px;
        border-radius: 16px;
        gap: 18px;
    }

    .spread-img-box {
        border-radius: 12px;
        height: 240px;
        min-height: auto;
    }

    .spread-img-box img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .spread-tag-badge {
        top: 10px;
        left: 10px;
        font-size: 0.65rem;
        padding: 4px 10px;
        letter-spacing: 1px;
    }

    .spread-info-box {
        padding: 0;
    }

    .spread-col-num {
        font-size: 0.78rem;
        letter-spacing: 1.5px;
        margin-bottom: 4px;
    }

    .spread-col-title {
        font-size: 1.35rem;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .spread-col-desc {
        font-size: 0.85rem;
        line-height: 1.55;
        margin-bottom: 16px;
    }

    .spread-specs-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        font-size: 0.76rem;
        margin-bottom: 16px;
    }

    .spread-specs-table th, .spread-specs-table td {
        padding: 7px 8px;
        white-space: nowrap;
    }

    .spread-features-chips {
        gap: 6px;
        margin-bottom: 18px;
    }

    .chip-tag {
        font-size: 0.72rem;
        padding: 4px 10px;
    }

    .spread-action-row {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .spread-action-row .btn-spread-wholesale,
    .spread-action-row .btn-spread-retail {
        width: 100%;
        justify-content: center;
        text-align: center;
        padding: 12px 16px;
        font-size: 0.86rem;
    }

    /* Grand Finale Sales Gateway */
    .sales-grand-section, .sales-hub-section {
        padding: 50px 14px 40px;
    }

    .sales-grand-section h2 {
        font-size: 1.6rem !important;
        margin-bottom: 10px !important;
    }

    .sales-grand-section p {
        font-size: 0.88rem !important;
    }

    .dual-sales-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sales-module-card, .sales-hub-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .sales-badge-pill {
        font-size: 0.7rem;
        padding: 6px 14px;
        margin-bottom: 14px;
    }

    .sales-card-title {
        font-size: 1.45rem;
        margin-bottom: 10px;
    }

    .sales-card-desc {
        font-size: 0.86rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .sales-perks-list {
        gap: 10px;
        margin-bottom: 22px;
    }

    .sales-perks-list li {
        font-size: 0.82rem;
        gap: 8px;
    }

    .btn-sales-primary {
        padding: 13px 18px;
        font-size: 0.88rem;
    }

    /* Retail Shelf */
    #retail-catalog-shelf {
        margin-top: 40px !important;
        padding-top: 30px !important;
    }

    #retail-catalog-shelf h3 {
        font-size: 1.5rem !important;
    }

    .retail-showcase-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .retail-card {
        padding: 16px;
        border-radius: 14px;
    }

    .retail-card-name {
        font-size: 1.05rem;
    }

    .pack-chip {
        padding: 8px 0;
        font-size: 0.76rem;
        min-height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lid-pill-btn {
        padding: 7px 0;
        font-size: 0.74rem;
        min-height: 34px;
    }

    .btn-card-add {
        padding: 13px 18px;
        font-size: 0.88rem;
        min-height: 44px;
    }

    /* Cart Drawer */
    .cart-drawer {
        width: 100vw;
        max-width: 100vw;
        right: -100vw;
        padding: 20px 16px;
    }

    .cart-drawer-header {
        padding-bottom: 14px;
    }

    .cart-drawer-title {
        font-size: 1.15rem;
    }

    .cart-item {
        gap: 10px;
        padding: 10px;
    }

    .cart-item-img {
        width: 48px;
        height: 48px;
    }

    .cart-item-title {
        font-size: 0.84rem;
    }

    .cart-item-price {
        font-size: 0.84rem;
    }

    .btn-checkout-now {
        padding: 13px;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .btn-checkout-wa {
        padding: 12px;
        font-size: 0.84rem;
        min-height: 44px;
    }

    /* Checkout Modal */
    .modal-checkout {
        padding: 14px;
    }

    .checkout-box {
        padding: 22px 16px;
        border-radius: 16px;
        max-height: 92vh;
        overflow-y: auto;
    }

    .checkout-box h3 {
        font-size: 1.3rem !important;
    }

    .form-input {
        font-size: 16px !important; /* Prevents auto-zoom in iOS Safari */
        padding: 12px 14px;
    }

    /* Bento Blog */
    .bento-grid-sec, .blog-bento-sec {
        padding: 45px 14px 40px;
    }

    .bento-grid, .bento-grid-3 {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .bento-card {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .bento-title {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .bento-excerpt {
        font-size: 0.84rem;
        margin-bottom: 16px;
    }

    /* Admin Panel Modal */
    .admin-box {
        padding: 18px 14px;
        width: 96vw;
        max-height: 92vh;
        border-radius: 14px;
    }

    .admin-item-row {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 10px;
    }

    /* Minimal Corporate Footer */
    .site-footer {
        padding: 40px 14px 25px;
    }

    .footer-logo {
        width: 40px;
        height: 40px;
        object-fit: contain;
    }

    .footer-desc {
        font-size: 0.84rem;
        margin-bottom: 16px;
    }

    .footer-contact-row {
        flex-direction: column;
        gap: 8px;
        font-size: 0.82rem;
        margin-bottom: 16px;
    }

    .footer-links-row {
        gap: 12px;
        font-size: 0.78rem;
        margin-bottom: 16px;
    }
}

/* Small Smart Phones (<= 480px) */
@media (max-width: 480px) {
    .catalog-nav {
        padding: 8px 10px;
    }

    .nav-brand-title {
        font-size: 0.92rem;
        letter-spacing: 0.5px;
    }

    .nav-brand img {
        height: 26px;
    }

    .nav-actions-wrap {
        gap: 4px;
    }

    .btn-nav-action {
        padding: 6px 8px;
        font-size: 0.7rem;
    }

    /* Show clean compact B2B / B2C tags on tiny mobile */
    .btn-nav-wholesale span {
        display: none;
    }
    .btn-nav-wholesale::after {
        content: 'B2B';
        font-weight: 800;
        margin-left: 2px;
    }

    .btn-nav-retail span {
        display: none;
    }
    .btn-nav-retail::after {
        content: 'B2C';
        font-weight: 800;
        margin-left: 2px;
    }

    .slide-title {
        font-size: 1.48rem;
    }

    .spread-col-title {
        font-size: 1.22rem;
    }
}

