/* ==================== CSS VARIABLES ==================== */
:root {
    --gold-primary: #fff64d;
    --gold-light: #fff97a;
    --gold-dark: #e6dd45;
    --burgundy: #1d6b5c;
    --emerald: #1d6b5c;
    --charcoal: #2c2c2c;
    --black: #000;
    --white: #fff;
    --cream: #f9f6f0;
    --cream-dark: #f5efe5;
    --gray: #666;
    --gray-dark: #444;
    --gray-light: #ddd;
    --dark-bg: #0a0a0a;
    --dark-surface: #111111;
    --dark-card: #161616;
    /* Consolidated to 2 fonts: Heading + Body */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.15);
    --transition-base: 0.3s ease;
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 0;
    transition: all var(--transition-base);
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--black);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 246, 77, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--gold-primary);
    color: var(--gold-primary);
}

.btn-outline:hover {
    background: var(--gold-primary);
    color: var(--black);
}

.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.5);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-gold {
    background: var(--gold-primary);
    color: var(--black);
    font-weight: 700;
}

.btn-sm { padding: 10px 20px; font-size: 0.75rem; }

/* ==================== RUNNING BANNER ==================== */
.running-banner {
    background: linear-gradient(90deg, #145347, #1d6b5c, #145347);
    padding: 12px 0;
    overflow: hidden;
}

.banner-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.banner-content {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    padding-right: 60px;
}

.banner-content span {
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-bullet { color: var(--gold-primary); }

/* ==================== HEADER ==================== */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 246, 77, 0.15);
}

.header-top {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
}

.header-top-left, .header-top-right {
    display: flex;
    gap: 25px;
}

.header-top a {
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--transition-base);
}

.header-top a:hover { color: var(--gold-primary); }

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav { display: flex; }

.nav-list {
    display: flex;
    gap: 35px;
}

.nav-item { position: relative; }

.nav-link {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color var(--transition-base);
}

.nav-link:hover { color: var(--gold-primary); }

.nav-link svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    transition: transform var(--transition-base);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-card);
    min-width: 220px;
    padding: 15px 0;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base);
    border: 1px solid rgba(255, 246, 77, 0.15);
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown a {
    display: block;
    padding: 10px 25px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    transition: all var(--transition-base);
}

.dropdown a:hover {
    background: rgba(255, 246, 77, 0.1);
    color: var(--gold-primary);
}

.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.menu-toggle {
    display: none;
    padding: 10px;
}

.menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

/* ==================== HERO SECTION ==================== */
.hero {
    position: relative;
    width: 100%;
    aspect-ratio: 1920 / 800;
    max-height: 800px;
    overflow: hidden;
    background: var(--dark-bg);
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    pointer-events: none;
}

.hero-content {
    position: absolute;
    z-index: 2;
    bottom: 80px;
    left: 80px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    max-width: 400px;
}

/* Hide badge, title and subtitle - let the banner image speak */
.hero-content .hero-badge,
.hero-content .hero-title,
.hero-content .hero-subtitle {
    display: none;
}

.hero-badge {
    display: inline-block;
    background: var(--gold-primary);
    color: var(--black);
    padding: 10px 25px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    width: fit-content;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 3px;
    color: var(--white);
}

.hero-title em {
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    line-height: 1.8;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-cta .btn-primary {
    padding: 16px 40px;
    font-size: 0.9rem;
    letter-spacing: 2px;
    box-shadow: 0 4px 20px rgba(255, 246, 77, 0.4);
}

.hero-cta .btn-outline-light {
    display: none;
}

.hero-nav {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 10;
}

.hero-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.hero-nav-btn:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.hero-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.hero-nav-btn:hover svg {
    stroke: var(--black);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 80px;
    transform: none;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-base);
    background: transparent;
}

.hero-dot.active {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
    transform: scale(1.2);
}

.hero-dot:hover {
    border-color: var(--gold-primary);
}

/* ==================== TRUST BADGES - WHITE BACKGROUND ==================== */
.trust-badges-dark {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.trust-badges-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.trust-grid-dark {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    max-width: 1300px;
    margin: 0 auto;
}

.trust-grid-dark.trust-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1000px;
}

.trust-item-dark {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    padding: 15px 10px;
    border-radius: 16px;
    transition: all var(--transition-smooth);
    position: relative;
}

.trust-item-dark:hover {
    transform: translateY(-5px);
}

.trust-icon-dark {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 50%;
    transition: all var(--transition-smooth);
    background: linear-gradient(145deg, #faf8f5 0%, #f0ece5 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06), inset 0 2px 4px rgba(255, 255, 255, 0.8);
    position: relative;
}

.trust-icon-dark::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-dark) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.trust-item-dark:hover .trust-icon-dark::before {
    opacity: 1;
}

.trust-item-dark:hover .trust-icon-dark {
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(255, 246, 77, 0.3);
}

.trust-icon-dark svg {
    width: 36px;
    height: 36px;
    stroke: var(--gold-dark);
    stroke-width: 1.5;
    fill: none;
    transition: all var(--transition-base);
}

.trust-item-dark:hover .trust-icon-dark svg {
    stroke: var(--white);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.4));
}

.trust-label-dark {
    font-size: 0.9rem;
    color: var(--charcoal);
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: color var(--transition-base);
}

.trust-item-dark:hover .trust-label-dark {
    color: var(--gold-dark);
}

/* ==================== SECTION STYLES ==================== */
.section {
    padding: 100px 0;
}

