/* Updated Theme variables: Sky Blue & Clean Aesthetics */
:root {
    /*Naya Sky Blue Palette */
    --sky-light: #f0f9ff;
    /* Bahut halka sky blue background ke liye */
    --sky-primary: #20824f;
    /* Main blue color buttons/links ke liye */
    --sky-deep: #82b17d;
    /* Deep blue accents ke liye */

    /* Pehle wale variables ko blue ke hisaab se update kiya */
    --gold: #ffc107;
    /* Blue ke saath Gold ka combination premium lagta hai */
    --bg: linear-gradient(180deg, #f0f9ff 0%, #e0f2fe 100%);
    /* Smooth Sky Blue Gradient */
    --text: #1e293b;
    /* Dark blue-grey text for better readability */
    --muted: #64748b;
    --card-bg: #ffffff;
    --shadow: rgba(0, 168, 232, 0.1);
    /* Halka blue shadow */
    --container-max: 1600px;
    --radius: 12px;
}

/* Global layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    background-color: #eaf5fa !important;
}

body {
    font-family: 'Segoe UI', Roboto, 'Noto Sans', sans-serif;
    background: #eaf5fa !important;
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

/* Layout helper */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0 12px !important;
}

/* Attractive Links (No Blue Line) */
a {
    text-decoration: none !important;
    color: var(--sky-primary);
    transition: 0.3s ease;
}

