/* ============================================
   ADVANCER OUTDOOR - Premium B2B Design
   Overrides & additions on top of main.css
   Loaded AFTER main.css
   ============================================ */

:root {
    --color-primary: #1B4332;
    --color-primary-dark: #0D2818;
    --color-primary-light: #2D6A4F;
    --color-accent: #D4A373;
    --color-gold: #E9C46A;
    --color-cream: #FAF7F0;
    --color-bg: #FAFAF5;
    --color-text: #1F2937;
    --color-text-light: #6B7280;
    --color-border: #E5E7EB;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ============================================
   TOP BAR (B2B)
   ============================================ */
.topbar {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.85);
    font-size: 12.5px;
    font-weight: 500;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.topbar-tag {
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    font-size: 11.5px;
}

.topbar-sep {
    opacity: 0.35;
}

.topbar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color var(--transition-fast);
}
.topbar-link:hover {
    color: #fff;
}

.topbar-right {
    color: rgba(255, 255, 255, 0.7);
}

.topbar-ship {
    font-size: 12px;
    letter-spacing: 0.3px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--color-border-light);
}

.header-inner {
    height: 84px;
    gap: var(--space-lg);
}

.header-logo img,
.site-logo,
.custom-logo {
    height: 62px !important;
    max-height: 62px;
}

/* Navigation */
.nav-menu a {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--color-text);
    padding: 10px 15px;
    letter-spacing: 0.2px;
}

.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
    color: var(--color-primary);
    font-weight: 600;
}

/* B2B Quote Button in Header */
.btn-quote {
    background: var(--color-primary);
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13.5px;
    font-weight: 600;
    gap: 7px;
    border: 1.5px solid var(--color-primary);
    transition: all var(--transition-fast);
}
.btn-quote:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.header-actions {
    gap: 6px;
}

/* ============================================
   HERO
   ============================================ */
.hero-section {
    position: relative;
    background:
        radial-gradient(1000px 500px at 85% -10%, rgba(45, 106, 79, 0.18) 0%, transparent 60%),
        radial-gradient(800px 400px at 0% 110%, rgba(212, 163, 115, 0.12) 0%, transparent 60%),
        linear-gradient(135deg, #0D2818 0%, #14382A 45%, #1B4332 100%);
    overflow: hidden;
    padding: 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.5;
    background-image:
        radial-gradient(circle at 15% 30%, rgba(255,255,255,0.05) 1px, transparent 1px),
        radial-gradient(circle at 85% 70%, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px, 32px 32px;
    pointer-events: none;
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: var(--space-2xl);
    align-items: center;
    padding: 32px 0 40px;
}

.hero-content {
    max-width: 640px;
    padding: 0;
    color: #fff;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background: rgba(233, 196, 106, 0.12);
    border: 1px solid rgba(233, 196, 106, 0.35);
    border-radius: var(--radius-full);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 22px;
    backdrop-filter: blur(4px);
}

.hero-title {
    font-size: clamp(34px, 4.6vw, 54px);
    font-weight: 700;
    line-height: 1.16;
    margin-bottom: 20px;
    color: #fff;
}

.hero-highlight {
    color: var(--color-gold);
    position: relative;
}

.hero-desc {
    font-size: 16.5px;
    line-height: 1.75;
    opacity: 0.92;
    margin-bottom: 30px;
    max-width: 540px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-bottom: 38px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-primary-dark);
    border-color: var(--color-gold);
    font-weight: 700;
}
.btn-primary:hover {
    background: #F6D987;
    border-color: #F6D987;
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(233, 196, 106, 0.35);
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.45);
    color: #fff;
    backdrop-filter: blur(2px);
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.hero-stats {
    display: flex;
    gap: 44px;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-stat {
    text-align: left;
}

.stat-number {
    font-size: 27px;
    font-weight: 700;
    color: #fff;
    font-family: var(--font-heading);
    line-height: 1.1;
}

.stat-label {
    font-size: 12.5px;
    opacity: 0.65;
    margin-top: 3px;
    display: block;
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.hero-image-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 40, 24, 0) 55%, rgba(13, 40, 24, 0.5) 100%);
}

.hero-card {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.96);
    border-radius: 12px;
    padding: 10px 16px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(6px);
}

