/* ============================================
   Sri Deiviga Vilas - Premium CSS Design System
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,900;1,400;1,700&family=Outfit:wght@300;400;600;700;800&display=swap');

:root {
    --primary: #8d0000;
    --primary-dark: #5a0000;
    --primary-light: #fff5ed;
    --accent: #FDC12A;
    --accent-dark: #e0a800;
    --accent-light: #fffbeb;
    --saffron: #FF6B35;
    --saffron-light: #fff3ee;
    --gold: #D4AF37;
    --gold-light: #FFF8DC;
    --teal: #0d9488;
    --purple: #7c3aed;
    --dark: #1a1a1a;
    --dark-2: #2d2d2d;
    --light: #fdfbf7;
    --white: #ffffff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --glass: rgba(255, 255, 255, 0.85);
    --glass-dark: rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(141, 0, 0, 0.15);
    --shadow-gold: 0 10px 30px rgba(253, 193, 42, 0.35);
    --shadow-color: 0 15px 40px rgba(141, 0, 0, 0.2);
    --border-radius: 16px;
    --border-radius-sm: 8px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============ RESET & BASE ============ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 15px;
    background-color: var(--light);
    color: var(--dark);
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    overflow-x: hidden;
}

.content {
    min-height: 60vh;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.serif-font {
    font-family: 'Playfair Display', serif !important;
}

.outfit-font {
    font-family: 'Outfit', sans-serif !important;
}

/* ============ BUTTONS ============ */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(141, 0, 0, 0.3);
    color: #fff;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), #3a0000);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(141, 0, 0, 0.4);
    color: #fff;
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 10px 30px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    transition: var(--transition);
    text-transform: uppercase;
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-color);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border: none;
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: var(--dark);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(253, 193, 42, 0.5);
    color: var(--dark);
}

.btn-rounded {
    border-radius: 50px !important;
}

.shadow-gold {
    box-shadow: var(--shadow-gold) !important;
}

/* ============ HEADER ============ */
.site-header {
    width: 100%;
}

.announcement-bar {
    background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--saffron), var(--primary), var(--primary-dark));
    background-size: 300% 100%;
    animation: gradientShift 6s ease infinite;
    /* Only transition max-height and opacity — NOT 'all', which conflicts with the background animation */
    transition: max-height 0.4s ease, opacity 0.4s ease, padding 0.4s ease;
    overflow: hidden;
    max-height: 24px;
    will-change: max-height, opacity;
    transform: translateZ(0);
}

.announcement-bar svg,
.announcement-bar i {
    width: 10px !important;
    height: 10px !important;
    stroke-width: 2.5px;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.scrolled .announcement-bar {
    max-height: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    opacity: 0;
    animation-play-state: paused;
}

.top-branding-bar {
    background: linear-gradient(135deg, #FDC12A 0%, #FFD966 50%, #FDC12A 100%);
    color: var(--primary);
    /* Only transition padding and box-shadow — NOT 'all' */
    transition: padding 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 15px rgba(253, 193, 42, 0.3);
    will-change: padding, box-shadow;
    transform: translateZ(0);
}

.scrolled .top-branding-bar {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.main-logo-img {
    height: 41px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    /* No transition — prevents branding bar reflow/flicker on scroll */
}

/* Logo no longer shrinks on scroll to avoid bar height reflow */

.search-input {
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid rgba(141, 0, 0, 0.2) !important;
    border-radius: 50px !important;
    padding: 8px 18px !important;
    font-size: 0.85rem;
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(141, 0, 0, 0.12);
}

.search-input:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(141, 0, 0, 0.12) !important;
    background: #fff !important;
    outline: none;
}

.header-actions .action-item {
    color: var(--primary) !important;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.header-actions .action-item:hover {
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
}

.cart-count-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, var(--primary), var(--saffron));
    color: white;
    font-size: 10px;
    font-weight: bold;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FDC12A;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
}

.bottom-nav-bar {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    background: #fff !important;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
}

.nav-link-sacred {
    text-decoration: none;
    color: #333 !important;
    font-weight: 600;
    font-size: 0.72rem;
    padding: 6px 10px;
    display: block;
    letter-spacing: 0.03em;
    position: relative;
    transition: var(--transition);
}

.nav-link-sacred::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--saffron));
    transform: scaleX(0);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-link-sacred:hover {
    color: var(--primary) !important;
}

.nav-link-sacred:hover::after {
    transform: scaleX(1);
}