.bg-dark { background: #050505; }
.bg-white { background: var(--dark-bg); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #E8D84A;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--white);
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.section-divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
    margin: 0 auto;
}

.section-description {
    color: rgba(255,255,255,0.75);
    max-width: 700px;
    margin: 16px auto 0;
    line-height: 1.7;
    font-size: 15px;
}
.bg-white .section-description {
    color: #666;
}

/* ==================== CATEGORIES GRID ==================== */
.categories-grid-dark {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* 3-column variant for categories */
.categories-grid-dark.categories-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
    gap: 30px;
}

.categories-grid-3 .category-card-dark {
    height: 450px;
}

.category-card-dark {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 246, 77, 0.15);
    transition: all var(--transition-smooth);
}

.category-card-dark:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.category-image-dark {
    position: absolute;
    inset: 0;
}

.category-image-dark img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.category-card-dark:hover .category-image-dark img {
    transform: scale(1.1);
}

.category-content-dark {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.category-name-dark {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.category-count-dark {
    font-size: 0.85rem;
    color: var(--gold-primary);
}

/* ==================== PRODUCT CAROUSEL ==================== */
.carousel-section { position: relative; }

.carousel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.carousel-header .section-header {
    margin-bottom: 0;
    text-align: left;
}

.carousel-header .section-divider {
    margin-left: 0;
}

.carousel-nav-buttons {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.carousel-btn:hover svg {
    stroke: var(--black);
}

.carousel-container {
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform var(--transition-smooth);
}

.product-card {
    flex: 0 0 calc(25% - 19px);
    background: var(--dark-card);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 246, 77, 0.15);
    transition: all var(--transition-smooth);
}

.product-card:hover {
    border-color: rgba(255, 246, 77, 0.3);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--emerald);
    color: var(--white);
    padding: 6px 14px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-badge.new { background: var(--emerald); }
.product-badge.bestseller { background: var(--gold-primary); color: var(--black); }
.product-badge.trending { background: var(--emerald); }

.product-info {
    padding: 25px;
}

.product-name {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 8px;
}

.product-material {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
}

.product-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-primary);
}

/* ==================== SIGNATURE SLIDESHOW ==================== */
.signature-slider-section {
    background: var(--dark-bg);
    overflow: hidden;
    max-width: 100vw;
}

.signature-slider-section > .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.signature-slider-wrapper {
    position: relative;
    margin-top: 40px;
    overflow: hidden;
}

.signature-slider-container {
    overflow: hidden;
    width: 100%;
}

.signature-slider-track {
    display: flex;
    transition: transform var(--transition-smooth);
    width: 100%;
}

.signature-slide {
    flex: 0 0 50%;
    width: 50%;
    max-width: 50%;
    padding: 0 10px;
    box-sizing: border-box;
}

.signature-card {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 246, 77, 0.2);
    background: var(--dark-bg);
}

.signature-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform var(--transition-smooth);
}

.signature-card:hover img {
    transform: scale(1.02);
}

.signature-overlay {
    display: none;
}

.signature-content {
    display: none;
}

.signature-badge {
    display: none;
}

.signature-name {
    display: none;
}

.signature-desc {
    display: none;
}

.signature-slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 35px;
}

.signature-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.signature-nav-btn:hover {
    background: var(--gold-primary);
    border-color: var(--gold-primary);
}

.signature-nav-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--white);
}

.signature-nav-btn:hover svg {
    stroke: var(--black);
}

.signature-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.signature-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all var(--transition-base);
}

.signature-dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
}

/* Content Position Variants */
.signature-content.position-left {
    text-align: left;
    padding: 40px;
    left: 0;
    right: auto;
    max-width: 60%;
}

.signature-content.position-left .signature-desc {
    margin-left: 0;
    margin-right: auto;
}

.signature-content.position-right {
    text-align: right;
    padding: 40px;
    left: auto;
    right: 0;
    max-width: 60%;
}

.signature-content.position-right .signature-desc {
    margin-left: auto;
    margin-right: 0;
}

.signature-content.position-center {
    text-align: center;
}

/* Button Only Mode - Show only Explore button */
.signature-content.button-only {
    justify-content: flex-end;
    padding-bottom: 30px;
}

.signature-content.button-only.position-left {
    align-items: flex-start;
    padding-left: 30px;
}

.signature-content.button-only.position-right {
    align-items: flex-end;
    padding-right: 30px;
}

.signature-content.button-only.position-center {
    align-items: center;
}

/* Clickable card link when content is hidden */
.signature-card-link {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
}

/* ==================== COLLECTION LINKS MARQUEE - WHITE BACKGROUND ==================== */
.collection-links-section {
    background: var(--white);
    padding: 25px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.collection-links-track {
    display: flex;
    animation: slideCollections 25s linear infinite;
}

@keyframes slideCollections {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.collection-links-content {
    display: flex;
    gap: 80px;
    white-space: nowrap;
    padding-right: 80px;
}

.collection-link-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--charcoal);
    transition: all var(--transition-base);
}

.collection-link-item:hover { 
    color: var(--gold-dark); 
}

.link-bullet {
    font-size: 0.6rem;
    color: var(--gold-dark);
}

/* ==================== GIFTS GRID ==================== */
.gifts-grid-new {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gifts-grid-new.gifts-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1100px;
    margin: 0 auto;
}

.gift-card-new {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.gift-image {
    position: absolute;
    inset: 0;
}

.gift-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.gift-card-new:hover .gift-image img {
    transform: scale(1.1);
}

.gift-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
}

.gift-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px;
}

.gift-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 10px;
}

.gift-link {
    color: var(--gold-primary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* ==================== GROHOROTNO BANNER ==================== */
.grohorotno-banner {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.grohorotno-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.grohorotno-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    /* Overlay removed - banner image shows clearly */
}

.grohorotno-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 0 60px 30px;
}

.grohorotno-badge {
    display: inline-block;
    background: var(--emerald);
    color: var(--white);
    padding: 8px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.grohorotno-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold-primary);
    letter-spacing: 8px;
    margin-bottom: 10px;
}

