/* Gift Shop (OyeHappy-inspired) UI layer
 * This file sits on top of the existing theme CSS and only uses .gs-* classes,
 * so it is safe to include globally without breaking admin.
 */

:root {
    --gs-color-primary: #E11D48;
    /* Vibrant Rose Red */
    --gs-color-primary-dark: #BE123C;
    --gs-color-secondary: #334155;
    --gs-color-accent-coral: #FB7185;
    /* Softer, more modern coral */
    --gs-color-accent-teal: #2DD4BF;
    --gs-color-bg: #FFF9FA;
    /* Extremely soft ivory/pink background */
    --gs-color-surface: #FFFFFF;
    --gs-color-border: #F1F5F9;
    --gs-color-text: #0F172A;
    /* Deeper slate for better contrast */
    --gs-color-text-muted: #64748B;
    --gs-color-success: #10B981;
    --gs-color-warning: #F59E0B;
    --gs-color-error: #EF4444;

    /* Premium Design Tokens */
    --gs-shadow-sm: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --gs-shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --gs-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --gs-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --gs-radius-button: 12px;
    --gs-radius-card: 16px;
    --gs-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body.gs-body {
    background: var(--gs-color-bg);
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    color: var(--gs-color-text);
    font-size: 18px;
    /* Increased from 16px */
    line-height: 1.6;
}

.gs-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.gs-main {
    flex: 1 0 auto;
}

.gs-footer-wrap {
    flex-shrink: 0;
}

/* Premium Homepage Hero Section */
.gs-hero-premium {
    background: radial-gradient(circle at top left, #FFF8F9 0%, #FFF1F3 50%, #FFE4E6 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.gs-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
}

.gs-hero-text {
    flex: 1.2;
    max-width: 650px;
    z-index: 2;
}

.gs-hero-heading {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 4.5rem;
    /* Increased from 4rem */
    line-height: 1;
    margin-bottom: 2.5rem;
    color: var(--gs-color-text);
    letter-spacing: -3px;
}

.gs-hero-subtitle {
    font-size: 1.25rem;
    /* Larger, clearer */
    color: var(--gs-color-text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 550px;
}

.gs-eyebrow {
    display: inline-flex;
    align-items: center;
    font-size: 1rem;
    /* Increased from 0.9rem */
    text-transform: uppercase;
    letter-spacing: 0.25rem;
    font-weight: 700;
    color: var(--gs-color-primary);
    margin-bottom: 2.5rem;
    background: rgba(225, 29, 72, 0.08);
    padding: 0.6rem 1.5rem;
    border-radius: 99px;
    backdrop-filter: blur(4px);
}

.gs-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.gs-hero-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
}

.gs-search-tag {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    background: #ffffff;
    padding: 0.55rem 1.4rem;
    border-radius: 99px;
    text-decoration: none;
    transition: var(--gs-transition);
    border: 1.5px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    display: inline-block;
}

.gs-search-tag:hover {
    color: var(--gs-color-primary);
    border-color: var(--gs-color-primary);
    background: #fff1f2;
    box-shadow: 0 4px 16px rgba(225, 29, 72, 0.15);
    transform: translateY(-2px);
    text-decoration: none;
}

.gs-hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.gs-hero-image-main {
    max-width: 110%;
    height: auto;
    border-radius: 32px;
    box-shadow: 0 40px 80px rgba(225, 29, 72, 0.2);
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: var(--gs-transition);
}

.gs-hero-visual:hover .gs-hero-image-main {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

@media (max-width: 991.98px) {
    .gs-hero-premium {
        padding: 6rem 0;
    }

    .gs-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 4rem;
    }

    .gs-hero-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .gs-hero-heading {
        font-size: 3rem;
    }

    .gs-hero-image-main {
        max-width: 90%;
        transform: none;
    }
}

.gs-section {
    padding: 4rem 0;
    /* 64px */
}

.gs-section-alt {
    background: #FFFFFF;
}

.gs-section-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gs-section-header h2 {
    font-family: 'Poppins', system-ui, sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0;
}

.gs-link {
    font-size: .9rem;
    color: var(--gs-color-secondary);
    font-weight: 500;
}

.gs-link:hover {
    color: var(--gs-color-primary-dark);
}

/* Top Category Ribbon (OyeHappy Style) */
.gs-top-categories-wrap {
    background-color: #fff;
    padding: 1.5rem 0 1rem;
    border-bottom: 1px solid var(--gs-color-border);
}

.gs-top-categories {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 0.5rem;
    justify-content: center;
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.gs-top-categories::-webkit-scrollbar {
    display: none;
}

.gs-top-category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    width: 110px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.gs-top-category-item:hover {
    transform: translateY(-3px);
    text-decoration: none;
}

.gs-top-category-img-wrap {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    background: #FDE68A;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.8rem;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.gs-top-category-item:hover .gs-top-category-img-wrap {
    box-shadow: 0 6px 18px rgba(225, 29, 72, 0.15);
}

.gs-top-category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gs-top-category-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: var(--gs-color-text);
    font-size: 1.1rem;
    /* Increased for better visibility */
    text-align: center;
    white-space: normal;
    line-height: 1.2;
}

/* Recipient Navigation Grid */
.gs-recipient-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.gs-recipient-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    text-decoration: none;
    transition: var(--gs-transition);
    box-shadow: var(--gs-shadow-lg);
}

.gs-recipient-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gs-recipient-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    color: #fff;
    text-align: center;
}

.gs-recipient-card h3 {
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.gs-recipient-card span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.gs-recipient-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gs-shadow-xl);
}

.gs-recipient-card:hover img {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .gs-recipient-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gs-recipient-grid {
        grid-template-columns: 1fr;
    }
}

/* 3-Step Guide (Experience Section) */
.gs-experience-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.gs-step-item {
    position: relative;
}

.gs-step-icon {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: var(--gs-color-primary);
    box-shadow: var(--gs-shadow-lg);
}

