/* ==========================================
   1. GLOBAL STYLES & VARIABLES (Exact Theme)
   ========================================== */
:root {
    --primary-gold: #C19A5B;       /* Warm divine gold */
    --gold-light: #DFD3C3;         /* Soft accent gold */
    --deep-maroon: #5C1D24;        /* Sacred Deep Red/Maroon */
    --bg-cream: #FDFBF7;           /* Warm main background cream */
    --bg-white-pure: #FFFFFF;
    --text-dark: #2D1F18;          /* Warm elegant charcoal/brown */
    --text-muted: #6B5E53;         /* Softer subtext */
    --border-color: rgba(193, 154, 91, 0.2); /* Light gold border */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-cream);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* ==========================================
   2. HEADER / NAVIGATION STYLES
   ========================================== */
.main-header {
    background-color: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo a {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--deep-maroon);
}

.brand-sub {
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--primary-gold);
    font-weight: 600;
}

/* Nav Menu */
.nav-menu ul {
    display: flex;
    gap: 32px;
}

.nav-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--deep-maroon);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

/* Utilities (Search, Cart, etc.) */
.header-utilities {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    background-color: rgba(193, 154, 91, 0.08);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    padding-right: 35px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-dark);
    outline: none;
    width: 220px;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    width: 260px;
    background-color: var(--bg-white-pure);
    border-color: var(--primary-gold);
}

.search-box i {
    position: absolute;
    right: 15px;
    color: var(--primary-gold);
    cursor: pointer;
}

.icon-btn {
    background: none;
    border: none;
    font-size: 18px;
    color: var(--text-dark);
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 5px;
}

.icon-btn:hover {
    color: var(--primary-gold);
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--deep-maroon);
    color: var(--bg-cream);
    font-size: 10px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ==========================================
   3. HERO SECTION STYLES
   ========================================== */
.hero-section {
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 60px 0;
    background-color: #f7f3eb; /* Soft ambient warm background */
    overflow: hidden;
    background-image: url('divine home hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    padding: 140px 0 100px; /* Thoda padding badha diya hai perfect visibility ke liye */
    z-index: 1;
}

/* Soft golden glow effect in the background */
.hero-glow-overlay {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: radial-gradient(circle, rgba(193, 154, 91, 0.25) 0%, rgba(253, 251, 247, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Hero Content */
.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-tagline {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.gold-text {
    color: var(--primary-gold);
}

.hero-description {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

/* Buttons */
.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.btn {
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--deep-maroon);
    color: var(--bg-cream);
    border: 1px solid var(--deep-maroon);
}

.btn-primary:hover {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--primary-gold);
}

.btn-secondary:hover {
    background-color: rgba(193, 154, 91, 0.1);
}

/* Hero Badges */
.hero-badges {
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.badge-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--deep-maroon);
}

.badge-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
}

.badge-divider {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

/* Right Hero Visual (Interactive) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-image-wrapper {
    position: relative;
    width: 480px;
    height: 520px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(45, 31, 24, 0.15);
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    border: 4px solid var(--bg-cream);
}

/* Interactive Hotspots */
.hotspot {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--primary-gold);
    background-color: var(--bg-cream);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.hotspot img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
}

.hotspot::after {
    content: attr(data-label);
    position: absolute;
    bottom: -35px;
    background-color: var(--text-dark);
    color: var(--bg-cream);
    font-size: 11px;
    white-space: nowrap;
    padding: 4px 10px;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.hotspot:hover {
    transform: scale(1.1);
}

.hotspot:hover::after {
    opacity: 1;
    bottom: -40px;
}

/* Specific Positions for Hotspots (Exactly matching layout elements) */
.hs-1 {
    top: 15%;
    left: -30px;
}

.hs-2 {
    bottom: 25%;
    right: -30px;
}

.hs-3 {
    top: 50%;
    left: -40px;
}

/* Pulsing effect around hotspots */
.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--primary-gold);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ==========================================
   4. COMMON SECTION COMPONENTS
   ========================================== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-gold);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--deep-maroon);
    letter-spacing: 1px;
}