.grohorotno-subtitle {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-style: italic;
}

.grohorotno-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 20px;
    background: rgba(0,0,0,0.35);
    padding: 12px 16px;
    border-radius: 6px;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Grohorotno Content Position Variants */
.grohorotno-content.position-left {
    text-align: left;
    margin-right: auto;
}

.grohorotno-content.position-center {
    text-align: center;
    margin: 0 auto;
}

.grohorotno-content.position-right {
    text-align: right;
    margin-left: auto;
}

.grohorotno-content.position-center .grohorotno-overlay,
.grohorotno-content.position-right .grohorotno-overlay {
    background: transparent;
}

/* Adjust overlay gradient based on position */
.grohorotno-banner:has(.position-center) .grohorotno-overlay {
    background: transparent;
}

.grohorotno-banner:has(.position-right) .grohorotno-overlay {
    background: transparent;
}

/* When content is hidden, remove dark overlay */
.grohorotno-overlay.hidden-content {
    background: transparent;
}

/* Clickable link overlay when content is hidden */
.grohorotno-link-overlay {
    position: absolute;
    inset: 0;
    z-index: 10;
    cursor: pointer;
}

/* ==================== TAARA BANNER SECTION ==================== */
.taara-banner-section {
    width: 100%;
    overflow: hidden;
    background: #1a1a1a;
}

.taara-banner-link {
    display: block;
    width: 100%;
    line-height: 0;
}

.taara-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.taara-banner-link:hover .taara-banner-img {
    transform: scale(1.02);
}

/* Taara Banner Wrapper with Explore Button */
.taara-banner-wrapper {
    position: relative;
    display: block;
    width: 100%;
}
.taara-banner-btn-wrapper {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    text-align: center;
}
.taara-explore-btn {
    display: inline-block;
    padding: 14px 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gold-primary);
    color: #000;
    border: none;
    border-radius: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}
.taara-explore-btn:hover {
    background: #ffe94a;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 246, 77, 0.4);
}
@media (max-width: 768px) {
    .taara-banner-btn-wrapper {
        bottom: 12px;
    }
    .taara-explore-btn {
        padding: 8px 30px;
        font-size: 12px;
    }
}

/* Signature Card Clickable with Label */
a.signature-card-clickable {
    display: block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}
.signature-card-label {
    padding: 18px 25px;
    background: rgba(0,0,0,0.85);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}
.signature-card-name {
    font-family: 'Cinzel', serif;
    font-size: 18px;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}
.signature-card-cta {
    font-size: 13px;
    color: #d4a853;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}
a.signature-card-clickable:hover .signature-card-cta {
    opacity: 1;
    transform: translateX(0);
}
a.signature-card-clickable:hover .signature-card-label {
    background: rgba(0,0,0,0.95);
}
@media (max-width: 768px) {
    .signature-card-name {
        font-size: 15px;
    }
    .signature-card-cta {
        opacity: 1;
        transform: translateX(0);
        font-size: 11px;
    }
    .signature-card-label {
        padding: 15px 18px;
    }
}

/* Grohorotno Floating Button (for hidden content mode) */
.grohorotno-btn-float {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
}
.grohorotno-btn-float .btn {
    padding: 14px 40px;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.grohorotno-btn-float .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(212, 168, 83, 0.4);
}
@media (max-width: 768px) {
    .grohorotno-btn-float {
        bottom: 15px;
    }
    .grohorotno-btn-float .btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}

/* Store Map Embed */
.store-map-embed {
    margin-bottom: 5px;
    border-radius: 8px;
    overflow: hidden;
}
.store-map-embed iframe {
    display: block;
}

/* ==================== PROMISE SECTION ==================== */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.promise-card {
    text-align: center;
    padding: 40px;
    background: var(--dark-card);
    border-radius: 8px;
    border: 1px solid rgba(255, 246, 77, 0.15);
    transition: all var(--transition-smooth);
}

.promise-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
}

.promise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 246, 77, 0.1);
    border-radius: 50%;
}

.promise-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--gold-primary);
}

.promise-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.promise-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
}

/* ==================== SERVICES SECTION - BLACK WITH GOLD CARDS ==================== */
.services-section {
    background: var(--dark-bg);
    padding: 80px 0;
    border-top: 1px solid rgba(255, 246, 77, 0.1);
}

.services-section .section-title {
    color: var(--white);
}

.services-section .section-subtitle {
    color: var(--gold-primary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 22px 25px;
    background: var(--dark-card);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: all var(--transition-base);
    border: 1px solid var(--gold-primary);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 246, 77, 0.15);
    background: rgba(255, 246, 77, 0.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 246, 77, 0.15);
    border-radius: 10px;
}

.service-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--gold-primary);
    fill: none;
}

.service-name {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-card {
        padding: 18px 20px;
    }
}

/* ==================== CUSTOMER STORIES - BLACK BACKGROUND ==================== */
.customer-stories-section {
    background: linear-gradient(135deg, #0d0d0d 0%, #161616 100%);
    padding: 100px 0;
    overflow: hidden;
}

.customer-stories-header {
    text-align: center;
    margin-bottom: 60px;
}

.customer-stories-pretitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 12px;
    display: block;
}

.customer-stories-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 500;
    color: var(--white);
    line-height: 1.2;
}

.customer-stories-title span { display: block; }

.customer-stories-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 15px;
}

.stories-carousel-wrapper {
    position: relative;
    height: 520px;
    overflow: hidden;
}

.stories-carousel-container {
    display: flex;
    align-items: center;
    height: 100%;
    will-change: transform;
}

