:root {
    --gv-pink: #db2777;
    --gv-pink-light: #fdf2f8;
    --gv-dark: #111827;
    --gv-gray: #4b5563;
    --gv-light-bg: #f3f4f6;
    --gv-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --gv-radius: 12px;
}

html, body {
    overflow-x: hidden !important; /* Kill any potential horizontal scrolling on iOS */
    width: 100%;
}
body {
    background-color: #fff;
    color: var(--gv-dark);
    max-width: 100vw;
    position: relative;
}

/* SECTION GLOBAL */
.gv-section {
    padding: 60px 0;
    overflow-x: hidden !important;
    max-width: 100%;
}

@media (max-width: 768px) {
    .gv-section {
        padding: 20px 0 !important;
    }
    .gv-section-header.mb-5, .gv-section-header.mb-4 {
        margin-bottom: 20px !important;
    }
}

/* HERO SECTION */
.gv-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gv-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.4) 0%, rgba(30, 41, 59, 0.4) 100%);
    z-index: 1;
}

.gv-hero-skyline {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important; /* Full stretch */
    opacity: 1; /* Full visibility as background */
    pointer-events: none;
    z-index: 1;
    object-fit: cover; /* Fully cover the area */
}

.gv-hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gv-hero-content {
    width: 100%;
    max-width: 800px;
    text-align: center;
    color: #fff;
    margin: 0 auto;
}

.gv-hero-title {
    font-size: 36px; /* Reduced from 48px */
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-transform: none;
    line-height: 1.2;
}

.gv-hero-title span {
    display: block;
    font-size: 100px; /* Reduced from 124px */
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -2px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3); /* Better visibility against images */
}

@media (max-width: 900px) {
    .gv-hero { 
        height: 260px !important; /* Exact GoValy compact height */
        justify-content: flex-start !important;
        padding-top: 40px !important; /* Lower padding to sit content perfectly */
    }
    .gv-hero-title { 
        font-size: 18px !important; 
        margin-bottom: 5px !important;
    }
    .gv-hero-title span { 
        font-size: 32px !important; /* Matching GoValy's large text vibe */
    }
    .gv-hero-content { 
        margin-top: 0 !important; 
    }
    .gv-search-container {
        margin-top: 15px !important;
        max-width: 90%;
    }
    .gv-search-bar {
        height: 45px !important;
        font-size: 0.95rem !important;
        padding: 0 100px 0 20px !important;
    }
    .gv-search-btn {
        padding: 0 20px !important;
    }
}

@media (max-width: 480px) {
    .gv-hero {
        height: 260px !important;
    }
    .gv-hero-title span {
        font-size: 30px !important;
    }
}

.gv-search-container {
    max-width: 550px; /* Reduced from 600px */
    margin: 35px auto 0; /* Reduced from 48px */
    position: relative;
}

.gv-search-bar {
    width: 100%;
    height: 52px;
    padding: 0 120px 0 30px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    font-size: 1.1rem;
    outline: none;
    background: #fff;
}

.gv-search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    background: var(--gv-pink);
    color: #fff;
    border: none;
    padding: 0 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: background 0.2s;
}

.gv-search-btn:hover {
    background: #be185d;
}

/* CATEGORY GRID OVERHAUL */
.gv-category-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr); /* Matching GoValy desktop columns */
    gap: 12px;
    padding: 20px 0;
}

.gv-cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #1f2937;
    transition: transform 0.2s ease-in-out;
}

.gv-cat-card:hover {
    transform: scale(1.05); /* Clean GoValy hover scale */
}

.gv-cat-img-box {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f3f4f6; /* Matching sky-50/light gray vibe */
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.gv-cat-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gv-cat-img-box i {
    font-size: 2rem;
    color: var(--gv-pink);
}

.gv-cat-card span {
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    display: block;
}

/* CAROUSEL (PEEK-A-BOO) */
.gv-carousel-wrapper-peek {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

.gv-carousel-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 20px;
    height: 450px; /* Exact GoValy height */
}

.gv-carousel-track {
    display: flex;
    transition: transform 0.5s ease-out;
    height: 100%;
}

.gv-carousel-slide {
    flex: 0 0 80%; /* 80% width for peek effect */
    height: 100%;
    margin-right: 15px;
    border-radius: 24px;
    overflow: hidden;
}

.gv-carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .gv-carousel-container {
        height: 175px; /* Exact GoValy mobile height */
    }
    .gv-carousel-slide {
        flex: 0 0 85%;
        margin-right: 10px;
        border-radius: 12px;
    }
}