a:hover {
    color: var(--sky-deep);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Bootstrap grid adjustments - reduce gutters */
.row {
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12,
.col-sm-1,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-md-1,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-10,
.col-md-11,
.col-md-12 {
    padding-left: 6px !important;
    padding-right: 6px !important;
}

/* Reduce gap classes */
.g-0 {
    --bs-gutter-x: 0 !important;
    --bs-gutter-y: 0 !important;
}

.g-1 {
    --bs-gutter-x: 0.25rem !important;
    --bs-gutter-y: 0.25rem !important;
}

.g-2 {
    --bs-gutter-x: 0.5rem !important;
    --bs-gutter-y: 0.5rem !important;
}

.g-3 {
    --bs-gutter-x: 0.75rem !important;
    --bs-gutter-y: 0.75rem !important;
}

.g-4 {
    --bs-gutter-x: 1rem !important;
    --bs-gutter-y: 1rem !important;
}

.g-5 {
    --bs-gutter-x: 1.5rem !important;
    --bs-gutter-y: 1.5rem !important;
}

/* Header / Nav */

/* Contact page enhancements */
.contact-page {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

.contact-page .form-control {
    border-radius: var(--radius);
}

.contact-page form {
    background: var(--card-bg);
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px var(--shadow);
}

/* make fields full width on small screens */
.contact-page .col-12 {
    /* keep default */
}


/* Header / Navigation (improved) */
/* Sticky header with soft background, rounded corners and gentle shadow for separation */
.site-header {
    background: white;
    border-bottom: 2px solid rgba(0, 168, 232, 0.08);
    position: sticky;
    top: 30px; /* Below announcement bar */
    z-index: 80;
    padding: 1px 0;
    margin: 0;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 168, 232, 0.12);
}

.nav-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.25rem 12px;
    justify-content: space-between;
}

.top-logo-wrap {
    max-height: 60px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.top-logo-wrap img {
    max-height: 60px;
    width: auto;
    display: block;
}

.logo {
    font-weight: 800;
    color: var(--gold);
    text-decoration: none;
    font-size: 1.15rem;
    letter-spacing: 0.6px;
    padding: 6px 8px;
}

/* Accessible, integrated search area (desktop). Hidden at small widths via media queries for compact header */
.search-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 640px;
    margin: 0 1rem;
}

.search-input {
    flex: 1;
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 999px 0 0 999px;
    outline: none;
    background: transparent;
    font-size: 0.95rem;
}

.search-input:focus {
    box-shadow: 0 6px 14px rgba(184, 134, 11, 0.12);
}

.search-btn {
    padding: 0.66rem 0.92rem;
    border: none;
    border-radius: 0 999px 999px 0;
    background: var(--gold);
    color: white;
    cursor: pointer;
    font-weight: 700;
}

/* Nav actions: larger tap targets, visual contrast for icons */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.cart-btn {
    position: relative;
    border: none;
    background: rgba(0, 168, 232, 0.08);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cart-btn:hover {
    background: rgba(0, 168, 232, 0.16);
    transform: scale(1.05);
}

.cart-btn:focus {
    outline: 3px solid rgba(0, 168, 232, 0.25);
}

.cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #c0392b;
    color: white;
    font-size: 0.72rem;
    padding: 3px 6px;
    border-radius: 999px;
}

.menu-toggle {
    display: none;
    border: none;
    background: transparent;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

/* Utility: visually hidden text for screen readers */
.sr-only {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* Mobile menu */
.mobile-menu {
    display: none;
}

/* Hero */
.hero {
    position: relative;
    padding: 3.5rem 0;
    margin-bottom: 1rem;
    background-image: url('https://images.unsplash.com/photo-1526318472351-c75fcf0701b5?auto=format&fit=crop&w=1600&q=60');
    background-size: cover;
    background-position: center;
    color: white;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 15, 10, 0.35), rgba(10, 7, 3, 0.6));
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

.hero-content {
    position: relative;
    padding: 4rem 0;
    text-align: center;
}

.hero-title {
    font-size: 2.2rem;
    margin: 0 0 0.6rem;
    color: #fff8e6;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.4);
}

.hero-sub {
    margin: 0 0 1rem;
    color: #fdeec8;
}

.btn-primary {
    display: inline-block;
    background: var(--gold);
    color: white;
    padding: 0.75rem 1.1rem;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(184, 134, 11, 0.18);
}

/* Smooth scrolling for internal links */
html {
    scroll-behavior: smooth;
}

/* Desktop primary nav */
.main-nav {
    display: flex;
    gap: 1.2rem;
    margin-left: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: var(--text);
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    background: rgba(0, 168, 232, 0.12);
    color: var(--sky-primary);
}

/* Categories grid */
.categories {
    padding: 1.6rem 0 2.2rem;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.category-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    padding-bottom: 1rem;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

.category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.category-card h3 {
    margin: 0.8rem 0 0.25rem;
}

.category-card p {
    margin: 0 1rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

/* Categories section: kept minimal. Removed large inactive `.category-card.sale-card` rules. */
/* Cart drawer */
.cart-drawer {
    position: fixed;
    right: 0;
    top: 0;
    width: 340px;
    height: 100vh;
    background: #fffaf3;
    box-shadow: -6px 0 24px rgba(0, 0, 0, 0.12);
    transform: translateX(110%);
    transition: transform 260ms ease;
    z-index: 80;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.cart-items {
    padding: 1rem;
    overflow: auto;
    flex: 1;
}

.cart-footer {
    padding: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.empty {
    color: var(--muted);
}

/* Cart row / controls */
.cart-row {
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-row button {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
}

.cart-row .buy-now {
    background: var(--sky-primary);
    color: #fff;
    border: none;
}

.cart-row .remove-item {
    background: transparent;
    color: #c0392b;
    border: none;
}

.cart-row .save-item {
    background: #fff3cd;
    color: #7a5a00;
    border: none;
}

/* Saved list styles */
.saved-items {
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    padding: 12px 0;
    background: transparent;
}

.saved-list .saved-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.04);
}

.saved-list .saved-row img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
}

.saved-list .move-to-cart {
    background: var(--sky-primary);
    color: #fff;
    border: none;
    padding: 6px 8px;
    border-radius: 6px;
    cursor: pointer;
}

/* Snackbar undo */
.snackbar {
    display: flex;
    align-items: center;
    gap: 8px;
}

.snackbar button {
    background: transparent;
    color: inherit;
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
}

/* Price display: regular (MRP) + sale price + badge */
.price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-regular {
    color: var(--muted);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.price {
    font-weight: 700;
    color: var(--text);
    font-size: 1.05rem;
}

.sale-badge {
    background: var(--sky-primary);
    color: #fff;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 0.85rem;
}

/* Modern Add to Cart button */
.add-cart {
    background: #f8d303;
    /* match .view-all-btn */
    color: #000000;
    border: none;
    padding: 14px 18px;
    border-radius: 8px;
    width: auto;
    min-width: 70px;
    height: auto;
    cursor: pointer;
    font-weight: 700;
    font-size: 11px;
    line-height: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: filter 120ms ease, transform 120ms ease, background 120ms ease;
    text-align: center;
    position: absolute;
    bottom: 15px;
    right: 15px;
    box-shadow: 0 4px 12px rgba(0, 168, 232, 0.3);
    white-space: nowrap;
}

.add-cart:hover {
    background: #333333;
    /* same hover as .view-all-btn */
    color: #ffffff;
    filter: brightness(1.02);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 168, 232, 0.4);
}

.add-cart:active {
    transform: translateY(0);
}

/* Ensure product card footer positions price left and add-cart button on the right */
.card-footer,
.product-card .card-footer,
.product-details .card-footer {
    display: flex !important;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    min-height: auto;
    justify-content: flex-start;
}

.card-footer .price,
.card-footer .price-wrap {
    margin-right: 8px;
}

.card-footer .add-cart,
.product-card .add-cart,
.product-details .add-cart {
    margin-left: auto !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: static !important;
    bottom: auto !important;
    right: auto !important;
}

/* Sale badge is visible now; color defined later. Previously hidden rule removed. */
/* .badge-tag { display: none !important; } (removed) */

/* Responsive rules */
@media (max-width: 900px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .main-nav {
        display: none;
    }

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

    .nav-row > img {
        max-width: 180px;
    }

    .top-logo-wrap img {
        max-width: 200px;
    }
}

@media (max-width: 640px) {
    .nav-row {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0.5rem 12px;
        justify-content: space-between;
        align-items: center;
    }

    .nav-row > img {
        max-width: 150px;
        order: 2;
    }

    .top-logo-wrap img {
        max-width: 150px;
    }

    .search-wrap {
        display: none;
    }

    .menu-toggle {
        display: inline-block;
        order: 1;
    }

    .nav-actions {
        order: 3;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .collections-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
    }

    .main-nav {
        display: none;
    }

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

    .category-card img {
        height: 160px;
    }

    /* Mobile menu styles */
    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid rgba(0, 168, 232, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        z-index: 100;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block !important; /* Override hidden attribute */
    }

    .mobile-menu:not([hidden]) {
        max-height: 500px;
    }

    .mobile-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        color: var(--text);
        text-decoration: none;
        transition: background 0.2s ease;
    }

    .mobile-menu a:hover {
        background: rgba(0, 168, 232, 0.05);
    }
}

/*collection scroll slide*/
body {
    overflow-x: hidden;
    /* Screen se bahar na jaye */
    background-color: #eaf5fa !important;
}

/* Ensure Add-to-Cart color displays consistently across pages and overrides per-page rules */
.product-card .add-cart,
.product-details .add-cart,
.add-cart {
    background: #f8d303 !important;
    /* same as View All */
    color: #000000 !important;
    border: none !important;
    z-index: 20 !important;
}

/* Hover state consistent */
.product-card .add-cart:hover,
.add-cart:hover {
    background: #333333 !important;
    color: #ffffff !important;
}

.slider-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: linear-gradient(135deg, rgba(240, 249, 255, 0.5), rgba(224, 242, 254, 0.5));
    border-radius: 20px;
    margin: 20px 0;
}

.slider-track {
    display: flex;
    width: max-content;
    /* Speed yahan se control karein (20s) */
    animation: scroll-nonstop 15s linear infinite;
}

.circle-item {
    width: 240px;
    text-align: center;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0 15px;
    position: relative;
}

.circle-item::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(32, 130, 79, 0.1), rgba(130, 177, 125, 0.1));
    z-index: -1;
    opacity: 0;
    transition: all 0.5s ease;
}

