/* Complete Mobile-First D2C Styles for Mr. Stag */
:root {
    --color-dark: #111111;
    --color-white: #ffffff;
    --color-subtle: #f8f9fa;
    --color-border: #e5e7eb;
    --color-orange: #f97316;
    --color-orange-hover: #ea580c;
    --color-red: #dc2626;
    --color-red-hover: #b91c1c;
    --color-text-main: #111111;
    --color-text-muted: #64748b;

    --font-primary: 'Inter', system-ui, sans-serif;
    --font-heading: 'Oswald', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-white);
    color: var(--color-text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* 0. Premium Preloader Overlay */
.preloader-overlay {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.preloader-logo {
    height: 54px;
    width: auto;
    animation: preloader-pulse 1.8s ease-in-out infinite alternate;
}

@keyframes preloader-pulse {
    0% { transform: scale(0.98); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 4px 15px rgba(249, 115, 22, 0.3)); }
}

.preloader-bar {
    width: 140px;
    height: 3px;
    background: #f1f5f9;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.preloader-progress {
    width: 0%;
    height: 100%;
    background: var(--color-orange);
    border-radius: 4px;
    transition: width 0.4s ease;
}

/* 1. Infinite Continuous Marquee Announcement Bar */
.announcement-bar {
    background: var(--color-dark);
    color: var(--color-white);
    height: 38px;
    font-size: 12px;
    font-weight: 600;
    overflow: hidden;
    position: relative;
    z-index: 110;
    width: 100%;
}

.top-announcement-slider {
    position: relative;
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-announcement-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.top-announcement-slide.active {
    opacity: 1;
}

.top-announcement-slide .sep {
    color: var(--color-orange);
    font-size: 10px;
    margin: 0 8px;
}

.header {
    background: var(--color-white);
    position: relative;
    z-index: 100;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo-wrap {
    display: flex;
    align-items: center;
}

.header-logo {
    height: 60px;
    width: auto;
}

.header-icon {
    color: var(--color-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    position: relative;
}

.desktop-nav {
    display: none;
    gap: 36px;
}

.nav-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--color-orange);
}

@media (min-width: 769px) {
    .menu-btn {
        display: none !important;
    }
    .desktop-nav {
        display: flex !important;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none !important;
    }
}

/* Search Modal Popup */
.search-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    z-index: 300;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    justify-content: center;
    padding-top: 80px;
}

.search-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.search-modal-container {
    background: var(--color-white);
    width: 90%;
    max-width: 600px;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    height: max-content;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-modal-overlay.open .search-modal-container {
    transform: translateY(0);
}

.search-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.search-input-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-grow: 1;
    background: var(--color-subtle);
    padding: 12px 16px;
    border-radius: 50px;
    border: 1px solid var(--color-border);
}

.search-input-wrap input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
    font-size: 15px;
    color: var(--color-dark);
}

.close-search-btn {
    font-size: 32px;
    line-height: 1;
    color: var(--color-dark);
}

.search-body {
    padding-top: 20px;
}

.quick-tags-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tag {
    background: var(--color-subtle);
    border: 1px solid var(--color-border);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
    transition: all 0.2s ease;
}

.search-tag:hover {
    background: var(--color-orange);
    color: var(--color-white);
    border-color: var(--color-orange);
}

/* Mobile Drawer Overlay & Panel */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: var(--color-white);
    z-index: 201;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.drawer-logo {
    height: 30px;
    width: auto;
}

.close-drawer-btn {
    font-size: 32px;
    line-height: 1;
    color: var(--color-dark);
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-link {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-dark);
    transition: color 0.2s;
}

.drawer-link:hover {
    color: var(--color-orange);
}

/* 3. Horizontal Category Navigation */
.category-nav-section {
    background: var(--color-white);
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

@media (min-width: 769px) {
    .category-nav-section {
        display: none;
    }
}

.category-nav-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 0 16px;
}

.category-nav-scroll::-webkit-scrollbar {
    display: none;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    scroll-snap-align: start;
    width: 68px;
}