.section-divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 15px;
    width: 200px;
}

.divider-line {
    height: 1px;
    background-color: var(--primary-gold);
    flex-grow: 1;
    opacity: 0.5;
}

.divider-icon {
    font-size: 14px;
    color: var(--primary-gold);
}

/* ==========================================
   5. SHOP BY DEVOTION (CATEGORIES)
   ========================================== */
.section-categories {
    padding: 100px 0 60px;
    background-color: var(--bg-cream);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background: var(--bg-white-pure);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 15px rgba(45, 31, 24, 0.02);
}

.category-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(193, 154, 91, 0.08);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    border: 1px dashed var(--primary-gold);
}

.cat-icon {
    font-size: 32px;
}

.category-name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-count {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Category Card Hovers */
.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(193, 154, 91, 0.12);
}

.category-card:hover .category-icon-wrapper {
    background-color: var(--deep-maroon);
    border-style: solid;
}

.category-card:hover .category-icon-wrapper .cat-icon {
    filter: brightness(0) invert(1);
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

/* ==========================================
   6. TREASURES OF THE SANCTUM (PRODUCTS)
   ========================================== */
.section-products {
    padding: 60px 0 100px;
    background-color: var(--bg-cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.product-card {
    background: var(--bg-white-pure);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(45, 31, 24, 0.02);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(45, 31, 24, 0.08);
    border-color: rgba(193, 154, 91, 0.4);
}

/* Badges (Best Seller / New etc) */
.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--deep-maroon);
    color: var(--bg-cream);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 5;
    letter-spacing: 1px;
}

/* Image Wrapper and Hover actions */
.product-image-container {
    position: relative;
    height: 320px;
    background-color: #FAF6F0;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-img {
    transform: scale(1.06);
}

.product-actions {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    transition: var(--transition-smooth);
    z-index: 4;
}

.product-card:hover .product-actions {
    bottom: 20px;
}

.action-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--bg-white-pure);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.action-btn:hover {
    background-color: var(--deep-maroon);
    color: var(--bg-cream);
    border-color: var(--deep-maroon);
}

/* Info styling */
.product-info {
    padding: 25px;
    text-align: center;
}

.product-rating {
    font-size: 13px;
    color: #FFB300; /* Rich gold rating star */
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
}

.rating-text {
    font-size: 12px;
    color: var(--text-muted);
    margin-left: 5px;
    font-weight: 500;
}

.product-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.3;
}

.product-title a:hover {
    color: var(--primary-gold);
}

.product-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.current-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--deep-maroon);
}

.original-price {
    font-size: 14px;
    text-decoration: line-through;
    color: var(--text-muted);
}

/* Subtle sleek Add to Cart Button */
.add-to-cart-btn {
    width: 100%;
    padding: 12px;
    background-color: transparent;
    border: 1px solid var(--primary-gold);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.add-to-cart-btn:hover {
    background-color: var(--deep-maroon);
    border-color: var(--deep-maroon);
    color: var(--bg-cream);
}

/* View all at bottom */
.view-all-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}



/* ==========================================
   7. WHY DEVOTEES CHOOSE US STYLES
   ========================================== */
.section-features {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-white-pure);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 35px 30px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-gold);
    box-shadow: 0 10px 25px rgba(193, 154, 91, 0.05);
}

.feature-icon {
    font-size: 26px;
    color: var(--primary-gold);
    margin-bottom: 20px;
    background: rgba(193, 154, 91, 0.08);
    width: 54px;
    height: 54px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ==========================================
   8. FESTIVE BANNER STYLES
   ========================================== */
.section-festive-banner {
    padding: 60px 0;
    background-color: var(--bg-cream);
}

.festive-banner-wrapper {
    background: linear-gradient(135deg, var(--deep-maroon) 0%, #421217 100%);
    border-radius: 16px;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    box-shadow: 0 20px 45px rgba(92, 29, 36, 0.2);
    position: relative;
    overflow: hidden;
}

/* Texture pattern placeholder to match style exactly */
.festive-banner-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(var(--primary-gold) 0.5px, transparent 0.5px);
    background-size: 24px 24px;
    opacity: 0.05;
}

.banner-left {
    position: relative;
    z-index: 2;
    color: var(--bg-cream);
}

.banner-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-gold);
    display: block;
    margin-bottom: 15px;
}