.circle-item img {
    width: 180px;
    height: 180px;
    border: 4px solid transparent;
    background: linear-gradient(135deg, #ffffff, #f8f9fa) padding-box,
                linear-gradient(135deg, var(--sky-primary), var(--sky-deep)) border-box;
    cursor: pointer;
    border-radius: 20px;
    box-shadow:
        0 10px 30px rgba(32, 130, 79, 0.15),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 2px 5px rgba(255, 255, 255, 0.8),
        inset 0 -2px 5px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.circle-item img::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg) translate(-100%, -100%);
    transition: all 0.6s ease;
    opacity: 0;
}

.circle-item p {
    margin-top: 15px;
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.circle-item p a {
    text-decoration: none;
    color: inherit;
    position: relative;
}

.circle-item p a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--sky-primary), var(--sky-deep));
    transition: width 0.3s ease;
}

/* Hover par modern effects */
.circle-item:hover {
    transform: translateY(-20px) scale(1.08);
}

.circle-item:hover::before {
    opacity: 1;
    transform: scale(1.1);
}

.circle-item:hover img {
    transform: rotate(0deg) scale(1.05);
    box-shadow:
        0 20px 40px rgba(32, 130, 79, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.15),
        inset 0 3px 8px rgba(255, 255, 255, 0.9),
        0 0 30px rgba(32, 130, 79, 0.2);
}