.gs-step-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.gs-step-item p {
    color: var(--gs-color-text-muted);
    font-size: 1.1rem;
}

/* Connecting arrows in desktop */
@media (min-width: 992px) {
    .gs-step-item:not(:last-child)::after {
        content: '\e87a';
        /* icon-arrow-right icon font assumed */
        font-family: 'molla';
        /* assuming theme uses molla icons */
        position: absolute;
        top: 50px;
        right: -1.5rem;
        transform: translateX(50%);
        font-size: 1.5rem;
        color: var(--gs-color-border);
    }
}

@media (max-width: 991px) {
    .gs-experience-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Testimonial Section */
.gs-testimonial-carousel {
    padding: 2rem 0;
}

.gs-testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--gs-shadow-md);
    margin: 1rem;
    position: relative;
    border: 1px solid var(--gs-color-border);
}

.gs-testimonial-content {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--gs-color-text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.gs-testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gs-author-img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.gs-author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.gs-author-info span {
    color: var(--gs-color-text-muted);
    font-size: 0.9rem;
}

.gs-star-rating {
    color: #FBBF24;
    margin-bottom: 1rem;
}

/* Immersive Trust Bar */
.gs-trust-bar {
    background: linear-gradient(135deg, var(--gs-color-secondary) 0%, #1e293b 100%);
    color: #fff;
    padding: 5rem 0;
}

.gs-trust-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.gs-trust-icon {
    font-size: 2.5rem;
    color: var(--gs-color-accent-teal);
}

.gs-trust-text h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.gs-trust-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 991.98px) {
    .gs-top-categories {
        justify-content: flex-start;
        gap: 1.5rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

.gs-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
    gap: 1.25rem;
}

/* Best Selling Categories (OyeHappy Style) */
.gs-best-selling-section {
    padding: 4rem 0 5rem;
    background-color: #fff;
}

.gs-best-selling-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gs-best-selling-title-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gs-view-all-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.gs-best-selling-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    /* 32px */
    font-weight: 700;
    color: var(--gs-color-text);
    margin-bottom: 1.5rem;
}

.gs-best-selling-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.gs-pill-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.8rem;
    /* Increased padding */
    background: #fff;
    border: 1px solid #FFE4E6;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    /* Increased from 0.9rem */
    color: var(--gs-color-text);
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.gs-pill-btn:hover {
    border-color: var(--gs-color-primary);
    background: #FFF0F2;
    text-decoration: none;
}

.gs-pill-btn.active {
    background: #FFF0F2;
    border-color: var(--gs-color-primary);
    color: var(--gs-color-primary);
}

.gs-pill-btn img,
.gs-pill-btn i {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    object-fit: contain;
}

.gs-best-sellers-grid {
    display: grid;
    gap: 1.5rem;
    /* 24px */
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 1199.98px) {
    .gs-best-sellers-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .gs-best-sellers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .gs-best-sellers-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.gs-product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.gs-badge-primary {
    background: rgba(225, 29, 72, 0.08);
    color: var(--gs-color-primary);
    border: 1px solid rgba(225, 29, 72, 0.15);
    backdrop-filter: blur(4px);
}

.gs-badge-offer {
    background: #FEE2E2;
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.gs-product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 1.25rem;
}

.gs-btn-sm {
    padding: 0.6rem 1.25rem;
    font-size: 0.85rem;
}

.gs-product-quick-btn {
    width: 44px;
    height: 44px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 800;
    line-height: 1;
    transition: var(--gs-transition);
}

.gs-product-quick-btn i {
    margin: 0;
    font-size: 1.1rem;
}

.gs-product-view-btn {
    border-radius: 12px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: normal;
    transition: var(--gs-transition);
}

.gs-product-view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.2);
}

/* Trending / New Arrivals carousel */
.gs-trending-section .owl-nav [class*='owl-'] {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gs-trending-section .owl-nav [class*='owl-'] i {
    font-size: 1.4rem;
}

/* Personalized highlight */
.gs-personalized-highlight {
    background: linear-gradient(135deg, #FFF0F2 0%, #FFE4E6 100%);
}

.gs-personalized-banner {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 22px;
    padding: 2.25rem;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.gs-personalized-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2.2rem;
    letter-spacing: -0.5px;
    margin-bottom: .75rem;
}

.gs-personalized-examples {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.gs-personalized-card {
    display: flex;
    flex-direction: column;
    gap: .6rem;
    text-decoration: none;
    color: var(--gs-color-text);
    background: #fff;
    border-radius: 18px;
    padding: .75rem;
    border: 1px solid rgba(226, 232, 240, 0.9);
    transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.gs-personalized-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(225, 29, 72, 0.12);
    border-color: rgba(225, 29, 72, 0.25);
}

.gs-personalized-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 14px;
}

.gs-personalized-card span {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 0.95rem;
    text-align: center;
}

@media (max-width: 991.98px) {
    .gs-personalized-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gs-personalized-examples {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .gs-personalized-examples {
        grid-template-columns: 1fr;
    }

    .gs-personalized-card img {
        height: 160px;
    }
}

.gs-product-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    border-radius: 12px;
    background: #fff;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid transparent;
}

.gs-product-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.gs-product-media {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 1 / 1;
    background: #f8fafc;
}

.gs-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gs-product-card:hover .gs-product-media img {
    transform: scale(1.03);
}

.gs-product-body {
    padding: 1.25rem 0.5rem 0.5rem;
    position: relative;
}

.gs-product-rating {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gs-color-text-muted);
    margin-bottom: 0.4rem;
}

.gs-product-rating i {
    color: #FBBF24;
    font-size: 0.8rem;
}

.gs-product-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    height: 3.2rem;
    display: flex;
    align-items: flex-start;
}

.gs-product-title a {
    color: var(--gs-color-text);
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gs-product-price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0;
}