.nav-links-main {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

/* ============ HERO SLIDER ============ */
.hero-slider-content {
    height: 80vh;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    /* No overflow:hidden here — it clips the carousel control buttons */
}

.hero-slider-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(90, 0, 0, 0.75) 0%, rgba(141, 0, 0, 0.5) 40%, rgba(255, 107, 53, 0.2) 100%);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 193, 42, 0.2);
    border: 1px solid rgba(253, 193, 42, 0.5);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--accent), #FFE066);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--dark);
    border: none;
    border-radius: 50px;
    padding: 14px 36px;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(253, 193, 42, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(253, 193, 42, 0.6);
    color: var(--dark);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-num {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

/* Carousel wrapper must be relative for absolute controls to anchor */
#heroCarousel {
    position: relative;
    overflow: hidden;
}

#heroCarousel .carousel-inner {
    overflow: hidden;
}

/* Carousel Controls */

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    /* override Bootstrap's 0.5 default */
    z-index: 20;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

/* Bootstrap sets opacity on the inner icon spans — override it */
.carousel-control-prev-icon,
.carousel-control-next-icon,
.carousel-control-prev i,
.carousel-control-next i {
    opacity: 1 !important;
    color: #fff;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
}

/* ============ MARQUEE STRIP ============ */
.marquee-strip {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 14px 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: 0;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.marquee-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============ SECTION HEADERS ============ */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(141, 0, 0, 0.08), rgba(253, 193, 42, 0.12));
    border: 1px solid rgba(141, 0, 0, 0.15);
    color: var(--primary);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 4px;
    margin: 0 auto 15px;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============ FEATURES STRIP ============ */
.features-strip {
    background: linear-gradient(135deg, #fff9f0 0%, #fff5f5 50%, #f0f9ff 100%);
    padding: 40px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: default;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.feature-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.feature-icon-wrap.red {
    background: linear-gradient(135deg, rgba(141, 0, 0, 0.1), rgba(141, 0, 0, 0.2));
    color: var(--primary);
}

.feature-icon-wrap.gold {
    background: linear-gradient(135deg, rgba(253, 193, 42, 0.15), rgba(253, 193, 42, 0.3));
    color: var(--accent-dark);
}

.feature-icon-wrap.green {
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.2));
    color: var(--teal);
}

.feature-icon-wrap.purple {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(124, 58, 237, 0.2));
    color: var(--purple);
}

.feature-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 3px;
}

.feature-desc {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.4;
}

/* ============ CATEGORY SECTION ============ */
.categories-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #fdf8f0 100%);
    position: relative;
    overflow: hidden;
}

.categories-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(253, 193, 42, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.category-card {
    text-align: center;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.category-circle-wrap {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 15px;
}

.category-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: linear-gradient(white, white) padding-box,
        linear-gradient(135deg, var(--primary), var(--accent)) border-box;
    box-shadow: 0 8px 25px rgba(141, 0, 0, 0.12);
    transition: var(--transition);
    position: relative;
}

.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-circle-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(141, 0, 0, 0.7), rgba(253, 193, 42, 0.5));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.category-circle-overlay span {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.category-card:hover .category-circle {
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(141, 0, 0, 0.25);
}

.category-card:hover .category-circle-overlay {
    opacity: 1;
}

.category-card:hover .category-circle img {
    transform: scale(1.1);
}

.category-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
    transition: var(--transition);
}

.category-card:hover .category-name {
    color: var(--primary);
}

/* ============ HERITAGE SECTION ============ */
.heritage-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fdf8f0 0%, #fff5f5 50%, #f8f0ff 100%);
    position: relative;
    overflow: hidden;
}

.heritage-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(141, 0, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.heritage-img-wrap {
    position: relative;
}

.heritage-img-wrap img {
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(141, 0, 0, 0.15);
    transition: var(--transition);
}

.heritage-img-wrap:hover img {
    transform: scale(1.02);
}

.heritage-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 20px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(141, 0, 0, 0.3);
}

.heritage-img-badge .num {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
    color: var(--accent);
}

.heritage-img-badge .label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.85;
}

.heritage-stat {
    padding: 20px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(141, 0, 0, 0.08);
    transition: var(--transition);
}