.hero-card strong {
    display: block;
    font-size: 13px;
    color: var(--color-primary-dark);
    line-height: 1.2;
}

.hero-card span {
    font-size: 11px;
    color: var(--color-text-light);
}

.hero-card-icon {
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    background: rgba(45, 106, 79, 0.12);
    color: var(--color-primary-light);
    flex-shrink: 0;
}

.hero-card-top {
    top: 12px;
    right: 12px;
}

.hero-card-bottom {
    bottom: 12px;
    left: 12px;
}

/* ============================================
   FEATURES BAR
   ============================================ */
.features-bar {
    background: var(--color-bg-white);
    border-bottom: 1px solid var(--color-border-light);
    padding: 30px 0;
}

.feature-item {
    gap: 14px;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(45, 106, 79, 0.09);
    color: var(--color-primary-light);
    flex-shrink: 0;
}

.feature-text strong {
    font-size: 14.5px;
}

.feature-text span {
    font-size: 12.5px;
}

/* ============================================
   SECTION HEADER (shared)
   ============================================ */
.section-subtitle {
    color: var(--color-accent);
    font-weight: 600;
}

.section-title {
    font-size: clamp(28px, 3.6vw, 40px);
}

/* ============================================
   CATEGORIES (image cards)
   ============================================ */
.categories-section {
    background: var(--color-bg);
}

.categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: var(--color-bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: all var(--transition-base);
    text-decoration: none;
    color: inherit;
    position: relative;
}

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

.category-card:hover {
    border-color: var(--color-primary-light);
    box-shadow: 0 18px 40px rgba(13, 40, 24, 0.12);
    transform: translateY(-5px);
}

.category-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.category-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 40, 24, 0) 55%, rgba(13, 40, 24, 0.35) 100%);
    transition: opacity var(--transition-base);
}

.category-info {
    padding: 20px 22px 22px;
    flex: 1;
}

.category-name {
    font-size: 19px;
    margin-bottom: 6px;
}

.category-desc {
    font-size: 13.5px;
    margin-bottom: 0;
}

.category-arrow {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-dark);
    opacity: 0;
    transform: translateY(6px);
    transition: all var(--transition-base);
}

.category-card:hover .category-arrow {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.featured-products {
    background: var(--color-bg-white);
}

/* Horizontal carousel */
.featured-carousel {
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
}

.featured-track {
    display: flex;
    overflow: hidden;
    /* IMPORTANT: no manual scrolling here — the Best Sellers row is a 360°
       marquee (.featured-marquee) animated with a CSS transform, which loops
       seamlessly with no visible jump back to the start. */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px 14px;
    width: 100%;
    flex-wrap: nowrap;
}

.featured-track::-webkit-scrollbar {
    display: none;
}

/* Smooth 360° marquee: two identical halves moved by a transform animation
   (translateX 0 → -50%) created with the Web Animations API in main.js.
   The wrap back to 0 is pixel-identical, so the rotation is seamless —
   the products never visibly jump back to the start.

   IMPORTANT: spacing uses margin-right on every card (including the last one)
   instead of flex gap. With gap, the two halves are missing one gap between
   them, so -50% lands half a gap off the seam (visible jump). With margins
   the total width is exactly 2 × (one half), so -50% aligns perfectly. */
.featured-marquee {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    flex-shrink: 0;
    will-change: transform;
}
.featured-marquee > * {
    margin-right: 22px;
}

/* Tab visibility override: flex instead of grid */
.featured-track.tab-content {
    display: none;
}
.featured-track.tab-content.active {
    display: flex;
}

.featured-track .product,
.featured-track .product-card-placeholder,
.featured-track .demo-product {
    flex: 0 0 280px;
    min-width: 280px;
    width: 280px;
    max-width: 280px;
    float: none !important;
    margin: 0;
}

.featured-track .product,
.featured-track .demo-product {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.featured-track .product:hover,
.featured-track .demo-product:hover {
    border-color: var(--color-primary-light);
    box-shadow: 0 16px 36px rgba(13, 40, 24, 0.1);
    transform: translateY(-4px);
}

/* Product title: single line */
.featured-track .woocommerce-loop-product__title,
.featured-track .product-title,
.featured-track .product .woocommerce-loop-product__title,
.featured-track .demo-product .p-body h4 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    font-size: 14.5px;
    font-weight: 600;
}

/* Product card: center everything (image, title, price, button) */
.featured-track .product {
    text-align: center;
}

.featured-track .product .woocommerce-loop-product__link {
    display: block;
}

/* Product image: show the FULL product, never cropped, uniform square frame */
.featured-track .product img,
.featured-track .product a img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    padding: 8px;
    background: var(--color-bg-white);
}