.story-phone-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
    flex-shrink: 0;
    width: 200px;
    height: 350px;
    margin: 0 10px;
    opacity: 0.3;
    transform: scale(0.8);
    filter: blur(1.5px) brightness(0.4);
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease,
                border-color 0.6s ease, box-shadow 0.6s ease;
    pointer-events: auto;
}

.story-phone-card.adjacent {
    opacity: 0.6;
    transform: scale(0.95);
    filter: blur(0px) brightness(0.65);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.story-phone-card.active {
    opacity: 1;
    transform: scale(1.3);
    filter: blur(0px) brightness(1);
    border-color: rgba(255, 255, 255, 0.25);
    border-width: 3px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,168,83,0.12);
    z-index: 10;
}

.story-phone-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.story-phone-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
    padding: 35px 15px 20px;
    text-align: center;
    pointer-events: none;
}

.story-customer-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 4px;
}

.story-brand-tag {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 8px;
}

.story-caption {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);
    font-style: italic;
}

.stories-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    position: relative;
    z-index: 100;
}

.story-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0;
    display: inline-block;
    position: relative;
    z-index: 101;
}

.story-dot:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
}

.story-dot.active {
    background: #2c5f9e;
    border-color: #2c5f9e;
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(44, 95, 158, 0.5);
}

/* ==================== OFFERS SECTION ==================== */
.offers-section-dark {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
}

.offers-content-dark {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.offers-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.offers-title-dark {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.offers-perks-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 20px;
    font-style: italic;
}

.offers-desc-dark {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.offers-features-dark {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.offer-feature-dark {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
}

.offer-feature-dark svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-primary);
}

.offers-image-dark {
    position: relative;
}

.offers-image-dark img {
    width: 100%;
    border-radius: 12px;
}

.privilege-badge-dark {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--burgundy);
    color: var(--white);
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.privilege-badge-dark span { font-size: 0.7rem; }
.privilege-badge-dark strong { font-size: 1.3rem; }

/* ==================== SWARNADHARA SECTION ==================== */
.swarnadhara-section {
    background: linear-gradient(135deg, #0d1a15 0%, #0a0a0a 100%);
    padding: 80px 0;
}

.swarnadhara-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.swarnadhara-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    display: block;
}

.swarnadhara-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.swarnadhara-tagline {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--gold-light);
    margin-bottom: 25px;
    font-style: italic;
}

.swarnadhara-desc {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 30px;
}

.swarnadhara-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.swarnadhara-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.8);
}

.swarnadhara-feature svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold-primary);
}

.swarnadhara-image {
    position: relative;
}

.swarnadhara-image img {
    width: 100%;
    border-radius: 12px;
}

.swarnadhara-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold-primary);
    color: var(--black);
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.swarnadhara-badge span { font-size: 0.7rem; font-weight: 600; }
.swarnadhara-badge strong { font-size: 0.9rem; display: block; }

/* ==================== FOOTER ==================== */
.footer {
    background: #2d3436;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 246, 77, 0.15);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 246, 77, 0.1);
    border: 1px solid rgba(255, 246, 77, 0.3);
    border-radius: 50%;
    transition: all var(--transition-base);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-primary);
}

.social-link:hover {
    background: var(--gold-primary);
    transform: translateY(-3px);
}

.social-link:hover svg { fill: var(--black); }

.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    transition: color var(--transition-base);
    text-decoration: none;
}

.footer-links a:hover { color: var(--gold-primary); }

/* Social Links in Footer */
.footer-social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-social-links svg {
    width: 18px;
    height: 18px;
    fill: var(--gold-primary);
    stroke: var(--gold-primary);
    stroke-width: 1.5;
    flex-shrink: 0;
}

.footer-social-links li a:hover svg {
    fill: #fff;
    stroke: #fff;
}

/* Contact Info Section */
.footer-contact-info {
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-contact-info .store-info {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-contact-info .store-info:last-of-type {
    border-bottom: none;
    margin-bottom: 15px;
    padding-bottom: 0;
}

.footer-contact-info .store-label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-contact-info .store-address,
.footer-contact-info .store-phone,
.footer-contact-info .store-email {
    margin-bottom: 4px;
    color: rgba(255,255,255,0.7);
}

.footer-contact-info .store-email a {
    color: var(--gold-primary);
    text-decoration: none;
}

.footer-contact-info .store-email a:hover {
    text-decoration: underline;
}

.footer-contact-info .store-timing {
    margin-top: 15px;
}

.footer-contact-info .timing-title {
    color: #fff;
    margin-bottom: 10px;
}

.footer-contact-info .timing-store {
    margin-bottom: 8px;
    color: rgba(255,255,255,0.7);
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    stroke: var(--gold-primary);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

.copyright a {
    color: var(--gold-primary);
    text-decoration: none;
}

.copyright a:hover {
    text-decoration: underline;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
    transition: color var(--transition-base);
}

.footer-bottom-links a:hover { color: var(--gold-primary); }

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 75%;
    max-width: 320px;
    height: 100%;
    background: var(--dark-bg);
    z-index: 2001;
    transform: translateX(-100%);
    transition: transform var(--transition-smooth);
    overflow-y: auto;
    box-shadow: 4px 0 30px rgba(0,0,0,0.5);
}

.mobile-menu.active { transform: translateX(0); }

/* Backdrop overlay behind mobile menu */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}
.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content { padding: 20px 24px; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mobile-menu-header img { height: 36px; }

.mobile-menu-close {
    padding: 10px;
}

.mobile-menu-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--white);
}

.mobile-menu-links a {
    display: block;
    padding: 10px 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: color 0.2s;
}
.mobile-menu-links a:hover,
.mobile-menu-links a:active {
    color: var(--gold-primary);
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1200px) {
    .categories-grid-dark { grid-template-columns: repeat(2, 1fr); }
    .categories-grid-dark.categories-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .gifts-grid-new { grid-template-columns: repeat(2, 1fr); }
    .product-card { flex: 0 0 calc(33.333% - 17px); }
}

