@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary: #8E63C7;
    --primary-dark: #7445AE;
    --primary-light: #E5D9FA;
    --secondary: #CBB5F2;
    --secondary-light: #EBE1FC;
    --background: #EADFFA; /* Soothing visible light purple/lavender background */
    --card-bg: #FFFFFF;
    --text: #2D2D2D;
    --text-light: #7E7E7E;
    --text-lighter: #A5A5A5;
    --white: #FFFFFF;
    
    --shadow-soft: 0 10px 30px rgba(142, 99, 199, 0.04);
    --shadow-medium: 0 16px 45px rgba(142, 99, 199, 0.07);
    --shadow-glow: 0 12px 30px rgba(142, 99, 199, 0.25);
    --shadow-button: 0 4px 15px rgba(142, 99, 199, 0.2);
    
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
    
    --max-width: 1400px;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

/* Reset Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: var(--font-body);
    border: none;
    background: none;
    cursor: pointer;
    outline: none;
}

/* Common Layout Elements */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}

/* Top Announcement Bar */
.top-bar {
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.85rem;
    padding: 10px 0;
    font-weight: 400;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left span {
    opacity: 0.95;
    letter-spacing: 0.3px;
}

.top-bar-right a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-weight: 500;
    opacity: 0.95;
}

.top-bar-right a:hover {
    opacity: 1;
}

/* Header & Sticky Navbar */
header {
    background-color: rgba(234, 223, 250, 0.8); /* Semi-transparent light purple */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(142, 99, 199, 0.06);
    transition: var(--transition-fast);
}

header.scrolled {
    box-shadow: 0 4px 20px rgba(142, 99, 199, 0.05);
    background-color: rgba(234, 223, 250, 0.95); /* Semi-transparent light purple */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 105px;
    transition: var(--transition-fast);
}

header.scrolled .navbar {
    height: 80px;
}

.logo img {
    height: 68px;
    width: auto;
    object-fit: contain;
    transition: var(--transition-fast);
}

header.scrolled .logo img {
    height: 52px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition-fast);
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-links li.active a {
    color: var(--primary);
}

.nav-links li.active a::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-button);
}

.btn-gradient {
    background: linear-gradient(135deg, #5B3093, #3B1C63);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(59, 28, 99, 0.25);
}

.btn-gradient:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(59, 28, 99, 0.45);
    filter: brightness(1.15);
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Cart Icon */
.cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(142, 99, 199, 0.05);
    color: var(--text);
    transition: var(--transition-fast);
}

.cart-btn:hover {
    background-color: rgba(142, 99, 199, 0.1);
    color: var(--primary);
}

.cart-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
}

.cart-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    cursor: pointer;
    z-index: 1002;
}

.hamburger span {
    display: block;
    height: 2.5px;
    width: 100%;
    background-color: var(--text);
    border-radius: 3px;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 70px 0 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--background) 0%, #DBCBFA 100%);
}

.hero-bg-leaf {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 180px;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-pretitle {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 24px;
}

.hero-title span.italic-accent {
    font-style: italic;
    color: var(--primary);
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-cta {
    margin-bottom: 50px;
}

.hero-cta .btn {
    padding: 16px 36px;
    font-size: 1.05rem;
}

/* Feature Icons */
.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(142, 99, 199, 0.1);
    padding-top: 30px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.feature-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
}

.feature-icon-wrapper svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.feature-item span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.2px;
}

/* Hero Image Right Side */
.hero-image-side {
    position: relative;
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    animation: fadeInZoom 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.hero-image-container {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    background-color: var(--white);
    border: 1px solid rgba(142, 99, 199, 0.08);
}

.hero-image-container::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    box-shadow: inset 0 0 40px rgba(142, 99, 199, 0.04);
    pointer-events: none;
}

.hero-image-container img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition-smooth);
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image-side::before {
    content: '';
    position: absolute;
    top: -8%;
    right: -8%;
    width: 116%;
    height: 116%;
    background: radial-gradient(circle, rgba(142, 99, 199, 0.22) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
    border-radius: 50%;
    filter: blur(25px);
}

/* Information Banner */
.info-banner-section {
    margin-top: -45px;
    position: relative;
    z-index: 10;
}

.info-banner-card {
    background-color: var(--card-bg);
    border-radius: 100px;
    padding: 24px 50px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(142, 99, 199, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
    position: relative;
    overflow: hidden;
}

.info-banner-card::after {
    content: '';
    position: absolute;
    right: 20px;
    bottom: -10px;
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' opacity='0.08'%3E%3Cpath d='M30,80 Q50,40 80,70' fill='none' stroke='%238E63C7' stroke-width='2'/%3E%3Cpath d='M40,60 Q60,30 90,50' fill='none' stroke='%238E63C7' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.info-banner-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.info-banner-icon {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-banner-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
}

.info-banner-text h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.info-banner-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.info-banner-right .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
}

/* Bestsellers Section */
.bestsellers {
    padding: 30px 0 60px 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.bestsellers::before {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(203, 181, 242, 0.28) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
}

.bestsellers::after {
    content: '';
    position: absolute;
    top: 5%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(142, 99, 199, 0.18) 0%, rgba(255,255,255,0) 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
}

.bestsellers .container {
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.section-icon {
    color: var(--primary);
    margin-bottom: 12px;
    display: inline-block;
}

.section-icon svg {
    width: 32px;
    height: 32px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
}

.bestsellers h2 {
    font-family: var(--font-heading);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-light);
}

/* Carousel / Grid Wrapper */
.carousel-container {
    position: relative;
    width: 100%;
}

.product-row-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none; /* Hide Firefox scrollbar */
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

.product-row-scroll-wrapper::-webkit-scrollbar {
    display: none; /* Hide Webkit scrollbar */
}

.product-row {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 24px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

/* Product Card */
.product-card {
    background-color: var(--card-bg);
    border-radius: 20px;
    padding: 14px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(142, 99, 199, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    width: calc((100% - 72px) / 4); /* Exactly 4 cards visible in viewport */
    flex-shrink: 0;
    scroll-snap-align: start;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(142, 99, 199, 0.15);
}

.product-image-wrapper {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1.1 / 1;
    background-color: var(--primary-light);
    margin-bottom: 16px;
}

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

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

/* Badges */
.card-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--text);
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    letter-spacing: 0.2px;
    z-index: 5;
    border: 0.5px solid rgba(142, 99, 199, 0.1);
}

.product-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
    line-height: 1.4;
    height: 38px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.product-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-light);
}