.heritage-stat:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.heritage-stat .num {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--primary), var(--saffron));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.heritage-stat .label {
    font-size: 0.78rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* ============ GALLERY / PRODUCT CARDS ============ */
.gallery-section {
    padding: 80px 0;
    background: #fff;
}

.products-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #fdf8f0 0%, #fff5f5 100%);
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(141, 0, 0, 0.03), rgba(253, 193, 42, 0.03));
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.product-card:hover {
    box-shadow: 0 20px 50px rgba(141, 0, 0, 0.15);
    transform: translateY(-8px);
    border-color: rgba(141, 0, 0, 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.card-img-wrapper {
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(135deg, #fdf8f0, #fff5f5);
    position: relative;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.card-img-overlay-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--primary), var(--saffron));
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    z-index: 2;
}

.card-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

.product-card:hover .card-wishlist-btn {
    opacity: 1;
}

.card-wishlist-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.1);
}

.card-body-custom {
    padding: 18px;
    position: relative;
    z-index: 1;
}

.card-category-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--saffron);
    margin-bottom: 6px;
    font-family: 'Inter', sans-serif;
}

.card-title-custom {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.3;
    font-family: 'Playfair Display', serif;
}

.card-price {
    font-size: 1.15rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: linear-gradient(135deg, var(--primary), var(--saffron));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-price-old {
    font-size: 0.85rem;
    color: #aaa;
    text-decoration: line-through;
    font-family: 'Inter', sans-serif;
    margin-left: 6px;
}

/* ============ PROMO BANNER ============ */
.promo-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 40%, #c0392b 70%, var(--saffron) 100%);
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-banner::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(253, 193, 42, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(253, 193, 42, 0.2);
    border: 1px solid rgba(253, 193, 42, 0.4);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.promo-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    color: #fff;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.promo-title .accent {
    color: var(--accent);
}

.promo-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 500px;
}

.promo-img-wrap {
    position: relative;
    z-index: 2;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    animation: promoFloat 6s ease-in-out infinite;
}

.promo-img-wrap img {
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transform: rotate(2deg);
    transition: var(--transition);
}

.promo-img-wrap:hover {
    transform: translateY(-10px);
}

.promo-img-wrap:hover img {
    transform: rotate(0deg) scale(1.02);
}

@keyframes promoFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ============ TESTIMONIALS ============ */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    height: 100%;
    position: relative;
    z-index: 1;
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.testimonial-quote {
    font-size: 3rem;
    line-height: 1;
    color: var(--accent);
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    opacity: 0.7;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--saffron));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
}

.testimonial-name {
    font-weight: 700;
    color: #fff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
}

.testimonial-location {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter', sans-serif;
}

/* ============ NEWSLETTER ============ */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-light) 0%, #fff5f5 50%, var(--saffron-light) 100%);
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '✉';
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15rem;
    opacity: 0.04;
    color: var(--primary);
}

.newsletter-card {
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 20px 60px rgba(141, 0, 0, 0.1);
    border: 1px solid rgba(141, 0, 0, 0.06);
    position: relative;
    z-index: 1;
    text-align: center;
}

.newsletter-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--saffron));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(141, 0, 0, 0.25);
}

.newsletter-input-group {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    border: 2px solid rgba(141, 0, 0, 0.15);
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    font-family: 'Inter', sans-serif;
}

.newsletter-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(141, 0, 0, 0.08);
}

/* ============ FOOTER ============ */
.footer,
.footer-premium {
    background: linear-gradient(135deg, #1a0000 0%, #2d0000 40%, #1a0000 100%);
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
}

.footer::before,
.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--saffron), var(--accent), var(--primary));
}

.footer-link {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-link::before {
    content: '›';
    color: var(--accent);
    opacity: 0;
    transition: var(--transition);
}

.footer-link:hover::before {
    opacity: 1;
}

.text-muted-white {
    color: rgba(255, 255, 255, 0.55);
}

.footer-social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

/* ============ UTILITIES ============ */
.tracking-wider {
    letter-spacing: 0.1em;
}

.bg-warm-light {
    background-color: rgba(197, 160, 89, 0.05);
}

.bg-accent {
    background-color: var(--accent);
}

.text-primary {
    color: var(--primary) !important;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--saffron));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-gold {
    background: linear-gradient(135deg, var(--gold), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Scroll animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .hero-slider-content {
        height: 60vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .newsletter-card {
        padding: 35px 20px;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .heritage-img-badge {
        bottom: -10px;
        right: 10px;
    }

    .hero-stats {
        gap: 20px;
    }

    .promo-img-wrap img {
        transform: rotate(0deg);
    }
}

@media (max-width: 576px) {

    .category-circle-wrap,
    .category-circle {
        width: 110px;
        height: 110px;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Footer social icons */
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(141, 0, 0, 0.3);
}

/* Icon circle for footer contact */
.icon-circle {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(141, 0, 0, 0.2) !important;
    color: var(--accent) !important;
}