.banner-left h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.banner-left p {
    font-size: 15px;
    color: rgba(253, 251, 247, 0.8);
    margin-bottom: 35px;
    max-width: 500px;
}

.white-btn {
    background-color: var(--bg-cream) !important;
    color: var(--deep-maroon) !important;
    border-color: var(--bg-cream) !important;
}

.white-btn:hover {
    background-color: var(--primary-gold) !important;
    color: var(--bg-cream) !important;
    border-color: var(--primary-gold) !important;
}

.banner-right {
    position: relative;
    z-index: 2;
}

.festive-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.festive-tab-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(253, 251, 247, 0.1);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.festive-tab-item span {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.festive-tab-item p {
    color: var(--bg-cream);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.festive-tab-item:hover {
    background: rgba(193, 154, 91, 0.15);
    border-color: var(--primary-gold);
    transform: scale(1.03);
}

/* ==========================================
   9. LOVED BY SECOND HOMES
   ========================================== */
.section-loyalty {
    padding: 60px 0 80px;
    background-color: var(--bg-cream);
}

.loyalty-row-scroll {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 5px;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.loyalty-row-scroll::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome/Safari */
}

.mini-product-card {
    background: var(--bg-white-pure);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 20px;
    min-width: 280px;
    flex: 1;
    text-align: center;
    transition: var(--transition-smooth);
}

.mini-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
    background-color: #fcfbf9;
}

.mini-product-card h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.mini-price {
    font-size: 15px;
    color: var(--deep-maroon);
    font-weight: 700;
}

.mini-product-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 8px 20px rgba(0,0,0,0.03);
    transform: translateY(-3px);
}



/* ==========================================
   10. HERITAGE & LEGACY STYLES
   ========================================== */
.section-heritage {
    padding: 80px 0;
    background-color: var(--bg-cream);
}

.heritage-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.heritage-image {
    position: relative;
}

.heritage-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(45,31,24,0.1);
    border: 1px solid var(--border-color);
}

.heritage-experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--deep-maroon);
    color: var(--bg-cream);
    padding: 20px 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(92,29,36,0.2);
}

.heritage-experience-badge h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    color: var(--primary-gold);
}

.heritage-experience-badge p {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.left-align {
    text-align: left;
    align-items: flex-start;
}

.heritage-text {
    font-size: 15px;
    color: var(--text-muted);
    margin: 25px 0 35px;
    line-height: 1.7;
}

.heritage-counter-row {
    display: flex;
    gap: 30px;
}

.counter-box {
    background-color: var(--bg-white-pure);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 6px;
    flex: 1;
    text-align: center;
}

.counter-box h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--deep-maroon);
    margin-bottom: 5px;
}

.counter-box p {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================
   11. BLESSINGS FROM OUR FAMILY (TESTIMONIALS)
   ========================================== */
.section-testimonials {
    padding: 80px 0 100px;
    background-color: var(--bg-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white-pure);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(193,154,91,0.06);
}

.stars-row {
    color: #FFB300;
    font-size: 13px;
    margin-bottom: 20px;
}

.review-quote {
    font-size: 14.5px;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 25px;
}

.reviewer-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: var(--deep-maroon);
}

.reviewer-info span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================
   12. MAIN FOOTER & NEWSLETTER STYLES
   ========================================== */
.main-footer {
    background-color: #1A110D; /* Sleek rich dark brown matching image bottom */
    color: rgba(253, 251, 247, 0.7);
    padding: 80px 0 30px;
    border-top: 3px solid var(--primary-gold);
}