.cat-thumb {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: var(--color-subtle);
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 6px;
    transition: all 0.2s ease;
}

.cat-thumb img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.category-item.active .cat-thumb {
    border-color: var(--color-orange);
}

.cat-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--color-dark);
    white-space: nowrap;
    text-align: center;
}

/* 4 & 5. Hero Slider Section */
.hero-slider-section {
    position: relative;
    width: 100%;
    background: #000000;
}

.hero-swiper {
    width: 100%;
    height: auto;
}

.hero-slide {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.hero-slide picture {
    width: 100%;
    display: block;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* Swiper Navigation Arrows & Pagination Dots */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    color: var(--color-dark);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
    font-size: 16px;
    font-weight: 800;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
    background: var(--color-orange);
    color: var(--color-white);
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .hero-swiper .swiper-button-next,
    .hero-swiper .swiper-button-prev {
        width: 36px;
        height: 36px;
    }
    .hero-swiper .swiper-button-next::after,
    .hero-swiper .swiper-button-prev::after {
        font-size: 12px;
    }
}

.hero-swiper .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.6);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: var(--color-orange);
    width: 22px;
    border-radius: 4px;
}

/* 6. Trust Strip */
.trust-strip {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
    padding: 14px 0;
}

.trust-strip-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.trust-item {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 4px;
}

.trust-divider {
    width: 1px;
    height: 16px;
    background: #cbd5e1;
}

/* Section Padding & Titles */
.section-padding { padding: 56px 0; }
.section-title { font-family: var(--font-heading); font-size: 1.85rem; text-transform: uppercase; margin-bottom: 24px; font-weight: 700; text-align: center; }

/* Swiper Product Carousel Wrapper (Left and Right Side Arrows) */
.product-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 0 52px;
}

@media (max-width: 768px) {
    .product-carousel-wrapper {
        padding: 0 36px;
    }
}

.product-swiper {
    position: relative;
    padding-bottom: 44px; /* Space for outside dots below cards */
    width: 100%;
    overflow: hidden;
}

.product-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.product-img-box {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-subtle);
    border-radius: 10px;
    margin-bottom: 14px;
    overflow: hidden;
}

.product-img-box img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img-box img {
    transform: scale(1.06);
}

.product-name { font-size: 14px; font-weight: 700; color: var(--color-dark); margin-bottom: 6px; }
.product-price { font-size: 16px; font-weight: 800; color: var(--color-dark); margin-bottom: 14px; }
.btn-buy { width: 100%; background: var(--color-orange); color: white; padding: 12px 0; font-size: 12px; font-weight: 700; border-radius: 8px; text-transform: uppercase; transition: background 0.2s ease; }
.btn-buy:hover { background: var(--color-orange-hover); }

/* Left & Right Side Side-Floating Arrow Buttons */
.product-prev, .product-next {
    position: absolute !important;
    top: calc(50% - 22px) !important;
    z-index: 30 !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: var(--color-white) !important;
    border: 1px solid var(--color-border) !important;
    color: var(--color-dark) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
    transition: all 0.2s ease !important;
    cursor: pointer;
    line-height: 1;
}

.product-prev {
    left: 0px !important;
}

.product-next {
    right: 0px !important;
}

@media (max-width: 768px) {
    .product-prev, .product-next {
        width: 32px !important;
        height: 32px !important;
        font-size: 16px !important;
    }
}

.product-prev::after, .product-next::after {
    display: none !important;
}

.product-prev:hover, .product-next:hover {
    background: var(--color-orange) !important;
    color: var(--color-white) !important;
    border-color: var(--color-orange) !important;
    transform: scale(1.08) !important;
}

/* Outside Pagination Dots Below Cards */
.product-pagination {
    position: absolute;
    bottom: 0px !important;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

.product-pagination .swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.product-pagination .swiper-pagination-bullet-active {
    background: var(--color-orange);
    width: 22px;
    border-radius: 4px;
}

/* In-Between Promo Banners (Unclipped Full Aspect Ratio) */
.promo-banner-section {
    width: 100%;
    margin: 36px 0;
    background: #000000;
    overflow: hidden;
    position: relative;
}

.promo-banner-section picture {
    width: 100%;
    display: block;
}

.promo-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

/* SHOP THE REELS (Shoppable Instagram Video Reels Carousel) */
.reels-section {
    background: var(--color-white);
}

.reels-header {
    text-align: center;
    margin-bottom: 24px;
}

.reels-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 4px;
}