.featured-track .product .woocommerce-loop-product__title {
    margin: 14px 12px 0;
    padding: 0;
    text-align: center;
}

.featured-track .product .price,
.featured-track .product .price-contact {
    display: inline-flex;
    justify-content: center;
    margin: 8px auto 0;
}

.featured-track .product .button,
.featured-track .product .add_to_cart_button,
.featured-track .product a.button {
    display: inline-block;
    margin: 12px 0 16px;
}

/* Demo cards (preview) */
.featured-track .demo-product {
    text-align: center;
}
.featured-track .demo-product .p-body h4 {
    padding: 0 12px;
    text-align: center;
}

/* B2B "Contact for Price" label */
.price-contact {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary-light);
    background: rgba(45, 106, 79, 0.08);
    border: 1px solid rgba(45, 106, 79, 0.25);
    border-radius: var(--radius-full);
    padding: 5px 14px;
    white-space: nowrap;
    line-height: 1.4;
}

.price-contact::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--color-primary-light);
    flex-shrink: 0;
}

.featured-track .product .price-contact,
.featured-track .demo-product .p-price {
    margin-top: 8px;
}

/* Carousel arrows */
.carousel-arrow {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--color-border);
    background: var(--color-bg-white);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 2;
    box-shadow: var(--shadow-sm);
}

.carousel-arrow:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.carousel-arrow:disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
    box-shadow: none;
}

@media (max-width: 768px) {
    .featured-marquee > * {
        margin-right: 14px;
    }
    .featured-track .product,
    .featured-track .product-card-placeholder,
    .featured-track .demo-product {
        flex: 0 0 255px;
        min-width: 255px;
        width: 255px;
    }
    .carousel-arrow {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 480px) {
    .featured-track .product,
    .featured-track .product-card-placeholder,
    .featured-track .demo-product {
        flex: 0 0 220px;
        min-width: 220px;
        width: 220px;
    }
    .carousel-arrow {
        width: 34px;
        height: 34px;
    }
}

/* ============================================
   B2B CAPABILITIES
   ============================================ */
.b2b-section {
    background: var(--color-bg);
    padding: var(--space-3xl) 0;
}

.b2b-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.b2b-visual {
    position: relative;
}

.b2b-image-frame {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.b2b-image-frame::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    width: 120px;
    height: 120px;
    border-top: 3px solid var(--color-accent);
    border-left: 3px solid var(--color-accent);
    border-radius: 20px 0 0 0;
    z-index: 1;
}

.b2b-image-frame img {
    width: 100%;
    aspect-ratio: 4 / 3.6;
    object-fit: cover;
    display: block;
}

.b2b-content {
    padding-left: var(--space-lg);
}

.b2b-content .section-title {
    margin-bottom: 14px;
}

.b2b-desc {
    margin: 0 0 26px;
    text-align: left;
}

.b2b-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 30px;
}

.b2b-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.b2b-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.b2b-list strong {
    display: block;
    font-size: 15.5px;
    color: var(--color-text);
    margin-bottom: 2px;
}

.b2b-list span {
    font-size: 13.5px;
    color: var(--color-text-light);
}

.b2b-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-outline {
    border-color: var(--color-primary-light);
    color: var(--color-primary-light);
}
.btn-outline:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    color: #fff;
}

/* ============================================
   PROCESS (How It Works)
   ============================================ */
.process-section {
    background: var(--color-bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: var(--space-2xl);
}

.process-step {
    position: relative;
    text-align: center;
    padding: 38px 22px 30px;
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-base);
}

.process-step:hover {
    border-color: var(--color-primary-light);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.process-number {
    position: absolute;
    top: 16px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 1px;
}

.process-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 22px rgba(27, 67, 50, 0.25);
}

