* {
    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;
    }
}


























:root {
    --black: #0d0d0d;
    --white: #ffffff;
    --cream: #faf8f5;
    --border: #e8e3db;
    --muted: #9a958f;
    --green: #1a6b3a;
    --red: #e53935;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
}

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--black);
}

/* ── SECTION WRAPPER ── */















/* Sirf limited-grid (multi-category listing) pe 8-product limit */
.limited-grid > .product-card:nth-child(n+9) {
    display: none;
}

.category-block.expanded .limited-grid > .product-card:nth-child(n+9) {
    display: block;
}

/* Buttons wrapper */
.category-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.view-more-btn {
    padding: 12px 32px;
    background: #111;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.view-more-btn:hover {
    background: #d90000;
    transform: translateY(-2px);
}

.view-more-btn i {
    font-size: 11px;
}

.view-all-btn {
    padding: 12px 32px;
    background: transparent;
    color: #111;
    border: 1.5px solid #111;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
}

.view-all-btn:hover {
    background: #111;
    color: #fff;
}

/* Responsive */
@media(max-width:480px) {
    .category-actions {
        flex-direction: column;
        gap: 12px;
    }

    .view-more-btn,
    .view-all-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
.view-all-btn {
    padding: 12px 32px;
    background: transparent;
    color: #111;
    border: 1.5px solid #111;
    border-radius: 30px;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
}

.view-all-btn:hover {
    background: #111;
    color: #fff;
}
@media(max-width:480px) {
    .category-actions {
        flex-direction: column;
        gap: 12px;
    }

    .view-more-btn {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}
.all-products-section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 1.5rem 1rem 5rem;
}

.page-title {
    font-family:'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.page-subtitle {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 2rem;
}

/* ── CATEGORY BLOCK ── */
.category-block {
    margin-bottom: 4rem;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
}

.category-title {
    font-family: 'Poppins', sans-serif; 
    font-size: clamp(18px, 3vw, 20px);
    font-weight: 500;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 10px;
}

.category-count {
    font-size: 12px;
    color: var(--muted);
    font-family: var(--font-body);
    background: #f0ece8;
    padding: 3px 10px;
    border-radius: 20px;
}

.view-all-link {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
}

.view-all-link:hover {
    color: var(--black);
}

/* ── CARDS GRID ── */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 720px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.875rem;
    }
    .page-title {
    font-size: 20px;
    }
    .page-subtitle {

    margin-bottom: 1rem;
}
}

@media (max-width: 400px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }
}

/* ── PRODUCT CARD ── */
.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #ede9e4;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    cursor: pointer;
    position: relative;
    animation: fadeUp 0.35s ease both;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.09);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Image */
.card-img-wrap {
    position: relative;
    aspect-ratio: 3/4;
    background: #f0ece8;
    overflow: hidden;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .card-image {
    transform: scale(1.04);
}

/* Wishlist btn */
.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    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;
    z-index: 2;
}

.wishlist-btn:hover {
    transform: scale(1.1);
}

.wishlist-btn svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #888;
    stroke-width: 2;
    transition: all 0.2s;
}

.wishlist-btn.active svg {
    fill: var(--red);
    stroke: var(--red);
}

/* Tag */
.card-tag {
    display: inline-block;
    margin: 10px 10px 4px;
    padding: 3px 10px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 4px;
}

/* Title */
.card-title {
    font-size: 12.5px;
    font-weight: 400;
    color: var(--black);
    padding: 0 10px;
    line-height: 1.5;
}

/* Price */
.card-price-row {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 6px;
    padding: 7px 10px 4px;
}

.card-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

.card-mrp {
    font-size: 11px;
    color: var(--muted);
    text-decoration: line-through;
}

.card-discount {
    font-size: 11px;
    color: var(--green);
    font-weight: 500;
}

/* Sizes */
.card-sizes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    padding: 5px 10px 12px;
}

.size-btn {
    padding: 3px 8px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 10px;
    color: #555;
    background: transparent;
    cursor: pointer;
    transition: all 0.15s;
    font-family: var(--font-body);
}

.size-btn:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ── WISHLIST CSS ── */
.wishlist-btn.active svg {
    fill: var(--red);
    stroke: var(--red);
}

































/* ===== 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;
    }
}