@media (max-width: 992px) {
    .signature-slide { min-width: 100%; padding: 0 10px; }
    .signature-slider-container { padding: 0 20px; }
    
    .trust-grid-dark { grid-template-columns: repeat(3, 1fr); }
    .trust-grid-dark.trust-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .categories-grid-dark.categories-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
    .promise-grid { grid-template-columns: 1fr; }
    .offers-content-dark { grid-template-columns: 1fr; }
    .swarnadhara-content { grid-template-columns: 1fr; }
    .gifts-grid-new.gifts-grid-3 { grid-template-columns: repeat(3, 1fr); }
    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .footer-contact-info { grid-column: span 2; }
    .hero { aspect-ratio: 3 / 1; height: auto; min-height: auto; max-height: none; }
    .hero-slide { background-size: 100% 100%; background-position: center; background-repeat: no-repeat; }
    .hero-content { bottom: 70px; left: 40px; }
    .hero-dots { left: 40px; bottom: 25px; }
    .header-actions .btn { display: none; }
    .menu-toggle { display: block; }
    .main-nav { display: none; }
}

@media (max-width: 768px) {
    .trust-badges-dark { padding: 30px 0; }
    .trust-grid-dark { grid-template-columns: repeat(3, 1fr); gap: 15px; }
    .trust-grid-dark.trust-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .trust-icon-dark { width: 65px; height: 65px; }
    .trust-icon-dark svg { width: 28px; height: 28px; }
    .trust-item-dark { padding: 12px 8px; gap: 12px; }
    .categories-grid-dark { grid-template-columns: 1fr; }
    .categories-grid-dark.categories-grid-3 { grid-template-columns: 1fr; }
    .categories-grid-3 .category-card-dark { height: 350px; }
    .gifts-grid-new { grid-template-columns: repeat(2, 1fr); }
    .gifts-grid-new.gifts-grid-3 { grid-template-columns: 1fr; max-width: 100%; }
    .product-card { flex: 0 0 calc(50% - 12.5px); }
    .hero { aspect-ratio: 3 / 1; height: auto; min-height: auto; max-height: none; }
    .hero-slide { background-size: 100% 100%; background-position: center; background-repeat: no-repeat; }
    .hero-content { bottom: 60px; left: 20px; }
    .hero-dots { left: 20px; bottom: 20px; }
    /* Hide hero arrows on mobile - keep only dots */
    .hero-nav { display: none; }
    .signature-slider-container { padding: 0 15px; }
    .signature-slide { padding: 0 8px; min-width: 100%; }
    .grohorotno-content { padding: 0 20px 20px; }
    .stories-carousel-wrapper { height: 420px; }
    .story-phone-card { width: 140px; height: 250px; margin: 0 6px; border-radius: 18px; }
    .story-phone-card.active { transform: scale(1.25); }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .footer-contact-info { grid-column: span 1; text-align: left; }
    .footer-links { text-align: left; }
    /* Mobile heading sizes */
    .section-title { font-size: 1.5rem; letter-spacing: 2px; }
    .section-subtitle { font-size: 0.7rem; letter-spacing: 2px; }
    .section-description { font-size: 13px; margin-top: 12px; }
    .swarnadhara-title { font-size: 1.8rem; }
    .swarnadhara-tagline { font-size: 1rem; }
    /* Grohorotno: hide title/subtitle on mobile - already in banner image */
    .grohorotno-badge { display: none; }
    .grohorotno-title { display: none; }
    .grohorotno-subtitle { display: none; }
    .grohorotno-banner { height: 400px; }
    .grohorotno-content { padding: 0 15px 20px; max-width: 100%; }
    .grohorotno-desc { font-size: 0.8rem; padding: 10px 12px; margin-bottom: 12px; }
    .grohorotno-content .btn { padding: 10px 28px; font-size: 13px; }
    .offers-title-dark { font-size: 1.6rem; }
    .offers-perks-title { font-size: 1rem; }
    .customer-stories-title { font-size: 1.6rem; }
    .customer-stories-pretitle { font-size: 0.7rem; }
    .customer-stories-subtitle { font-size: 0.8rem; }
}

@media (max-width: 576px) {
    .trust-badges-dark { padding: 25px 0; }
    .trust-grid-dark { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .trust-icon-dark { width: 55px; height: 55px; }
    .trust-icon-dark svg { width: 24px; height: 24px; }
    .trust-label-dark { font-size: 0.75rem; }
    .trust-item-dark { padding: 10px 6px; gap: 10px; }
    .hero-title { font-size: 1.6rem; }
    .hero-subtitle { font-size: 0.8rem; }
    .hero { aspect-ratio: 3 / 1; height: auto; min-height: auto; max-height: none; }
    .hero-content { bottom: 50px; left: 15px; }
    .hero-dots { left: 15px; bottom: 15px; }
    .hero-cta .btn-primary { padding: 12px 25px; font-size: 0.8rem; }
    .hero-cta .btn-outline-light { display: none; }
    .stories-carousel-wrapper { height: 360px; }
    .story-phone-card { width: 110px; height: 200px; margin: 0 5px; border-radius: 14px; }
    .story-phone-card.active { transform: scale(1.2); }
    /* Smaller heading sizes */
    .section-title { font-size: 1.25rem; letter-spacing: 1px; }
    .section-description { font-size: 12px; }
    .grohorotno-banner { height: 300px; }
    .grohorotno-desc { font-size: 0.7rem; padding: 8px 10px; }
    .grohorotno-content .btn { padding: 8px 22px; font-size: 12px; }
    .swarnadhara-title { font-size: 1.5rem; }
    .offers-title-dark { font-size: 1.3rem; }
    .customer-stories-title { font-size: 1.3rem; }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #d4a853;
}
.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Back to Top Button - Gold Theme */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d4a853 0%, #c49843 100%);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
    box-shadow: 0 4px 15px rgba(212, 168, 83, 0.4);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: linear-gradient(135deg, #e5b964 0%, #d4a853 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 168, 83, 0.5);
}
.back-to-top svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
    stroke-width: 2.5;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 85px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    .back-to-top svg {
        width: 20px;
        height: 20px;
    }
}