.gv-carousel-wrapper-peek {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
}

/* ICON BOXES */
.gv-icon-boxes-section {
    background: #f8f8f8;
    padding: 30px 0;
}

.gv-icon-boxes-container {
    display: flex;
    gap: 15px;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 15px;
}

.gv-icon-box {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.gv-icon-box:hover {
    transform: translateY(-2px);
}

.gv-ib-icon i {
    font-size: 24px;
    color: var(--gv-pink);
}

.gv-ib-content {
    display: flex;
    flex-direction: column;
}

.gv-ib-text {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

.gv-ib-sub {
    font-size: 12px;
    color: #666;
    margin-top: 2px;
}

.gv-ib-sub .highlight {
    color: var(--gv-pink);
    font-weight: 700;
}

@media (max-width: 768px) {
    .gv-icon-boxes-container {
        padding: 0 10px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: 100%;
    }
    .gv-icon-boxes-container::-webkit-scrollbar {
        display: none;
    }
    .gv-icon-box {
        flex: 0 0 auto;
        flex-direction: column;
        text-align: center;
        padding: 12px;
        gap: 8px;
        min-width: 110px;
    }
    .gv-ib-icon img {
        width: 24px;
        height: 24px;
    }
    .gv-ib-text {
        font-size: 11px;
        white-space: normal;
    }
}

.gv-offers-slider {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 20px 0;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}
.gv-offers-slider::-webkit-scrollbar { display: none; }

.gv-offer-slide {
    flex: 0 0 calc(100% / 5 - 10px); /* Exactly 5 items on desktop */
    scroll-snap-align: start;
}

.gv-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: var(--gv-pink);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gv-carousel-btn:hover {
    background: var(--gv-pink);
    color: #fff;
}

.gv-carousel-btn.prev { left: -10px; }
.gv-carousel-btn.next { right: -10px; }

@media (max-width: 768px) {
    .gv-offer-slide {
        flex: 0 0 calc(40% - 5px); /* Peek-a-boo layout on mobile */
    }
    .gv-carousel-btn { display: none; } /* Hide buttons on mobile */
    .gv-carousel-wrapper { padding: 0; }
}

.gv-offer-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.2s ease;
    height: 100%;
}

.gv-offer-card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.gv-offer-img {
    width: 100%;
    aspect-ratio: 1/1;
    background: #f0f9fa; /* Light cyan background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.gv-offer-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gv-offer-footer {
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
}

.gv-offer-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    border-right: 1px solid #e5e7eb;
    padding-right: 10px;
    min-width: 50px;
}

.gv-offer-pct {
    color: var(--gv-pink);
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
}

.gv-offer-off {
    color: #000;
    font-weight: 800;
    font-size: 10px;
    margin-top: 2px;
}

.gv-offer-name {
    flex: 1;
    font-size: 11px;
    font-weight: 600;
    color: #374151;
    line-height: 1.2;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* CAROUSEL DOTS */
.gv-offer-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
}

.gv-dot {
    width: 6px;
    height: 6px;
    background: #d1d5db;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.gv-dot.active {
    width: 32px;
    height: 6px;
    background: var(--gv-pink);
    border-radius: 9999px;
}

/* SINGLE BANNER (PIC 2) */
.gv-banner-section {
    padding: 20px 0; /* Vertical spacing */
}

.gv-banner-single {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 16px; /* Measured: rounded-2xl */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.gv-banner-img {
    width: 100%;
    aspect-ratio: 11 / 3; /* Exact GoValy proportion */
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gv-banner-single:hover .gv-banner-img {
    transform: scale(1.03);
}

@media (max-width: 991px) {
    .gv-banner-img {
        aspect-ratio: 16 / 9; /* More standard mobile ratio */
    }
}

/* DOUBLE BANNER SECTION */
.gv-banner-double-section {
    padding: 10px 0 20px 0;
}

.gv-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px; /* Measured: Tailwind gap-4 */
    margin-bottom: 20px;
}

.gv-banner-link {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9; /* Strict GoValy proportion */
    overflow: hidden;
    border-radius: 8px; /* Measured: rounded-lg */
    position: relative;
    background: #eee;
}

.gv-banner-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gv-banner-link:hover img {
    transform: scale(1.05); /* Match GoValy hover scale */
}

/* TOP BRANDS (PIC 3) */
.gv-title-styled {
    font-size: 1.5rem;
    font-weight: 700;
    display: block; /* Full width for centering */
    text-align: center;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 25px;
}
.gv-title-styled::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px; /* Measured: 50px bar */
    height: 3px;
    background: var(--gv-pink);
    border-radius: 10px;
}

