/* =====================================================================
   FEEDCO — Storefront Design System
   Palette: deep workshop navy + cognac leather + warm cream
   Type: "Fraunces" (display) / "Manrope" (body & UI)
   Signature motif: stitched-tag chips & dashed seam dividers,
   referencing the leather patch tags & stitching seen across the
   product range.
   ===================================================================== */

:root {
    --navy-950: #0e1c2b;
    --navy-900: #16283d;
    --navy-800: #1f3a54;
    --navy-700: #2c4d6b;
    --cream: #faf6ef;
    --cream-dark: #f0e9db;
    --cognac: #b9713d;
    --cognac-dark: #93551f;
    --cognac-light: #e3a874;
    --gold: #d4a24c;
    --ink: #20242b;
    --ink-soft: #565f6b;
    --white: #ffffff;
    --success: #2f8f5b;
    --danger: #c8452f;

    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 22px;
    --shadow-soft: 0 10px 30px -12px rgba(14, 28, 43, 0.18);
    --shadow-strong: 0 24px 60px -20px rgba(14, 28, 43, 0.35);
    --container-max: 1320px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4, .font-display {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--navy-950);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.container-xl { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }

::selection { background: var(--cognac-light); color: var(--navy-950); }

:focus-visible {
    outline: 3px solid var(--cognac);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
}

/* ---------------------------------------------------------------------
   Eyebrow / stitched tag chip — signature element
   --------------------------------------------------------------------- */
.stitch-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cognac-dark);
    padding: 7px 16px 7px 14px;
    border: 1.5px dashed var(--cognac);
    border-radius: 999px;
    background: rgba(185, 113, 61, 0.07);
}
.stitch-tag::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--cognac);
    flex-shrink: 0;
}
.stitch-tag--light { color: var(--gold); border-color: rgba(212,162,76,0.6); background: rgba(212,162,76,0.1); }

.seam-divider {
    position: relative;
    height: 1px;
    background: repeating-linear-gradient(90deg, rgba(22,40,61,0.22) 0 10px, transparent 10px 18px);
    margin: 0 auto;
}

/* ---------------------------------------------------------------------
   Top utility bar + navbar
   --------------------------------------------------------------------- */
.topbar {
    background: var(--navy-950);
    color: rgba(255,255,255,0.78);
    font-size: 13px;
    padding: 8px 0;
}
.topbar a { color: rgba(255,255,255,0.85); }
.topbar a:hover { color: var(--gold); }

.navbar-feedco {
    background: var(--cream);
    padding: 14px 0;
    border-bottom: 1px solid rgba(22,40,61,0.08);
    position: sticky;
    top: 0;
    z-index: 1030;
    transition: box-shadow .25s ease, padding .25s ease;
}
.navbar-feedco.is-scrolled {
    box-shadow: var(--shadow-soft);
    padding: 8px 0;
}
.navbar-feedco .brand-mark {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    color: var(--navy-950);
}
.navbar-feedco .brand-mark span { color: var(--cognac); }
.navbar-feedco .brand-badge {
    width: 42px; height: 42px;
    border-radius: 10px;
    background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
    color: var(--gold);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
}
.nav-link-feedco {
    font-weight: 600;
    font-size: 15px;
    color: var(--navy-900);
    padding: 10px 16px !important;
    position: relative;
}
.nav-link-feedco::after {
    content: '';
    position: absolute;
    left: 16px; right: 16px; bottom: 6px;
    height: 2px;
    background: var(--cognac);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}
.nav-link-feedco:hover::after, .nav-link-feedco.active::after { transform: scaleX(1); }

.icon-btn {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--white);
    border: 1px solid rgba(22,40,61,0.12);
    color: var(--navy-900);
    transition: all .2s ease;
}
.icon-btn:hover { background: var(--navy-950); color: var(--gold); border-color: var(--navy-950); }

.btn-cognac {
    background: var(--cognac);
    color: var(--white);
    border: none;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
    box-shadow: 0 12px 24px -10px rgba(185,113,61,0.55);
}
.btn-cognac:hover { background: var(--cognac-dark); color: var(--white); transform: translateY(-2px); }

