/* =========================================
   DIYA AROMAS - LEGACY RECONSTRUCTION
========================================= */

:root {
    --primary-red: #d33833;
    --dark-bg: #3a2a22; /* Deep Brown */
    --banner-green: #29472d; /* Forest Green */
    --text-dark: #3a2a22; /* Deep Brown */
    --text-light: #665b55;
    --bg-light: #fffff8; /* Ivory */
    --bg-sand: #f4ecd8; /* Sand */
    --deep-brown: #3a2a22;
    --forest-green: #29472d;
    --gold-accent: #cfa85e; /* Gold */
    --border-color: #e6dac3;
    --font-main: 'Montserrat', sans-serif;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   1. EDITORIAL CENTERED HEADER
========================================= */
.editorial-header {
    position: fixed; /* Keep it fixed at the top always */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    transition: all 0.4s ease; /* Smooth transition for scroll */
}

/* Scrolled State */
.editorial-header.scrolled {
    background-color: white;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.editorial-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr auto 1fr; /* 3 columns, middle one auto-sizes to content */
    align-items: center;
}

/* Left Nav */
.editorial-nav-left {
    display: flex;
    gap: 40px;
    justify-content: flex-start;
}

.editorial-nav-left a {
    color: white;
    font-size: 1.15rem; /* Larger font size like the image */
    font-weight: 500;
    position: relative;
    padding-bottom: 5px; /* Space for the underline */
    transition: color 0.3s ease;
}

.editorial-header.scrolled .editorial-nav-left a {
    color: #4a1516; /* Dark text when scrolled */
}

.editorial-nav-left a.active-link {
    color: #ff5a4d; /* Bright orange/red from image */
}

.editorial-header.scrolled .editorial-nav-left a.active-link {
    color: #ff5a4d; /* Keeps active color when scrolled */
}

.editorial-nav-left a.active-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background: #ff5a4d;
}

.editorial-nav-left a:hover:not(.active-link) {
    color: #ff5a4d;
    opacity: 0.8;
}

/* Center Logo */
.editorial-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.editorial-logo img {
    height: 90px; /* Large but perfectly contained logo */
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

/* Scrolled State Logo - Original Colors and smaller */
.editorial-header.scrolled .editorial-logo img {
    height: 60px; /* Shrink logo slightly */
    filter: none; /* Show original colors */
}

.editorial-logo:hover img {
    transform: scale(1.05);
}

/* Right Actions */
.editorial-actions-right {
    display: flex;
    align-items: center;
    gap: 30px;
    justify-content: flex-end;
}

.header-search {
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 5px;
    transition: border-color 0.3s ease;
}

.editorial-header.scrolled .header-search {
    border-bottom-color: rgba(74, 21, 22, 0.2);
}

.header-search:focus-within {
    border-color: #e5c158;
}

.search-input {
    background: transparent;
    border: none;
    color: white;
    font-size: 0.8rem;
    font-family: inherit;
    width: 130px; /* Small width by default */
    outline: none;
    transition: width 0.4s ease, color 0.3s ease;
}

.editorial-header.scrolled .search-input {
    color: #4a1516; /* Dark text on search input */
}

.search-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.editorial-header.scrolled .search-input::placeholder {
    color: rgba(74, 21, 22, 0.5); /* Dark placeholder */
}

.search-input:focus {
    width: 180px; /* Expands smoothly on focus */
}

.search-icon {
    color: white;
    cursor: pointer;
    transition: color 0.3s ease;
}

.editorial-header.scrolled .search-icon {
    color: #4a1516; /* Dark search icon */
}

.header-search:focus-within .search-icon {
    color: #e5c158;
}

.editorial-actions-right > a {
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    transition: opacity 0.4s ease, color 0.4s ease;
    display: flex;
    align-items: center;
}

.editorial-header.scrolled .editorial-actions-right > a {
    color: #4a1516; /* Dark text for right side actions */
}

.editorial-actions-right a:hover {
    color: #e5c158;
    opacity: 1;
}

.editorial-actions-right .icon-link {
    opacity: 1; /* Icons should be fully visible by default */
}

.editorial-actions-right .icon-link svg {
    transition: transform 0.3s ease;
}

.editorial-actions-right .icon-link:hover svg {
    transform: scale(1.1);
}

.cart-link, .wishlist-link {
    position: relative;
}

.cart-count, .wishlist-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e5c158;
    color: black;
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.hero-container-align {
    height: 100%; /* For full height flex alignment */
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 10;
}

/* =========================================
   2. VIDEO BACKGROUND HERO SECTION
========================================= */
.video-hero {
    position: relative;
    z-index: 25; /* Stacking context ensures floating badge renders above following sections */
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px; /* Ample breathing room below fixed header */
    padding-bottom: 90px; /* Ample breathing room above floating review badge */
    box-sizing: border-box;
}

.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide video,
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0.5) 0%, rgba(10, 10, 10, 0.2) 35%, rgba(10, 10, 10, 0.4) 100%), linear-gradient(to right, rgba(15, 15, 15, 0.85) 0%, rgba(15, 15, 15, 0.5) 55%, transparent 100%);
    z-index: 2;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
}