.gv-brands-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 12px;
}
.gv-brand-card {
    background: #fff;
    border: 1px solid #f1f1f1;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column; /* Allow bottom stacking */
    align-items: center;
    justify-content: center;
    position: relative;
    text-decoration: none;
    aspect-ratio: 3/2; /* Measured approx 136x88 */
    overflow: hidden;
    transition: all 0.3s ease;
}

.gv-brand-card img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.gv-brand-card:hover img {
    transform: translateY(-8px) scale(0.9); /* Tilt up to make room */
}

.gv-brand-hover {
    position: absolute;
    bottom: 8px; /* Stick to bottom */
    left: 0;
    right: 0;
    background: transparent;
    color: var(--gv-dark); /* Dark text like GoValy */
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px); /* Slide up on hover */
}

.gv-brand-card:hover .gv-brand-hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* PRODUCT GRID ENHANCED (PIC 4) */
.gv-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gv-product-card {
    background: #fff;
    border-radius: 12px;
    padding: 12px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #f9fafb;
    display: flex;
    flex-direction: column;
}

.gv-product-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: #fce7f3;
}

.gv-product-top {
    margin-bottom: 8px;
}

.gv-shop-under {
    display: block;
    font-size: 0.75rem;
    color: var(--gv-gray);
    margin-bottom: 2px;
}

.gv-product-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--gv-pink);
}

.gv-product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 12px;
    border-radius: 8px;
    overflow: hidden;
}

.gv-product-img {
    display: block;
    width: 100%;
    height: 100%;
}

