@import url('https://fonts.googleapis.com/css2?family=Anek+Devanagari:wght@100..800&display=swap');

body {
    font-family: 'Anek Devanagari', Arial, sans-serif;
    background: #f5f6f7;
    margin: 0;
}

* {
    font-family: 'Anek Devanagari', Arial, sans-serif;
}

/* ===== NEW HEADER STYLES ===== */
.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
}

.mobile-hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #333;
    border-radius: 2px;
}

.header-logo a {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.5px;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-menu>li>a {
    font-size: 15px;
    font-weight: 500;
    color: #4a4a4a;
    text-decoration: none;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu>li>a:hover {
    color: #e91e63;
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.arrow {
    font-size: 10px;
    transition: transform 0.2s ease;
}

.has-dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    margin: 0;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: #4a4a4a;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #e91e63;
}

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
}

.nav-menu>li>a.active-link {
    color: #e91e63;
    font-weight: 700;
}

.dropdown-menu li a.active-link {
    background-color: #fff5f8;
    color: #e91e63;
}

.mobile-nav-menu li a.active-link {
    color: #e91e63;
    font-weight: 700;
}

.header-cart-icon {
    position: relative;
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.header-cart-icon:hover {
    background-color: #f5f5f5;
    color: #e91e63;
}

.cart-count-badge {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #e91e63;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 4px rgba(233, 30, 99, 0.3);
}

/* Mobile Sidebar Navigation */
.mobile-sidebar-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1001;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-sidebar-nav.active {
    left: 0;
}

.mobile-sidebar-header {
    display: flex;
    justify-content: flex-end;
    padding: 20px;
    border-bottom: 1px solid #eaeaea;
}

.mobile-close-btn {
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.mobile-nav-menu {
    list-style: none;
    margin: 0;
    padding: 20px 0;
}

.mobile-nav-menu>li>a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-menu>li>a:hover {
    color: #e91e63;
    background-color: #fafafa;
}

.mobile-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #fcfcfc;
    display: none;
}

.mobile-has-dropdown.active .mobile-dropdown-menu {
    display: block;
}

.mobile-has-dropdown.active>a .arrow {
    transform: rotate(180deg);
}

.mobile-dropdown-menu li a {
    display: block;
    padding: 12px 25px 12px 40px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 900px) {
    .desktop-nav {
        display: none;
    }

    .mobile-hamburger {
        display: flex;
    }

    .header-logo a {
        font-size: 20px;
    }
}


/* GRID LAYOUT */
.grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 24px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Tablet */
@media (max-width: 1000px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 16px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px;
    }
}

/* PRODUCT CARD */
.card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.2s ease-in-out;
    height: 100%;
    box-sizing: border-box;
    width: 100%;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* IMAGE */
.card img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 10px;
    background: #eee;
    display: block;
    margin-bottom: 12px;
}