.gs-price-discounted {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gs-color-text);
}

.gs-price-original {
    color: var(--gs-color-text-muted);
    text-decoration: line-through;
    font-size: 0.95rem;
}

.gs-add-cart-circle {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 32px;
    height: 32px;
    background: var(--gs-color-accent-coral);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.2s ease, background 0.2s ease;
}

.gs-add-cart-circle:hover {
    transform: scale(1.1);
    background: #ff5252;
    color: #fff;
}

/* Base button overrides to avoid conflicts */
.gs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--gs-radius-button);
    padding: 0.75rem 1.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--gs-transition);
    gap: 0.5rem;
}

.gs-btn-primary {
    background-color: var(--gs-color-primary);
    color: #FFFFFF;
    box-shadow: 0 10px 15px -3px rgba(225, 29, 72, 0.25);
}

.gs-btn-primary:hover {
    background-color: var(--gs-color-primary-dark);
    box-shadow: 0 20px 25px -5px rgba(225, 29, 72, 0.3);
    transform: translateY(-2px);
    color: #FFFFFF;
}

.gs-btn-secondary {
    background-color: #FFFFFF;
    color: var(--gs-color-secondary);
    border: 1px solid var(--gs-color-border);
    box-shadow: var(--gs-shadow-sm);
}

.gs-btn-secondary:hover {
    background-color: #fff;
    border-color: var(--gs-color-primary);
    color: var(--gs-color-primary);
    box-shadow: var(--gs-shadow-md);
    transform: translateY(-2px);
}

.gs-btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1.1rem;
}

.gs-btn-block {
    width: 100%;
}

.gs-card {
    background-color: #FFFFFF;
    border-radius: var(--gs-radius-card);
    border: 1px solid var(--gs-color-border);
    box-shadow: var(--gs-shadow-lg);
    padding: 1.5rem;
    transition: var(--gs-transition);
}

.gs-card:hover {
    box-shadow: var(--gs-shadow-xl);
    transform: translateY(-4px);
}

.gs-input {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--gs-color-border);
    background-color: #F8FAFC;
    font-size: 0.95rem;
    transition: var(--gs-transition);
}

.gs-input:focus {
    outline: none;
    border-color: var(--gs-color-primary);
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
    background-color: #FFFFFF;
}

/* Personalization Option Specific */
.gs-personalization-input {
    background-color: #FAFAFA;
    border: 1px dashed #CBD5E1;
    text-align: center;
    padding: 1rem;
    cursor: pointer;
}

.gs-personalization-input:hover {
    border-color: var(--gs-color-primary);
    background-color: #FFF5F7;
}

.gs-upload-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--gs-color-primary);
}

.gs-input-textarea {
    min-height: 6rem;
    resize: vertical;
}

.gs-form-group {
    margin-bottom: .9rem;
}

.gs-form-group label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: .25rem;
}

.gs-input-meta {
    display: flex;
    justify-content: flex-end;
    font-size: .75rem;
    color: var(--gs-color-text-muted);
    margin-top: .2rem;
}

.gs-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.gs-required {
    color: var(--gs-color-error);
}

.gs-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-size: .7rem;
    padding: .25rem .6rem;
    font-weight: 600;
}

.gs-badge-success {
    background-color: #DCFCE7;
    color: #166534;
}

.gs-badge-offer {
    background-color: #FEF3C7;
    color: #92400E;
}

.gs-product-card {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 1.1rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .08);
    transition: transform .15s ease, box-shadow .15s ease;
}

.gs-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .14);
}

.gs-product-media {
    position: relative;
    background-color: #FFF7E9;
    padding: .75rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gs-product-media img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: .9rem;
}

.gs-wishlist-btn {
    position: absolute;
    top: .7rem;
    right: .7rem;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: none;
    background-color: rgba(255, 255, 255, .9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(15, 23, 42, .14);
}

.gs-product-body {
    padding: .8rem .9rem 1rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.gs-product-title {
    font-size: .95rem;
    font-weight: 600;
    margin: 0;
    color: var(--gs-color-text);
}

.gs-product-subtitle {
    font-size: .8rem;
    color: var(--gs-color-text-muted);
    margin: 0;
}

.gs-product-price {
    display: flex;
    align-items: baseline;
    gap: .3rem;
}

.gs-price-discounted {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gs-color-secondary);
}

.gs-price-original {
    font-size: .8rem;
    color: #9CA3AF;
    text-decoration: line-through;
}

.gs-text-muted {
    color: var(--gs-color-text-muted);
}

.gs-personalization {
    margin-top: 1.25rem;
}

.gs-personalization .gs-card-header h3 {
    margin: 0 0 .25rem;
    font-size: 1rem;
}

.gs-personalization .gs-card-header p {
    margin: 0;
    font-size: .8rem;
    color: var(--gs-color-text-muted);
}

@media (max-width: 767.98px) {
    .gs-hero {
        padding: 2.25rem 1rem 2.5rem;
    }

    .gs-hero-content {
        grid-template-columns: minmax(0, 1fr);
    }

    .gs-hero-text h1 {
        font-size: 1.7rem;
    }
}

/* Authentication Page Styles (OyeHappy Style) */
.gs-auth-split-card {
    display: flex;
    background: #fff;
    border-radius: 20px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-height: 600px;
}

.gs-auth-image-side {
    width: 45%;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.gs-auth-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
    z-index: 1;
}

.gs-auth-brand-text {
    position: relative;
    z-index: 2;
}

.gs-auth-form-side {
    width: 55%;
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 991.98px) {
    .gs-auth-split-card {
        flex-direction: column;
        max-width: 500px;
    }

    .gs-auth-image-side {
        width: 100%;
        min-height: 250px;
    }

    .gs-auth-image-overlay {
        padding: 2rem;
    }

    .gs-auth-brand-text h2 {
        font-size: 1.8rem !important;
    }

    .gs-auth-form-side {
        width: 100%;
        padding: 3rem 2rem;
    }
}

.gs-auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.gs-auth-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--gs-color-text);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.gs-auth-subtitle {
    color: var(--gs-color-text-muted);
    font-size: 0.95rem;
}