.gv-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Premium Actions Overlay */
.gv-product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none; /* Let clicks pass through to image link unless hover */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gv-product-card:hover .gv-product-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Sidebar Actions (Wishlist/View) */
.gv-overlay-side {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(20px);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gv-product-card:hover .gv-overlay-side {
    transform: translateX(0);
}

.gv-action-btn {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #374151;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
}

.gv-action-btn:hover {
    background: var(--gv-pink);
    color: #fff;
}

/* Bottom Actions (Cart/Buy) */
.gv-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 10px;
    padding: 12px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gv-product-card:hover .gv-overlay-bottom {
    transform: translateY(0);
}

:root {
    --gv-pink: #e91e63;
}

/* Main Header */
.gv-main-header {
    background: var(--gv-pink) !important;
    color: #fff;
    height: 70px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Home Page specific: Always visible now */
.home-page .gv-main-header {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.gv-header-action {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    color: #fff !important;
    text-decoration: none;
    font-size: 11px;
    font-weight: 500;
    gap: 2px;
    padding: 0 5px;
    transition: opacity 0.2s;
}
.gv-header-action span {
    display: block !important;
    white-space: nowrap;
}
.gv-header-action:hover { opacity: 0.8; }
.gv-header-action i { font-size: 22px; line-height: 1; }

.gv-icon-with-badge {
    position: relative;
    display: flex;
}
.gv-icon-with-badge .badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #fff;
    color: var(--gv-pink);
    font-size: 10px;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 18px;
}

.gv-app-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff !important;
    text-decoration: none;
    padding-right: 15px;
}
.gv-app-link i { font-size: 30px; }
.gv-app-text { display: flex; flex-direction: column; line-height: 1.2; }
.gv-app-text small { font-size: 10px; opacity: 0.9; }
.gv-app-text span { font-size: 13px; font-weight: 700; }

.gv-header-divider {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 15px;
}

.gv-header-container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.gv-header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.gv-hamburger {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.gv-logo img {
    height: 35px;
    width: auto;
}

/* Search Box in Header */
.gv-header-search {
    flex: 1;
    max-width: 600px;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.gv-header-search.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Force visible on non-home pages */
body:not(.home-page) .gv-header-search {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.gv-search-input-group {
    display: flex;
    background: #fff;
    border-radius: 50px;
    padding: 4px;
    overflow: hidden;
}

.gv-search-input-group input {
    flex: 1;
    border: none;
    padding: 8px 20px;
    outline: none;
    font-size: 14px;
}

.gv-search-input-group button {
    background: var(--gv-pink);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gv-header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.gv-header-icon {
    color: #fff;
    font-size: 22px;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.gv-header-icon .badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #fff;
    color: var(--gv-pink);
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Category Drawer */
.gv-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 5000 !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

body.overflow-hidden {
    overflow: hidden !important;
    height: 100vh !important;
}

.gv-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gv-category-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    height: 100dvh; /* Use dynamic viewport height for mobile browsers */
    background: #fff;
    z-index: 5100 !important;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.gv-category-drawer.active {
    transform: translateX(0);
}

.gv-drawer-header {
    background: var(--gv-pink);
    color: #fff;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gv-drawer-header h5 {
    margin: 0;
    font-weight: 700;
}

.gv-close-drawer {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
}

.gv-drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px 0;
}

.gv-drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-bottom: 30px; /* Space after the last category */
}

.gv-drawer-menu li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #374151;
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
}

.gv-drawer-menu li a:hover {
    background: #fdf2f8;
    color: var(--gv-pink);
    border-left-color: var(--gv-pink);
}

.gv-drawer-menu li a i {
    width: 25px;
    margin-right: 10px;
    font-size: 18px;
}

/* Drawer Footer / Contact Info */
.gv-drawer-footer {
    padding: 20px 20px 80px 20px; /* Extra bottom padding for mobile safe area */
    border-top: 1px solid #f3f4f6;
    background: #f9fafb;
}

.gv-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #4b5563;
    font-size: 14px;
}

.gv-contact-item i {
    color: var(--gv-pink);
    font-size: 18px;
}

.gv-contact-item span {
    font-weight: 600;
}

@media (max-width: 768px) {
    .gv-header-search {
        display: none; /* Hide in main bar, maybe show search icon */
    }
    .gv-main-header {
        height: 60px;
    }
}

.gv-btn-cart, .gv-btn-buy {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gv-btn-cart {
    background: #0d6b52; /* Greenish-Teal GoValy style */
    color: #fff;
}

.gv-btn-buy {
    background: #d19e5e; /* Caramel GoValy style */
    color: #fff;
}

.gv-btn-cart:hover, .gv-btn-buy:hover {
    filter: brightness(1.1);
}

.gv-product-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gv-dark);
    text-decoration: none;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top: auto; /* Push to bottom of flex container */
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .gv-brands-grid { grid-template-columns: repeat(6, 1fr); }
}
@media (max-width: 1024px) {
    .gv-category-grid { grid-template-columns: repeat(6, 1fr); }
    .gv-ibox-grid { grid-template-columns: repeat(2, 1fr); }
    .gv-brands-grid { grid-template-columns: repeat(4, 1fr); }
    .gv-product-card { padding: 8px; }
}

@media (max-width: 768px) {
    .gv-category-grid { 
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important; 
        gap: 6px !important;
        column-gap: 8px !important;
        padding: 10px 0 !important;
    }
    .gv-cat-img-box {
        border-radius: 12px !important;
    }
    .gv-cat-card span {
        font-size: 10px !important;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .gv-offer-card span {
        font-size: 10px !important;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .gv-offer-slide {
        flex: 0 0 calc(40% - 5px); /* 2.5 items mobile approx */
    }
    .gv-banner-grid { grid-template-columns: 1fr; }
    .gv-carousel-slide { flex: 0 0 95%; }
    .gv-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .gv-brands-grid { 
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 10px;
        padding-bottom: 15px;
        scrollbar-width: none;
    }
    .gv-brands-grid::-webkit-scrollbar { display: none; }
    .gv-brand-card {
        flex: 0 0 110px;
        aspect-ratio: 3/2;
    }
    /* .gv-offer-card { flex: 0 0 240px; } Removed to fix overflow */
}

@media (max-width: 480px) {
    .gv-ibox-grid { grid-template-columns: 1fr; }
    .gv-brands-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
