:root {
    --primary: #6366f1;
    /* Indigo 500 */
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    /* Emerald 500 */
    --dark: #1f2937;
    /* Gray 800 */
    --light: #f9fafb;
    /* Gray 50 */
    --text: #374151;
    /* Gray 700 */
    --text-light: #6b7280;
    /* Gray 500 */
    --white: #ffffff;
    --border: #e5e7eb;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--light);
    margin: 0;
    line-height: 1.6;
    font-size: clamp(14px, 1vw + 12px, 16px);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Layout */
.container {
    max-width: 1400px; /* Increased from 1200px to accommodate wide header */
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 0;
}

/* Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.02);
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px; /* Reduced from 30px */
}

.nav-links a:not(.btn-nav) {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
    position: relative;
    padding: 5px 0;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-nav):hover {
    color: var(--primary);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: var(--primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600 !important;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hide hamburger on desktop */
.mobile-menu-toggle {
    display: none;
}

.btn-nav:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(99, 102, 241, 0.3);
}

/* Hero */
.hero {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Hero Gradient – main homepage banner */
.hero-gradient {
    position: relative;
    background: linear-gradient(-45deg, var(--primary), var(--secondary), var(--hero-c3, #a855f7), var(--hero-c4, #ec4899));
    background-size: 400% 400%;
    animation: heroShift 15s ease infinite;
    color: white;
    padding: 110px 0 90px;
    text-align: center;
    /* NO overflow:hidden here - that would clip the search dropdown */
}

@keyframes heroShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}





.hero-content {
    position: relative;
    z-index: 2;
}

.hero-gradient h1 {
    color: white !important;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-gradient p {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Hero Search Bar */
.hero-search-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 680px;
    margin: 0 auto;
    background: white;
    border-radius: 60px;
    padding: 8px 8px 8px 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s;
}

.hero-search-wrapper:focus-within {
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.35);
}

/* Inner flex row: icon + input */
.hero-search-inner {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 10px;
    position: relative;
    min-width: 0;
}

.hero-search-inner ion-icon {
    color: #9ca3af;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.hero-search-inner .ajax-search-input {
    flex: 1;
    min-width: 0;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    color: #1f2937 !important;
    font-size: 1.05rem;
    font-family: inherit;
    padding: 10px 0 !important;
    width: 100% !important;
}

.hero-search-inner .ajax-search-input::placeholder {
    color: #9ca3af !important;
}

/* Search results dropdown */
.hero-search-inner .search-results-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: -35px;
    right: 0;
    z-index: 1000;
}

/* Hero discover button */
.btn-discover {
    background: var(--primary, #6366f1);
    color: white;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.7px;
    font-family: inherit;
}

.btn-discover:hover {
    background: var(--primary-dark, #4f46e5);
    transform: scale(1.04);
    box-shadow: 0 6px 24px rgba(99, 102, 241, 0.5);
}

/* Hero Stagger Animations */
@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-stagger {
    opacity: 0;
    animation: heroFadeUp 0.7s ease forwards;
}

.hero-stagger-1 {
    animation-delay: 0.1s;
}

.hero-stagger-2 {
    animation-delay: 0.25s;
}

.hero-stagger-3 {
    animation-delay: 0.4s;
}

/* ============================================================
   SEARCH RESULTS DROPDOWN  (shared: hero + listing page)
   ============================================================ */
.search-results-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow-y: auto;
    max-height: 420px;
    z-index: 9999;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    border-bottom: 1px solid #f3f4f6;
    transition: background 0.15s;
    cursor: pointer;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f9fafb;
}

.search-result-thumb {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    background: #f3f4f6;
}

.search-result-info {
    flex: 1;
    min-width: 0;
}

.search-result-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: #111827 !important;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
}

.search-result-title:hover {
    color: var(--primary) !important;
}

.search-result-cat {
    font-size: 0.78rem;
    color: #6b7280;
    display: block;
    margin-top: 2px;
}

.search-result-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 4px;
}

.search-quick-view-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    flex-shrink: 0;
    white-space: nowrap;
}

.search-quick-view-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.03);
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Make the hero-search-inner position:relative so dropdown attaches to it */
.hero-search-inner {
    position: relative;
}