/* ==================== ADDITIONS/MODIFICATIONS TO style.css ==================== */
/* Add these styles to the existing style.css file */

/* ==================== TOP INFO BAR (NEW) ==================== */
.top-info-bar {
    background: linear-gradient(90deg, #145347, #1d6b5c, #145347);
    padding: 10px 0;
}

.top-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-info-location,
.top-info-offer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-info-location svg,
.top-info-offer svg {
    stroke: var(--gold-primary);
    flex-shrink: 0;
}

.top-info-offer {
    background: rgba(255, 246, 77, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 246, 77, 0.3);
}

@media (max-width: 768px) {
    .top-info-content {
        justify-content: center;
        text-align: center;
    }
    .top-info-location,
    .top-info-offer {
        font-size: 0.75rem;
    }
}

/* ==================== TRUST BADGES - DARK BACKGROUND (MODIFIED) ==================== */
/* Replace existing .trust-badges-dark section with this */
.trust-badges-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 246, 77, 0.1);
}

.trust-grid {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-grid.trust-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 246, 77, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 246, 77, 0.1);
    transition: all var(--transition-smooth);
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 246, 77, 0.3);
    background: rgba(255, 246, 77, 0.06);
}

.trust-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 246, 77, 0.1) 0%, rgba(255, 246, 77, 0.05) 100%);
    border: 2px solid rgba(255, 246, 77, 0.2);
    transition: all var(--transition-base);
}

.trust-item:hover .trust-icon {
    background: linear-gradient(145deg, rgba(255, 246, 77, 0.2) 0%, rgba(255, 246, 77, 0.1) 100%);
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold-primary);
    stroke-width: 1.5;
    fill: none;
}

.trust-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .trust-badges-section {
        padding: 40px 0;
    }
    .trust-grid.trust-grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .trust-item {
        padding: 15px 10px;
    }
    .trust-icon {
        width: 55px;
        height: 55px;
    }
    .trust-icon svg {
        width: 26px;
        height: 26px;
    }
    .trust-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .trust-grid.trust-grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }
    .trust-item {
        padding: 12px 8px;
        gap: 10px;
    }
    .trust-icon {
        width: 45px;
        height: 45px;
    }
    .trust-icon svg {
        width: 22px;
        height: 22px;
    }
    .trust-label {
        font-size: 0.7rem;
    }
}

/* ==================== CONSISTENT SECTION PADDING (MODIFIED) ==================== */
/* Update all .section to have consistent padding */
.section {
    padding: 80px 0;
}

.customer-stories-section {
    padding: 80px 0;
}

.swarnadhara-section {
    padding: 80px 0;
}

.offers-section-dark {
    padding: 80px 0;
}

.services-section {
    padding: 80px 0;
}

.gifts-section-new {
    padding: 80px 0;
}

/* ==================== CATEGORY CARDS - NO DESIGN COUNT ==================== */
/* Remove the category-count-dark element styling or hide it */
.category-count-dark {
    display: none;
}

/* Adjust category content since count is removed */
.category-content-dark {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%, transparent 100%);
}

.category-name-dark {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--white);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==================== FOOTER COMPACT (NEW) ==================== */
.footer.footer-compact {
    background: #1a1a1a;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 246, 77, 0.15);
}

/* Horizontal Store Layout */
.footer-stores-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.footer-store {
    text-align: left;
}

.footer-store .store-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gold-primary);
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-store .store-address {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 8px;
}

.footer-store .store-contact {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.footer-store .store-contact span {
    display: block;
    margin-bottom: 3px;
}

.footer-store .store-contact a {
    color: var(--gold-primary);
}

.footer-store .store-contact a:hover {
    text-decoration: underline;
}

.footer-store .store-timing {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* Footer Bottom Compact */
.footer-bottom-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.footer-logo-compact img {
    height: 40px;
}

.footer-links-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-links-compact a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.footer-links-compact a:hover {
    color: var(--gold-primary);
}

.footer-social-compact {
    display: flex;
    gap: 15px;
}

.footer-social-compact a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 246, 77, 0.1);
    border: 1px solid rgba(255, 246, 77, 0.2);
    border-radius: 50%;
    color: var(--gold-primary);
    transition: all var(--transition-base);
}

.footer-social-compact a:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-3px);
}

.footer-social-compact a svg {
    width: 18px;
    height: 18px;
}

.footer-copyright {
    text-align: center;
    padding-top: 5px;
}

.footer-copyright p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-stores-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-store:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer.footer-compact {
        padding: 30px 0 15px;
    }
    .footer-stores-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-store:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    .footer-store {
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .footer-store:last-child {
        border-bottom: none;
    }
    .footer-bottom-compact {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-links-compact {
        gap: 15px;
    }
    .footer-links-compact a {
        font-size: 0.8rem;
    }
}

/* ==================== STORIES CAROUSEL - CONTINUOUS LOOP FIX ==================== */
.stories-carousel-wrapper {
    position: relative;
    height: 520px;
    overflow: hidden;
    width: 100%;
}

.stories-carousel-container {
    display: flex;
    align-items: center;
    height: 100%;
    will-change: transform;
}

.story-phone-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #1a1a1a;
    cursor: pointer;
    flex-shrink: 0;
    width: 200px;
    height: 350px;
    margin: 0 10px;
    opacity: 0.3;
    transform: scale(0.8);
    filter: blur(1.5px) brightness(0.4);
    border: 2px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.6s ease, opacity 0.6s ease, filter 0.6s ease,
                border-color 0.6s ease, box-shadow 0.6s ease;
}