.gs-auth-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--gs-color-border);
}

.gs-auth-tab {
    background: none;
    border: none;
    padding: 0.5rem 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--gs-color-text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.gs-auth-tab.active {
    color: var(--gs-color-primary);
}

.gs-auth-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--gs-color-primary);
    border-radius: 3px 3px 0 0;
}

.gs-auth-form-wrapper {
    display: none;
    animation: fadeIn 0.4s ease;
}

.gs-auth-form-wrapper.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Floating Label Inputs */
.gs-form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.gs-form-control {
    width: 100%;
    padding: 1.4rem 1rem 0.6rem;
    font-size: 1.2rem;
    font-family: 'Poppins', sans-serif;
    border: 1px solid var(--gs-color-border);
    border-radius: 8px;
    background-color: #fcfcfc;
    transition: all 0.2s ease;
    color: var(--gs-color-text);
}

.gs-form-control:focus {
    outline: none;
    border-color: var(--gs-color-primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.gs-form-label {
    position: absolute;
    top: 50%;
    left: 1.2rem;
    transform: translateY(-50%);
    font-size: 1.1rem;
    color: var(--gs-color-text-muted);
    pointer-events: none;
    transition: all 0.2s ease;
    margin: 0;
}

.gs-form-control:focus~.gs-form-label,
.gs-form-control:not(:placeholder-shown)~.gs-form-label {
    top: 0.7rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gs-color-primary);
}

.gs-form-error {
    color: #E11D48;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.gs-form-hint {
    font-size: 0.85rem;
    margin-top: 0.35rem;
    display: block;
    font-weight: 500;
}

.gs-auth-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.gs-auth-forgot {
    color: var(--gs-color-primary);
    font-weight: 500;
}

.gs-auth-submit {
    padding: 0.85rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.gs-auth-divider {
    text-align: center;
    position: relative;
    margin: 2rem 0;
    color: var(--gs-color-text-muted);
    font-size: 0.9rem;
}

.gs-auth-divider::before,
.gs-auth-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background-color: var(--gs-color-border);
}

.gs-auth-divider::before {
    left: 0;
}

.gs-auth-divider::after {
    right: 0;
}

.gs-auth-divider span {
    background: #fff;
    padding: 0 10px;
    font-weight: 500;
}

.gs-btn-outline {
    background-color: transparent;
    border: 1px solid var(--gs-color-border);
    color: var(--gs-color-text);
    font-weight: 500;
}

.gs-btn-outline:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
}

/* Feature Grid Banners (Why Shop With Us) */
.gs-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gs-feature-banner {
    background: #FFF0F2;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

.gs-feature-banner:nth-child(2) {
    background: #F0F9FF;
    /* Soft Blue */
}

.gs-feature-banner:nth-child(3) {
    background: #F0FDF4;
    /* Soft Green */
}

.gs-feature-banner:hover {
    transform: translateY(-8px);
}

.gs-feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--gs-color-primary);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.gs-feature-banner:nth-child(2) .gs-feature-icon {
    color: #0EA5E9;
}

.gs-feature-banner:nth-child(3) .gs-feature-icon {
    color: #10B981;
}

.gs-feature-banner h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--gs-color-text);
    margin-bottom: 0.8rem;
}

.gs-feature-banner p {
    color: var(--gs-color-text-muted);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 991.98px) {
    .gs-features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Premium Gift Shop Header CSS */
.gs-header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--gs-color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.gs-header-main {
    padding: 1.25rem 0;
}

.gs-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Area */
.gs-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.gs-logo {
    color: var(--gs-color-primary) !important;
    font-family: 'Outfit', sans-serif !important;
    font-weight: 800 !important;
    font-size: 2.2rem !important;
    letter-spacing: -1px;
    margin: 0;
    line-height: 1;
}

/* Search Box Area */
.gs-header-center {
    flex: 1;
    max-width: 850px;
    /* Increased from 600px */
    margin: 0 auto;
    /* Centered */
}

.gs-search-wrapper {
    display: flex;
    align-items: center;
    background-color: #f8fafc;
    border: 1px solid var(--gs-color-border);
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 1.8rem;
    /* More breathable padding */
    transition: all 0.2s ease;
    position: relative;
    /* For results dropdown */
}

.gs-search-wrapper:focus-within {
    border-color: var(--gs-color-primary);
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
}

.gs-search-input {
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.95rem;
    color: var(--gs-color-text);
    height: auto;
    flex: 1;
}

.gs-search-input:focus {
    outline: none;
    background: transparent;
    box-shadow: none;
}

.gs-search-btn {
    background: transparent;
    border: none;
    color: var(--gs-color-text-muted);
    font-size: 1.1rem;
    padding: 0.5rem;
    cursor: pointer;
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gs-search-btn:hover {
    color: var(--gs-color-primary);
    background: transparent;
}

/* Header Right Actions */
.gs-header-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.gs-header-action {
    display: flex;
    align-items: center;
}

.gs-link-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--gs-color-text-muted);
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.gs-link-text:hover {
    color: var(--gs-color-primary);
    text-decoration: none;
}

.gs-action-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--gs-color-text);
    text-decoration: none;
    position: relative;
    gap: 0.25rem;
    transition: color 0.2s ease;
}

.gs-action-icon:hover {
    color: var(--gs-color-primary);
    text-decoration: none;
}

.gs-action-icon i {
    font-size: 1.8rem;
    /* Increased from 1.4rem for better visibility */
}

.gs-action-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gs-color-text-muted);
}

.gs-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
    line-height: 1;
    white-space: nowrap;
}

