    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }

    body {
        background: #fff;
    }

    /* ================= OFFER BAR ================= */
    .offer-bar {
        background: #111;
        color: #fff;
        overflow: hidden;
        white-space: nowrap;
        height: 42px;
        display: flex;
        align-items: center;
        position: relative;
    }

    .offer-track {
        display: flex;
        gap: 80px;
        animation: scrollText 25s linear infinite;
        padding-left: 100%;
        font-size: 14px;
        font-weight: 400;
    }

    .offer-track span {
        padding-right: 50px;
    }

    /* Hover par scrolling stop */
    .offer-bar:hover .offer-track {
        animation-play-state: paused;
    }

    @keyframes scrollText {
        from {
            transform: translateX(0);
        }

        to {
            transform: translateX(-100%);
        }
    }

    /* ================= NAVBAR ================= */
    .navbar {
        background: #f8f8f8;
        padding: 18px 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #ececec;
        position: sticky;
        top: 0;
        z-index: 999;
    }

    /* Left Side */
    .nav-left {
        display: flex;
        align-items: center;
        gap: 40px;
    }

    /* Logo */
    /* Logo (image based) */
    .logo {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    .logo-img {
        height: 50px;
        width: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .logo:hover .logo-img {
        transform: scale(1.05);
    }
    /* Nav Links */
    .nav-links {
        display: flex;
        list-style: none;
        gap: 30px;
    }

    .nav-links li a {
        text-decoration: none;
        color: #181818;
        font-size: 16px;
        letter-spacing: 1.5px;
        transition: 0.3s;
        position: relative;
    }

    .nav-links li a:hover {
        color: #777;
    }

    /* Icons */
    .nav-icons {
        display: flex;
        gap: 25px;
        align-items: center;
    }

    .nav-icons i {
        font-size: 18px;
        color: #111;
        cursor: pointer;
        transition: 0.3s;
    }

    .nav-icons i:hover {
        transform: translateY(-2px);
        color: #666;
    }

    /* Menu Toggle */
    .menu-toggle {
        display: none;
        font-size: 22px;
        cursor: pointer;
        color: #111;
    }


    /* ================= MOBILE ================= */
    @media(max-width:1024px) {

        .menu-toggle {
            display: block;
        }

        .nav-left {
            gap: 18px;
        }

        .nav-links {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: #fff;
            flex-direction: column;
            align-items: center;
            gap: 0;
            max-height: 0;
            overflow: hidden;
            transition: 0.4s ease;
            border-top: none;
        }

        .nav-links.active {
            max-height: 500px;
            padding: 20px 0;
        }

        .nav-links li {
            width: 100%;
            text-align: center;
            padding: 14px 0;
            border-bottom: 1px solid #f1f1f1;
        }

        .nav-links li:last-child {
            border-bottom: none;
        }

        .nav-links a {
            display: block;
            width: 100%;
        }
    }

    /* Tablet */
    @media(max-width:768px) {

        .navbar {
            padding: 16px 5%;
        }

    .logo-img {
            height: 34px;
        }

        .nav-icons {
            gap: 18px;
        }

        .nav-icons i {
            font-size: 17px;
        }
    }

    /* Small Mobile */
    @media(max-width:480px) {

        .offer-track {
            font-size: 12px;
            gap: 50px;
        }

        .logo-img {
            height: 28px;
        }
        .nav-icons {
            gap: 15px;
        }
    }

    .nav-links li {
        position: relative;
    }

    /* Mega Menu */
    .mega-menu {
        position: absolute;
        top: 60px;
        left: -250px;
        width: 1000px;
        background: #f7f7f7;
        display: flex;
        gap: 40px;
        padding: 40px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.4s ease;
        border-radius: 12px;

        /* Deep 3D Shadow */
        box-shadow:
            0 12px 25px rgba(0, 0, 0, 0.08),
            0 25px 50px rgba(0, 0, 0, 0.12),
            0 35px 70px rgba(0, 0, 0, 0.08);
        border-radius: 12px;
        z-index: 999;
    }

    /* Hover Effect */
    .mega-parent:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    /* Column */
    .mega-column {
        display: flex;
        flex-direction: column;
        min-width: 140px;
    }

    .mega-column h4 {
        font-size: 14px;
        letter-spacing: 3px;
        color: #999;
        margin-bottom: 20px;
    }

    .mega-column a {
        text-decoration: none;
        color: #333;
        margin-bottom: 14px;
        font-size: 15px;
        transition: 0.3s;
    }

    .mega-column a:hover {
        color: #000;
        transform: translateX(4px);
    }

    /* Mega Menu Image */
    .mega-image {
        position: relative;
        width: 220px;
        min-width: 220px;
        border-radius: 18px;
        overflow: hidden;
    }

    .mega-image img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 18px;
        transition: 0.4s ease;
    }

    .mega-image:hover img {
        transform: scale(1.06);
    }

    .mega-image span {
        position: absolute;
        bottom: 18px;
        left: 18px;
        color: #da0a0a;
        font-size: 18px;
        font-weight: 600;
        letter-spacing: 2px;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }

    /* Arrow rotate on hover */
    .shop-toggle i {
        transition: 0.5s ease;
    }

    .mega-parent:hover .shop-toggle i {
        transform: rotate(180deg);
    }

    /* Premium Nav Icons */
    .nav-icons {
        display: flex;
        align-items: center;
        gap: 18px;
    }

    .nav-icons i {
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 17px;
        color: #1d1a1a;

        background: #f4f4f4;
        border-radius: 50%;

        cursor: pointer;
        transition: all 0.35s ease;

        box-shadow:
            0 4px 10px rgba(0, 0, 0, 0.04),
            inset 0 1px 1px rgba(255, 255, 255, 0.8);
    }



    /* Hover Effect */
    .nav-icons i:hover {
        background: #d50909;
        color: #383434;

        transform: translateY(-4px) scale(1.05);

        box-shadow:
            0 10px 20px rgba(0, 0, 0, 0.18),
            0 4px 8px rgba(0, 0, 0, 0.08);
    }

    /* Mobile Responsive */
    @media(max-width:768px) {
        .nav-icons {
            gap: 12px;
        }

        .nav-icons i {
            width: 38px;
            height: 38px;
            font-size: 15px;
        }
    }

    /* Mobile mein mega image hide */
    @media(max-width:1024px) {
        .mega-image {
            display: none;
        }
    }

    /* Responsive */
    @media(max-width:991px) {

        .mega-menu {
            position: static;
            width: 100%;
            flex-wrap: wrap;
            padding: 25px;
            box-shadow: none;
            transform: none;
            opacity: 1;
            visibility: visible;
            display: none;
        }

        .mega-parent:hover .mega-menu {
            display: flex;
        }

    }

    /* Mega Menu Default */
    .mega-menu {
        position: absolute;
        top: 55px;
        left: -250px;
        width: 1000px;
        background: #f7f7f7;
        display: flex;
        gap: 40px;
        padding: 40px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.4s ease;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    /* Desktop Hover */
    .mega-parent:hover .mega-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    @media(max-width:991px) {

        .mega-menu {
            position: static;
            width: 100%;

            /* 2-column grid layout */
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;

            max-height: 0;
            overflow: hidden;

            opacity: 1;
            visibility: visible;

            padding: 0;
            transition: max-height 0.5s ease, padding 0.4s ease;
            box-shadow: none;
            border-radius: 0;
            transform: none;

            background: #fafafa;
        }

        .mega-menu.active {
            max-height: 1000px;
            margin-top: 1rem;
            padding: 0;
            /* padding columns pe hoga, wrapper pe nahi */
        }

        /* Har column ka proper spacing aur divider */
        .mega-column {
            padding: 18px 20px;
            border-right: 1px solid #f0f0f0;
            border-bottom: 1px solid #f0f0f0;
            min-width: unset;
            /* desktop wala min-width override */
        }

        /* Even column ka right border hatao */
        .mega-column:nth-child(even) {
            border-right: none;
        }

        .mega-column h4 {
            font-size: 10px;
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .mega-column a {
            font-size: 13px;
            margin-bottom: 10px;
        }

        /* Image mobile pe hide */
        .mega-image {
            display: none;
        }

        .shop-toggle {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
        }
    }

    .menu-toggle {
        z-index: 1001;
    }

    /* Mobile menu properly show */
    @media(max-width:1024px) {

        .nav-links {
            position: absolute;
            top: 65px;
            left: 0;
            width: 100%;
            background: #fff;
            flex-direction: column;
            align-items: center;
            overflow: hidden;

            max-height: 0;
            transition: 0.4s ease;
            z-index: 999;
        }

        .nav-links.active {
            max-height: 1000px;
            padding: 20px 0;
        }
    }


/* ================= HERO SLIDER ================= */
.hero-slider{
    position:relative;
    width:100%;
    height:32rem;
    overflow:hidden;
    background:#fff;
}

.slider{
    position:relative;
    width:100%;
    height:100%;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    transition:opacity .8s ease-in-out;
}

.slide.active{
    opacity:1;
    visibility:visible;
    z-index:1;
}

.banner-link{
    display:block;
    width:100%;
    height:100%;
}

.banner-link img{
    width:100%;
    height:100%;
    display:block;
    object-fit:fill;
    object-position:center;
}

/* Indicators */
.slider-lines{
    position:absolute;
    left:50%;
    bottom:15px;        /* Banner ke andar */
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:12px;
    z-index:100;
}

.line{
    width:45px;
    height:4px;
    border-radius:20px;
    background:rgba(255,255,255,.5);
    cursor:pointer;
    transition:.3s;
}

.line.active{
    width:70px;
    background:#fff;
}

/* Arrows */
.hero-slider-arrow{
    z-index:101;
}
/* ================= RESPONSIVE ================= */

@media(max-width:1200px){

    .hero-slider{
        height:600px;
    }

}

@media(max-width:992px){

    .hero-slider{
        height:500px;
    }

}

@media(max-width:768px){

    .hero-slider{
        height:360px;
    }

    .hero-slider-arrow{
        width:42px;
        height:42px;
        font-size:18px;
    }

    .line{
        width:30px;
    }

    .line.active{
        width:50px;
    }

}

@media(max-width:480px){

    .hero-slider{
        height:260px;
    }

    .hero-slider-arrow{
        width:36px;
        height:36px;
        font-size:16px;
    }

    .slider-lines{
        bottom:15px;
    }

}

    /* ================= FEATURED CATEGORIES ================= */
    .featured-categories {
        padding: 80px 6%;
        background: #f7f7f7;
    }

    .section-title {
        text-align: center;
        margin-bottom: 55px;
    }
    .section-title h2 {
        position: relative;
        padding-bottom: 18px;
    }

    .section-title h2::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 300px;
        height: 4px;
        background: linear-gradient(90deg, #d90000, #ff3b3b);
        border-radius: 10px;
    }

    /* Responsive */
    @media(max-width:768px) {
        .section-title h2::after {
            width: 150px;
            height: 3px;
        }
    }

    @media(max-width:480px) {
        .section-title h2::after {
            width: 100px;
            height: 3px;
        }
    }
    .section-title h2 {
        font-size: 48px;
        font-weight: 500;
        color: #111;
        letter-spacing: 1px;
    }


    /* Grid */
    .category-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 38px 28px;
        justify-items: center;
    }

    /* Card */
    .category-card {
        text-decoration: none;
        text-align: center;
        transition: 0.35s ease;
        display: block;
    }

    /* Image Box */
    .category-image {
        width: 210px;
        height: 210px;
        border-radius: 38px;
        overflow: hidden;
        position: relative;
        transition: 0.4s ease;
        display: flex;
        align-items: flex-end;
        justify-content: center;
    }

    /* Background Colors */
    .bg1 {
        background: #b4aea8;
    }

    .bg2 {
        background: #d19a39;
    }

    .bg3 {
        background: #cf6f92;
    }

    .bg4 {
        background: #d8617a;
    }

    .bg5 {
        background: #8f1027;
    }

    .bg6 {
        background: #2f3140;
    }

    .bg7 {
        background: #b62780;
    }

    .bg8 {
        background: #d96863;
    }

    .bg9 {
        background: #c89ae1;
    }

    .bg10 {
        background: #d8cfcb;
    }

    /* Image */
    .category-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: 0.4s ease;
    }

    /* Text */
    .category-card h3 {
        margin-top: 18px;
        font-size: 16px;
        color: #111;
        letter-spacing: 1px;
        font-weight: 600;
        line-height: 1.5;
    }

    /* Hover */
    .category-card:hover {
        transform: translateY(-8px);
    }

    .category-card:hover .category-image {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    }

    .category-card:hover img {
        transform: scale(1.06);
    }

    /* ================= RESPONSIVE ================= */
    @media(max-width:1200px) {
        .category-grid {
            grid-template-columns: repeat(4, 1fr);
        }
    }

    @media(max-width:1024px) {

        .featured-categories {
            padding: 70px 5%;
        }

        .category-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 30px 20px;
        }

        .category-image {
            width: 180px;
            height: 180px;
        }

        .section-title h2 {
            font-size: 38px;
        }
    }

    @media(max-width:768px) {

        .category-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .category-image {
            width: 160px;
            height: 160px;
            border-radius: 28px;
        }

        .section-title h2 {
            font-size: 32px;
        }

        .category-card h3 {
            font-size: 14px;
        }
    }

    @media(max-width:480px) {

        .featured-categories {
            padding: 55px 4%;
        }

        .category-grid {
            gap: 24px 14px;
        }

        .category-image {
            width: 145px;
            height: 145px;
            border-radius: 24px;
        }

        .section-title {
            margin-bottom: 35px;
        }

        .section-title h2 {
            font-size: 22px;
        }
    }

    /* ================= FEATURED CATEGORIES ================= */
    .featured-categories {
        padding: 20px 0;
        background: #f7f7f7;
    }

    /* Center Container */
    .category-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 30px 22px;

        width: 75%;
        /* center layout */
        margin: 0 auto;
        /* center */
        justify-items: center;
    }

    /* Small Card */
    .category-image {
        width: 170px;
        height: 170px;
        border-radius: 32px;
        overflow: hidden;
        position: relative;
        transition: 0.4s ease;
    }

    /* Text */
    .category-card h3 {
        margin-top: 14px;
        font-size: 15px;
        letter-spacing: 1px;
        font-weight: 600;
    }

    /* ================= RESPONSIVE ================= */
    @media(max-width:1200px) {

        .category-grid {
            width: 85%;
            grid-template-columns: repeat(4, 1fr);
        }

        .category-image {
            width: 160px;
            height: 160px;
        }
    }

    @media(max-width:1024px) {

        .category-grid {
            width: 90%;
            grid-template-columns: repeat(3, 1fr);
        }

        .category-image {
            width: 150px;
            height: 150px;
        }
    }

    @media(max-width:768px) {

        .category-grid {
            width: 92%;
            grid-template-columns: repeat(4, 1fr);
        }

        .category-image {
            width: 145px;
            height: 145px;
        }
    }

    @media(max-width:480px) {

        .category-grid {
            width: 94%;
            gap: 22px 12px;
        }

        .category-image {
            width: 130px;
            height: 130px;
            border-radius: 24px;
        }

        .category-card h3 {
            font-size: 13px;
        }
    }

    /* Mobile Phone Size */
    @media(max-width:480px) {

        .category-grid {
            width: 96%;
            grid-template-columns: repeat(4, 1fr);
            /* 4 div in one row */
            gap: 14px 8px;
        }

        .category-image {
            width: 78px;
            height: 78px;
            border-radius: 18px;
        }

        .category-card h3 {
            font-size: 8px;
            margin-top: 8px;
            line-height: 1.2;
            letter-spacing: 0.5px;
        }
    }










    /* ========== SECTION WRAPPER ========== */
    .new-popular-section {
        max-width: 1300px;
        margin: 0 auto;
        padding: 2.5rem 1.25rem;
    }
    .new-section-title-wrap {
        text-align: center;
        margin-bottom: 40px;
    }

    .new-section-title {
        display: inline-block;
        position: relative;
        font-size: clamp(20px, 4vw, 28px);
        font-weight: 600;
        color: #111;
        padding-bottom: 18px;
    }

    .new-section-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 4px;
        background: linear-gradient(90deg, #d90000, #ff3b3b);
        border-radius: 10px;
    }

    /* Responsive */
    @media(max-width:768px) {
        .new-section-title::after {
            width: 100px;
            height: 3px;
        }
    }

    @media(max-width:480px) {
        .new-section-title::after {
            width: 80px;
            height: 3px;
        }
    }

    /* ========== TABS ========== */
    .tabs-wrapper {
        display: flex;
        align-items: center;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 6px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .tabs-wrapper::-webkit-scrollbar {
        display: none;
    }

    .tab-btn {
        white-space: nowrap;
        padding: 8px 20px;
        border-radius: 999px;
        border: 1px solid #ccc;
        background: #fff;
        color: #444;
        font-size: 13px;
        cursor: pointer;
        transition: all 0.2s ease;
        flex-shrink: 0;
    }

    .tab-btn:hover {
        background: #f0f0f0;
        color: #111;
    }

    .tab-btn.active {
        background: #111;
        color: #fff;
        border-color: #111;
    }

    /* ========== CARDS GRID ========== */
    .cards-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    @media (max-width: 1024px) {
        .cards-grid {
            grid-template-columns: repeat(3, 1fr);
        }
    }

    @media (max-width: 720px) {
        .cards-grid {
            gap: 1rem;
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 420px) {
        .cards-grid {
            grid-template-columns: 1fr;
        }
    }

    /* ========== PRODUCT CARD ========== */
    .product-card {
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        border: 1px solid #e8e8e8;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        cursor: pointer;
    }

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.09);
    }

    .card-image {
        width: 100%;
        aspect-ratio: 3/4;
        object-fit: cover;
        display: block;
        background: #f5f5f5;
    }

    /* Placeholder when no real image */
    .card-image-placeholder {
        width: 100%;
        aspect-ratio: 3/4;
        background: #f0ece8;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 72px;
    }

    .card-tag {
        display: inline-block;
        margin: 10px 10px 4px;
        padding: 3px 10px;
        background: #222;
        color: #fff;
        font-size: 11px;
        border-radius: 4px;
    }

    .card-title {
        font-size: 13px;
        font-weight: 500;
        color: #222;
        padding: 0 10px;
        line-height: 1.45;
    }

    .card-price-row {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 10px 4px;
    }

    .card-price {
        font-size: 15px;
        font-weight: 600;
        color: #111;
    }

    .card-mrp {
        font-size: 12px;
        color: #999;
        text-decoration: line-through;
    }

    .card-discount {
        font-size: 12px;
        color: #2a7a2a;
        font-weight: 500;
    }

    .card-sizes {
        display: flex;
        flex-wrap: wrap;
        gap: 6px;
        padding: 6px 10px 14px;
    }

    .size-btn {
        padding: 4px 10px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 11px;
        color: #555;
        background: transparent;
        cursor: pointer;
        transition: all 0.15s;
    }

    .size-btn:hover {
        background: #111;
        color: #fff;
        border-color: #111;
    }

    /* ========== VIEW MORE ========== */
    .view-more-wrap {
        text-align: center;
        margin-top: 2rem;
    }

    .view-more-btn {
        display: inline-block;
        padding: 11px 40px;
        border: 2px solid #111;
        background: transparent;
        color: #111;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.1em;
        cursor: pointer;
        border-radius: 4px;
        transition: all 0.2s;
    }

    .view-more-btn:hover {
        background: #111;
        color: #fff;
    }

    /* ========== FADE ANIMATION ========== */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .product-card {
        animation: fadeIn 0.3s ease forwards;
    }

    .view-more-btn {
        display: inline-block;
        text-decoration: none;
    }



    /* ------------------wishlist--------------- */
    /* ========== WISHLIST HEART ========== */
    .wishlist-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(4px);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform 0.2s ease, background 0.2s ease;
        z-index: 2;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    }

    .wishlist-btn:hover {
        transform: scale(1.12);
        background: #fff;
    }

    .wishlist-btn svg {
        width: 18px;
        height: 18px;
        transition: all 0.2s ease;
    }

    .wishlist-btn .heart-icon {
        fill: none;
        stroke: #888;
        stroke-width: 2;
    }

    .wishlist-btn.active .heart-icon {
        fill: #e53935;
        stroke: #e53935;
    }

    /* card mein position:relative zaroori hai */
    .product-card {
        position: relative;
    }






    /* ---------------------------------- */

    /* ===== SECTION ===== */
    .collections-section {
        max-width: 1300px;
        margin: 0 auto;
        padding: 3rem 1.25rem 2rem;
    }

    .more-section-title-wrap {
        text-align: center;
        margin-bottom: 40px;
    }

    .more-section-title {
        display: inline-block;
        position: relative;
        font-size: clamp(20px, 4vw, 28px);
        font-weight: 600;
        color: #111;
        padding-bottom: 18px;
    }

    .more-section-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 250px;
        height: 4px;
        background: linear-gradient(90deg, #d90000, #ff3b3b);
        border-radius: 10px;
    }

    /* Responsive */
    @media(max-width:768px) {
        .more-section-title::after {
            width: 200px;
            height: 3px;
        }
    }

    @media(max-width:480px) {
        .more-section-title::after {
            width: 150px;
            height: 3px;
        }
    }
    /* ===== SLIDER TRACK ===== */
    .slider-outer {
        position: relative;
    }

    .slider-track {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px 8px;
    }

    .slider-track::-webkit-scrollbar {
        display: none;
    }

    /* ===== COLLECTION CARD ===== */
    .col-card {
        flex: 0 0 220px;
        border-radius: 16px;
        overflow: hidden;
        border: 1px solid #e8e8e8;
        background: #fff;
        cursor: pointer;
        text-decoration: none;
        color: inherit;
        display: block;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .col-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }

    /* ===== ARCH IMAGE AREA ===== */
    .arch-wrap {
        width: 100%;
        height: 280px;
        background: #e8e3da;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
        position: relative;
    }

    /* Real image version */
    .arch-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top center;
        display: block;
    }

    /* Arch overlay shape */
    .arch-overlay {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 85%;
        height: 98%;
        background: rgba(255, 255, 255, 0.18);
        border-radius: 999px 999px 0 0;
        pointer-events: none;
    }

    /* Placeholder (no image) */
    .arch-placeholder {
        width: 100%;
        height: 280px;
        background: #e8e3da;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        position: relative;
    }

    .arch-inner-ph {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 72%;
        height: 86%;
        background: #cdc9c0;
        border-radius: 999px 999px 0 0;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        overflow: hidden;
    }

    .arch-emoji {
        font-size: 76px;
        line-height: 1;
        padding-bottom: 10px;
    }

    /* ===== CARD FOOTER ===== */
    .col-card-footer {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 16px;
        background: #fff;
    }

    .col-card-name {
        font-size: 14px;
        font-weight: 500;
        color: #111;
    }

    .col-card-arrow {
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: 1px solid #ccc;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: #111;
        flex-shrink: 0;
        transition: all 0.15s;
    }

    .col-card:hover .col-card-arrow {
        background: #111;
        color: #fff;
        border-color: #111;
    }

    /* ===== BOTTOM ROW (dots + nav) ===== */
    .slider-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-top: 16px;
    }

    /* Dots */
    .dots {
        display: flex;
        gap: 7px;
        align-items: center;
    }

    .dot {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: #ccc;
        border: none;
        cursor: pointer;
        padding: 0;
        transition: all 0.25s ease;
    }

    .dot.active {
        background: #111;
        width: 24px;
        border-radius: 5px;
    }

    /* Nav buttons */
    .nav-btns {
        display: flex;
        gap: 8px;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid #ccc;
        background: #fff;
        cursor: pointer;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #111;
        transition: all 0.2s;
    }

    .nav-btn:hover {
        background: #111;
        color: #fff;
        border-color: #111;
    }

    .nav-btn:disabled {
        opacity: 0.35;
        cursor: default;
    }

    .nav-btn:disabled:hover {
        background: #fff;
        color: #111;
        border-color: #ccc;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 768px) {
        .collections-section{
            padding: 1rem 1.25rem 2rem;
        }
        .col-card {
            flex: 0 0 170px;
        }

        .arch-wrap,
        .arch-placeholder {
            height: 220px;
        }
    }

    @media (max-width: 480px) {
        .col-card {
            flex: 0 0 145px;
        }

        .arch-wrap,
        .arch-placeholder {
            height: 190px;
        }

        .arch-emoji {
            font-size: 56px;
        }
    }








    /* ===== SECTION ===== */
    .reel-section {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0rem 1.25rem 2.5rem;
    }
    .reel-title-wrap {
        text-align: center;
        margin-bottom: 40px;
    }

    .reel-title {
        display: inline-block;
        position: relative;
        font-size: clamp(20px, 4vw, 28px);
        font-weight: 600;
        color: #111;
        padding-bottom: 18px;
    }

    .reel-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        height: 4px;
        background: linear-gradient(90deg, #d90000, #ff3b3b);
        border-radius: 10px;
    }

    /* Responsive */
    @media(max-width:768px) {
        .reel-title::after {
            width: 100px;
            height: 3px;
        }
    }

    @media(max-width:480px) {
        .reel-title::after {
            width: 90px;
            height: 3px;
        }
    }

    /* ===== SLIDER OUTER ===== */
    .reel-outer {
        position: relative;
    }

    .reel-track {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px 4px;
    }

    .reel-track::-webkit-scrollbar {
        display: none;
    }

    /* ===== REEL CARD ===== */
    .reel-card {
        flex: 0 0 220px;
        border-radius: 14px;
        overflow: hidden;
        position: relative;
        cursor: pointer;
        background: #111;
    }

    .reel-card video {
        width: 100%;
        height: 360px;
        object-fit: cover;
        display: block;
        border-radius: 14px;
    }

    /* ===== PLAY ICON (center overlay) ===== */
    .play-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.85);
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        transition: opacity 0.2s;
    }

    .play-icon svg {
        width: 20px;
        height: 20px;
        fill: #111;
        margin-left: 3px;
    }

    .reel-card.playing .play-icon {
        opacity: 0;
    }

    .reel-card:hover .play-icon {
        opacity: 0;
    }

    /* ===== BOTTOM CAPTION ===== */
    .reel-caption {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 40px 10px 12px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
        border-radius: 0 0 14px 14px;
        display: flex;
        align-items: flex-end;
        gap: 8px;
    }

    .caption-thumb {
        width: 42px;
        height: 52px;
        border-radius: 6px;
        object-fit: cover;
        flex-shrink: 0;
        border: 1px solid rgba(255, 255, 255, 0.3);
        background: #555;
    }

    /* Placeholder thumb */
    .caption-thumb-ph {
        width: 42px;
        height: 52px;
        border-radius: 6px;
        flex-shrink: 0;
        background: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .caption-text {
        font-size: 11.5px;
        color: #fff;
        line-height: 1.4;
        font-weight: 500;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    /* ===== SOUND TOGGLE BUTTON ===== */
    .sound-btn {
        position: absolute;
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.45);
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2;
        transition: background 0.15s;
    }

    .sound-btn:hover {
        background: rgba(0, 0, 0, 0.7);
    }

    .sound-btn svg {
        width: 16px;
        height: 16px;
        fill: #fff;
    }

    /* ===== NAV ARROW (right side) ===== */
    .reel-nav {
        position: absolute;
        right: -18px;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #ddd;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        color: #111;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        transition: all 0.2s;
        z-index: 3;
    }

    .reel-nav:hover {
        background: #111;
        color: #fff;
        border-color: #111;
    }

    .reel-nav.prev {
        left: -18px;
        right: auto;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 900px) {
        .reel-card {
            flex: 0 0 180px;
        }

        .reel-card video {
            height: 300px;
        }
    }

    @media (max-width: 600px) {
        .reel-card {
            flex: 0 0 150px;
        }

        .reel-card video {
            height: 250px;
        }

        .caption-thumb,
        .caption-thumb-ph {
            width: 34px;
            height: 42px;
        }

        .caption-text {
            font-size: 10px;
        }

        .reel-nav {
            display: none;
        }
    }


    /* ===== FOOTER ===== */
    .site-footer {
        background: #000;
        color: #fff;
        padding: 3rem 2rem 1.5rem;
    }

    /* ===== TOP GRID ===== */
    .footer-grid {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 2rem;
        padding-bottom: 2.5rem;
    }

    /* Column heading */
    .footer-col h4 {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #fff;
        margin-bottom: 1.25rem;
    }

    /* Links */
    .footer-col ul {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .footer-col ul li a {
        font-size: 14px;
        color: #bbb;
        text-decoration: none;
        transition: color 0.2s;
    }

    .footer-col ul li a:hover {
        color: #fff;
    }

    /* ===== EMAIL SUBSCRIBE ===== */
    .subscribe-form {
        display: flex;
        align-items: center;
        border-bottom: 1px solid #555;
        margin-bottom: 1rem;
        padding-bottom: 6px;
    }

    .subscribe-form input {
        flex: 1;
        background: transparent;
        border: none;
        outline: none;
        color: #fff;
        font-size: 13px;
        padding: 4px 0;
    }

    .subscribe-form input::placeholder {
        color: #777;
    }

    .subscribe-form button {
        background: transparent;
        border: none;
        color: #fff;
        cursor: pointer;
        font-size: 18px;
        padding: 0 4px;
        line-height: 1;
        transition: opacity 0.2s;
    }

    .subscribe-form button:hover {
        opacity: 0.7;
    }

    .subscribe-desc {
        font-size: 12px;
        color: #888;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    /* ===== SOCIAL ICONS ===== */
    .social-links {
        display: flex;
        gap: 14px;
        align-items: center;
    }

    .social-links a {
        color: #bbb;
        text-decoration: none;
        transition: color 0.2s;
        display: flex;
        align-items: center;
    }

    .social-links a:hover {
        color: #fff;
    }

    .social-links svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

    /* ===== DIVIDER ===== */
    .footer-divider {
        border: none;
        border-top: 1px solid #222;
        margin: 0 0 1.75rem;
    }

    /* ===== APP DOWNLOAD BUTTONS ===== */
    .app-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-bottom: 1.75rem;
    }

    .app-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        border: 1px solid #444;
        border-radius: 6px;
        padding: 10px 18px;
        color: #fff;
        text-decoration: none;
        font-size: 13px;
        font-weight: 500;
        transition: border-color 0.2s, background 0.2s;
        white-space: nowrap;
    }

    .app-btn:hover {
        border-color: #888;
        background: #111;
    }

    .app-btn svg {
        width: 22px;
        height: 22px;
        fill: #fff;
        flex-shrink: 0;
    }

    /* ===== COPYRIGHT ===== */
    .footer-copy {
        font-size: 12px;
        color: #666;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 2rem 3rem;
        }
    }

    @media (max-width: 600px) {
        .site-footer {
            padding: 2.5rem 1.25rem 1.25rem;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
            gap: 1.75rem 1.5rem;
        }

        .app-btns {
            flex-direction: column;
        }

        .app-btn {
            justify-content: center;
        }
    }

    @media (max-width: 400px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
    }