.product-card .btn {
    width: 100%;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: auto;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--white);
    color: var(--text);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    display: none; /* Hidden on desktop since 4 cards fit */
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 1px solid rgba(142, 99, 199, 0.08);
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background-color: var(--primary-light);
    color: var(--primary);
    box-shadow: 0 6px 16px rgba(142, 99, 199, 0.15);
}

.carousel-btn-left {
    left: -24px;
}

.carousel-btn-right {
    right: -24px;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* Animations */
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInZoom {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(15px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile Drawer Styles */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--background);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
    z-index: 1001;
    padding: 100px 40px 40px 40px;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-left: 1px solid rgba(142, 99, 199, 0.1);
}

.mobile-nav-drawer.open {
    right: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style: none;
}

.mobile-nav-links a {
    font-size: 1.2rem;
    font-weight: 500;
}

.mobile-nav-links li.active a {
    color: var(--primary);
    font-weight: 600;
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: auto;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Media Queries (Responsive Styling) */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.2rem;
    }
    
    .product-row {
        gap: 16px;
    }
    
    .carousel-btn-left { left: -15px; }
    .carousel-btn-right { right: -15px; }
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-pretitle {
        justify-content: center;
    }
    
    .hero-description {
        margin: 0 auto 35px auto;
    }
    
    .hero-features {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .feature-item {
        align-items: center;
    }
    
    .hero-image-side {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .info-banner-card {
        border-radius: 30px;
        flex-direction: column;
        gap: 24px;
        text-align: center;
        padding: 30px;
    }
    
    .info-banner-left {
        flex-direction: column;
        gap: 16px;
    }
    
    .product-row {
        display: flex;
        flex-direction: row;
        width: 100%;
        gap: 20px;
    }
    
    .product-card {
        width: calc((100% - 40px) / 3); /* exactly 3 cards on tablet */
        flex-shrink: 0;
    }
    
    /* Show mobile drawer toggles */
    .nav-links, .nav-actions .btn-outline {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 15px;
    }
    
    .top-bar-left span {
        font-size: 0.75rem;
    }
    
    .top-bar-right {
        display: none; /* Hide top bar WhatsApp link on mobile */
    }
    
    .navbar {
        height: 75px;
    }
    
    .logo img {
        height: 40px;
    }
    
    .hero {
        padding: 40px 0 80px 0;
    }
    
    .hero-title {
        font-size: 2.3rem;
    }
    
    .section-header h2,
    .policy-header h2,
    .contact-section h2 {
        font-size: 1.85rem !important;
        line-height: 1.35;
    }
    
    .section-header p {
        font-size: 0.9rem !important;
        line-height: 1.5;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .bestsellers {
        padding: 40px 0 40px 0;
    }
    
    .bestsellers h2 {
        font-size: 2rem;
    }
    
    /* Horizontal scrolling on mobile (Requirement) */
    .product-row-scroll-wrapper {
        width: calc(100% + 80px);
        margin-left: -40px; /* Offset container padding to be full screen edge */
        padding-left: 40px;
        padding-right: 40px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Hide Firefox scrollbar */
        -webkit-overflow-scrolling: touch;
        padding-bottom: 20px;
    }
    
    .product-row-scroll-wrapper::-webkit-scrollbar {
        display: none; /* Hide Webkit scrollbar */
    }
    
    .product-row {
        display: flex;
        flex-direction: row;
        width: max-content;
        gap: 16px;
    }
    
    /* Product card dimensions for horizontal scrolling on mobile:
       Requirement: More than 3 product cards should be partially visible on screen (around 3.2 cards visible).
       3.2 cards visible means each card should occupy approx 27% to 28% of viewport width.
    */
    .product-card {
        width: calc(45vw - 12px);
        min-width: 155px;
        max-width: 220px;
        scroll-snap-align: start;
        flex-shrink: 0;
        padding: 10px;
        border-radius: 16px;
    }
    
    .product-image-wrapper {
        border-radius: 12px;
        margin-bottom: 10px;
    }
    
    .product-title {
        font-size: 0.85rem;
        height: 36px;
        margin-bottom: 4px;
        -webkit-line-clamp: 2;
    }
    
    .product-price {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .product-price span {
        font-size: 0.75rem;
    }
    
    .product-card .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 20px;
        gap: 4px;
    }
    
    .product-card .btn svg {
        width: 13px;
        height: 13px;
    }
    
    .card-badge {
        font-size: 0.6rem;
        padding: 2px 6px;
        top: 6px;
        right: 6px;
    }
    
    /* Carousel Navigation Buttons on Mobile (centered on photo area) */
    .carousel-btn {
        display: flex;
        width: 44px;
        height: 44px;
        top: 76px; /* Vertically center relative to mobile card photo (approx 140px height) */
        transform: translateY(-50%);
        background-color: rgba(255, 255, 255, 0.95);
        border: 1px solid var(--primary-light);
        color: var(--primary-dark);
        box-shadow: 0 4px 10px rgba(142, 99, 199, 0.15);
        opacity: 1;
        transition: opacity 0.3s ease, transform 0.2s ease, background-color 0.2s ease;
    }
    
    .carousel-btn-left {
        left: -25px; /* Shift closer to screen edge to overlay the products */
    }
    
    .carousel-btn-right {
        right: -25px; /* Shift closer to screen edge to overlay the products */
    }
    
    .carousel-btn svg {
        width: 18px;
        height: 18px;
        stroke-width: 2.5px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .product-row-scroll-wrapper {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .collection-gallery {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .corporate-gallery {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .testimonials-grid {
        width: calc(100% + 40px);
        margin-left: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-title {
        font-size: 1.95rem;
    }
    
    .info-banner-card {
        padding: 20px;
    }
    
    .info-banner-text h3 {
        font-size: 1rem;
    }
}

/* Lightbox Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(15, 10, 20, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 40px;
    font-weight: 300;
    transition: 0.3s;
    cursor: pointer;
    z-index: 2010;
}

.modal-close:hover {
    color: var(--secondary);
    transform: scale(1.1);
}

.modal-content-wrapper {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 700px;
    width: 90%;
    height: 80vh;
}

.modal-content {
    max-width: 100%;
    max-height: 70vh;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.15);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    object-fit: contain;
}

.modal.show .modal-content {
    transform: scale(1);
}

/* Lightbox Navigation Buttons */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2010;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.modal-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 15px rgba(142, 99, 199, 0.4);
}

.modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.modal-prev {
    left: 40px;
}

.modal-next {
    right: 40px;
}

@media (max-width: 767px) {
    .modal-close {
        top: 20px;
        right: 20px;
        font-size: 32px;
    }
    
    .modal-nav {
        width: 44px;
        height: 44px;
        font-size: 1.4rem;
        background: rgba(0, 0, 0, 0.5);
        border: none;
    }
    
    .modal-prev {
        left: 15px;
    }
    
    .modal-next {
        right: 15px;
    }
}

/* ==========================================================================
   Our Collections Section Styling
   ========================================================================== */
.collections {
    position: relative;
    padding: 60px 0 100px 0;
    overflow: hidden;
}

.collection-row {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin-bottom: 90px;
    position: relative;
}

.collection-row:last-child {
    margin-bottom: 0;
}

/* Alternate Row Layout */
.collection-row:nth-child(odd) {
    flex-direction: row-reverse;
}

.collection-info {
    flex: 0 0 35%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: sticky;
    top: 120px;
}

/* Badge Styling */
.collection-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    border: 1px solid var(--primary-light);
    padding: 6px 16px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(142, 99, 199, 0.05);
    margin-bottom: 20px;
    width: fit-content;
}

.collection-badge .badge-icon {
    font-size: 0.95rem;
}

.collection-badge .badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
}

/* Heading Typography */
.collection-heading {
    position: relative;
    margin-bottom: 20px;
}

.collection-heading h3 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
    color: var(--primary-dark);
}

.collection-heading h3 em {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 400;
    font-size: 1.6rem;
    color: var(--primary);
    display: inline-block;
    margin-bottom: 2px;
    text-transform: none;
}

.collection-heading h3 .focus-word {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    text-transform: none;
    letter-spacing: -0.5px;
}

.collection-heading h3 .sub-word {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: none;
}

/* Sparkles Decoration */
.sparkles {
    position: absolute;
    top: -10px;
    right: 20px;
    width: 40px;
    height: 40px;
    color: var(--primary);
    pointer-events: none;
    opacity: 0.6;
}

.sparkle {
    position: absolute;
    fill: currentColor;
}

.sparkle-1 {
    width: 14px;
    height: 14px;
    top: 0;
    left: 0;
    animation: sparkleFloat 3s infinite ease-in-out;
}

.sparkle-2 {
    width: 8px;
    height: 8px;
    bottom: 0;
    right: 0;
    animation: sparkleFloat 2.5s infinite ease-in-out 0.5s;
}

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-5px) scale(1.2); opacity: 0.9; }
}

/* Swirl Divider styling */
.decorative-divider {
    width: 100%;
    max-width: 220px;
    height: 20px;
    color: var(--primary-light);
    margin-top: 8px;
    opacity: 0.8;
}

.decorative-divider svg {
    width: 100%;
    height: 100%;
    display: block;
}

.collection-desc {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

/* Features badges below description */
.collection-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 10px;
}

.feature-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    cursor: default;
}