.btn-outline-navy {
    background: transparent;
    border: 1.5px solid var(--navy-900);
    color: var(--navy-900);
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 10px;
    transition: all .2s ease;
}
.btn-outline-navy:hover { background: var(--navy-900); color: var(--white); }

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 999px;
    display: inline-flex; align-items: center; gap: 10px;
    box-shadow: 0 12px 24px -10px rgba(37,211,102,0.55);
    transition: transform .2s ease;
}
.btn-whatsapp:hover { color: #fff; transform: translateY(-2px); }

/* ---------------------------------------------------------------------
   Hero / carousel
   --------------------------------------------------------------------- */
.hero {
    position: relative;
    background: radial-gradient(1200px 500px at 85% -10%, rgba(212,162,76,0.18), transparent 60%), var(--navy-950);
    overflow: hidden;
    padding: 90px 0 60px;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(255,255,255,0.025) 0 2px, transparent 2px 22px);
    pointer-events: none;
}
.hero-eyebrow { color: var(--gold); }
.hero h1 {
    color: var(--white);
    font-size: clamp(2.4rem, 4.6vw, 4rem);
    line-height: 1.05;
    margin: 22px 0 20px;
}
.hero h1 em { font-style: normal; color: var(--cognac-light); }
.hero p.lead { color: rgba(255,255,255,0.72); font-size: 18px; max-width: 520px; }
.hero-stats { display: flex; gap: 34px; margin-top: 40px; flex-wrap: wrap; }
.hero-stats .stat-num { font-family: var(--font-display); font-size: 34px; color: var(--white); font-weight: 700; }
.hero-stats .stat-label { color: rgba(255,255,255,0.6); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }

.hero-visual { position: relative; }
.hero-card {
    background: var(--cream);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-strong);
    transform: rotate(2deg);
}
.hero-card img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero-float-badge {
    position: absolute;
    bottom: -22px; left: -22px;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-soft);
    display: flex; align-items: center; gap: 12px;
    animation: floaty 4s ease-in-out infinite;
}
.hero-float-badge .dot { width: 44px; height: 44px; border-radius: 50%; background: var(--cognac); color: #fff; display:flex; align-items:center; justify-content:center; font-family: var(--font-display); font-weight:700; }
@keyframes floaty { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-10px);} }

.marquee-strip {
    background: var(--navy-900);
    color: rgba(255,255,255,0.85);
    padding: 14px 0;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
    display: inline-flex;
    gap: 46px;
    animation: marquee 26s linear infinite;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: 13px;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 10px; }
.marquee-track span::after { content: '•'; color: var(--gold); margin-left: 46px; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ---------------------------------------------------------------------
   Section headers
   --------------------------------------------------------------------- */
.section { padding: 84px 0; }
.section-alt { background: var(--cream-dark); }
.section-head { max-width: 640px; margin-bottom: 46px; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin: 14px 0; }
.section-head p { color: var(--ink-soft); font-size: 16.5px; }
.section-head.text-center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------------------------------------------------------------------
   Category cards
   --------------------------------------------------------------------- */
.cat-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    display: block;
    box-shadow: var(--shadow-soft);
    transition: transform .35s ease, box-shadow .35s ease;
}
.cat-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.cat-card:hover img { transform: scale(1.08); }
.cat-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(14,28,43,0) 35%, rgba(14,28,43,0.92) 100%);
}
.cat-card-body {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 22px;
    color: #fff;
}
.cat-card-body h3 { color: #fff; font-size: 19px; margin-bottom: 4px; }
.cat-card-body .count { font-size: 12.5px; color: rgba(255,255,255,0.72); text-transform: uppercase; letter-spacing: .06em; }
.cat-card-arrow {
    position: absolute; top: 18px; right: 18px;
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,0.16);
    backdrop-filter: blur(6px);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: background .25s ease, transform .25s ease;
}
.cat-card:hover .cat-card-arrow { background: var(--cognac); transform: rotate(45deg); }

/* ---------------------------------------------------------------------
   Product cards
   --------------------------------------------------------------------- */