/* Floating badge for icons (Cart, Wishlist, etc.) */
.gs-badge-floating {
    position: absolute;
    top: -5px;
    right: -8px;
    min-width: 18px;
    height: 18px;
    padding: 0;
    border-radius: 9px;
    font-size: 0.65rem;
    border: 2px solid #fff;
}

/* Bottom Navigation Bar */
.gs-header-nav {
    background-color: #fff;
    border-top: 1px solid var(--gs-color-border);
}

.gs-nav-container {
    display: flex;
    align-items: center;
}

.gs-nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.gs-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.gs-menu-link {
    display: block;
    padding: 1rem 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gs-color-text);
    transition: color 0.2s ease;
    text-transform: none;
    letter-spacing: normal;
}

.gs-menu-link:hover {
    color: var(--gs-color-primary);
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .gs-header-right {
        gap: 1rem;
    }

    .gs-action-text {
        display: none;
    }
}

/* Product Action Buttons */
.gs-action-buttons .gs-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 54px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.gs-btn-outline {
    background: #fff;
    border: 2px solid var(--gs-color-primary);
    color: var(--gs-color-primary);
}

.gs-btn-outline:hover {
    background: rgba(255, 78, 80, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 78, 80, 0.1);
}

.gs-btn-primary:active,
.gs-btn-outline:active {
    transform: translateY(0);
}

.gs-btn-xl {
    height: 64px !important;
    font-size: 1.15rem !important;
    letter-spacing: 1px !important;
}

.gs-btn-block {
    width: 100% !important;
}

/* Related Products */
.gs-related-products {
    border-top: 1px solid var(--gs-color-border);
    padding-top: 4rem;
}

/* Personalization Toggle */
.gs-personalization-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--gs-color-primary), #ff8e53);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 4px 10px rgba(255, 78, 80, 0.3);
}

.gs-switch {
    position: relative;
    width: 50px;
    height: 26px;
}

.gs-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.gs-switch label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e2e8f0;
    transition: .4s;
    border-radius: 34px;
    margin-bottom: 0;
}

.gs-switch label:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.gs-switch input:checked+label {
    background-color: var(--gs-color-primary);
}

.gs-switch input:checked+label:before {
    transform: translateX(24px);
}

.gs-premium-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 2.25rem;
    color: var(--gs-color-text);
}

.gs-price-discounted {
    color: var(--gs-color-primary);
    font-weight: 800;
    font-size: 2rem;
}

.gs-price-original {
    font-size: 1.3rem;
}

.gs-badge-offer {
    background: #FEE2E2;
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.1);
    font-size: 0.9rem !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
}

.gs-product-body .gs-price-discounted {
    font-size: 1.25rem;
}

.gs-product-details-premium .product-title {
    font-size: 2.25rem !important;
    font-weight: 800 !important;
    margin-bottom: 1rem !important;
    line-height: 1.2 !important;
}

/* Live Search Results Dropdown */
.gs-search-results-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1001;
    max-height: 450px;
    overflow-y: auto;
    display: none;
    border: 1px solid var(--gs-color-border);
    padding: 1rem 0;
}

.gs-search-result-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    color: var(--gs-color-text);
    transition: background 0.2s ease;
}

.gs-search-result-item:hover {
    background: #f8fafc;
    text-decoration: none;
    color: var(--gs-color-primary);
}

.gs-search-result-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    background: #f1f5f9;
}

.gs-search-result-info {
    flex: 1;
}

.gs-search-result-name {
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

.gs-search-result-price {
    font-size: 0.9rem;
    color: var(--gs-color-text-muted);
}

.gs-search-no-results {
    padding: 2rem;
    text-align: center;
    color: var(--gs-color-text-muted);
}

/* Desktop: make profile and cart icons clearly visible */
@media (min-width: 992px) {

    .gs-account-dropdown .gs-action-icon>i,
    .gs-cart .gs-action-icon>i {
        font-size: 2.4rem;
        line-height: 1;
    }

    .gs-account-dropdown .gs-action-icon,
    .gs-cart .gs-action-icon {
        min-width: 2.4rem;
    }
}

/* ============================================================
   PREMIUM UI ENHANCEMENTS (2025 Refresh)
   ============================================================ */

/* Announcement Bar */
.gs-announcement-bar {
    background: linear-gradient(90deg, var(--gs-color-primary) 0%, #BE123C 100%);
    color: #fff;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    padding: 10px 1rem;
    position: relative;
    letter-spacing: 0.01em;
}

.gs-announcement-bar a {
    color: #fff;
    text-decoration: underline;
}

.gs-announcement-bar a:hover {
    color: #fde8ec;
}

.gs-announcement-dismiss {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0;
}

.gs-announcement-dismiss:hover {
    color: #fff;
}

/* Enhanced Nav Link Hover Effects */
.gs-menu-link {
    position: relative;
}

.gs-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gs-color-primary);
    border-radius: 2px;
    transition: width 0.25s ease;
}

.gs-menu-link:hover::after,
.gs-menu-link.active::after {
    width: 100%;
}

/* Enhanced Product Cards - Hover Wishlist + CTA Overlay */
.gs-product-card {
    position: relative;
}

.gs-product-card .gs-wishlist-hover {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #94a3b8;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.25s ease;
    z-index: 3;
    text-decoration: none;
}

.gs-product-card:hover .gs-wishlist-hover {
    opacity: 1;
    transform: scale(1);
}

.gs-product-card .gs-wishlist-hover:hover {
    color: var(--gs-color-primary);
    background: #fff;
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.2);
}

.gs-product-card .gs-wishlist-hover.active {
    color: var(--gs-color-primary);
    opacity: 1;
    transform: scale(1);
}

/* Slide-up CTA overlay on cards */
.gs-product-media {
    position: relative;
    overflow: hidden;
}

.gs-card-overlay-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 100%);
    display: flex;
    justify-content: center;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gs-product-card:hover .gs-card-overlay-cta {
    transform: translateY(0);
}