.feature-badge span {
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-light);
}

.feature-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(142, 99, 199, 0.08);
    color: var(--primary);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-circle svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.feature-badge:hover .feature-circle {
    transform: translateY(-3px);
    color: var(--primary-dark);
    box-shadow: 0 6px 16px rgba(142, 99, 199, 0.16);
}

.collection-gallery-wrapper {
    flex: 0 0 calc(65% - 80px);
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
    position: relative;
}

/* Masonry Mock CSS Grid */
.collection-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
    gap: 16px;
    width: 100%;
}

.collection-gallery .gallery-item {
    background-color: var(--white);
    border-radius: 24px;
    border: 1.5px dashed #D5C3F5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(142, 99, 199, 0.04);
}

/* Individual Spans to Simulate Masonry */
.collection-gallery .gallery-item:nth-child(7n+1) {
    grid-column: span 2;
    grid-row: span 2;
}

.collection-gallery .gallery-item:nth-child(7n+2) {
    grid-column: span 1;
    grid-row: span 1;
}

.collection-gallery .gallery-item:nth-child(7n+3) {
    grid-column: span 1;
    grid-row: span 2;
}

.collection-gallery .gallery-item:nth-child(7n+4) {
    grid-column: span 1;
    grid-row: span 1;
}

.collection-gallery .gallery-item:nth-child(7n+5) {
    grid-column: span 2;
    grid-row: span 1;
}