.newsletter-inline-box {
    background: linear-gradient(90deg, #421217 0%, var(--deep-maroon) 100%);
    border: 1px solid rgba(193, 154, 91, 0.3);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin-bottom: 70px;
    transform: translateY(-110px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.newsletter-content h3 {
    font-family: var(--font-heading);
    color: var(--bg-cream);
    font-size: 22px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.newsletter-content p {
    font-size: 13.5px;
    color: rgba(253, 251, 247, 0.75);
}

.newsletter-form {
    display: flex;
    width: 45%;
    gap: 10px;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 14px 20px;
    border-radius: 4px;
    border: 1px solid rgba(193,154,91,0.4);
    background: rgba(255, 255, 255, 0.08);
    color: var(--bg-cream);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(253, 251, 247, 0.4);
}

.newsletter-form button {
    padding: 14px 28px;
    background-color: var(--primary-gold);
    color: #1A110D;
    font-weight: 700;
    font-family: var(--font-body);
    font-size: 14px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.newsletter-form button:hover {
    background-color: var(--bg-cream);
    color: var(--deep-maroon);
}

/* Adjust layout offsets for proper footer spacing due to overlay box */
.footer-columns {
    margin-top: -40px;
    display: grid;
    grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(253, 251, 247, 0.1);
}

.footer-col h4 {
    font-family: var(--font-heading);
    color: var(--bg-cream);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-col h5 {
    color: var(--primary-gold);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 22px;
}

.footer-col p {
    font-size: 13.5px;
    line-height: 1.6;
}

.brand-col p {
    margin-bottom: 25px;
}

.social-handles {
    display: flex;
    gap: 15px;
}

.social-handles a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(253, 251, 247, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--bg-cream);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.social-handles a:hover {
    background-color: var(--primary-gold);
    color: #1A110D;
}


.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul a {
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-col ul a:hover {
    color: var(--primary-gold);
    padding-left: 4px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 13.5px;
}

.contact-line i {
    color: var(--primary-gold);
}

/* Bottom Copyright */
.footer-bottom {
    padding-top: 30px;
    text-align: center;
    font-size: 12px;
    color: rgba(253, 251, 247, 0.4);
}

/* ==========================================================================
   HERO CONTAINER AND DARK SHADOW SYSTEM
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 120px 0;
    background-color: #140E0B; /* Fallback dark theme background */
    
    /* OPTION A: Agar background mein image chahiye, toh niche wali line se '/*' hata dena aur path set kar dena: */
    /* background-image: linear-gradient(rgba(20, 14, 11, 0.82), rgba(20, 14, 11, 0.82)), url('your-background-image.jpg'); */
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    z-index: 1;
}

/* Background Video Styling */
.hero-full-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

/* Glow & Darkness filter overlay */
.hero-glow-overlay {
    position: absolute;
    inset: 0;
    /* Is gradient se left side (jahan text hai) jyada dark rahega aur right side par soft blend milega */
    background: linear-gradient(135deg, rgba(20, 14, 11, 0.88) 30%, rgba(26, 17, 13, 0.75) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Grid Layout for Split Content */
.hero-container {
    position: relative;
    z-index: 3; /* Z-index is kept above overlay and video */
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
}

/* Ensure Text & Descriptors align beautifully on dark backdrop */
.hero-title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
}

.hero-description {
    font-size: 15px;
    line-height: 1.6;
    margin: 20px 0 30px;
}

/* Badge Divider adjustment for dark layout */
.badge-divider {
    width: 1px;
    height: 40px;
    background-color: rgba(253, 251, 247, 0.15);
}

/* Right Side Image Box Wrapper - making sure the hotspot container stands out */
.main-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(226, 182, 112, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* If you want to slightly darken the right side inner product photo ('hero 2.jpg') as well: */
.hero-bg-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15); /* Halat-e-darkness filter for product background */
    transition: background 0.3s ease;
}