.gs-overlay-view-btn {
    background: #fff;
    color: var(--gs-color-primary);
    border: none;
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gs-overlay-view-btn:hover {
    background: var(--gs-color-primary);
    color: #fff;
    text-decoration: none;
}

/* Hero Section Floating Decoration */
.gs-hero-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.gs-hero-deco-1 {
    top: -60px;
    right: -60px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.08) 0%, transparent 70%);
}

.gs-hero-deco-2 {
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251, 113, 133, 0.1) 0%, transparent 70%);
}

.gs-hero-float-emoji {
    position: absolute;
    font-size: 2.5rem;
    animation: floatEmoji 4s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.gs-hero-float-emoji:nth-child(1) {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.gs-hero-float-emoji:nth-child(2) {
    top: 60%;
    right: 5%;
    animation-delay: 1.5s;
    font-size: 1.8rem;
}

.gs-hero-float-emoji:nth-child(3) {
    top: 30%;
    left: 45%;
    animation-delay: 0.8s;
    font-size: 2rem;
}

@keyframes floatEmoji {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(8deg);
    }
}

/* Testimonials - Big Decorative Quote Mark */
.gs-testimonial-card {
    position: relative;
    overflow: hidden;
}

.gs-testimonial-card::before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 8rem;
    line-height: 1;
    color: var(--gs-color-primary);
    opacity: 0.07;
    position: absolute;
    top: -10px;
    left: 10px;
    pointer-events: none;
}

/* Trust Badge Row */
.gs-trust-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gs-color-border);
}

.gs-trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gs-color-text-muted);
}

.gs-trust-badge-item i {
    color: var(--gs-color-success);
    font-size: 1rem;
}

/* Quantity Selector */
.gs-qty-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--gs-color-border);
    border-radius: 12px;
    overflow: hidden;
    width: fit-content;
    background: #fff;
}

.gs-qty-btn {
    background: none;
    border: none;
    width: 40px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gs-color-text);
    transition: background 0.2s;
}

.gs-qty-btn:hover {
    background: #f8fafc;
}

.gs-qty-input {
    border: none;
    border-left: 1.5px solid var(--gs-color-border);
    border-right: 1.5px solid var(--gs-color-border);
    width: 48px;
    height: 44px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    outline: none;
}

/* Newsletter Section */
.gs-newsletter-section {
    background: linear-gradient(135deg, #FFF0F2 0%, #FFE4E6 100%);
    padding: 5rem 0;
    border-top: 1px solid rgba(225, 29, 72, 0.1);
}

.gs-newsletter-inner {
    text-align: center;
    max-width: 580px;
    margin: 0 auto;
}

.gs-newsletter-inner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.gs-newsletter-inner p {
    color: var(--gs-color-text-muted);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.gs-newsletter-form {
    display: flex;
    gap: 0;
    border-radius: 999px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(225, 29, 72, 0.15);
    background: #fff;
    max-width: 460px;
    margin: 0 auto;
}

.gs-newsletter-input {
    flex: 1;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    outline: none;
    background: transparent;
}

.gs-newsletter-btn {
    background: var(--gs-color-primary);
    border: none;
    color: #fff;
    padding: 1rem 1.75rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 0 999px 999px 0;
    transition: background 0.2s;
    white-space: nowrap;
}

.gs-newsletter-btn:hover {
    background: var(--gs-color-primary-dark);
}

/* Social Icons */
.gs-social-icons {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.gs-social-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 1.5px solid var(--gs-color-border);
    color: var(--gs-color-text-muted);
    background: #fff;
}

.gs-social-icon-btn:hover {
    background: var(--gs-color-primary);
    border-color: var(--gs-color-primary);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Scroll to Top Button */
#scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gs-color-primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

#scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-top:hover {
    background: var(--gs-color-primary-dark);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.4);
    transform: translateY(-2px);
}

/* Sticky Product Right Panel */
.gs-product-sticky-panel {
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

/* Product Detail Tab Styling */
.product-details-tab .nav-pills .nav-link {
    border-radius: 50px;
    padding: 0.6rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gs-color-text-muted);
    transition: all 0.2s;
    border: 1.5px solid var(--gs-color-border);
    margin: 0 0.25rem;
}

.product-details-tab .nav-pills .nav-link.active {
    background: var(--gs-color-primary);
    color: #fff;
    border-color: var(--gs-color-primary);
}

/* Trust Bar Icons Colored Circles */
.gs-trust-icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

.gs-trust-icon-circle-teal {
    background: rgba(45, 212, 191, 0.15);
    color: #0d9488;
}

.gs-trust-icon-circle-yellow {
    background: rgba(251, 191, 36, 0.15);
    color: #d97706;
}

.gs-trust-icon-circle-purple {
    background: rgba(167, 139, 250, 0.15);
    color: #7c3aed;
}

/* Category bubbles pastel alternating colors */
.gs-top-category-item:nth-child(1) .gs-top-category-img-wrap {
    background: #FDE68A;
}

.gs-top-category-item:nth-child(2) .gs-top-category-img-wrap {
    background: #FBCFE8;
}

.gs-top-category-item:nth-child(3) .gs-top-category-img-wrap {
    background: #BBF7D0;
}

.gs-top-category-item:nth-child(4) .gs-top-category-img-wrap {
    background: #BFDBFE;
}

.gs-top-category-item:nth-child(5) .gs-top-category-img-wrap {
    background: #FDE68A;
}

.gs-top-category-item:nth-child(6) .gs-top-category-img-wrap {
    background: #DDD6FE;
}

.gs-top-category-item:nth-child(7) .gs-top-category-img-wrap {
    background: #FED7AA;
}

.gs-top-category-item:nth-child(8) .gs-top-category-img-wrap {
    background: #FBCFE8;
}

/* Pulsing badge animation */
@keyframes pulse-badge {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(225, 29, 72, 0);
    }
}