.reels-swiper {
    position: relative;
    padding-bottom: 44px;
    width: 100%;
}

.reel-card {
    background: #111111;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9/15;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.reel-card:hover {
    transform: translateY(-6px);
}

.reel-media {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.reel-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
}

.reel-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 44px;
    height: 44px;
    background: rgba(0,0,0,0.4);
    backdrop-filter: blur(6px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border: 1px solid rgba(255,255,255,0.3);
    transition: transform 0.2s ease, background 0.2s ease;
}

.reel-card:hover .reel-play-icon {
    transform: translate(-50%, -50%) scale(1.12);
    background: var(--color-orange);
    border-color: var(--color-orange);
}

.reel-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    color: var(--color-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.reel-overlay-content {
    position: relative;
    z-index: 3;
    margin-top: auto;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.85) 40%, rgba(0,0,0,0.95) 100%);
    padding: 16px 12px 12px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.reel-product-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.reel-thumb {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.reel-thumb img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.reel-details {
    overflow: hidden;
}

.reel-title {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.reel-prices {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.price-current {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
}

.price-old {
    font-size: 11px;
    color: #94a3b8;
    text-decoration: line-through;
}

.btn-reel-shop {
    width: 100%;
    background: #dc2626;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 10px 0;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s ease;
}

.btn-reel-shop:hover {
    background: #b91c1c;
}

.reels-pagination {
    position: absolute;
    bottom: 0px !important;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

.reels-pagination .swiper-pagination-bullet {
    background: #cbd5e1;
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.reels-pagination .swiper-pagination-bullet-active {
    background: var(--color-orange);
    width: 22px;
    border-radius: 4px;
}

/* CONTINUOUS BRAND STATEMENT RED MARQUEE STRIP */
.brand-marquee-strip {
    background: #e2e8f0;
    padding: 16px 0;
    overflow: hidden;
    border-top: 1px solid #cbd5e1;
    border-bottom: 1px solid #cbd5e1;
}

.brand-marquee-track {
    display: flex;
    flex-wrap: nowrap;
    width: max-content;
    align-items: center;
    animation: brand-marquee-scroll 30s linear infinite;
}

@keyframes brand-marquee-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.brand-marquee-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    flex-shrink: 0;
}

.brand-marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding-right: 16px;
    font-size: 14px;
    font-weight: 800;
    color: #dc2626;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

.brand-marquee-content .slash {
    color: #94a3b8;
    font-weight: 400;
    font-size: 14px;
    padding-right: 0;
}

/* BRAND MANIFESTO SECTION: THE STAG CODE (1:1 Reference Match) */
.brand-code-section {
    background: #cccccc;
    padding: 60px 0;
    width: 100%;
}

.brand-code-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 900px) {
    .brand-code-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.brand-code-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.manifesto-headline {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.15;
    color: #111111;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
}

.manifesto-desc {
    font-size: 15px;
    color: #444444;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 28px;
    font-weight: 500;
}

.btn-know-more {
    background: #181818;
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    padding: 14px 28px;
    border-radius: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.btn-know-more:hover {
    background: var(--color-orange);
    transform: translateY(-2px);
}

.brand-code-right {
    width: 100%;
}

.code-card {
    background: #000000;
    border-radius: 12px;
    padding: 32px 20px 0 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    overflow: hidden;
}

.code-title {
    font-family: var(--font-primary);
    color: #ffffff;
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.code-subtitle {
    font-size: 16px;
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 24px;
    opacity: 0.9;
}

.code-portraits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #171717;
    margin: 0 -20px;
}

.portrait-col {
    height: 280px;
    overflow: hidden;
    background: #000000;
}

.portrait-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%) contrast(110%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.portrait-col:hover img {
    filter: grayscale(0%) contrast(100%);
    transform: scale(1.06);
}

/* 7. FROM THE WRITER'S DESK Section */
.writers-desk-section {
    background: #f8fafc;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.writers-desk-header {
    text-align: center;
    margin-bottom: 36px;
}

.writers-tag {
    font-size: 11px;
    font-weight: 800;
    color: var(--color-orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 6px;
}

.writers-subtitle {
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 540px;
    margin: -12px auto 0 auto;
}

.writers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 769px) {
    .writers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.article-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.article-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #111111;
}

.article-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.article-card:hover .article-img-wrap img {
    transform: scale(1.08);
}

.article-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(17, 17, 17, 0.85);
    backdrop-filter: blur(4px);
    color: var(--color-white);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.article-meta {
    font-size: 11px;
    font-weight: 700;
    color: var(--color-orange);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.4;
    margin-bottom: 10px;
}

.article-excerpt {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

.article-read-btn {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-dark);
    transition: color 0.2s ease;
    align-self: flex-start;
}

.article-read-btn:hover {
    color: var(--color-orange);
}

/* Footer (legacy, replaced below) */
.footer { background: var(--color-dark); color: white; padding: 40px 0 20px 0; text-align: center; }
.footer-logo { height: 32px; filter: brightness(0) invert(1); margin-bottom: 12px; }
.footer-text { font-size: 12px; color: #94a3b8; }

/* ── CUSTOMER REVIEWS SECTION (Amazon/Flipkart Style) ── */
.reviews-section { background: #ffffff; }

/* Reviews Slider Wrapper */
.reviews-slider-wrap {
    flex-grow: 1;
    position: relative;
    min-width: 0;
    padding: 0 24px;
}

#reviews-swiper {
    overflow: hidden;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding-bottom: 48px;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.review-item.swiper-slide {
    padding: 28px;
    background: #ffffff;
    box-sizing: border-box;
    border-bottom: none;
    border-right: 1px solid #f1f5f9;
    height: auto;
}

#reviews-swiper .swiper-wrapper {
    align-items: stretch;
}

.reviews-pagination {
    bottom: 14px !important;
}

.reviews-pagination .swiper-pagination-bullet {
    background: #d1d5db;
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: all 0.3s ease;
}

.reviews-pagination .swiper-pagination-bullet-active {
    background: var(--color-orange);
    width: 22px;
    border-radius: 4px;
}

.swiper-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.swiper-nav-btn:hover {
    background: var(--color-orange);
    color: #fff;
    border-color: var(--color-orange);
    box-shadow: 0 4px 16px rgba(249,115,22,0.3);
}

.reviews-prev { left: 0; }
.reviews-next { right: 0; }

@media (max-width: 767px) {
    .reviews-slider-wrap { padding: 0; }
    .reviews-prev { left: 4px; top: auto; bottom: 10px; transform: none; }
    .reviews-next { right: 4px; top: auto; bottom: 10px; transform: none; }
}

.reviews-header { text-align: center; margin-bottom: 40px; }

.reviews-tag {
    font-size: 11px; font-weight: 800; color: var(--color-orange);
    letter-spacing: 1.5px; text-transform: uppercase; display: block; margin-bottom: 6px;
}

/* Two-column layout: summary left, list right */
.reviews-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
}

@media (min-width: 768px) {
    .reviews-layout {
        flex-direction: row;
        gap: 48px;
    }
}

/* LEFT PANEL */
.reviews-summary {
    flex-shrink: 0;
    width: 100%;
    max-width: 260px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.summary-score {
    font-size: 64px;
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: 8px;
}

.summary-stars {
    color: #f59e0b;
    font-size: 22px;
    letter-spacing: 3px;
    margin-bottom: 6px;
}

.summary-count {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 24px;
}

.rating-bars { display: flex; flex-direction: column; gap: 8px; text-align: left; }

.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bar-label {
    font-size: 12px;
    font-weight: 600;
    color: #374151;
    width: 28px;
    flex-shrink: 0;
}

.bar-track {
    flex-grow: 1;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #f59e0b;
    border-radius: 4px;
    transition: width 0.6s ease;
}

.bar-pct {
    font-size: 11px;
    color: #6b7280;
    width: 30px;
    flex-shrink: 0;
    text-align: right;
}

/* RIGHT PANEL - Individual Reviews */
.reviews-list {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.review-item {
    padding: 24px 0;
    border-bottom: 1px solid #f3f4f6;
}

.review-item:first-child { padding-top: 0; }
.review-item:last-child { border-bottom: none; }

.review-top-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-orange), #c2410c);
    color: white;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.reviewer-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
}

.verified-badge {
    font-size: 11px;
    color: #16a34a;
    font-weight: 600;
}

.review-stars {
    color: #f59e0b;
    font-size: 15px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.review-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.review-body {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 12px;
}

.review-meta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.review-date {
    font-size: 12px;
    color: #9ca3af;
}

.review-helpful {
    font-size: 12px;
    color: #6b7280;
    cursor: pointer;
}

.reviewer-name { font-size: 14px; font-weight: 700; color: var(--color-dark); }
.reviewer-meta { font-size: 11px; color: var(--color-text-muted); margin-top: 2px; }

/* ── FAQ ACCORDION SECTION ── */
.faq-section { background: var(--color-white); }

.faq-header { text-align: center; margin-bottom: 40px; }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.25s ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
    box-shadow: 0 6px 24px rgba(249, 115, 22, 0.1);
    border-color: var(--color-orange);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    text-align: left;
    background: var(--color-white);
    gap: 16px;
    transition: background 0.2s ease;
}

.faq-question:hover { background: #fafafa; }

.faq-question[aria-expanded="true"] { color: var(--color-orange); }

.faq-icon {
    font-size: 22px;
    font-weight: 300;
    color: var(--color-orange);
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 24px;
    background: #fafafa;
}

.faq-answer.open {
    max-height: 300px;
    padding: 0 24px 20px 24px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ── FULL PREMIUM FOOTER ── */
.footer-full {
    background: #0f0f0f;
    color: #d1d5db;
}

.footer-top { padding: 64px 0 48px; border-bottom: 1px solid #1f2937; }

.footer-top-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 640px) { .footer-top-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-top-grid { grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px; } }

.footer-logo-full {
    height: 36px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
    display: block;
}

.footer-brand-desc {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 20px;
}

/* Reset any stray link colors inside the footer */
.footer-full a:not(.social-link):not(.marketplace-btn):not(.footer-links-list a) {
    color: inherit;
    text-decoration: none;
}

.footer-socials { display: flex; gap: 12px; }

.social-link {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    transition: background 0.2s ease, color 0.2s ease;
}

.social-link:hover {
    background: var(--color-orange);
    color: var(--color-white);
}

.footer-col-title {
    font-size: 13px;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links-list a {
    font-size: 13px;
    color: #9ca3af;
    transition: color 0.2s ease;
}

.footer-links-list a:hover { color: var(--color-orange); }

.footer-marketplace-col {}

.footer-marketplace-desc {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 20px;
}

.marketplace-links {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 20px;
}

.marketplace-btn {
    display: block;
    border-radius: 10px;
    background: #ffffff;
    border: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    flex: 1;
    overflow: hidden;
    line-height: 0;
}

.marketplace-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.marketplace-logo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.amazon-btn:hover  { box-shadow: 0 8px 24px rgba(255,153,0,0.35); }
.flipkart-btn:hover { box-shadow: 0 8px 24px rgba(40,116,240,0.35); }

.footer-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.trust-badge {
    font-size: 11px;
    font-weight: 600;
    color: #9ca3af;
    background: #1f2937;
    padding: 5px 10px;
    border-radius: 20px;
}

.footer-bottom {
    padding: 20px 0;
    background: #080808;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
}

@media (min-width: 769px) {
    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-bottom-inner p { font-size: 12px; color: #6b7280; }

.footer-payment-icons { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; }

.pay-icon {
    font-size: 10px;
    font-weight: 800;
    color: #9ca3af;
    border: 1px solid #374151;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════
   COMPREHENSIVE MOBILE FIXES
═══════════════════════════════════════════════ */

/* Prevent any horizontal overflow globally */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

* { max-width: 100%; }

img, video, iframe, embed { max-width: 100%; }

/* ── SMALL MOBILE (≤ 480px) ── */
@media (max-width: 480px) {

    /* --- Global --- */
    .container { padding: 0 14px; }
    .section-padding { padding: 48px 0; }
    .section-title { font-size: clamp(22px, 7vw, 32px); }

    /* --- Hero Section --- */
    .hero-section { min-height: auto; padding: 80px 0 48px; }
    .hero-content { text-align: center; }
    .hero-title { font-size: clamp(28px, 9vw, 42px); line-height: 1.15; }
    .hero-subtitle { font-size: 14px; }
    .hero-ctas { flex-direction: column; align-items: center; gap: 12px; }
    .hero-ctas .btn { width: 100%; max-width: 280px; text-align: center; }
    .hero-badges { justify-content: center; flex-wrap: wrap; gap: 8px; }
    .hero-badge { font-size: 11px; padding: 6px 12px; }

    /* --- Product Swiper / Carousels --- */
    .products-slider .swiper-button-prev,
    .products-slider .swiper-button-next { display: none; }

    /* --- Brand Marquee & Announcement Bar --- */
    .announcement-bar { position: relative; z-index: 110; overflow: hidden; width: 100%; }
    .brand-marquee-strip { display: none !important; }

    /* --- Reviews Layout --- */
    .reviews-layout {
        flex-direction: column;
        gap: 28px;
    }
    .reviews-summary {
        width: 100%;
        max-width: 100%;
    }
    .reviews-slider-wrap {
        width: 100%;
        padding: 0;
    }
    .review-item.swiper-slide { padding: 20px 16px; }
    .reviews-prev,
    .reviews-next { display: none !important; }

    /* --- FAQ --- */
    .faq-question { font-size: 14px; padding: 16px 14px; }

    /* --- Footer --- */
    .footer-top-grid {
        grid-template-columns: 1fr !important;
        gap: 32px;
    }
    .footer-brand-desc { max-width: 100%; }
    .marketplace-links { flex-direction: row; gap: 8px; }
    .footer-trust-badges { gap: 6px; }
    .trust-badge { font-size: 10px; }
    .footer-top { padding: 48px 0 32px; }
    .footer-links-list { gap: 8px; }

    /* --- Writer's Desk / Stag Code --- */
    .writers-desk-grid { flex-direction: column !important; gap: 24px; }
    .code-grid { flex-direction: column !important; gap: 24px; }

    /* --- Reels / Media sections --- */
    .reels-swiper .swiper-button-prev,
    .reels-swiper .swiper-button-next { display: none; }

    /* Swiper nav arrows universal clamp */
    .swiper-nav-btn {
        width: 32px;
        height: 32px;
    }
}

/* ── MEDIUM MOBILE (481px – 640px) ── */
@media (min-width: 481px) and (max-width: 640px) {

    .container { padding: 0 20px; }
    .section-title { font-size: clamp(26px, 6vw, 36px); }

    .hero-title { font-size: clamp(32px, 8vw, 48px); }

    .reviews-layout { flex-direction: column; gap: 32px; }
    .reviews-summary { width: 100%; max-width: 100%; }
    .reviews-slider-wrap { width: 100%; padding: 0; }
    .reviews-prev,
    .reviews-next { display: none !important; }

    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 32px;
    }
    .marketplace-links { flex-direction: row; gap: 10px; }
}

/* ── TABLET (641px – 767px) ── */
@media (min-width: 641px) and (max-width: 767px) {
    .reviews-layout { flex-direction: column; gap: 32px; }
    .reviews-summary { width: 100%; max-width: 100%; }
    .reviews-slider-wrap { padding: 0 20px; }

    .footer-top-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}