.process-step h4 {
    font-family: var(--font-heading);
    font-size: 17.5px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text);
}

.process-step p {
    font-size: 13.5px;
    color: var(--color-text-light);
    line-height: 1.65;
    margin: 0;
}

/* ============================================
   BANNER
   ============================================ */
.banner-section {
    background: var(--color-bg);
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.banner-card {
    min-height: 320px;
    padding: var(--space-2xl);
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.banner-card:hover .banner-bg {
    transform: scale(1.06);
}

.banner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(13, 40, 24, 0.1) 0%, rgba(13, 40, 24, 0.65) 100%);
}

.banner-content {
    position: relative;
    z-index: 1;
}

/* ============================================
   WHY US
   ============================================ */
.why-us-section {
    background: var(--color-bg-white);
}

.why-us-card {
    border: 1px solid var(--color-border-light);
    padding: var(--space-xl) 22px;
}

.why-us-icon {
    color: var(--color-primary-light);
    background: rgba(45, 106, 79, 0.08);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    background: var(--color-bg);
}

.testimonial-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
}

/* ============================================
   INSTAGRAM
   ============================================ */
.instagram-section {
    background: var(--color-bg-white);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: #0D2818;
    color: #C9D4CD;
}

/* CTA strip */
.footer-cta {
    background:
        radial-gradient(700px 300px at 85% 0%, rgba(233, 196, 106, 0.14) 0%, transparent 60%),
        linear-gradient(120deg, #14382A 0%, #1B4332 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 54px 0;
}

.footer-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.footer-cta-eyebrow {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 8px;
}

.footer-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 32px);
    color: #fff;
    margin-bottom: 8px;
    line-height: 1.25;
}

.footer-cta-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.footer-cta-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-light {
    background: #fff;
    color: var(--color-primary-dark);
    border-color: #fff;
}
.btn-light:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.25);
}

/* Newsletter */
.footer-newsletter {
    padding: var(--space-2xl) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-content h3 {
    font-family: var(--font-heading);
    color: #fff;
}

.newsletter-form button {
    background: var(--color-gold);
    color: var(--color-primary-dark);
    font-weight: 700;
}
.newsletter-form button:hover {
    background: #F6D987;
}

/* Newsletter: email form + compact Facebook like button on one line */
.newsletter-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.newsletter-fb {
    flex-shrink: 0;
    line-height: 0;
}

.newsletter-fb iframe {
    display: inline-block;
    border-radius: 4px;
    max-width: 100%;
}

/* Facebook-style Like button (custom, always visible, high contrast) */
.fb-like-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background: #1877F2 !important;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    line-height: 1;
    padding: 9px 16px;
    border-radius: 6px;
    text-decoration: none !important;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.35);
    transition: background 0.2s ease, transform 0.1s ease;
}

.fb-like-btn:hover {
    background: #166FE5 !important;
    color: #ffffff !important;
    transform: translateY(-1px);
}

.fb-like-btn:active {
    transform: translateY(0);
}

.fb-like-btn:visited,
.fb-like-btn:focus {
    color: #ffffff !important;
}

.fb-like-icon {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .newsletter-actions {
        flex-wrap: wrap;
    }
}

/* Footer main */
.footer-main {
    padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
}

.footer-brand .logo-text img {
    max-height: 56px;
    width: auto;
}

.footer-company-name {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.footer-cert {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.cert-pill {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-gold);
    background: rgba(233, 196, 106, 0.1);
    border: 1px solid rgba(233, 196, 106, 0.3);
    border-radius: var(--radius-full);
    padding: 4px 12px;
}

.footer-title {
    font-family: var(--font-heading);
    color: #fff;
    font-size: 15.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 28px;
    height: 2px;
    background: var(--color-gold);
    border-radius: 2px;
}

.footer-menu a {
    color: #9FB3A8;
    font-size: 13.5px;
}
.footer-menu a:hover {
    color: #fff;
}

.footer-contact li {
    color: #9FB3A8;
    font-size: 13.5px;
}

.footer-contact a {
    color: #9FB3A8;
    text-decoration: none;
    transition: color var(--transition-fast);
}
.footer-contact a:hover {
    color: #fff;
}

.footer-contact svg {
    color: var(--color-gold);
}

.footer-social a {
    background: rgba(255, 255, 255, 0.08);
    color: #C9D4CD;
}
.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    color: #7E9288;
}