/* ==================== HIDE RUNNING BANNER (Now using top info bar) ==================== */
.running-banner {
    display: none;
}

/* ==================== ADDITIONS/MODIFICATIONS TO style.css ==================== */
/* Add these styles to the END of your existing style.css file */

/* ==================== TOP INFO BAR (NEW) ==================== */
.top-info-bar {
    background: linear-gradient(90deg, #145347, #1d6b5c, #145347);
    padding: 10px 0;
}

.top-info-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-info-location,
.top-info-offer {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

.top-info-location svg,
.top-info-offer svg {
    stroke: var(--gold-primary);
    flex-shrink: 0;
}

.top-info-offer {
    background: rgba(255, 246, 77, 0.1);
    padding: 6px 15px;
    border-radius: 20px;
    border: 1px solid rgba(255, 246, 77, 0.3);
}

@media (max-width: 768px) {
    .top-info-content {
        justify-content: center;
        text-align: center;
    }
    .top-info-location,
    .top-info-offer {
        font-size: 0.75rem;
    }
}

/* ==================== TRUST BADGES - DARK BACKGROUND (3 items) ==================== */
/* This replaces the white background trust badges section */
.trust-badges-section {
    background: linear-gradient(180deg, #0a0a0a 0%, #111111 100%);
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 246, 77, 0.1);
}

.trust-grid {
    display: grid;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.trust-grid.trust-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 246, 77, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 246, 77, 0.1);
    transition: all var(--transition-smooth);
}

.trust-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 246, 77, 0.3);
    background: rgba(255, 246, 77, 0.06);
}

.trust-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 246, 77, 0.1) 0%, rgba(255, 246, 77, 0.05) 100%);
    border: 2px solid rgba(255, 246, 77, 0.2);
    transition: all var(--transition-base);
}

.trust-item:hover .trust-icon {
    background: linear-gradient(145deg, rgba(255, 246, 77, 0.2) 0%, rgba(255, 246, 77, 0.1) 100%);
    border-color: var(--gold-primary);
    transform: scale(1.05);
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold-primary);
    stroke-width: 1.5;
    fill: none;
}

.trust-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .trust-badges-section {
        padding: 40px 0;
    }
    .trust-grid.trust-grid-3 {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    .trust-item {
        padding: 15px 10px;
    }
    .trust-icon {
        width: 55px;
        height: 55px;
    }
    .trust-icon svg {
        width: 26px;
        height: 26px;
    }
    .trust-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .trust-grid.trust-grid-3 {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 10px;
    }
    .trust-item {
        padding: 12px 8px;
        gap: 10px;
    }
    .trust-icon {
        width: 45px;
        height: 45px;
    }
    .trust-icon svg {
        width: 22px;
        height: 22px;
    }
    .trust-label {
        font-size: 0.7rem;
    }
}

/* ==================== CONSISTENT SECTION SPACING ==================== */
/* Ensure all sections have the same top/bottom padding */
.section {
    padding: 80px 0;
}

.customer-stories-section {
    padding: 80px 0;
}

/* ==================== HIDE DESIGN COUNT IN CATEGORIES ==================== */
.category-count-dark {
    display: none;
}

/* ==================== HIDE RUNNING BANNER (replaced by top info bar) ==================== */
.running-banner {
    display: none;
}

/* ==================== FOOTER COMPACT (NEW) ==================== */
.footer.footer-compact {
    background: #1a1a1a;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 246, 77, 0.15);
}

/* Horizontal Store Layout */
.footer-stores-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 25px;
}

.footer-store {
    text-align: left;
}

.footer-store .store-title {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--gold-primary);
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-store .store-address {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 8px;
}

.footer-store .store-contact {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.footer-store .store-contact span {
    display: block;
    margin-bottom: 3px;
}

.footer-store .store-contact a {
    color: var(--gold-primary);
}

.footer-store .store-contact a:hover {
    text-decoration: underline;
}

.footer-store .store-timing {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* Footer Bottom Compact */
.footer-bottom-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
}

.footer-logo-compact img {
    height: 40px;
}

.footer-links-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.footer-links-compact a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-base);
}

.footer-links-compact a:hover {
    color: var(--gold-primary);
}

.footer-social-compact {
    display: flex;
    gap: 15px;
}

.footer-social-compact a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 246, 77, 0.1);
    border: 1px solid rgba(255, 246, 77, 0.2);
    border-radius: 50%;
    color: var(--gold-primary);
    transition: all var(--transition-base);
}

.footer-social-compact a:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-3px);
}

.footer-social-compact a svg {
    width: 18px;
    height: 18px;
}

.footer-copyright {
    text-align: center;
    padding-top: 5px;
}