.collection-gallery .gallery-item:nth-child(7n+6) {
    grid-column: span 1;
    grid-row: span 1;
}

.collection-gallery .gallery-item:nth-child(7n+7) {
    grid-column: span 1;
    grid-row: span 1;
}

/* Gallery Hover States */
.collection-gallery .gallery-item:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 28px rgba(142, 99, 199, 0.15);
    transform: translateY(-4px);
}

/* Placeholder Styling */
.placeholder-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    text-align: center;
    color: var(--text-light);
    pointer-events: none;
}

.placeholder-content svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
    opacity: 0.55;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.placeholder-content span {
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary-dark);
    opacity: 0.7;
}

.collection-gallery .gallery-item:hover .placeholder-content svg {
    color: var(--primary-dark);
    transform: translateY(-3px);
    opacity: 0.9;
}

/* Smart Hide Logic using CSS :has() */
.collection-gallery .gallery-item:has(img) {
    border-style: solid;
    border-color: rgba(142, 99, 199, 0.08);
    background-color: transparent;
    padding: 0;
}

.collection-gallery .gallery-item:has(img) .placeholder-content {
    display: none;
}

.collection-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

/* CTA Alignments */
.collection-cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 8px;
}

.collection-cta .btn {
    padding: 14px 36px;
    font-size: 0.95rem;
    border-radius: 35px;
    background: linear-gradient(135deg, #5B3093 0%, #3B1C63 100%);
    color: var(--white);
    box-shadow: 0 6px 18px rgba(59, 28, 99, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.collection-cta .btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(59, 28, 99, 0.45);
    filter: brightness(1.15);
}

/* Gallery Carousel Scroll Buttons on Mobile */
.gallery-scroll-btn {
    display: none; /* Hidden on desktop */
}

@media (max-width: 767px) {
    .gallery-scroll-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 90px; /* Vertically centered relative to cards height (180px) */
        transform: translateY(-50%);
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.95);
        border: 1px solid var(--primary-light);
        color: var(--primary-dark);
        box-shadow: 0 4px 10px rgba(142, 99, 199, 0.15);
        cursor: pointer;
        z-index: 10;
        transition: opacity 0.3s ease, transform 0.2s ease, background-color 0.2s ease;
        outline: none;
    }
    
    .gallery-scroll-btn:active {
        transform: translateY(-50%) scale(0.9);
        background-color: var(--primary-light);
    }
    
    .gallery-scroll-btn.btn-left {
        left: -15px; /* Float on the extreme left screen edge overlaying photos */
    }
    
    .gallery-scroll-btn.btn-right {
        right: -15px; /* Float on the extreme right screen edge overlaying photos */
    }
    
    .gallery-scroll-btn svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }
}

/* Responsive Overrides for Collections Section */
@media (max-width: 991px) {
    .collection-row {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 80px;
    }

    .collection-info {
        flex: 0 0 100%;
        position: static;
        margin-bottom: 10px;
    }

    .collection-gallery-wrapper {
        flex: 0 0 100%;
        width: 100%;
    }

    .collection-gallery {
        grid-auto-rows: 110px;
        gap: 12px;
    }
}

@media (max-width: 767px) {
    .collections {
        padding: 40px 0 60px 0;
    }

    .collection-row {
        margin-bottom: 45px;
    }

    .collection-badge {
        padding: 4px 12px;
        margin-bottom: 12px;
    }

    .collection-badge .badge-text {
        font-size: 0.75rem;
    }

    .collection-heading h3 em {
        font-size: 1.1rem;
    }

    .collection-heading h3 .focus-word {
        font-size: 2.1rem;
    }

    .collection-heading h3 .sub-word {
        font-size: 1.5rem;
    }

    .decorative-divider {
        max-width: 160px;
        margin-bottom: 12px;
    }

    .collection-features {
        gap: 8px;
    }

    .feature-circle {
        width: 38px;
        height: 38px;
    }

    .feature-circle svg {
        width: 15px;
        height: 15px;
    }

    .feature-badge span {
        font-size: 0.65rem;
    }

    /* Swipeable Horizontal Scroll Carousel on Mobile */
    .collection-gallery {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        width: calc(100% + 60px);
        margin-left: -30px;
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 15px;
        grid-auto-rows: auto;
        gap: 16px;
    }

    .collection-gallery::-webkit-scrollbar {
        display: none;
    }

    .collection-gallery .gallery-item {
        flex: 0 0 240px;
        height: 180px;
        scroll-snap-align: start;
        border-radius: 16px;
    }

    /* Ensure specific masonry grid-span resets on mobile flex carousel */
    .collection-gallery .gallery-item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .collection-cta {
        width: 100%;
        margin-top: 10px;
    }

    .collection-cta .btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
}
}

/* ==========================================================================
   Corporate Gifting & Custom Hampers Section Styling
   ========================================================================== */
/* ==========================================================================
   Corporate Gifting & Custom Hampers Section Styling (Premium Rebuild)
   ========================================================================== */
.corporate-premium {
    background-color: #120D1D; /* Extremely premium deep dark purple charcoal */
    padding: clamp(60px, 8vw, 100px) 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.corporate-premium::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: min(500px, 100vw);
    height: min(500px, 100vw);
    background: radial-gradient(circle, rgba(142, 99, 199, 0.15) 0%, rgba(255,255,255,0) 70%);
    pointer-events: none;
    filter: blur(50px);
    z-index: 1;
}