.circle-item:hover img::after {
    opacity: 1;
    transform: rotate(45deg) translate(0, 0);
}

.circle-item:hover p {
    color: var(--sky-primary);
    transform: translateY(-5px);
}

.circle-item:hover p a::after {
    width: 100%;
}

/* Gaadi ke jaise chalne wala animation */
@keyframes scroll-nonstop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mouse le jane par ruk jaye */
.slider-track:hover {
    animation-play-state: paused;
}

/*holi collection*/
/* Card Container */
.product-card {
    transition: all 0.3s ease;
    background: #fff;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Image Wrapper */
.product-card img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* Image Box Container */
.img-box {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

/* Product Info Section */
.product-info {
    padding: 15px;
    padding-bottom: 85px;
    position: relative;
}

/* Badge Styling */
.badge-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #8fd19a;
    /* lighter green */
    color: #06391b;
    font-size: 13px;
    font-weight: bold;
    padding: 18px 24px;
    border-radius: 8px;
    width: auto;
    min-width: 75px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 4px 12px rgba(34, 139, 34, 0.08);
    white-space: nowrap;
}

/* Title & Price */
.product-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #222;
    height: 40px;
    /* Text alignment ke liye */
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-weight: 700;
    font-size: 16px;
    color: #1a1a1a;
}

/* Responsive button for Wishlist (Optional) */
.overlay-btns {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
    z-index: 3;
}

.product-card:hover .overlay-btns {
    bottom: 20px;
}

.btn-white {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Link se blue line hatane ke liye */
.circle-item a {
    text-decoration: none !important;
    /* Underline khatam karne ke liye */
    color: inherit;
    /* Taki text ka color black hi rahe blue na ho */
    display: block;
}

/* Link jaisa feel dene ke liye Hover Effect */
.circle-item a p:hover {
    color: #ff4081;
    /* Mouse le jane par color pink ho jayega */
    transform: scale(1.05);
    /* Thoda sa bada dikhega */
    transition: all 0.3s ease;
}

/* Ek choti si attractive dot ya line hover par (Idea) */
.circle-item a p {
    position: relative;
    display: inline-block;
}

/* Blue line ki jagah niche ek stylish dot dikhegi jab mouse jayega */
.circle-item a p::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 50%;
    background-color: #ff4081;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.circle-item a:hover p::after {
    width: 20px;
    /* Hover par choti line dikhegi jo modern lagti hai */
}

/* Product Grid Section */
.view-all-btn {
    background-color: #f8d303;
    color: #000000;
    padding: 10px 30px;
    text-decoration: none;
    font-size: 14px;
    text-transform: uppercase;
    transition: 0.3s;
}