.video-hero-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    padding-top: 0;
}

.luxury-eyebrow {
    color: #e5c158; /* Gold on dark video */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 18px;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.luxury-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    line-height: 1.15;
    color: white;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -1px;
    white-space: normal;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.luxury-title i {
    font-style: italic;
    color: #e5c158; /* Gold accent */
}

.luxury-subtext {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 800px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-actions-group {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 45px;
}

.luxury-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 2px solid white;
    padding-bottom: 5px;
    transition: gap 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.luxury-btn:hover {
    gap: 25px;
    color: #e5c158;
    border-color: #e5c158;
}

.outline-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.outline-btn:hover {
    border-color: white;
    background: white;
    color: black;
}

.hero-trust-stats {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 0;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 16px 32px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.stat-number {
    font-family: serif;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--gold-accent);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.95);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.25);
}

/* Floating Review Badge - Centered */
.floating-review-badge {
    position: absolute;
    bottom: -35px; /* Floats in the exact center over the bottom edge */
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border-radius: 50px;
    padding: 10px 30px 10px 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    z-index: 50;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.floating-review-badge:hover {
    transform: translateX(-50%) translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.overlapping-socials {
    display: flex;
    align-items: center;
}

.social-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: -15px; /* Creates the overlapping effect */
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.social-circle:last-child {
    margin-right: 0;
}

.social-circle.yt { background: #ff0000; color: white; z-index: 4; }
.social-circle.fb { background: #1877f2; color: white; z-index: 3; }
.social-circle.ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); color: white; z-index: 2; }
.social-circle.in { background: #0a66c2; color: white; z-index: 1; }

.social-circle svg { 
    width: 20px; 
    height: 20px; 
}

.review-badge-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #111;
    line-height: 1.2;
}

.review-stars {
    font-size: 0.85rem;
    color: #ffc107; /* Gold stars */
    font-weight: 600;
    margin-top: 2px;
}

.review-stars span {
    color: #333;
    margin-left: 5px;
}

/* =========================================
   COMBINED GREEN SHOWCASE WRAPPER
========================================= */
.green-showcase-wrapper {
    position: relative;
    z-index: 1;
    background-image: url('images/diya_green_pattern_bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 10px;
    padding-bottom: 20px;
}

/* =========================================
   3. CATEGORIES SECTION
========================================= */
.categories-section {
    position: relative;
    padding: 70px 0 40px;
    background: transparent;
}

.text-center {
    text-align: center;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.category-item {
    position: relative;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.category-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.category-item:hover img {
    transform: scale(1.1); /* Smooth image zoom */
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    background: linear-gradient(to top, rgba(58, 42, 34, 0.95) 0%, rgba(58, 42, 34, 0.5) 60%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
    transition: padding-bottom 0.4s ease;
}

.category-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.8;
}

.category-item:hover .category-icon {
    transform: translateY(0);
    opacity: 1;
}

.category-title {
    font-size: 2.2rem;
    color: #e5c158; /* Premium gold */
    margin-bottom: 5px;
    font-weight: 400;
    font-family: serif;
    word-break: keep-all;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    text-align: left;
}

.category-desc {
    color: #ffffff;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    text-align: left;
    margin-bottom: 0;
}

.explore-btn {
    margin-top: 15px;
    display: inline-block;
    color: #ff5a4d;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
    text-align: left;
}

.category-item:hover .category-content {
    padding-bottom: 50px;
}

.category-item:hover .category-title,
.category-item:hover .category-desc,
.category-item:hover .explore-btn {
    transform: translateY(0);
    opacity: 1;
}

/* =========================================
   4. FULL WIDTH PROMO BANNER
========================================= */
/* =========================================
   4. LOBAN EDITORIAL SECTION
========================================= */
.loban-editorial {
    width: 100%;
    margin: 0;
    background: #4a1516; /* Deep Maroon */
}

.loban-split {
    display: flex;
    flex-wrap: wrap;
    min-height: 550px;
}

.loban-text-col {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px;
    color: #fff;
}

.loban-video-col {
    flex: 1.2; /* Give video slightly more space */
    min-width: 300px;
    position: relative;
    overflow: hidden;
}

.loban-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.loban-badge {
    color: #e5c158;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.loban-heading {
    font-family: serif;
    font-size: 6rem;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.loban-subheading {
    font-size: 1.8rem;
    color: #e5c158;
    font-weight: 300;
    margin-bottom: 30px;
}

.loban-body {
    font-size: 1.2rem;
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 40px;
}

.loban-btn {
    display: inline-block;
    align-self: flex-start;
    padding: 15px 40px;
    background: #e5c158;
    color: #4a1516;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.loban-btn:hover {
    background: #fff;
}

/* =========================================
   5. FEATURED PRODUCTS PREMIUM
========================================= */
.featured-products {
    padding: 50px 0 10px;
    background-color: transparent;
}

.products-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 15px;
}

.products-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 20px 0;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.product-card-premium {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 calc((100% - 3 * 24px) / 4);
    min-width: 250px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
}

.product-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.product-image-box {
    height: 250px;
    overflow: hidden;
    position: relative;
    background: #faf8f5;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card-premium:hover .product-image-box img {
    transform: scale(1.06);
}

.product-badges {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 10;
    pointer-events: none;
}

.badge {
    background: #e5c158;
    color: #4a1516;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge.new-arrival {
    background: #4a1516;
    color: #fff;
}

.wishlist-btn {
    pointer-events: auto;
    background: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    color: #666;
    transition: all 0.3s ease;
}

.wishlist-btn:hover {
    color: #d33833;
    transform: scale(1.1);
}

.wishlist-btn svg {
    width: 18px;
    height: 18px;
}

.quick-add-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
}

.product-card-premium:hover .quick-add-overlay {
    opacity: 1;
    transform: translateY(0);
}

.quick-add-btn {
    background: white;
    color: #4a1516;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-add-btn:hover {
    background: #e5c158;
    color: #4a1516;
}

.product-info-premium {
    padding: 30px;
    text-align: center;
    position: relative;
}

.product-rating {
    margin-bottom: 10px;
}

.product-rating .stars {
    color: #e5c158;
    font-size: 1rem;
}

.product-rating small {
    color: #888;
    font-size: 0.8rem;
    margin-left: 5px;
}

.fragrance-notes {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
    font-style: italic;
}

.pack-size {
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info-premium h4 {
    font-family: serif;
    font-size: 1.5rem;
    color: #4a1516;
    margin-bottom: 10px;
}

.product-info-premium .price {
    font-size: 1.2rem;
    color: #e5c158;
    font-weight: 600;
    margin-bottom: 20px;
}

.luxury-add-btn {
    background: transparent;
    border: 1px solid #4a1516;
    color: #4a1516;
    padding: 10px 25px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.luxury-add-btn:hover {
    background: #4a1516;
    color: #fff;
}

/* Arrows */
.carousel-arrow {
    background: #fff;
    border: 1px solid #4a1516;
    color: #4a1516;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: absolute;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.carousel-arrow:hover {
    background: #4a1516;
    color: #fff;
}

.carousel-arrow.prev {
    left: -15px;
}

.carousel-arrow.next {
    right: -15px;
}

/* =========================================
   6. EDITORIAL PROMO / GREEN HERITAGE BANNER
========================================= */
.editorial-promo-block {
    margin: 0;
    background: #f9f6f0;
}

.editorial-promo-block.green-heritage-section {
    position: relative;
    margin: 15px auto 10px;
    max-width: 1400px;
    min-height: 520px;
    border-radius: 28px;
    background-image: url('images/diya_green_pattern_bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-shadow: 0 20px 50px rgba(41, 71, 45, 0.2), inset 0 0 0 1px rgba(207, 168, 94, 0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
}

.green-heritage-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0.3) 55%, rgba(0, 0, 0, 0.12) 100%);
    pointer-events: none;
    z-index: 1;
}

.green-promo-inner {
    position: relative;
    z-index: 2;
    max-width: 650px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

.promo-center-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid #cfa85e;
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    text-align: center;
}

.promo-center-card .promo-eyebrow {
    color: #29472d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
    background: rgba(207, 168, 94, 0.2);
    padding: 5px 16px;
    border-radius: 20px;
}

.promo-center-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #3a2a22;
    line-height: 1.15;
    margin-bottom: 15px;
}

.promo-center-card h2 i {
    color: #cfa85e;
    font-style: italic;
}

.promo-center-card .promo-desc {
    color: #554841;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.promo-center-card .offer-box {
    background: #fdfaf4;
    border-left: 4px solid #cfa85e;
    border-right: 1px solid rgba(207, 168, 94, 0.3);
    border-top: 1px solid rgba(207, 168, 94, 0.3);
    border-bottom: 1px solid rgba(207, 168, 94, 0.3);
    border-radius: 8px;
    padding: 12px 20px;
    margin: 0 auto 30px;
    display: inline-block;
    text-align: left;
}

.promo-center-card .offer-box span {
    font-size: 0.8rem;
    color: #776a60;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
}

.promo-center-card .offer-box strong {
    font-size: 1.25rem;
    color: #3a2a22;
    font-weight: 700;
    display: block;
}

.promo-center-card .promo-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.promo-center-card .luxury-btn.dark-btn {
    background: #29472d;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(41, 71, 45, 0.25);
}

.promo-center-card .luxury-btn.dark-btn:hover {
    background: #cfa85e;
    color: #3a2a22;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(207, 168, 94, 0.4);
}

.outline-dark-btn {
    background: transparent;
    border: 1.5px solid #29472d;
    color: #29472d;
    padding: 13px 28px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

.outline-dark-btn:hover {
    background: #29472d;
    color: #fff;
    transform: translateY(-2px);
}

.whatsapp-icon-link {
    width: 46px;
    height: 46px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-icon-link:hover {
    transform: scale(1.1);
    background: #1ebc59;
}

@media (max-width: 992px) {
    .editorial-promo-block.green-heritage-section {
        margin: 15px 15px 10px;
        padding: 40px 20px;
        min-height: auto;
    }
    .promo-center-card {
        padding: 30px 20px;
    }
    .promo-center-card h2 {
        font-size: 2.3rem;
    }
}

.promo-split-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 500px;
}

.promo-image-side, .promo-text-side {
    flex: 1;
    min-width: 300px;
}

.promo-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.promo-text-side {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

.promo-text-content {
    max-width: 400px;
}

.promo-eyebrow {
    color: #ff5a4d;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.promo-text-content h2 {
    font-family: serif;
    font-size: 3.5rem;
    color: #4a1516;
    line-height: 1.1;
    margin-bottom: 20px;
}

.promo-desc {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.offer-box {
    border-left: 3px solid #e5c158;
    padding-left: 20px;
    margin-bottom: 40px;
}

.offer-box span {
    display: block;
    color: #888;
    font-size: 0.9rem;
}

.offer-box strong {
    display: block;
    color: #4a1516;
    font-size: 1.3rem;
    font-weight: 700;
}

.luxury-btn.dark-btn {
    display: inline-block;
    background: #4a1516;
    color: #fff;
    padding: 15px 35px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: background 0.3s ease;
}

.luxury-btn.dark-btn:hover {
    background: #ff5a4d;
}

/* =========================================
   6B. WHY CHOOSE US
========================================= */
.why-choose-us {
    position: relative;
    padding: 40px 0 60px;
    background: transparent;
}

.stunning-layout {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.stunning-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stunning-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 16px;
    border: 1px solid rgba(207, 168, 94, 0.35);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stunning-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    border-color: #e5c158;
}

.stunning-left .stunning-feature {
    text-align: right;
    flex-direction: row-reverse;
}

.stunning-center {
    flex: 0 0 400px;
    height: 550px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(74, 21, 22, 0.15);
}

.stunning-center img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.stunning-center:hover img {
    transform: scale(1.05);
}

.center-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    box-sizing: border-box;
    padding-right: 15px;
    padding-bottom: 15px;
    background: #e5c158;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #4a1516;
    font-weight: bold;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.center-badge span {
    font-size: 1.3rem;
    line-height: 1.2;
}

.center-badge small {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stunning-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    border: 2px solid #e5c158;
    color: #4a1516;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.stunning-feature:hover .stunning-icon {
    background: #4a1516;
    color: #fff;
    border-color: #4a1516;
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 30px rgba(74, 21, 22, 0.2);
}

.stunning-text h4 {
    font-family: serif;
    color: #4a1516;
    font-size: 1.3rem;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.stunning-feature:hover .stunning-text h4 {
    color: #e5c158;
}

.stunning-text p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .stunning-layout {
        flex-direction: column;
    }
    .stunning-left .stunning-feature {
        text-align: left;
        flex-direction: row;
    }
    .stunning-center {
        width: 100%;
        height: 400px;
        flex: auto;
    }
}

/* =========================================
   6C. PROCESS SECTION
========================================= */
.process-section {
    background-color: var(--bg-light);
    padding-bottom: 80px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 400px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .video-container {
        height: 60vh;
    }
}

.process-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-text-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 20, 15, 0.85) 0%, rgba(30, 20, 15, 0.5) 40%, rgba(30, 20, 15, 0) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-content-left {
    max-width: 550px;
    color: white;
}

.video-content-left .eyebrow {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #e5c158;
    display: block;
    margin-bottom: 25px;
}

.video-content-left h2 {
    font-family: serif;
    font-size: 5.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    text-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.video-content-left h2 i {
    font-family: 'Great Vibes', cursive;
    color: #e5c158;
    font-size: 1.1em;
    font-weight: 300;
}

.video-content-left p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    border-left: 3px solid #e5c158;
    padding-left: 25px;
}

.video-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn-pulse {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.play-btn-pulse:hover {
    background: white;
    color: #4a1516;
    transform: scale(1.05);
}

.play-btn-pulse .pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    animation: pulse-ring 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.play-btn-pulse .play-text {
    position: absolute;
    bottom: -40px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    font-weight: 500;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .video-text-overlay .container {
        flex-direction: column !important;
        justify-content: center !important;
        text-align: center;
    }
    .video-text-overlay {
        background: rgba(30, 20, 15, 0.5);
        padding: 40px 20px;
    }
    .video-content-left {
        margin-bottom: 60px;
    }
    .video-content-left p {
        border-left: none;
        padding-left: 0;
    }
    .video-content-left h2 {
        font-size: 3.5rem;
    }
}

.process-timeline-premium {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    padding: 20px 0;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    overflow-x: auto;
}

.process-timeline-premium::before {
    content: '';
    position: absolute;
    top: 60px; /* Half of 80px height + 20px padding */
    left: 80px;
    right: 80px;
    height: 2px;
    background: rgba(229, 193, 88, 0.2);
    z-index: 1;
}

.process-timeline-premium::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 80px;
    height: 2px;
    background: var(--gold-accent);
    z-index: 1;
    width: 0;
    transition: width 2s ease-in-out;
    transition-delay: 0.5s;
}

.process-timeline-premium.is-visible::after {
    width: calc(100% - 160px);
}

.timeline-step {
    text-align: center;
    min-width: 120px;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-timeline-premium.is-visible .timeline-step {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.process-timeline-premium.is-visible .timeline-step:nth-child(1) { transition-delay: 0.5s; }
.process-timeline-premium.is-visible .timeline-step:nth-child(2) { transition-delay: 0.9s; }
.process-timeline-premium.is-visible .timeline-step:nth-child(3) { transition-delay: 1.3s; }
.process-timeline-premium.is-visible .timeline-step:nth-child(4) { transition-delay: 1.7s; }
.process-timeline-premium.is-visible .timeline-step:nth-child(5) { transition-delay: 2.1s; }
.process-timeline-premium.is-visible .timeline-step:nth-child(6) { transition-delay: 2.5s; }

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    color: var(--forest-green);
    border: 2px solid var(--gold-accent);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.timeline-step:hover .step-icon {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    background: var(--forest-green);
    color: #fff;
    border-color: var(--forest-green);
}

.timeline-step h4 {
    font-size: 0.95rem;
    color: var(--deep-brown);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.timeline-step:hover h4 {
    color: var(--forest-green);
}

/* =========================================
   6D. LIFESTYLE PHOTOGRAPHY
========================================= */
.lifestyle-section {
    padding: 40px 0;
    background-color: #fff;
}

.lifestyle-accordion {
    display: flex;
    width: 100%;
    height: 500px;
    gap: 15px;
}

.accordion-item {
    flex: 1;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    position: relative;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    /* Desaturate non-active items slightly for contrast */
    filter: grayscale(30%) brightness(0.85);
}

.accordion-item:hover, .accordion-item.active {
    flex: 4;
    filter: grayscale(0%) brightness(1.1);
}

.accordion-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(74, 21, 22, 0.95) 0%, rgba(74, 21, 22, 0.2) 60%, transparent 100%);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.1s, transform 0.5s ease 0.1s;
}

.accordion-item:hover .accordion-content, .accordion-item.active .accordion-content {
    opacity: 1;
    transform: translateY(0);
}

.accordion-content .icon-circle {
    width: 40px;
    height: 40px;
    background-color: rgba(229, 193, 88, 0.9); /* Gold */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4a1516; /* Dark red */
    font-size: 1.2rem;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.accordion-content .text-content h3 {
    font-family: serif;
    font-size: 1.8rem;
    margin: 0 0 5px 0;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.accordion-content .text-content p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* On very small screens, fall back to column flex */
@media (max-width: 768px) {
    .lifestyle-accordion {
        flex-direction: column;
        height: 800px;
    }
    .accordion-item {
        border-radius: 15px;
    }
}
/* =========================================
   6E. CUSTOMER REVIEWS
========================================= */
.customer-reviews {
    position: relative;
    padding: 85px 0 80px;
    background-image: url('images/diya_purple_reviews_bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 38px 32px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(45, 10, 60, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1.5px solid rgba(247, 213, 139, 0.45);
}

.review-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 45px rgba(45, 10, 60, 0.28);
    border-color: #f7d58b;
}

.review-card .review-stars {
    color: #e5a93b;
    font-size: 1.25rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 1.02rem;
    color: #3b2838;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

.review-author {
    display: flex;
    flex-direction: column;
}

.review-author strong {
    font-size: 1.1rem;
    color: #4a1516;
    margin-bottom: 4px;
}

.review-author span {
    font-size: 0.82rem;
    color: #7a6375;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* =========================================
   7. PREMIUM TRUST BADGES
========================================= */
.trust-badges-premium {
    padding: 30px 0;
    background-color: #fff;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.badges-grid-premium {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.badge-item-premium {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 300px;
}

.badge-icon-premium {
    width: 60px;
    height: 60px;
    background: #f9f6f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5c158; /* Gold icons */
    flex-shrink: 0;
}

.badge-icon-premium svg {
    width: 28px;
    height: 28px;
}

.badge-text-premium h4 {
    font-size: 1.1rem;
    color: #4a1516;
    margin-bottom: 5px;
}

.badge-text-premium p {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

/* =========================================
   8. FOOTER
========================================= */
.video-footer {
    position: relative;
    padding-top: 80px;
    padding-bottom: 20px;
    color: white; /* Make text white on dark video */
    overflow: hidden;
}

.footer-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 10, 10, 0.4);
    z-index: 2;
}

.footer-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
    border-bottom: 2px solid #ff5a4d; /* Original bright orange underline */
    padding-bottom: 10px;
    display: inline-block;
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: white; /* Changed from #cccccc to white */
    line-height: 1.5;
}

.footer-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: white; /* Icons white */
    margin-top: 3px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-links a {
    color: white; /* Changed from #cccccc to white */
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff5a4d; /* Add orange hover effect for interaction */
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ff5a4d; /* Original bright orange border */
    border-radius: 50%;
    color: #ff5a4d; /* Original bright orange icon */
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 18px;
    height: 18px;
}

.social-icon:hover {
    background-color: #ff5a4d;
    color: white;
}

.footer-bottom {
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    font-size: 0.9rem;
    color: white;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.75);
}

.newsletter-form input,
.newsletter-form button {
    text-shadow: none;
}

.footer-bottom p {
    color: white !important;
    margin: 0;
}

.chachir-logo {
    display: inline-flex;
    align-items: center;
    font-family: serif; /* Elegant serif for Chachir */
    font-size: 1.1rem;
    color: white !important;
    gap: 5px;
}

/* =========================================
   11. INSTAGRAM FEED
========================================= */
.instagram-feed-premium {
    padding: 40px 0;
    background-color: #fdfaf6;
    overflow: hidden;
}

.insta-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    gap: 50px;
}

.insta-left {
    flex: 0 0 350px;
    padding-left: 50px;
}

.insta-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin: 0 0 20px 0;
    box-shadow: 0 10px 20px rgba(220, 39, 67, 0.2);
    transform: rotate(-10deg);
}

.insta-left h3 {
    font-family: serif;
    font-size: 3.5rem;
    color: #4a1516;
    line-height: 1.1;
    margin-bottom: 20px;
}

.insta-left p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.insta-handle {
    display: block;
    font-size: 1.3rem;
    color: #e5c158;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 40px;
    transition: color 0.3s ease;
}

.insta-handle:hover {
    color: #4a1516;
}

.insta-right {
    flex: 1;
    overflow: hidden;
    position: relative;
    /* gradient fade at edges */
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    padding: 20px 0;
}

.insta-marquee {
    display: flex;
    width: max-content;
}

.marquee-track {
    display: flex;
    gap: 30px;
    animation: scrollMarquee 25s linear infinite;
}

.insta-marquee:hover .marquee-track {
    animation-play-state: paused;
}

.insta-marquee-item {
    width: 320px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.insta-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.insta-marquee-item:hover img {
    transform: scale(1.1);
}

.insta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(74, 21, 22, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.insta-marquee-item:hover .insta-overlay {
    opacity: 1;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 15px)); }
}

.follow-btn-premium {
    display: inline-block;
    padding: 15px 40px;
    background: #4a1516;
    color: white;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(74, 21, 22, 0.2);
}

.follow-btn-premium:hover {
    background: #e5c158;
    color: #4a1516;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .insta-split {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    .insta-left {
        padding: 0 20px;
        flex: auto;
    }
    .insta-icon-wrapper { margin: 0 auto 20px; }
    .insta-right { width: 100%; }
}

/* =========================================
   12. FOOTER UPDATES
========================================= */
.footer-logo {
    height: 70px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-about {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.mt-3 {
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    outline: none;
    font-family: inherit;
}

.newsletter-form button {
    background: var(--gold-accent);
    color: var(--deep-brown);
    border: none;
    padding: 0 20px;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #fff;
}

.payment-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.pay-icon {
    font-size: 1.8rem;
    color: rgba(255,255,255,0.8);
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.certifications span {
    color: var(--gold-accent);
    font-weight: 500;
    margin: 0 5px;
}

/* =========================================
   13. MOBILE STICKY CTA
========================================= */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    display: flex;
    justify-content: space-between;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    transform: translateY(100%); /* Hidden by default on desktop */
    transition: transform 0.3s ease;
}

.mobile-sticky-cta a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 0;
    font-size: 0.75rem;
    color: var(--deep-brown);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-right: 1px solid var(--border-color);
}

.mobile-sticky-cta a:last-child {
    border-right: none;
}

.mobile-sticky-cta svg {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
    color: var(--forest-green);
}

.cta-whatsapp svg {
    color: #25D366; /* WhatsApp Green */
}

.cta-shop {
    background: var(--gold-accent);
    color: var(--deep-brown) !important;
}

.cta-shop svg {
    color: var(--deep-brown);
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 992px) {
    /* Header Mobile Menu & Container Alignment */
    .editorial-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 20px;
    }
    .mobile-menu-toggle {
        display: block !important;
        background: none;
        border: none;
        color: white;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 101;
        flex: 1;
        text-align: left;
    }
    .editorial-logo {
        flex: 1;
        display: flex;
        justify-content: center;
    }
    .editorial-actions-right {
        flex: 1;
        justify-content: flex-end;
        gap: 15px;
    }
    .header-search, .editorial-actions-right a:not(.icon-link) {
        display: none !important; /* Hide search and login text on mobile */
    }
    .editorial-header.scrolled .mobile-menu-toggle {
        color: #4a1516;
    }
    .editorial-nav-left {
        position: fixed;
        top: 0;
        left: -100%;
        width: 250px;
        height: 100vh;
        background: #3a2a22; /* Dark bg */
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 20px;
        transition: left 0.3s ease;
        z-index: 100;
        border-right: 2px solid #e5c158;
    }
    .editorial-nav-left.active {
        left: 0;
    }
    
    /* Fix mobile menu text visibility against dark background */
    .editorial-header.scrolled .editorial-nav-left a {
        color: white !important;
    }
    .mobile-menu-toggle.active {
        color: white !important;
    }
    .editorial-logo img {
        height: 60px;
    }

    .categories-grid, .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dual-banners-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .products-carousel {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px; /* Space for sticky CTA */
    }
    .header-nav { display: none; }
    
    /* Hero section */
    .video-hero {
        flex-direction: column;
        justify-content: center;
        padding-bottom: 40px; /* Space for the badge at the bottom */
    }
    .hero-container-align {
        height: auto;
        padding: 0 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex: 1; /* Allow it to take up remaining space above the badge */
    }
    .video-hero-content {
        padding: 130px 0 0 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .luxury-title { 
        font-size: 2.2rem; 
        line-height: 1.2;
    }
    .luxury-subtext {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .hero-actions-group {
        flex-direction: column;
        width: 100%;
        margin-top: 0;
    }
    .hero-actions-group .luxury-btn, 
    .hero-actions-group .outline-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .hero-trust-stats {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }
    .hero-trust-stats .stat-divider {
        display: none;
    }
    .hero-trust-stats .stat-box {
        width: 45%;
    }
    .hero-trust-stats .stat-box:last-child {
        width: 100%;
        margin-top: 10px;
    }
    .floating-review-badge {
        position: relative;
        bottom: auto;
        right: auto;
        left: auto;
        transform: scale(0.9);
        transform-origin: center;
        margin: 30px auto 0 auto;
    }
    
    /* Editorials & Content */
    .hero-content {
        left: 20px;
        bottom: 40px;
    }
    .hero-title { font-size: 1.5rem; }
    .categories-grid, .badges-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .category-item {
        height: 350px;
    }
    .loban-split {
        flex-direction: column;
    }
    .loban-text-col, .loban-video-col {
        width: 100%;
        min-width: 100%;
    }
    .loban-video-col {
        min-height: 350px;
    }
    .loban-text-col {
        padding: 40px 20px;
    }
    .loban-heading {
        font-size: 3.5rem;
    }
    .loban-subheading {
        font-size: 1.4rem;
    }
    /* Process Video Section */
    .video-container {
        height: 75vh;
        min-height: 550px;
    }
    .video-content-left {
        text-align: center;
        padding: 0 15px;
        margin-bottom: 30px !important; /* Override the 900px media query margin-bottom: 60px */
    }
    .video-content-left h2 {
        font-size: 1.8rem !important; /* Ensure it fits without word-break */
    }
    .video-content-left h2 i {
        font-size: 1.1em;
    }
    .video-content-left p {
        font-size: 1rem;
        text-align: center;
    }
    
    /* Process timeline */
    .process-timeline-premium {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .process-timeline-premium::before, .process-timeline-premium::after {
        display: none;
    }
    
    /* Lifestyle Accordion */
    .lifestyle-accordion {
        flex-direction: column;
        height: auto;
    }
    .accordion-item {
        height: 200px;
        flex: none;
        width: 100%;
    }
    .accordion-item:hover, .accordion-item.active {
        height: 300px;
        flex: none;
    }

    /* Reviews */
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-col {
        margin-bottom: 30px;
    }
    .mobile-sticky-cta {
        transform: translateY(0);
    }
    .insta-grid img {
        min-width: 50%;
    }
}

/* =========================================
   10. SCROLL REVEAL ANIMATIONS
========================================= */

/* Base state: Hidden and shifted down */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1), transform 0.8s cubic-bezier(0.5, 0, 0, 1);
    will-change: opacity, transform;
}

/* Visible state */
.scroll-reveal.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Quantity Selector Styles */
.luxury-add-btn.has-qty {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.qty-btn {
    width: 33%;
    height: 100%;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    background: #111;
    color: white;
    transition: background 0.3s;
}


/* Promo Buttons Group */
.promo-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.whatsapp-icon-link {
    color: #25D366; /* Classic WhatsApp Green */
    font-size: 2.8rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}
.whatsapp-icon-link:hover {
    transform: scale(1.1);
    color: #128C7E;
}

.outline-btn {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}
.outline-btn:hover {
    background-color: #4a1516;
    color: white;
    transform: translateY(-3px);
}

/* Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
}
.close-modal:hover,
.close-modal:focus {
    color: #4a1516;
    text-decoration: none;
    cursor: pointer;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.enquiry-form input,
.enquiry-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}
.enquiry-form input:focus,
.enquiry-form textarea:focus {
    outline: none;
    border-color: #e5c158;
}

/* =========================================
   ARTISANS SECTION - HERITAGE PURPLE
========================================= */
.artisans-section {
    position: relative;
    padding: 85px 0 80px;
    background-image: url('images/diya_purple_reviews_bg.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.artisans-section .section-header h2 {
    color: #ffffff !important;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4);
}

.artisans-section .section-header p {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.artisans-section .section-header div {
    background-color: #f7d58b !important;
    box-shadow: 0 0 10px rgba(247, 213, 139, 0.6);
}

.artisan-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(45, 10, 60, 0.18);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1.5px solid rgba(247, 213, 139, 0.45);
}

.artisan-card:hover {
    transform: translateY(-7px);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 22px 45px rgba(45, 10, 60, 0.28);
    border-color: #f7d58b;
}

.artisan-card h4 {
    color: #4a1516 !important;
    margin-top: 15px;
    font-family: serif;
    font-size: 1.4rem;
}

.artisan-card p {
    color: #554841 !important;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Utility to show links only in the mobile menu */
.mobile-only-link {
    display: none !important;
}
@media (max-width: 900px) {
    .mobile-only-link {
        display: block !important;
    }
}

/* =========================================
   LUXURY HERITAGE PRELOADER
========================================= */
.site-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: radial-gradient(circle at center, #2e0d0f 0%, #150506 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    visibility: visible;
}

.site-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-info-premium {
    padding: 24px 20px 22px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-rating {
    margin-bottom: 8px;
}

.product-rating .stars {
    color: #e5c158;
    font-size: 0.95rem;
}

.product-rating small {
    color: #888;
    font-size: 0.8rem;
    margin-left: 5px;
}

.product-info-premium h4 {
    font-family: serif;
    font-size: 1.3rem;
    color: #4a1516;
    margin-bottom: 6px;
    line-height: 1.35;
    min-height: 2.7em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fragrance-notes {
    font-size: 0.82rem;
    color: #666;
    margin-bottom: 4px;
    font-style: italic;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-height: 1.4em;
}

.pack-size {
    font-size: 0.78rem;
    color: #8c7355;
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info-premium .price {
    font-size: 1.15rem;
    color: #b38728;
    font-weight: 700;
    margin-bottom: 16px;
}

.luxury-add-btn {
    background: transparent;
    border: 1px solid #4a1516;
    color: #4a1516;
    padding: 11px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    width: 100%;
    display: block;
}

.luxury-add-btn:hover {
    background: #4a1516;
    color: #fff;
    box-shadow: 0 4px 12px rgba(74, 21, 22, 0.2);
}

@media (max-width: 1200px) {
    .product-card-premium {
        flex: 0 0 calc((100% - 2 * 20px) / 3);
        min-width: 240px;
    }
}

@media (max-width: 820px) {
    .product-card-premium {
        flex: 0 0 calc((100% - 16px) / 2);
        min-width: 220px;
    }
}

@media (max-width: 540px) {
    .product-card-premium {
        flex: 0 0 82%;
    }
}

.preloader-logo-ring {
    position: relative;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mandala-spinner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(229, 193, 88, 0.35);
    border-top: 2px solid #e5c158;
    border-right: 2px solid #e5c158;
    border-radius: 50%;
    animation: rotateMandala 2.5s linear infinite;
}

.logo-diya-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    border: 1px solid rgba(229, 193, 88, 0.2);
    box-shadow: 0 0 25px rgba(229, 193, 88, 0.15);
}

.preloader-logo {
    width: 55px;
    height: auto;
    filter: brightness(0) invert(1);
    animation: pulseLogo 2s ease-in-out infinite alternate;
}

.diya-flame-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(229, 193, 88, 0.3) 0%, rgba(255, 90, 77, 0.15) 50%, transparent 70%);
    border-radius: 50%;
    animation: flameFlicker 1.8s ease-in-out infinite alternate;
    pointer-events: none;
}

.preloader-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-eyebrow {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #e5c158;
    margin-bottom: 6px;
    font-weight: 600;
}

.preloader-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: 500;
}

.preloader-line {
    width: 140px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}

.preloader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, transparent, #e5c158, #ff5a4d, transparent);
    animation: progressShimmer 1.5s ease-in-out infinite;
    border-radius: 2px;
}

.preloader-status {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1.5px;
    font-style: italic;
}

@keyframes rotateMandala {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseLogo {
    0% { transform: scale(0.96); opacity: 0.85; }
    100% { transform: scale(1.04); opacity: 1; }
}

@keyframes flameFlicker {
    0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.6; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.9; }
    100% { transform: translate(-50%, -50%) scale(0.95); opacity: 0.7; }
}

@keyframes progressShimmer {
    0% { left: -40%; width: 30%; }
    50% { left: 40%; width: 50%; }
    100% { left: 100%; width: 30%; }
}