.gs-badge-pulse {
    animation: pulse-badge 2s infinite;
}

/* Product out of stock / add to cart global button loading */
.gs-btn-loading {
    pointer-events: none;
    opacity: 0.7;
}

.gs-btn-loading::after {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-top-color: transparent;
    border-radius: 50%;
    margin-left: 8px;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Category Menu Theme Color Overrides (Replacing default green with primary color) */
.category-dropdown .dropdown-toggle,
.header-10 .category-dropdown .dropdown-toggle,
.header-12 .dropdown.category-dropdown .dropdown-toggle,
.header-13 .dropdown.category-dropdown .dropdown-toggle,
.header-14 .dropdown.category-dropdown .dropdown-toggle {
    background-color: var(--gs-color-primary) !important;
}

.category-dropdown .dropdown-toggle:hover,
.category-dropdown .dropdown-toggle:focus,
.category-dropdown:not(.is-on):hover .dropdown-toggle,
.category-dropdown.show .dropdown-toggle {
    background-color: #be123c !important;
    /* Slightly darker primary color for hover */
    color: #fff !important;
}

.category-dropdown .dropdown-toggle:before {
    background-color: var(--gs-color-primary) !important;
}

/* Category Menu Items (Links and Hover states) */
.menu-vertical li:hover>a,
.menu-vertical li.show>a,
.menu-vertical li.active>a,
.menu-vertical>li:hover>a,
.menu-vertical>li.show>a,
.menu-vertical>li.active>a,
.category-dropdown .dropdown-item:hover,
.category-dropdown .dropdown-item:focus {
    color: var(--gs-color-primary) !important;
}

/* =========================================================
   MOBILE RESPONSIVE — Complete overhaul for all breakpoints
   ========================================================= */

/* ── Tablet (≤ 991px) ── */
@media (max-width: 991px) {

    /* Hero */
    .gs-hero-premium {
        padding: 4rem 0 3rem;
    }

    .gs-hero-content {
        flex-direction: column !important;
        text-align: center;
        gap: 2.5rem;
    }

    .gs-hero-text {
        max-width: 100%;
    }

    .gs-hero-heading {
        font-size: 2.8rem !important;
        letter-spacing: -1px;
    }

    .gs-hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem;
    }

    .gs-hero-actions {
        justify-content: center;
    }

    .gs-hero-tags {
        justify-content: center;
    }

    .gs-hero-visual {
        width: 100%;
        justify-content: center;
    }

    .gs-hero-image-main {
        max-width: 85%;
        transform: none !important;
    }

    .gs-hero-float-emoji {
        display: none;
    }

    /* Top Category Ribbon */
    .gs-top-categories {
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
        gap: 1rem;
    }

    .gs-top-category-img-wrap {
        width: 72px;
        height: 72px;
    }

    .gs-top-category-item {
        width: 82px;
    }

    .gs-top-category-title {
        font-size: 0.9rem;
    }

    /* Best Sellers */
    .gs-best-selling-section {
        padding: 2.5rem 0;
    }

    .gs-best-sellers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .gs-best-selling-pills {
        gap: 0.5rem;
    }

    .gs-pill-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }

    /* Trust Bar */
    .gs-trust-bar .gs-trust-row,
    .gs-trust-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Personalized */
    .gs-personalized-banner {
        grid-template-columns: 1fr !important;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .gs-personalized-title {
        font-size: 1.8rem;
    }

    /* Recipient Grid */
    .gs-recipient-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    /* Section spacing */
    .gs-section {
        padding: 3rem 0;
    }

    /* Stats Bar */
    .gs-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .gs-stat-number {
        font-size: 1.8rem !important;
    }

    /* Occasion Grid */
    .gs-occasion-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem;
    }

    /* Offer Banner */
    .gs-offer-banner {
        flex-direction: column !important;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .gs-offer-title {
        font-size: 1.8rem !important;
    }
}

/* ── Mobile (≤ 767px) ── */
@media (max-width: 767px) {

    /* Hero */
    .gs-hero-premium {
        padding: 3rem 0 2rem;
    }

    .gs-hero-heading {
        font-size: 2.2rem !important;
    }

    .gs-hero-subtitle {
        font-size: 1rem !important;
    }

    .gs-btn-lg {
        font-size: 0.95rem;
        padding: 0.75rem 1.5rem;
    }

    .gs-hero-actions {
        gap: 0.75rem;
    }

    .gs-eyebrow {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    /* Category Ribbon */
    .gs-top-category-img-wrap {
        width: 60px;
        height: 60px;
    }

    .gs-top-category-item {
        width: 70px;
    }

    .gs-top-category-title {
        font-size: 0.78rem;
    }

    /* Best Sellers — 1 col on small phones */
    .gs-best-sellers-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem;
    }

    .gs-best-selling-title {
        font-size: 1.5rem;
    }

    .gs-pill-btn {
        font-size: 0.78rem;
        padding: 0.5rem 1rem;
    }

    .gs-pill-btn img {
        width: 16px;
        height: 16px;
    }

    /* Trust Bar */
    .gs-trust-bar {
        padding: 2.5rem 0;
    }

    .gs-trust-bar .gs-trust-row,
    .gs-trust-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem;
    }

    .gs-trust-item {
        padding: 1.25rem 0.75rem !important;
    }

    .gs-trust-title {
        font-size: 0.88rem !important;
    }

    .gs-trust-copy {
        font-size: 0.78rem !important;
    }

    /* Recipient Grid */
    .gs-recipient-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .gs-recipient-card h3 {
        font-size: 1.1rem;
    }

    /* Personalized */
    .gs-personalized-examples {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.6rem;
    }

    .gs-personalized-card img {
        height: 80px;
    }

    .gs-personalized-title {
        font-size: 1.5rem !important;
    }

    /* Testimonials */
    .gs-testimonial-card {
        padding: 1.2rem;
    }

    .gs-testimonial-content {
        font-size: 0.9rem;
    }

    /* Section spacing */
    .gs-section {
        padding: 2.5rem 0;
    }

    /* Stats */
    .gs-stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .gs-stat-number {
        font-size: 1.6rem !important;
    }

    .gs-stat-label {
        font-size: 0.78rem;
    }

    /* Occasion Grid */
    .gs-occasion-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem;
    }

    .gs-occasion-title {
        font-size: 1rem !important;
    }

    /* Section titles */
    .gs-section-title {
        font-size: 1.6rem !important;
    }

    /* Product Cards */
    .gs-product-title {
        font-size: 0.9rem;
    }

    .gs-price-discounted {
        font-size: 1rem;
    }
}