/* Mobile menu CTA */
.mobile-menu-cta {
    padding: 16px var(--container-padding) 8px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
    .header-inner {
        height: 72px;
    }

    .topbar-right {
        display: none;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 56px 0 72px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-visual {
        max-width: 520px;
        margin: 0 auto;
        width: 100%;
    }

    .hero-image {
        aspect-ratio: 4 / 3.2;
    }

    .b2b-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .b2b-content {
        padding-left: 0;
    }

    .b2b-visual {
        max-width: 520px;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Compact topbar on mobile: keep phone + email only */
    .topbar {
        display: block;
        padding: 6px 0;
    }
    .topbar-inner {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 14px;
        text-align: center;
    }
    .topbar-tag,
    .topbar-sep,
    .topbar-right {
        display: none;
    }
    .topbar-left {
        justify-content: center;
        gap: 14px;
    }
    .topbar-link {
        font-size: 12px;
    }

    .header-logo img,
    .site-logo,
    .custom-logo {
        height: 44px !important;
        max-height: 44px;
    }

    .btn-quote {
        display: none;
    }

    .hero-grid {
        padding: 40px 0 56px;
        gap: 32px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-desc {
        font-size: 15px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-actions .btn {
        justify-content: center;
    }

    .hero-stats {
        gap: 26px;
        flex-wrap: wrap;
    }

    .hero-card-top {
        right: 10px;
    }
    .hero-card-bottom {
        left: 10px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .b2b-list {
        gap: 14px;
    }

    .footer-cta-inner {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-cta-actions {
        width: 100%;
    }
    .footer-cta-actions .btn {
        flex: 1;
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .feature-item {
        padding: 4px 0;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 14px;
        text-align: left;
    }

    .banner-card {
        min-height: 240px;
        padding: var(--space-xl);
    }

    .hero-card {
        padding: 8px 12px;
    }

    .hero-card-icon {
        font-size: 15px;
    }
}

/* ============================================
   SEARCH OVERLAY FIX (was covering the topbar)
   - compact size: never overlaps the topbar
   ============================================ */
.search-overlay {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-110%);
    transition: transform .4s ease, opacity .4s ease, visibility 0s linear .4s;
    padding: 10px 0;
    z-index: 999;
}

.search-overlay.active {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    transition: transform .4s ease, opacity .4s ease, visibility 0s linear 0s;
}

.search-overlay .search-form {
    max-width: 560px;
}

.search-overlay .search-input {
    padding: 9px 52px 9px 18px;
    font-size: 14px;
    border-width: 1.5px;
    border-radius: 30px;
}

.search-overlay .search-submit {
    width: 34px;
    height: 34px;
    right: 7px;
    border-radius: 50%;
}

.search-overlay .search-close {
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
}

/* ============================================
   BODY BACKGROUND (premium cream tone)
   ============================================ */
body {
    background: var(--color-bg);
}

/* ============================================
   FACTORY & PRODUCTION CAPABILITY (photo marquee)
   Thay thế banner "Outdoor Camping / Indoor & Outdoor Living"
   Mỗi mục: tiêu đề phía trên + dải ảnh trượt ngang vô tận phía dưới
   ============================================ */
.capability-section {
    background: var(--color-bg);
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.capability-block + .capability-block {
    margin-top: var(--space-3xl);
}

.capability-block .section-header {
    margin-bottom: 34px;
}

.capability-track .capability-item {
    flex: 0 0 420px;
    min-width: 420px;
    width: 420px;
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
}

.capability-track .capability-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #e6ece9;
}

@media (max-width: 1024px) {
    .capability-track .capability-item {
        flex: 0 0 340px;
        min-width: 340px;
        width: 340px;
    }
}

@media (max-width: 768px) {
    .capability-track .capability-item {
        flex: 0 0 270px;
        min-width: 270px;
        width: 270px;
    }
}

@media (max-width: 480px) {
    .capability-track .capability-item {
        flex: 0 0 230px;
        min-width: 230px;
        width: 230px;
    }
}