.view-all-btn:hover {
    background-color: #333;
    color: #fff;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-img-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.product-img-container img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-details {
    padding: 15px 5px;
}

.product-title {
    font-size: 14px;
    color: #333;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
    line-height: 1.4;
}

.rating {
    font-size: 12px;
    color: #000;
    margin-bottom: 5px;
}

.price {
    font-weight: bold;
    font-size: 16px;
    color: #1a1a1a;
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-title {
        font-size: 13px;
    }

    .price {
        font-size: 14px;
    }
}

/* Footer Main Styling */
.footer-section {
    background-color: #ffffff;
    /* Halka cream color jo traditional lage */
    padding: 80px 0 30px;
    border-top: 1px solid #eee;
    color: #333;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-about {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
}

/* Blue line hatane ke liye special code */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    text-decoration: none !important;
    /* No blue line */
    color: #555;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #ff4081;
    padding-left: 5px;
    /* Chota sa animation */
}

/* Social Media Icons Styling */
.social-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #333;
    text-decoration: none !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: #fff;
}

.social-icon.whatsapp:hover {
    background: #25D366;
}

.social-icon.instagram:hover {
    background: #E1306C;
}

.social-icon.facebook:hover {
    background: #1877F2;
}

.footer-contact {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

.copyright-text {
    font-size: 13px;
    color: #999;
}

/*banner */
/* Slideshow container */
.slideshow-container {
    max-width: 2800px;
    position: relative;
    margin: auto;
    max-height: 550px;
    overflow: hidden;
}

/* Slideshow section wrapper */
.slideshow-section {
    padding: 28px 0;
}

.slideshow-wrapper {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 8px;
}

.slideshow-dots {
    padding-top: 10px;
}

/* Hide the images by default */
.mySlides {
    display: none;
}

/* Set width for slide images */
.mySlides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Next & previous buttons */
.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
}

/* Position the "next button" to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Caption text */
.text {
    color: #221e1e;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    bottom: 8px;
    width: 100%;
    text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}

/* The dots/bullets/indicators */
.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* Slide animation - right to left */
/*.fade {
    animation-name: slideRightToLeft;
    animation-duration: 10.5s;
}*/

@keyframes slideRightToLeft {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.shop-btn {
    background-color: #ffc107;
    color: #000;
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
}

.shop-btn:hover {
    background-color: #000;
    color: #fff;
    transform: scale(1.1);
}

/* Mobile ke liye settings */
@media (max-width: 768px) {
    .responsive-banner {
        max-height: 300px;
        /* Mobile par height kam rakhi hai */
    }

    .shop-btn {
        padding: 6px 15px;
        font-size: 12px;
    }
}

/* Announcement bar (thin fixed top bar) */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 34px;
    background: #fff3e6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 9999;
    font-family: Arial, sans-serif;
}

/* Track that scrolls left→right */
.announcement-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-right 22s linear infinite;
}

/* Items */
.announcement-track span {
    white-space: nowrap;
    padding: 6px 28px;
    font-size: 13px;
    font-weight: 600;
    color: #111;
}

/* Pause when hovering */
.announcement-bar:hover .announcement-track {
    animation-play-state: paused;
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .announcement-track {
        animation: none;
    }
}

/* Keyframes: start shifted left (-50%) then move to 0 → left-to-right motion */
@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Add body top padding so page content is not hidden under the fixed bar */
body {
    padding-top: 34px;
}

/* Announcement bar (top of page) */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff3e6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    z-index: 90;
    display: flex;
    align-items: center;
    height: 30px;
    /* thin bar like the screenshot */
}

.announcement-track {
    display: flex;
    width: max-content;
    animation: scroll-right 22s linear infinite;
}

.announcement-track span {
    white-space: nowrap;
    padding: 4px 18px;
    font-size: 12px;
    font-weight: 600;
    color: #111;
}

@media (max-width: 640px) {
    .announcement-bar {
        height: 25px;
    }
    .announcement-track span {
        font-size: 10px;
        padding: 4px 12px;
    }
}