/* TITLE */
.title {
    font-size: 15px;
    margin: 0 0 8px 0;
    color: #333;
    line-height: 1.4;
    min-height: 42px;
    /* For 2 lines of text */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* PRICE BLOCK (For homepage-price-block) */
.homepage-price-block {
    margin: 8px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.price-discount-block {
    margin: 12px 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.current-price {
    font-size: 22px !important;
    font-weight: 900 !important;
    color: #e91e63 !important;
    /* Attractive styling */
    letter-spacing: -0.5px;
}

.original-price {
    text-decoration: line-through !important;
    color: #888 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}

.sale-badge,
.discount-badge {
    background: #00b894 !important;
    /* Green badge */
    color: white !important;
    font-size: 12px !important;
    font-weight: bold !important;
    padding: 4px 8px !important;
    border-radius: 4px !important;
    margin-left: 4px !important;
    display: inline-block !important;
    text-transform: uppercase;
}

/* Fallback Price */
.price {
    font-size: 22px;
    font-weight: 900;
    color: #e91e63;
}

/* DELIVERY */
.discount {
    color: #00b894;
    font-size: 13px;
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* BUTTON */
.btn {
    display: block;
    width: 100%;
    padding: 12px;
    text-align: center;
    border: 2px solid #e91e63;
    color: #e91e63;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-top: auto;
    box-sizing: border-box;
    transition: all 0.2s;
}

.btn:hover {
    background: #e91e63;
    color: white;
}

/* PAGINATION */
.page-btn {
    display: inline-block;
    margin: 4px;
    padding: 8px 14px;
    border: 1px solid #e91e63;
    color: #e91e63;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
    background: white;
    transition: 0.2s;
}

.page-btn.active,
.page-btn:hover {
    background: #e91e63;
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: #111;
    color: #fff;
    margin-top: 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 20px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-col a {
    display: block;
    text-decoration: none;
    color: #ccc;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-col a:hover {
    color: #e91e63;
}

.social-icons {
    display: flex;
    gap: 12px;
    font-size: 20px;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #000;
    font-size: 14px;
}

/* Responsive Footer */
@media(max-width:900px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* ===== PRODUCT PAGE STYLE ===== */

.product-page {
    background: #fff;
    padding-bottom: 40px;
    margin-top: 0;
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px 20px;
}

/* IMAGE GALLERY */
.product-gallery {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.main-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    aspect-ratio: 3/4;
    object-fit: cover;
}

/* PRODUCT INFO */
.product-info-block {
    padding: 0;
}

.product-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

/* Pricing in Product Page */
.product-page .price-discount-block {
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.product-page .current-price {
    font-size: 28px !important;
}

.product-page .original-price {
    font-size: 18px !important;
}

.product-page .discount-badge {
    font-size: 14px !important;
    padding: 4px 10px !important;
}

.product-extra-tags {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.rating-pill {
    background: #00b894;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 14px;
}

.reviews-count {
    color: #888;
    font-size: 14px;
}

.free-delivery-text {
    color: #00b894;
    font-weight: 600;
    font-size: 14px;
}

.section-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 25px 0;
}

/* SIZE SECTION */
.size-section h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.sizes {
    display: flex;
    gap: 12px;
}

.sizes button {
    width: 50px;
    height: 50px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #444;
}

.sizes button.active {
    background: #e91e63;
    color: white;
    border-color: #e91e63;
    box-shadow: 0 4px 12px rgba(233, 30, 99, 0.3);
    transform: scale(1.05);
}

.sizes button:hover:not(.active) {
    border-color: #e91e63;
    color: #e91e63;
    background-color: #fff5f8;
}

.sizes button:active {
    transform: scale(0.95);
}

/* DESCRIPTION */
.product-details-block h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.detail-value {
    line-height: 1.6;
    color: #444;
    font-size: 15px;
}

/* BUY SECTION */
.desktop-buy-section {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

.buy-btn {
    flex: 1;
    background: #e91e63;
    color: white;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}

.buy-btn:hover {
    background: #d81b60;
}

/* RELATED PRODUCTS SECTION */
.also-viewed-block {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.also-viewed-block h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 900px) {
    .product-container {
        grid-template-columns: 1fr;
        padding: 20px;
        gap: 20px;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .product-title {
        font-size: 22px;
    }

    .desktop-buy-section {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        margin: 0;
        padding: 12px 20px;
        background: white;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
}

/* CENTERED MOBILE STYLE ON DESKTOP */
.product-wrapper {
    max-width: 100%;
    margin: 0 auto;
    background: #fff;
    min-height: 100vh;
}


.page-wrapper {
    background: #f6f6f6;
    padding: 40px 15px;
}

.about-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.about-title {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-container p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

/* CONTACT PAGE */

.contact-container {
    max-width: 500px;
    margin: 60px auto;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-title {
    text-align: center;
    font-size: 26px;
    margin-bottom: 25px;
}

.contact-form label {
    font-weight: bold;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-form textarea {
    height: 120px;
    resize: none;
}

.contact-btn {
    width: 100%;
    padding: 12px;
    background: #1a73e8;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
}

.contact-btn:hover {
    background: #155ac5;
}

.contact-info {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: #666;
}

.cart-box {
    max-width: 500px;
    margin: 40px auto;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* ===== MISSING STRUCTURAL CSS (Dividers, Reviews, Related Products) ===== */

.product-info-block {
    background: white;
    padding: 20px;
}

.section-divider {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 20px -20px;
}

/* Ratings & Reviews Section */
.rating-overview-flex {
    display: flex;
    gap: 20px;
    align-items: center;
}

.big-rating {
    font-size: 40px;
    font-weight: bold;
    color: #009900;
}

.big-rating span {
    font-size: 50px;
}

.big-rating .total-ratings {
    font-size: 12px;
    color: #888;
    font-weight: normal;
    margin-top: -5px;
}

.rating-distribution {
    flex-grow: 1;
}

.dist-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    margin-bottom: 6px;
    color: #666;
}

.dist-row .label {
    min-width: 65px;
    text-align: right;
}

.bar-container {
    flex-grow: 1;
    height: 6px;
    background: #f1f3f5;
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
}

.bar-fill.excellent {
    background: #009900;
}

.bar-fill.very-good {
    background: #6fcd4a;
}

.bar-fill.good {
    background: #ffd600;
}

.bar-fill.poor {
    background: #ff7800;
}

.bar-fill.very-poor {
    background: #ff3c00;
}

.dist-row .count {
    color: #888;
    min-width: 40px;
}

/* People also viewed Block */
.viewed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1000px) {
    .viewed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 600px) {
    .viewed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.viewed-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.viewed-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.viewed-card h4 {
    margin: 0 0 5px 0;
    font-size: 13px;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.viewed-card .tag.free {
    background: transparent;
    color: #888;
    font-size: 11px;
    padding: 0;
    border: none;
    margin-top: auto;
}

/* ===== SOLD BY SECTION (Stacked Layout) ===== */
.sold-by-block {
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    align-items: flex-start;
    padding: 10px 0;
}

.seller-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    background: transparent;
    border-radius: 0;
    /* Remove circle */
    margin-bottom: 12px;
    /* Space below icon */
}

.seller-name {
    margin: 0 0 6px 0;
    /* Space below name */
    font-size: 16px;
    color: #000;
    font-weight: bold;
}

.seller-stats {
    font-size: 14px;
    color: #000;
}

/* ===== NEW MULTI-STEP CHECKOUT STYLES ===== */

.checkout-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: transparent;
    padding-bottom: 100px;
    /* Space for bottom bar */
}

/* Top Nav */
.step-nav {
    display: flex;
    background: white;
    padding: 15px 0 0 0;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.step-nav div {
    flex: 1;
    text-align: center;
    font-size: 14px;
    color: #888;
    padding-bottom: 15px;
    border-bottom: 2px solid transparent;
}

.step-nav div.active {
    color: #e91e63;
    border-bottom-color: #e91e63;
    font-weight: bold;
}

/* Cart Item Card */
.cart-item-card {
    background: white;
    padding: 15px;
    margin-bottom: 10px;
}

.cart-item-top {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.cart-item-top img {
    width: 80px;
    height: 100px;
    object-fit: cover;
    border-radius: 6px;
    background: #f5f5f5;
}

.cart-item-details h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    color: #333;
}

.meta-text {
    margin: 0 0 4px 0;
    font-size: 13px;
    color: #666;
}

.cart-price-row {
    margin-top: 8px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.cart-price-row .price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.cart-price-row .old-price {
    font-size: 14px;
    color: #888;
    text-decoration: line-through;
}

.cart-price-row .discount {
    font-size: 13px;
    color: #009900;
    font-weight: bold;
}

/* Actions & Qty */
.cart-item-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed #eee;
    padding-top: 15px;
    margin-bottom: 15px;
}

.remove-btn {
    font-size: 14px;
    color: #555;
    font-weight: bold;
    cursor: pointer;
}

.qty-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 2px 10px;
}

.qty-selector button {
    background: transparent;
    border: none;
    font-size: 18px;
    color: #666;
    cursor: pointer;
}

.qty-selector span {
    font-weight: bold;
    font-size: 14px;
}

.delivery-tag {
    display: inline-block;
    background: #e6f7ef;
    color: #1a6344;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: bold;
}

/* Price Details Card */
.price-details-card {
    background: white;
    padding: 20px;
}

.price-details-card h3 {
    margin: 0 0 15px 0;
    font-size: 16px;
    color: #000;
}

.p-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
    margin-bottom: 12px;
}

.p-row.green-text {
    color: #009900;
}

.price-details-card hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 15px 0;
}

.total-row {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

.savings-banner {
    background: #e6f7ef;
    color: #1a6344;
    text-align: center;
    padding: 10px;
    border-radius: 4px;
    font-size: 13px;
    margin-top: 15px;
}

/* Bottom Continue Bar */
.bottom-continue-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    z-index: 1000;
}

.total-display {
    line-height: 1.2;
}

.total-display strong {
    font-size: 20px;
}

.pink-continue-btn {
    background: #e91e63;
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
}

[id*="wau"],
[class*="wau"] {
    display: none !important;
}

/* ===== ADS STYLING (AUTO INSERT) ===== */

/* Top Banner Ad (below header) */
.ad-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.ad-box {
    width: 320px;
    height: 100px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

/* Grid Ad (after products) */
.ad-grid {
    grid-column: span 4;
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

/* Tablet */
@media(max-width:1000px) {
    .ad-grid {
        grid-column: span 3;
    }
}

/* Mobile */
@media(max-width:700px) {
    .ad-grid {
        grid-column: span 2;
    }
}

/* Desktop Ad Size */
@media(min-width:768px) {
    .ad-box {
        width: 728px;
        height: 90px;
    }
}

.product-ad-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 15px 0;
}

.dummy-product-ad {
    width: 336px;
    height: 280px;
    border: 2px dashed #ccc;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #777;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
}

.dummy-product-ad small {
    font-size: 14px;
    color: #999;
}

/* Mobile Responsive */
@media (max-width: 400px) {
    .dummy-product-ad {
        width: 100%;
        max-width: 336px;
        height: auto;
        min-height: 250px;
    }
}