.corporate-premium-grid {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: clamp(40px, 5vw, 80px);
    align-items: center;
    position: relative;
    z-index: 2;
}

.corporate-premium-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.corp-premium-badge {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: #EAC775; /* Premium gold tag color */
    margin-bottom: 16px;
    text-transform: uppercase;
    display: inline-block;
}

.corp-premium-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.corp-premium-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.corp-premium-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.corp-premium-checklist li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: clamp(0.9rem, 1.5vw, 1.05rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.corp-checkmark {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(234, 199, 117, 0.15);
    color: #EAC775;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.corp-checkmark svg {
    width: 12px;
    height: 12px;
    fill: currentColor;
}

.corp-premium-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
}

.btn-premium-primary {
    background: linear-gradient(135deg, #EAC775 0%, #CFA555 100%);
    color: #120D1D !important;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(234, 199, 117, 0.2);
    border: none;
    border-radius: 30px;
    padding: 14px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
    white-space: nowrap;
}

.btn-premium-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(234, 199, 117, 0.35);
}

.btn-premium-secondary {
    background: transparent;
    color: #EAC775 !important;
    border: 1.5px solid rgba(234, 199, 117, 0.4);
    border-radius: 30px;
    padding: 12.5px 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.95rem;
    font-weight: 600;
    white-space: nowrap;
}

.btn-premium-secondary:hover {
    background-color: rgba(234, 199, 117, 0.08);
    border-color: #EAC775;
    transform: translateY(-2px);
}

.btn-premium-secondary svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.corporate-premium-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 2vw, 24px);
    width: 100%;
}

.corp-premium-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    aspect-ratio: 4/5;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.corp-premium-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.corp-premium-card:hover {
    box-shadow: 0 15px 35px rgba(234, 199, 117, 0.15);
    transform: translateY(-4px);
}

.corp-premium-card:hover img {
    transform: scale(1.08);
}

/* ==========================================================================
   Responsive Overrides for Corporate Section
   ========================================================================== */
@media (max-width: 1023px) {
    .corporate-premium-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .corporate-premium-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .corporate-premium-gallery .corp-premium-card:nth-child(3) {
        grid-column: span 2;
        max-width: calc(50% - 10px);
        margin: 0 auto;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .corporate-premium-content {
        align-items: center;
        text-align: center;
    }
    
    .corp-premium-checklist li {
        justify-content: center;
    }
    
    .corp-premium-cta-group {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .btn-premium-primary, 
    .btn-premium-secondary {
        width: 100%;
    }
    
    .corporate-premium-gallery {
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .corporate-premium-gallery .corp-premium-card:nth-child(3) {
        grid-column: auto;
        max-width: 100%;
    }
}

/* ==========================================================================
   Customer Reviews & Testimonials Section Styling
   ========================================================================== */
.testimonials-section {
    position: relative;
    padding: 100px 0 60px 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--background) 0%, rgba(243, 236, 254, 0.4) 100%);
}

/* Floating decorative leaf SVG elements */
.testimonial-decor-leaf {
    position: absolute;
    width: 130px;
    height: 130px;
    color: var(--primary);
    pointer-events: none;
    opacity: 0.12;
    z-index: 1;
    transition: var(--transition-smooth);
}

.testimonial-leaf-1 {
    top: 8%;
    left: 2%;
    transform: rotate(18deg);
    animation: leafFloat1 6s infinite ease-in-out;
}

.testimonial-leaf-2 {
    bottom: 12%;
    right: 2%;
    transform: rotate(-100deg) scaleX(-1);
    animation: leafFloat2 7s infinite ease-in-out;
}

@keyframes leafFloat1 {
    0%, 100% { transform: rotate(18deg) translateY(0); }
    50% { transform: rotate(23deg) translateY(-8px); }
}

@keyframes leafFloat2 {
    0%, 100% { transform: rotate(-100deg) scaleX(-1) translateY(0); }
    50% { transform: rotate(-95deg) scaleX(-1) translateY(-10px); }
}

/* Responsive Pinterest Masonry Grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.review-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(142, 99, 199, 0.03);
    border: 1.5px solid rgba(142, 99, 199, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 45px rgba(142, 99, 199, 0.1);
    border-color: var(--secondary);
}

/* Pinterest Grid Spans for Balanced Desktop Layout */
.testimonials-grid .review-card:nth-child(1) {
    grid-column: 1;
    grid-row: span 2;
}

.testimonials-grid .review-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}

.testimonials-grid .review-card:nth-child(3) {
    grid-column: 3;
    grid-row: span 2;
    min-height: 420px;
    justify-content: center;
}

.testimonials-grid .review-card:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
}

/* Featured Card with Customer Review Screenshot */
.card-featured {
    border: 1.5px solid rgba(142, 99, 199, 0.18);
    background: linear-gradient(180deg, var(--white) 0%, rgba(246, 241, 255, 0.5) 100%);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 8px;
}

.review-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: var(--primary-light);
    padding: 5px 12px;
    border-radius: 20px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #2E7D32;
    display: inline-block;
    animation: badgePulse 2s infinite ease-in-out;
}

.badge-text {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--primary-dark);
}

@keyframes badgePulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.review-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px dashed rgba(142, 99, 199, 0.25);
    background-color: var(--white);
    margin: 12px 0 4px 0;
    width: 100%;
    cursor: zoom-in;
    box-shadow: 0 4px 12px rgba(142, 99, 199, 0.02);
}