.add-cart {
    background: var(--sky-primary);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.95rem;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: filter 120ms ease, transform 120ms ease;
    white-space: nowrap;
}

/* Reduce horizontal margins (left/right padding) on all pages
     Override Bootstrap container padding to make content wider on small screens */
.container,
.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

@media (min-width: 992px) {

    /* no gutters on wide screens */
    .container,
    .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* Page header with inline cart button */
.page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 1rem;
}

.page-header .page-title {
    margin: 20px;
    font-size: 1.6rem;
}

.inline-cart {
    background: rgba(0, 168, 232, 0.08);
    border: none;
    padding: 6px 10px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.inline-cart .cart-icon {
    font-size: 1.1rem;
}

.inline-cart .cart-count {
    background: #c0392b;
    color: #fff;
    font-size: 0.72rem;
    padding: 2px 6px;
    border-radius: 999px;
}

@media (max-width: 640px) {
    .page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .page-header .page-title {
        font-size: 1.25rem;
    }
}

/* Strong override: make all pages' horizontal gutters match the front page
     This forces a consistent max-width and small side padding regardless of page-specific CSS. */
/*.container, .container-fluid {
    max-width: 1180px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    /*padding-left: 1rem !important;
    padding-right: 1rem !important;
}*/
@media (max-width: 991px) {

    .container,
    .container-fluid {
        padding-left: 0rem !important;
        padding-right: 0rem !important;
    }
}


/* floating WhatsApp contact button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 10px;
        right: 10px;
    }
}

.filter-bar {
    margin: 10px;
}

.footer-section {
    margin: 10px;
}

/* Sale Badge and Pricing Styles */
.price-section {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

.discount-price {
    color: var(--sky-primary);
    font-size: 1.05rem;
    font-weight: bold;
}

.sale-badge {
    background: linear-gradient(135deg, #ff4081, #f50057);
    color: white;
    border: none;
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 6px;
    transition: all 0.3s ease;
}

.sale-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 64, 129, 0.3);
}

/* ---------------- Full Image Banner Slider Styles ---------------- */
.banner-slider {
    position: relative;
    width: 100%;
    min-height: 55vh;
    max-height: 75vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    touch-action: pan-y;
    aspect-ratio: 16 / 9;
}
.banner-slides {
    position: relative;
    width: 100%;
    height: 100%;
}
.banner-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner-slide.active {
    opacity: 1;
    visibility: visible;
}
.banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    will-change: transform;
}
.banner-prev, .banner-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.42);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    font-size: 1.45rem;
    transition: transform 0.2s ease, background 0.25s ease;
}
.banner-prev:hover, .banner-next:hover, .banner-prev:focus, .banner-next:focus {
    background: rgba(0, 0, 0, 0.7);
    transform: translateY(-50%) scale(1.05);
}
.banner-prev { left: 16px; }
.banner-next { right: 16px; }
.banner-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}
.banner-dots button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.68);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}
.banner-dots button:hover, .banner-dots button:focus {
    background: rgba(255, 255, 255, 0.92);
    transform: scale(1.15);
}
.banner-dots button.active {
    background: var(--sky-primary);
    transform: scale(1.3);
    box-shadow: 0 4px 10px rgba(32, 130, 79, 0.35);
}
@media (max-width: 992px) {
    .banner-slider {
        min-height: 45vh;
        max-height: 55vh;
    }
    .slide-caption {
        bottom: 6%;
        padding: 1rem 1.1rem;
    }
    .banner-prev, .banner-next {
        width: 42px;
        height: 42px;
    }
}
@media (max-width: 640px) {
    .banner-slider {
        min-height: 38vh;
        max-height: 48vh;
    }
    .slide-caption {
        width: calc(100% - 24px);
        padding: 0.95rem 1rem;
        bottom: 5%;
    }
    .banner-prev, .banner-next {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    .banner-dots {
        bottom: 14px;
        gap: 8px;
    }
    .banner-dots button {
        width: 12px;
        height: 12px;
    }
}