.product-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(22,40,61,0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); }
.product-thumb { position: relative; aspect-ratio: 1/1; overflow: hidden; background: var(--cream-dark); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-thumb img { transform: scale(1.07); }
.product-badge {
    position: absolute; top: 12px; left: 12px;
    background: var(--cognac);
    color: #fff;
    font-size: 11.5px; font-weight: 700;
    padding: 5px 11px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.product-badge.badge-outline { background: var(--navy-950); }
.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: 11.5px; color: var(--cognac-dark); text-transform: uppercase; letter-spacing: .07em; font-weight: 700; margin-bottom: 6px; }
.product-title { font-size: 16.5px; font-weight: 700; color: var(--navy-950); margin-bottom: 8px; line-height: 1.35; }
.product-desc { font-size: 13.5px; color: var(--ink-soft); margin-bottom: 14px; flex: 1; }
.product-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.product-price { font-family: var(--font-display); font-size: 21px; font-weight: 700; color: var(--navy-950); }
.product-price-compare { font-size: 13px; color: #a0a7b0; text-decoration: line-through; }
.product-actions { display: flex; gap: 8px; }
.btn-order-now {
    flex: 1;
    background: var(--navy-950);
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 13.5px;
    padding: 11px 14px;
    border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: background .2s ease, transform .2s ease;
}
.btn-order-now:hover { background: #25D366; color: #fff; transform: translateY(-2px); }
.btn-view {
    width: 44px;
    border: 1.5px solid rgba(22,40,61,0.15);
    border-radius: var(--radius-sm);
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--navy-900);
    transition: all .2s ease;
}
.btn-view:hover { background: var(--cream-dark); }

/* ---------------------------------------------------------------------
   Filters / sidebar (category page)
   --------------------------------------------------------------------- */
.filter-panel { background: var(--white); border-radius: var(--radius-md); padding: 22px; border: 1px solid rgba(22,40,61,0.08); }
.filter-panel h6 { text-transform: uppercase; font-size: 12.5px; letter-spacing: .08em; color: var(--ink-soft); font-weight: 800; margin-bottom: 14px; }
.filter-cat-link { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; font-weight: 600; color: var(--navy-900); border-bottom: 1px dashed rgba(22,40,61,0.12); font-size: 14.5px; }
.filter-cat-link.active, .filter-cat-link:hover { color: var(--cognac); }
.filter-cat-link .badge-count { background: var(--cream-dark); color: var(--ink-soft); font-size: 11.5px; padding: 2px 9px; border-radius: 999px; }

/* ---------------------------------------------------------------------
   Why-us / value props
   --------------------------------------------------------------------- */
.value-card { background: var(--white); border-radius: var(--radius-md); padding: 30px 26px; height: 100%; border: 1px solid rgba(22,40,61,0.07); transition: transform .3s ease, box-shadow .3s ease; }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.value-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(145deg, var(--navy-900), var(--navy-700)); color: var(--gold); display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 18px; }
.value-card h4 { font-size: 18px; margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); font-size: 14.5px; margin: 0; }

/* ---------------------------------------------------------------------
   Parallax / About band
   --------------------------------------------------------------------- */
.parallax-band {
    position: relative;
    min-height: 420px;
    background-image: linear-gradient(180deg, rgba(14,28,43,0.82), rgba(14,28,43,0.9)), url('../images/products/duffel-travel-black.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex; align-items: center;
    color: #fff;
}
@media (max-width: 991px) { .parallax-band { background-attachment: scroll; } }
.parallax-band h2 { color: #fff; }
.parallax-band p { color: rgba(255,255,255,0.75); }

.process-step { position: relative; padding-left: 0; }
.process-num { font-family: var(--font-display); font-size: 46px; color: var(--gold); opacity: .8; line-height: 1; margin-bottom: 10px; }

/* ---------------------------------------------------------------------
   Testimonials
   --------------------------------------------------------------------- */
.testimonial-card { background: var(--white); border-radius: var(--radius-md); padding: 28px; border: 1px solid rgba(22,40,61,0.08); height: 100%; }
.testimonial-stars { color: var(--gold); margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-quote { color: var(--ink); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--navy-900); color: var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; }

/* ---------------------------------------------------------------------
   CTA band
   --------------------------------------------------------------------- */
.cta-band {
    background: linear-gradient(120deg, var(--navy-950), var(--navy-800));
    border-radius: var(--radius-lg);
    padding: 56px;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.cta-band::after {
    content: '';
    position: absolute; right: -60px; top: -60px;
    width: 260px; height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,162,76,0.28), transparent 70%);
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.72); }