.review-screenshot-img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.card-quote-icon {
    position: absolute;
    bottom: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    color: var(--primary-light);
    opacity: 0.45;
    pointer-events: none;
}

.card-quote-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.review-text {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 400;
}

.review-author {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-top: auto;
}

/* Statistics Indicators Grid */
.trust-indicators-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
}

.stat-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(142, 99, 199, 0.03);
    border: 1px solid rgba(142, 99, 199, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(142, 99, 199, 0.09);
    border-color: var(--secondary-light);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    transition: all 0.3s ease;
}

.stat-icon svg {
    width: 22px;
    height: 22px;
}

.stat-card:hover .stat-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: scale(1.1) rotate(8deg);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.stat-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Call to Action Banner */
.cta-banner-wrapper {
    position: relative;
    width: 100%;
    border-radius: 32px;
    background: linear-gradient(135deg, #F3ECFE 0%, #E7D8FC 100%);
    border: 1.5px solid var(--primary-light);
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-medium);
    overflow: hidden;
    z-index: 2;
}

.cta-banner-card {
    max-width: 650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 3;
}

.cta-banner-card h3 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.25;
}

.cta-banner-card p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 1.6;
    opacity: 0.9;
}

.cta-action {
    margin-top: 8px;
}

.cta-action .btn {
    padding: 14px 38px;
    font-size: 1rem;
    border-radius: 35px;
}

.cta-sparkle-1 {
    position: absolute;
    top: 30px;
    left: 40px;
    width: 32px;
    height: 32px;
    color: var(--primary);
    opacity: 0.22;
    animation: sparkleFloat 3s infinite ease-in-out;
}

.cta-sparkle-2 {
    position: absolute;
    bottom: 30px;
    right: 40px;
    width: 24px;
    height: 24px;
    color: var(--primary);
    opacity: 0.22;
    animation: sparkleFloat 2.5s infinite ease-in-out 0.5s;
}

/* ==========================================================================
   Responsive Overrides for Testimonials & Trust Indicators
   ========================================================================== */
@media (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Rebalance Grid Spans for Tablet Landscape */
    .testimonials-grid .review-card:nth-child(1) {
        grid-column: 1;
        grid-row: span 2;
    }

    .testimonials-grid .review-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }

    .testimonials-grid .review-card:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
        min-height: auto;
    }

    .testimonials-grid .review-card:nth-child(4) {
        grid-column: 1 / span 2;
        grid-row: auto;
    }

    .trust-indicators-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-banner-wrapper {
        padding: 50px 30px;
    }
    
    .cta-banner-card h3 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonial-decor-leaf {
        width: 90px;
        height: 90px;
    }
    
    .testimonials-grid {
        display: flex;
        flex-direction: row;
        width: calc(100% + 60px);
        margin-left: -30px;
        padding-left: 30px;
        padding-right: 30px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        margin-bottom: 40px;
        gap: 16px;
    }
    
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }
    
    /* Reset spans on mobile scroll and convert to uniform cards */
    .testimonials-grid .review-card:nth-child(n) {
        grid-column: auto !important;
        grid-row: auto !important;
        min-height: auto !important;
        flex: 0 0 285px; /* Fits card beautifully on screen with peek indicator */
        scroll-snap-align: start;
        padding: 24px;
        border-radius: 20px;
        box-shadow: 0 6px 20px rgba(142, 99, 199, 0.05);
    }
    
    .trust-indicators-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 50px;
    }
    
    .cta-banner-wrapper {
        padding: 40px 20px;
        border-radius: 24px;
    }
    
    .cta-banner-card h3 {
        font-size: 1.65rem;
    }
    
    .cta-banner-card p {
        font-size: 0.95rem;
    }
    
    .cta-action {
        width: 100%;
    }
    
    .cta-action .btn {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* ==========================================================================
   Contact Us Section Styling
   ========================================================================== */
.contact-section {
    position: relative;
    padding: 60px 0 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(243, 236, 254, 0.4) 0%, var(--background) 100%);
}

/* Glowing decorative vector shapes in background */
.contact-bg-glow-1 {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(142, 99, 199, 0.1) 0%, rgba(142, 99, 199, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 1;
}

.contact-bg-glow-2 {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(213, 184, 255, 0.12) 0%, rgba(213, 184, 255, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.4fr 0.6fr;
    gap: 48px;
    position: relative;
    z-index: 2;
    align-items: start;
}

/* Left Column: Info Cards */
.contact-info-col {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 36px;
    height: 100%;
}

.botanical-illustration {
    position: absolute;
    bottom: -20px;
    left: -10px;
    width: 170px;
    height: auto;
    color: var(--primary);
    opacity: 0.05;
    pointer-events: none;
    z-index: 1;
}

.contact-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.contact-info-card {
    background: linear-gradient(135deg, #4c3075, #2B154A);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: 0 6px 20px rgba(43, 21, 74, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-info-card:hover {
    transform: translateX(6px);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 12px 30px rgba(43, 21, 74, 0.45);
}

.contact-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #EADFFA;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-card-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-card:hover .contact-card-icon {
    background-color: var(--white);
    color: #2B154A;
}

.contact-card-content h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: #F6F1FF;
    margin-bottom: 4px;
}

.contact-card-content p {
    font-size: 0.92rem;
    color: #E3D7F6;
    line-height: 1.5;
    font-weight: 500;
}

/* Quick Connect buttons */
.contact-social-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.btn-whatsapp-direct {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
    border: none;
    font-size: 0.9rem;
    padding: 12px 26px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-whatsapp-direct:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(37, 211, 102, 0.4);
    filter: brightness(1.05);
}

.btn-whatsapp-direct svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn-instagram-direct {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white) !important;
    border: none;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.25);
    font-size: 0.9rem;
    padding: 12px 26px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-instagram-direct:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(220, 39, 67, 0.45);
    filter: brightness(1.05);
}