/* ── Small Phone (≤ 480px) ── */
@media (max-width: 480px) {

    .gs-hero-heading {
        font-size: 1.9rem !important;
    }

    .gs-hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .gs-btn-lg {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .gs-best-sellers-grid {
        grid-template-columns: 1fr !important;
    }

    .gs-recipient-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .gs-trust-bar .gs-trust-row,
    .gs-trust-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .gs-occasion-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .gs-personalized-examples {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .gs-stats-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .gs-search-tag {
        font-size: 0.82rem;
        padding: 5px 10px;
    }

    .gs-top-category-img-wrap {
        width: 54px;
        height: 54px;
    }

    .gs-offer-title {
        font-size: 1.4rem !important;
    }

    .gs-section-title {
        font-size: 1.4rem !important;
    }
}

/* --- Browse Categories Mega Menu Overhaul --- */
.gs-mega-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.1);
    /* Lighter backdrop */
    backdrop-filter: blur(4px);
    z-index: 90;
    /* Lower than header */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.gs-mega-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.gs-mega-menu-panel {
    position: absolute;
    top: 100%;
    /* Below header-bottom */
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 2101;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    display: none;
    flex-direction: column;
    border-top: 1px solid #f1f5f9;
}

.gs-mega-menu-overlay.active .gs-mega-menu-panel {
    display: flex;
    animation: gs-slide-down 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes gs-slide-down {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Header inside panel */
.gs-menu-header {
    padding: 24px 32px;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
}

.gs-menu-search-wrapper {
    flex: 1;
    position: relative;
}

.gs-menu-search-input {
    width: 100%;
    padding: 12px 16px 12px 44px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
    background: #f8fafc;
    transition: all 0.2s;
}

.gs-menu-search-input:focus {
    border-color: var(--gs-color-primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
    outline: none;
}

.gs-menu-search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
}

.gs-btn-close-menu {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.gs-btn-close-menu:hover {
    background: #fee2e2;
    color: #e11d48;
}

/* Single Column Drill-down Mega Menu */
.gs-mega-menu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    width: 380px;
    /* Fixed width for list style */
    background: #fff;
    z-index: 2101;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    display: none;
    flex-direction: column;
    border: 1px solid #f1f5f9;
    border-top: none;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
}

.gs-menu-content-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    background: #fff;
    height: 550px;
    /* Optimal height for list browsing */
}

.gs-menu-drill-down {
    display: flex;
    width: 300%;
    /* Space for Main, Sub, and Child views side-by-side (hidden) */
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gs-menu-view {
    width: 33.3333%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: #fff;
}

.gs-menu-view-header {
    padding: 16px 20px;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
    position: sticky;
    top: 0;
    z-index: 5;
}

.gs-btn-back {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: var(--gs-color-primary);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    padding: 0;
    margin-bottom: 6px;
    transition: transform 0.2s;
}

.gs-btn-back:hover {
    transform: translateX(-4px);
}

.gs-view-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* List Items Styling */
.gs-menu-list {
    padding: 8px 0;
}

.gs-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    color: #475569;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    cursor: pointer;
    border-bottom: 1px solid #f8fafc;
    width: 100%;
}

.gs-menu-item:hover {
    background: #fff1f2;
    color: var(--gs-color-primary);
}

.gs-menu-item-content {
    display: flex;
    align-items: center;
    gap: 14px;
}

.gs-cat-icon {
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    opacity: 0.6;
    color: #64748b;
}

.gs-menu-item:hover .gs-cat-icon {
    color: var(--gs-color-primary);
    opacity: 1;
}

.gs-arrow {
    font-size: 0.75rem;
    opacity: 0.3;
}

.gs-menu-item:hover .gs-arrow {
    opacity: 1;
    transform: translateX(4px);
}


/* Active Trigger Styles */
#gs-category-trigger.active {
    background-color: var(--gs-color-primary) !important;
    color: #fff !important;
    border-radius: var(--gs-radius-button) var(--gs-radius-button) 0 0;
}

#gs-category-trigger.active i::before {
    content: '\f00d';
    /* FontAwesome Xmark */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Ensure the panel is hidden by default and shown with the toggle */
.gs-mega-menu-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /* Center-align full width dropdown if needed, or keep simpler */
}

/* Simplified positioning for the dropdown */
.category-dropdown {
    position: relative;
}

.category-dropdown.active .gs-mega-menu-panel {
    display: flex;
}

/* Fix for multi-column layout duplication */
.gs-menu-view {
    display: none;
    min-width: 100%;
}

.gs-menu-view.active {
    display: block;
}

#gs-view-main {
    display: block;
    /* Main view always base */
}


/* Search Results & Breadcrumbs */
.gs-menu-search-results {
    background: #f8fafc;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 12px;
}

.gs-results-label {
    padding: 12px 24px;
    font-size: 0.75rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gs-breadcrumb {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 4px;
    font-weight: 500;
}

.gs-menu-item:hover .gs-breadcrumb {
    color: var(--gs-color-primary);
    opacity: 0.8;
}

.gs-mega-menu-panel {
    width: 380px !important;
    margin-left: 0 !important;
}