.btn-hero {
    background: var(--primary);
    color: white;
    padding: 12px 30px;
    font-size: 1.1rem;
    border-radius: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Product Grid */
.grid {
    display: grid;
    /* Default to 4 on older browsers or if --cols isn't set, else use the variable */
    grid-template-columns: repeat(var(--cols, 4), minmax(0, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.product-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f3f4f6;
}

.product-body {
    padding: 20px;
}

.product-tag {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--dark);
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap; /* Prevent collision on small cards */
    gap: 10px;
}

.old-price {
    font-size: 0.9rem;
    text-decoration: line-through;
    color: var(--text-light);
    font-weight: 400;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer a {
    color: #9ca3af;
    display: block;
    margin-bottom: 10px;
}

.footer a:hover {
    color: white;
}

.copyright {
    text-align: center;
    border-top: 1px solid #374151;
    padding-top: 20px;
    color: #6b7280;
    font-size: 0.9rem;
}

/* Global Trust Banner Fixes */
.trust-banner {
    background: var(--primary);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-banner .container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    border: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-success {
    background: var(--secondary);
    color: white;
}

/* Responsive Design Updates */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }

    .grid {
        grid-template-columns: repeat(min(var(--cols, 3), 3), minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .grid {
        grid-template-columns: repeat(min(var(--cols, 2), 2), minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1240px) {
    .navbar .container {
        height: auto;
        padding: 10px 20px;
        flex-wrap: wrap;
    }

    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 2rem;
        cursor: pointer;
        color: var(--dark);
        padding: 0;
        margin-left: auto;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        padding: 15px 0;
        gap: 15px;
        border-top: 1px solid var(--border);
        margin-top: 15px;
        max-height: 80vh; /* Ensure long menus are scrollable */
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links a {
        font-size: 1rem;
        padding: 10px 0;
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-links a:last-child {
        border-bottom: none;
    }

    .lang-switcher,
    .custom-lang-switcher,
    .currency-switcher {
        width: 100%;
        justify-content: flex-start;
        margin-bottom: 10px;
        margin-right: 0;
        display: flex;
    }

    .btn-nav {
        text-align: center;
        width: calc(100% - 40px) !important;
        margin: 10px 0;
    }

    .cart-icon-link {
        justify-content: flex-start !important;
        padding-top: 10px !important;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 40px 0;
    }
}

@media (max-width: 640px) {
    .grid {
        /* Force 1 column on mobile regardless of admin setting */
        grid-template-columns: 1fr !important;
    }

    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    /* Hero Search Form Stacking */
    .hero-search-form {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .hero-search-form input {
        width: 100% !important;
        min-width: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-search-form button {
        width: 100% !important;
        margin-top: 0 !important;
    }

    /* Responsive Table to Cards */
    .responsive-table thead {
        display: none;
    }

    .responsive-table tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid var(--border) !important;
        border-radius: 8px;
    }

    .responsive-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: right !important;
        padding: 12px 15px !important;
        border-bottom: 1px solid #f3f4f6;
    }

    .responsive-table td::before {
        content: attr(data-label);
        font-weight: 600;
        text-align: left;
    }

    .responsive-table td:last-child {
        border-bottom: none;
    }

    /* Trust banner adjustments for mobile */
    .trust-banner .container {
        gap: 15px;
        flex-direction: column;
        align-items: center;
    }

    .trust-banner span {
        width: 100%;
        justify-content: center;
    }

    /* Footer adjustments */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col a,
    .footer-col span {
        justify-content: center;
    }
}

/* Utility Classes */
.hide-mobile {
    @media (max-width: 768px) {
        display: none !important;
    }
}

.show-mobile {
    @media (min-width: 769px) {
        display: none !important;
    }
}

.text-center-mobile {
    @media (max-width: 768px) {
        text-align: center !important;
    }
}

/* --- Modern UI Additions --- */
.hero-gradient {
    position: relative;
    padding: 100px 0;
    text-align: center;
    color: white;
    z-index: 10;
    overflow: hidden;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary);
    /* Fallback */
    z-index: 1;
}

.hero-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 2;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 5;
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Staggering */
.hero-stagger {
    opacity: 0;
    animation: slideUpFade 0.8s cubic-bezier(0.5, 0, 0, 1) forwards;
}

.hero-stagger-1 {
    animation-delay: 0.1s;
}

.hero-stagger-2 {
    animation-delay: 0.3s;
}

.hero-stagger-3 {
    animation-delay: 0.5s;
}

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Category Cards */
.cat-card-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 15px;
    border-radius: 16px;
    text-decoration: none;
    color: #111827;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: brightness(0.95);
    z-index: -1;
    transition: all 0.3s ease;
    opacity: 0;
}

.cat-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.cat-card-modern:hover::before {
    opacity: 1;
}

.cat-card-modern ion-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.cat-card-modern:hover ion-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Hero Search Bar */
.hero-search-wrapper {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    background: white;
    padding: 8px;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease;
}

.hero-search-wrapper:focus-within {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3), 0 0 0 4px rgba(99, 102, 241, 0.2);
}

/* AJAX Search Results Dropdown */
.search-container {
    position: relative;
    flex: 1;
}

.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    margin-top: 10px;
    overflow: hidden;
    display: none;
    max-height: 400px;
    overflow-y: auto;
    border: 1px solid var(--border);
}

.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    gap: 15px;
    border-bottom: 1px solid #f3f4f6;
    transition: 0.2s;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: #f9fafb;
}

.search-result-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 4px;
    background: #f3f4f6;
}

.search-result-info {
    flex: 1;
}

.search-result-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
    margin: 0;
    display: block;
}

.search-result-cat {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.search-result-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 0.9rem;
}

.search-quick-view-btn {
    padding: 6px 12px;
    color: var(--primary);
    background: #e0e7ff;
    border-radius: 20px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    white-space: nowrap;
}

.search-quick-view-btn:hover {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 6px rgba(99, 102, 241, 0.2);
    transform: translateY(-1px);
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Quick View Modal Styles */
.qv-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.qv-modal-content {
    background-color: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    animation: qvScaleIn 0.3s ease-out;
}

@keyframes qvScaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.qv-close {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 28px;
    color: #9ca3af;
    cursor: pointer;
    z-index: 10;
    transition: 0.2s;
}

.qv-close:hover {
    color: var(--dark);
}

.qv-modal-body {
    padding: 0;
}

.qv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.qv-image-side {
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.qv-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.qv-info-side {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

/* Quick View Button on Card */
.product-img-wrapper .quick-view-btn {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(99, 102, 241, 0.9);
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    z-index: 5;
}

.product-img-wrapper:hover .quick-view-btn {
    bottom: 0;
}

@media (max-width: 768px) {
    .qv-grid {
        grid-template-columns: 1fr;
    }

    .qv-image-side {
        height: 250px;
    }

    .qv-info-side {
        padding: 20px;
    }

    .product-img-wrapper .quick-view-btn {
        bottom: 0;
        background: rgba(99, 102, 241, 0.7);
    }
}