.btn-instagram-direct svg {
    width: 18px;
    height: 18px;
}

/* Right Column: Inquiry Form Card */
.contact-form-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 28px;
    padding: 44px;
    border: 1.5px solid rgba(142, 99, 199, 0.12);
    box-shadow: var(--shadow-medium);
}

.contact-form-card h3 {
    font-family: var(--font-heading);
    font-size: 1.65rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
}

.contact-form-card h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: left;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: #D32F2F;
    margin-left: 2px;
}

.form-control {
    width: 100%;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1.5px solid rgba(142, 99, 199, 0.15);
    background-color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: all 0.3s ease;
}

.form-control::placeholder {
    color: #A29EB6;
    opacity: 0.7;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(142, 99, 199, 0.15);
}

.form-row-two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* Dropdown styling */
.select-wrapper {
    position: relative;
    width: 100%;
}

.select-wrapper::after {
    content: '\25BC';
    font-size: 0.7rem;
    color: var(--primary);
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

/* Error message indicators */
.error-message {
    display: none;
    font-size: 0.8rem;
    color: #D32F2F;
    font-weight: 500;
    margin-top: 2px;
    animation: fadeInError 0.3s ease forwards;
}

@keyframes fadeInError {
    from { opacity: 0; transform: translateY(-3px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-control.is-invalid {
    border-color: #D32F2F;
    background-color: rgba(211, 47, 47, 0.02);
}

.btn-submit-inquiry {
    width: 100%;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 8px;
    cursor: pointer;
    border: none;
}

.btn-submit-inquiry svg {
    width: 18px;
    height: 18px;
}

/* ==========================================================================
   Responsive Overrides for Contact Us
   ========================================================================== */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-col {
        align-items: center;
        text-align: center;
    }
    
    .contact-cards-wrapper {
        width: 100%;
        max-width: 550px;
    }
    
    .contact-social-buttons {
        width: 100%;
        max-width: 550px;
        justify-content: center;
    }
    
    .botanical-illustration {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: 150px;
    }
}

@media (max-width: 767px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-card {
        padding: 30px 20px;
        border-radius: 24px;
    }
    
    .form-row-two {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-social-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-whatsapp-direct, .btn-instagram-direct {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   Returns & Exchange Policy Section Styling
   ========================================================================== */
.policy-section {
    position: relative;
    padding: 60px 0 100px 0;
    overflow: hidden;
    background: linear-gradient(180deg, var(--background) 0%, rgba(243, 236, 254, 0.2) 100%);
}

.policy-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 60px 80px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--shadow-soft);
    border: 1.5px solid rgba(142, 99, 199, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: var(--transition-smooth);
}

/* Corner leaf vector outlines */
.corner-leaf {
    position: absolute;
    width: 140px;
    height: 140px;
    color: var(--primary);
    pointer-events: none;
    opacity: 0.04;
    z-index: 1;
}

.corner-leaf-top-left {
    top: -15px;
    left: -15px;
    transform: rotate(15deg);
}

.corner-leaf-bottom-right {
    bottom: -15px;
    right: -15px;
    transform: rotate(-105deg) scaleX(-1);
}

.policy-header {
    text-align: center;
    margin-bottom: 36px;
}

.policy-header h2 {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.policy-divider {
    width: 120px;
    height: 10px;
    margin: 0 auto;
}

.policy-divider svg {
    width: 100%;
    height: 100%;
}

.policy-content p {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
    text-align: justify;
}

/* Highlighted Need Help Box */
.help-info-box {
    background-color: rgba(142, 99, 199, 0.045);
    border-left: 4px solid var(--primary);
    border-radius: 14px;
    padding: 24px 28px;
    margin-top: 40px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.help-icon {
    color: var(--primary);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.help-icon svg {
    width: 100%;
    height: 100%;
}

.help-text h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.help-text p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 0 !important;
    text-align: left !important;
}

/* ==========================================================================
   Responsive Overrides for Returns & Exchange Policy
   ========================================================================== */
@media (max-width: 991px) {
    .policy-card {
        padding: 50px 60px;
    }
}

@media (max-width: 767px) {
    .policy-section {
        padding: 40px 0 80px 0;
    }
    
    .policy-card {
        padding: 30px 20px;
        border-radius: 20px;
    }
    
    .policy-header h2 {
        font-size: 1.7rem;
    }
    
    .policy-content p {
        font-size: 0.92rem;
        line-height: 1.6;
        text-align: left;
        margin-bottom: 18px;
    }
    
    .help-info-box {
        padding: 20px;
        gap: 14px;
        margin-top: 30px;
    }
    
    .corner-leaf {
        width: 95px;
        height: 95px;
    }
}

/* All Products Page Specific Styles */
.shop-hero {
    position: relative;
    padding: 100px 0 60px 0;
    text-align: center;
    background: linear-gradient(135deg, #EADFFA 0%, #E5D9FA 100%);
    border-bottom: 1px solid rgba(142, 99, 199, 0.08);
}

.shop-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.shop-subtitle {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.all-products-section {
    padding: 80px 0 100px 0;
}

.all-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

.all-products-grid .product-card {
    width: 100%;
}

/* Responsiveness overrides for All Products grid */
@media (max-width: 1199px) {
    .all-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 868px) {
    .all-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .all-products-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.product-image-wrapper:has(img),
.gallery-item:has(img) {
    cursor: zoom-in;
}

/* Homepage Collections Card Rebuild Styles */
.collections-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    margin-top: 20px;
}

.collection-container-card {
    background-color: var(--white);
    border-radius: 30px;
    padding: 35px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(142, 99, 199, 0.05);
    display: flex;
    flex-direction: column;
    gap: 24px;
    transition: var(--transition-smooth);
}

.collection-container-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(142, 99, 199, 0.12);
    border-color: rgba(142, 99, 199, 0.15);
}

.home-collection-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    height: 140px;
}

.home-collection-gallery .gallery-item {
    border-radius: 16px;
    overflow: hidden;
    background-color: var(--primary-light);
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(142, 99, 199, 0.04);
    transition: var(--transition-smooth);
    position: relative;
    cursor: zoom-in;
    height: 100%;
}

.home-collection-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.home-collection-gallery .gallery-item:hover img {
    transform: scale(1.08);
}

/* Responsiveness for Homepage Collections Cards */
@media (max-width: 991px) {
    .collections-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .collection-container-card {
        padding: 25px;
    }
    
    .home-collection-gallery {
        height: 120px;
    }
}

@media (max-width: 575px) {
    .home-collection-gallery {
        height: 90px;
    }
    .collection-container-card {
        padding: 20px;
        gap: 16px;
    }
}

/* ==========================================================================
   Newsletter & Premium Footer Section Styling
   ========================================================================== */
.newsletter-section {
    padding: 80px 0 60px 0;
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.newsletter-card {
    background: linear-gradient(135deg, #F5EEFE 0%, #EADFFA 100%);
    border: 1px solid rgba(142, 99, 199, 0.1);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-medium);
}

.newsletter-card h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.newsletter-card p {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto 30px auto;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    flex: 1;
    background-color: var(--white);
    border: 1px solid rgba(142, 99, 199, 0.2);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 0.95rem;
    color: var(--primary-dark);
    transition: var(--transition-smooth);
}

.newsletter-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(142, 99, 199, 0.15);
    outline: none;
}

.newsletter-form .btn {
    padding: 0 30px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
}

@media (max-width: 575px) {
    .newsletter-card {
        padding: 35px 20px;
    }
    .newsletter-form {
        flex-direction: column;
        gap: 12px;
    }
    .newsletter-form .btn {
        width: 100%;
        padding: 14px 0;
    }
}

/* Footer Section Styling */
.site-footer {
    background-color: #1A0F2B; /* Premium deep dark purple for contrast */
    color: #E2DDF0; /* Light lavender-gray text */
    padding: 80px 0 0 0;
    border-top: 1px solid rgba(226, 221, 240, 0.08);
    position: relative;
    z-index: 2;
    font-family: var(--font-body);
}

.site-footer a {
    color: #C3B9DF;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.site-footer a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.8fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-light);
    border-radius: 1px;
}

.footer-desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #B4A9CF;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 5px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(226, 221, 240, 0.06);
    border-radius: 50%;
    color: #C3B9DF;
    transition: var(--transition-smooth);
}

.footer-socials a:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px) !important;
}

.footer-socials svg {
    width: 18px;
    height: 18px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    display: flex;
    align-items: center;
}

.footer-links a {
    display: inline-block;
    font-size: 0.92rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact-list li {
    display: flex;
    gap: 12px;
    font-size: 0.92rem;
    align-items: flex-start;
}

.footer-contact-list li .icon {
    font-size: 1.1rem;
    line-height: 1;
}

.footer-hours {
    background-color: rgba(226, 221, 240, 0.03);
    border: 1px solid rgba(226, 221, 240, 0.06);
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 5px;
}

.footer-hours h5 {
    color: var(--white);
    font-size: 0.85rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-hours p {
    font-size: 0.85rem;
    color: #B4A9CF;
    margin: 0;
}

.footer-col .btn-sm {
    padding: 10px 18px;
    font-size: 0.85rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Bottom Footer Styling */
.bottom-footer {
    border-top: 1px solid rgba(226, 221, 240, 0.06);
    padding: 24px 0;
    background-color: #140A22;
}

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

.bottom-left p {
    font-size: 0.85rem;
    color: #9284B0;
    margin: 0 0 4px 0;
}

.bottom-left p:last-child {
    margin-bottom: 0;
}

.made-in-india {
    font-size: 0.8rem !important;
    color: #7B6D9E !important;
}

.bottom-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bottom-right a {
    font-size: 0.85rem;
    color: #9284B0;
}

.bottom-right a:hover {
    color: var(--white);
}

.bottom-right .dot {
    color: #534573;
    font-size: 0.8rem;
}

/* Footer Responsiveness */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
}

@media (max-width: 575px) {
    .site-footer {
        padding: 60px 0 0 0;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 40px;
    }
    .bottom-footer-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .bottom-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }
}

/* Text-Based Logo Styling */
.logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.05;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: -0.2px;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.logo-subtitle {
    font-size: 0.95rem;
    font-family: var(--font-heading);
    color: var(--primary);
    font-style: italic;
    margin-left: 2px;
    white-space: nowrap;
    transition: var(--transition-fast);
}

header.scrolled .logo-title {
    font-size: 1.55rem;
}

header.scrolled .logo-subtitle {
    font-size: 0.85rem;
}

@media (max-width: 767px) {
    .logo-title {
        font-size: 1.45rem;
    }
    .logo-subtitle {
        font-size: 0.75rem;
    }
}

/* Footer Subtitle Styling */
.footer-by-rakhi {
    font-size: 0.9rem;
    font-family: var(--font-heading);
    color: #C3B9DF;
    font-style: italic;
    margin-top: -12px;
    margin-bottom: 8px;
}