.footer-copyright p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-stores-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-store:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer.footer-compact {
        padding: 30px 0 15px;
    }
    .footer-stores-row {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .footer-store:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    .footer-store {
        text-align: center;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .footer-store:last-child {
        border-bottom: none;
    }
    .footer-bottom-compact {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    .footer-links-compact {
        gap: 15px;
    }
    .footer-links-compact a {
        font-size: 0.8rem;
    }
}

/* ==================== GIFTS PAGE STYLES ==================== */

/* Gift Category Banner */
.gift-category-banner {
    position: relative;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.gift-category-banner.gift-banner-her {
    background: linear-gradient(135deg, #2d1f3d 0%, #1a1a2e 50%, #16213e 100%);
}

.gift-category-banner.gift-banner-him {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}

.gift-category-banner.gift-banner-occasions {
    background: linear-gradient(135deg, #3d2914 0%, #2d1f0f 50%, #1a1a1a 100%);
}

.gift-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
}

.gift-banner-pretitle {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.gift-banner-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.gift-banner-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 500px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb-bar {
    background: #111;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: var(--gold-primary);
}

.breadcrumb .separator {
    color: rgba(255,255,255,0.3);
}

.breadcrumb .current {
    color: var(--gold-primary);
}

/* Gift Products Section */
.gift-products-section {
    padding: 60px 0 80px;
    background: #fafafa;
    min-height: 500px;
}

.gift-products-section .results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px 25px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.gift-products-section .results-count {
    color: #666;
    font-size: 0.95rem;
}

.gift-products-section .results-count strong {
    color: #1a1a1a;
}

.gift-products-section .results-filters {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.gift-products-section .filter-dropdown,
.gift-products-section .sort-dropdown {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gift-products-section .filter-dropdown label,
.gift-products-section .sort-dropdown label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.gift-products-section .filter-dropdown select,
.gift-products-section .sort-dropdown select {
    padding: 10px 35px 10px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center;
    cursor: pointer;
    appearance: none;
    transition: all 0.2s;
}

.gift-products-section .filter-dropdown select:hover,
.gift-products-section .sort-dropdown select:hover {
    border-color: var(--gold-primary);
}

/* Products Grid */
.gift-products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gift-products-section .product-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.gift-products-section .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--gold-primary);
}

.gift-products-section .product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    background: #1a1a1a;
    color: #fff;
    z-index: 2;
}

.gift-products-section .product-badge.new {
    background: linear-gradient(135deg, #0d6334 0%, #0a4d28 100%);
}

.gift-products-section .product-badge.trending {
    background: linear-gradient(135deg, #c41e3a 0%, #a01830 100%);
}

.gift-products-section .product-badge.bestseller {
    background: linear-gradient(135deg, #d4a853 0%, #c49a47 100%);
    color: #1a1a1a;
}

.gift-products-section .product-image {
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.gift-products-section .product-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s;
}

.gift-products-section .product-card:hover .product-image img {
    transform: scale(1.08);
}

.gift-products-section .product-info {
    padding: 20px;
    text-align: center;
}

.gift-products-section .product-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
    line-height: 1.4;
}

.gift-products-section .product-material {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.gift-products-section .product-price {
    font-size: 1rem;
    font-weight: 700;
    color: #c41e3a;
}

/* No Products */
.gift-products-section .no-products {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.gift-products-section .no-products-icon {
    margin-bottom: 25px;
    color: #ccc;
}

.gift-products-section .no-products h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.gift-products-section .no-products p {
    color: #666;
    margin-bottom: 25px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

/* Pagination */
.gift-products-section .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

.gift-products-section .pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.gift-products-section .pagination-btn:hover {
    background: #f8f6f0;
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.gift-products-section .pagination-btn.active {
    background: linear-gradient(135deg, #d4a853 0%, #c49a47 100%);
    border-color: #d4a853;
    color: #fff;
}

.gift-products-section .pagination-ellipsis {
    color: #999;
    padding: 0 5px;
}

/* Related Gifts Section */
.related-gifts-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.related-gifts-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.related-gifts-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.related-gift-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 18px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s;
    min-width: 200px;
}

.related-gift-card:hover {
    background: rgba(212, 168, 83, 0.1);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
}

.related-gift-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: #fff;
}

.related-gift-arrow {
    color: var(--gold-primary);
    font-size: 1.2rem;
    transition: transform 0.3s;
}

.related-gift-card:hover .related-gift-arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .gift-products-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .gift-category-banner {
        height: 250px;
    }
    
    .gift-banner-title {
        font-size: 2.5rem;
    }
    
    .gift-banner-subtitle {
        font-size: 1rem;
        padding: 0 20px;
    }
    
    .gift-products-section .results-header {
        flex-direction: column;
        align-items: stretch;
    }
    
    .gift-products-section .results-filters {
        justify-content: space-between;
    }
    
    .gift-products-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .gift-banner-title {
        font-size: 2rem;
    }
    
    .gift-products-section .results-filters {
        flex-direction: column;
    }
    
    .gift-products-section .filter-dropdown,
    .gift-products-section .sort-dropdown {
        width: 100%;
    }
    
    .gift-products-section .filter-dropdown select,
    .gift-products-section .sort-dropdown select {
        width: 100%;
    }
    
    .related-gift-card {
        min-width: 100%;
    }
}

/* ==================== MOBILE RESPONSIVE FIXES (2026-03-30) ==================== */

/* Reduce section spacing on mobile */
@media (max-width: 768px) {
    .section {
        padding: 50px 0;
    }
    .swarnadhara-section,
    .offers-section-dark,
    .services-section,
    .gifts-section-new {
        padding: 50px 0;
    }
    
    /* Swarnadhara image - ensure it shows on mobile */
    .swarnadhara-image {
        margin-top: 20px;
    }
    .swarnadhara-image img {
        width: 100%;
        border-radius: 12px;
        display: block;
    }
    
    /* Signature slider - full width single slide on mobile */
    .signature-slide {
        min-width: 100%;
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    
    /* Signature card mobile - ensure proper display */
    .signature-card {
        border-radius: 8px;
    }
    
    /* Footer stores grid mobile */
    .footer-stores-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 40px 0;
    }
    .swarnadhara-section,
    .offers-section-dark,
    .services-section,
    .gifts-section-new {
        padding: 40px 0;
    }
    
    .swarnadhara-desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Fix carousel overflow on mobile */
    .stories-carousel-wrapper {
        width: 100%;
        margin-left: 0;
    }
}