/* ---------------------------------------------------------------------
   Footer
   --------------------------------------------------------------------- */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.65); padding: 70px 0 0; }
.site-footer h5 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 20px; }
.site-footer a { color: rgba(255,255,255,0.62); font-size: 14.5px; }
.site-footer a:hover { color: var(--gold); }
.footer-links li { margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 50px; padding: 22px 0; font-size: 13px; }
.social-circle { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: inline-flex; align-items: center; justify-content: center; transition: all .2s ease; }
.social-circle:hover { background: var(--cognac); border-color: var(--cognac); }

/* ---------------------------------------------------------------------
   Floating WhatsApp button
   --------------------------------------------------------------------- */
.whatsapp-fab {
    position: fixed; right: 22px; bottom: 22px; z-index: 1050;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    box-shadow: 0 14px 30px -8px rgba(37,211,102,0.6);
    animation: pulse-wa 2.4s infinite;
}
@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Back to top */
.back-to-top {
    position: fixed; right: 22px; bottom: 92px; z-index: 1049;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--navy-950); color: #fff;
    display: none; align-items: center; justify-content: center;
    box-shadow: var(--shadow-soft);
}
.back-to-top.show { display: flex; }

/* ---------------------------------------------------------------------
   Breadcrumb
   --------------------------------------------------------------------- */
.breadcrumb-band { background: var(--cream-dark); padding: 18px 0; border-bottom: 1px solid rgba(22,40,61,0.06); }
.breadcrumb-band a { color: var(--ink-soft); font-size: 13.5px; font-weight: 600; }
.breadcrumb-band a:hover { color: var(--cognac); }
.breadcrumb-band .sep { color: #c3c9d1; margin: 0 8px; }
.breadcrumb-band .current { color: var(--navy-950); font-weight: 700; font-size: 13.5px; }

/* ---------------------------------------------------------------------
   Product details page
   --------------------------------------------------------------------- */
.pdp-gallery-main { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 1/1; background: var(--white); border: 1px solid rgba(22,40,61,0.08); }
.pdp-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-meta-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0; }
.pdp-meta-chip { background: var(--cream-dark); border-radius: 999px; padding: 8px 16px; font-size: 13px; font-weight: 700; color: var(--navy-900); }
.pdp-keyword-pill { display: inline-block; background: var(--white); border: 1px solid rgba(22,40,61,0.14); color: var(--ink-soft); font-size: 12.5px; padding: 6px 13px; border-radius: 999px; margin: 0 8px 8px 0; }
.qty-control { display: inline-flex; align-items: center; border: 1.5px solid rgba(22,40,61,0.15); border-radius: 999px; overflow: hidden; }
.qty-control button { width: 42px; height: 42px; border: none; background: var(--white); font-size: 18px; font-weight: 700; color: var(--navy-900); }
.qty-control input { width: 52px; text-align: center; border: none; font-weight: 700; -moz-appearance: textfield; }
.qty-control input::-webkit-outer-spin-button, .qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ---------------------------------------------------------------------
   Misc utility
   --------------------------------------------------------------------- */
.text-cognac { color: var(--cognac); }
.bg-cream-dark { background: var(--cream-dark); }
.rounded-xl { border-radius: var(--radius-lg); }
.shadow-soft { box-shadow: var(--shadow-soft); }

.empty-state { text-align: center; padding: 80px 20px; }
.empty-state i { font-size: 52px; color: var(--cognac); margin-bottom: 18px; }

/* AOS-ish fade fallback if JS not present */
.reveal { opacity: 0; transform: translateY(24px); }

/* Toast (order confirmation) */
.toast-feedco { border-radius: var(--radius-md); border: none; box-shadow: var(--shadow-strong); }

@media (max-width: 767px) {
    .hero { padding: 60px 0 40px; text-align: center; }
    .hero p.lead { margin-left: auto; margin-right: auto; }
    .hero-stats { justify-content: center; }
    .hero-visual { margin-top: 46px; }
    .cta-band { padding: 34px 24px; text-align: center; }
    .section { padding: 56px 0; }
}
