:root {
    --primary-color: #c2185b;
    /* Deep Pink/Maroon */
    --theme-pink-light: #fce4ec;
    --theme-yellow-light: #fff9c499;
    --theme-purple: #6c4d9f;
    --theme-teal: #29b29b;
    --theme-gray: #555555;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f9f9f9;
    --font-heading: "Outfit", sans-serif;
    --font-body: "Outfit", sans-serif;
    --icon-gradient: linear-gradient(90deg,
            #ff9800 0%,
            #ff5722 33%,
            #f44336 66%,
            #c2185b 100%);
    --icon-gradient-hover: linear-gradient(90deg,
            #ffb74d 0%,
            #ff8a65 33%,
            #e57373 66%,
            #ad1457 100%);
    --theme-gradient: linear-gradient(180deg,
            var(--theme-pink-light) 0%,
            var(--theme-yellow-light) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: #fff;
}

/* Custom Scrollbar - WebKit */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f9f9f9;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #ff9800 0%, #ff5722 50%, #c2185b 100%);
    border-radius: 10px;
    border: 2px solid #f9f9f9;
    /* Creates a padding effect */
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ffb74d 0%, #e57373 50%, #ad1457 100%);
}

/* Custom Scrollbar - Firefox */
html {
    scrollbar-width: thin;
    scrollbar-color: #c2185b #f9f9f9;
}

.bg-theme-gradient {
    background: var(--theme-gradient) !important;
}

.bg-theme-light {
    background-color: var(--theme-pink-light) !important;
    background: var(--theme-gradient);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

/* Top Bar */
.top-bar {
    background-color: var(--theme-pink-light);
    /* Gold/Yellow */
    text-align: center;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 600;
    color: #000;
}

/* Header */
header {
    background-color: transparent;
    /* Changed to accommodate split layout */
    padding: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.header-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-icons {
    display: flex;
    gap: 20px;
    font-size: 18px;
    color: #313030;
    cursor: pointer;
}

.logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo img {
    height: 82px;
    width: auto;
    padding-top: 30;
}

/* Navigation */
.nav-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

/* Log In Button Styling & Animation */
/* New Floating Navigation Styles */
header {
    position: fixed;
    top: 15px;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 15px;
}

@media (max-width: 768px) {
    header {
        top: 0;
        padding: 0;
    }
}

.main-content {
    padding-top: 110px;
    /* Clear fixed header */
    min-height: 60vh;
}

.page-header {
    background-color: #faf8f6;
    padding: 30px 0 60px;
    /* Used within main-content which already has padding, or as standalone */
    margin-bottom: 0;
    border-bottom: 1px solid #f1ece4;
    position: relative;
    overflow: hidden;
}

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

.page-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%,
            rgba(194, 24, 91, 0.03) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 50%,
            rgba(255, 152, 0, 0.03) 0%,
            transparent 50%);
    pointer-events: none;
}

.page-header .page-title {
    font-size: 36px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    margin-top: 15px;
}

.page-header .breadcrumb a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

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

.page-header .breadcrumb span {
    color: #ccc;
    font-size: 12px;
}

/* User Friendly Account Styles */
.account-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.account-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.account-section-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--theme-pink-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.account-section-title i {
    color: var(--primary-color);
}

/* Magic Card Navbar Styles - THEME COLOR EDITION */
.floating-nav {
    --border: 1px;
    --rounded: 50px;
    --w-card: 100%;
    --h-card: 85px;
    max-width: 1400px;
    margin: 15px auto;
    background: transparent;
    height: var(--h-card);
    border-radius: var(--rounded);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--border);
    box-shadow: 0px 4px 20px 0px rgba(194, 24, 91, 0.3);
    overflow: visible;
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .floating-nav {
        --h-card: 65px;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        border-radius: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .floating-nav::before,
    .floating-nav::after {
        border-radius: 0;
    }
}

/* Scrolled / Docked State */
header {
    transition: all 0.4s ease;
}

header.scrolled {
    top: 0;
    padding: 0;
}

.floating-nav.docked {
    margin: 0;
    border-radius: 0;
    max-width: 100%;
    width: 100%;
    height: 70px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: none;
}

/* Glowing Border Animation - Theme Colors */
.floating-nav::before,
.floating-nav::after {
    content: "";
    z-index: -1;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--rounded);
    background-size: 300% 300%;
    animation: bg-spin 6s linear infinite;
    background-image:
        radial-gradient(circle farthest-side at 0 100%, #c2185b, transparent),
        radial-gradient(circle farthest-side at 100% 0, #6c4d9f, transparent),
        radial-gradient(circle farthest-side at 100% 100%,
            #f8bbd0,
            transparent),
        radial-gradient(circle farthest-side at 0 0,
            var(--primary-color),
            #0000);
}

.floating-nav::after {
    filter: blur(20px);
    opacity: 0.6;
    transition: opacity 0.5s ease;
}

@keyframes bg-spin {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Inner Content Layer */
.nav-card-content {
    position: relative;
    width: 100%;
    height: 100%;
    /* Divine Light Effect with Strong Wave Spotlight for Logo */
    background:
        /* Stronger Left-side Wave/Spotlight to back-light the logo */
        radial-gradient(ellipse at 8% 50%,
            rgba(255, 220, 150, 0.15) 0%,
            rgba(139, 69, 19, 0.3) 30%,
            transparent 60%),
        /* Main Central Divine Glow - smoother transition */
        radial-gradient(circle at center, #6d5623 0%, #2a1e0b 40%, #000000 100%);
    border-radius: calc(var(--rounded) - 4px);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    overflow: visible;
    box-shadow: inset 0 0 50px rgba(255, 215, 0, 0.05);
}

@media (max-width: 768px) {
    .nav-card-content {
        padding: 0 15px;
    }
}

/* Reuse existing inner alignment classes */
.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    z-index: 20;
}

/* Updated Logo - Perfect Centering & Clarity */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: auto;
    max-height: 65px;
    /* Ensures padding on top/bottom (85px parent - 55px = 30px space) */
    width: auto;
    filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.2));
    /* Subtle pop against dark bg */
    display: block;
}

@media (max-width: 991px) {
    .logo img {
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .logo img {
        max-height: 35px;
    }
    .nav-right {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .nav-card-content {
        padding: 0 10px;
    }
    .logo img {
        max-height: 30px;
    }
    .nav-right {
        gap: 12px;
    }
    .nav-icon-link {
        font-size: 18px;
    }
}

/* Moved mobile nav override below */
.nav-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    z-index: 20;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links a {
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    padding: 8px 0;
    position: relative;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-color);
    /* Pink hover */
    text-shadow: 0 0 10px rgba(194, 24, 91, 0.6);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 20;
}

@media (min-width: 1351px) {
    .nav-card-content {
        display: grid;
        grid-template-columns: 1fr auto 1fr !important;
        gap: 30px !important;
    }

    .nav-left {
        justify-content: flex-start;
    }

    .nav-center {
        justify-content: center !important;
        padding-left: 0 !important;
    }

    .nav-links {
        gap: 30px !important;
    }

    .nav-links a {
        font-size: 20px !important;
    }

    .nav-right {
        justify-content: flex-end;
    }

    .auth-buttons-desktop {
        display: flex;
        gap: 12px;
        align-items: center;
    }
}

.lang-switch {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-right: 10px;
}

.nav-btn {
    padding: 10px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    text-transform: uppercase;
}

.btn-signup {
    background: linear-gradient(135deg, #ff9100 0%, #f44336 50%, #d81b60 100%);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.3);
}

.btn-signup:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(244, 67, 54, 0.4);
    filter: brightness(1.1);
}

.btn-login {
    background: var(--icon-gradient) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(194, 24, 91, 0.4);
    border: none;
}

.btn-login:hover {
    background: var(--icon-gradient-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(194, 24, 91, 0.5);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-links li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link-black {
    color: #000000;
}

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

.nav-link-white {
    color: #ffffff;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    min-width: 200px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    border-top: 3px solid var(--primary-color);
    padding: 10px 0;
    pointer-events: none;
}

.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary-color);
}

.nav-icon-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 22px;
    transition: all 0.3s ease;
}

.nav-icon-link:hover {
    color: #c2185b;
    transform: translateY(-2px);
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: linear-gradient(135deg, #ff9800, #c2185b);
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 2px solid #fff;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    margin-top: 5px;
}

.dropdown-menu li {
    width: 100%;
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    font-size: 13px;
    text-transform: capitalize;
    color: #434242;
    border-bottom: 1px solid #f9f9f9;
    justify-content: flex-start;
}

.dropdown-menu a:hover {
    background-color: #ffffff;
    color: var(--primary-color);
    padding-left: 25px;
}

/* Hero Section */
.hero {
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

@media (max-width: 768px) {
    .hero {
        height: 60vh;
        min-height: 400px;
    }
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    /* Slight overlay */
    z-index: 1;
}

/* Hero Controls */
.hero-controls {
    position: absolute;
    bottom: 50px;
    right: 80px;
    display: flex;
    gap: 30px;
    z-index: 20;
}

.hero-arrow {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 21;
    /* Extra insurance */
}

/* Floating Contact Widgets */
.floating-contact-widgets {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-widget {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.contact-widget:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-widget.whatsapp {
    background: #25d366;
}

.contact-widget.phone {
    background: #007bff;
    /* Or var(--primary-color) */
}

/* Pulse Animation */
@keyframes pulse-white {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.hero-arrow:hover {
    background: #fff;
    color: #000;
    border-color: #fff;
    transform: scale(1.1);
}

.hero-content {
    position: relative;
    z-index: 10;
}

.subtitle {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid rgba(253, 253, 253, 0.5);
    margin-bottom: 20px;
    letter-spacing: 2px;
    font-size: 12px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
    letter-spacing: 1px;
}

.btn {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #ff9100 0%, #f44336 50%, #d81b60 100%);
    color: #fff !important;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.4s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(244, 67, 54, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.4);
    color: #fff !important;
    filter: brightness(1.1);
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 30px;
    background: linear-gradient(90deg,
            #ff9800 0%,
            #ff5722 33%,
            #f44336 66%,
            #c2185b 100%);
    color: #fff !important;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    box-shadow: 0 4px 15px rgba(244, 67, 54, 0.25);
    cursor: pointer;
    text-decoration: none;
}

.btn-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(244, 67, 54, 0.4);
    filter: brightness(1.1);
}

.btn-premium-sm {
    padding: 8px 20px;
    font-size: 11px;
}

.btn-premium-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 25px;
    background: #fff;
    color: var(--primary-color) !important;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    text-decoration: none;
}

.btn-premium-outline:hover {
    background: var(--primary-color);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.2);
}

/* Standardized Small Hero for Subpages */
.hero-small {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
    padding-top: 120px;
    /* Accounts for fixed floating header (~120px) + 30px breathing room */
    text-align: center;
    overflow: hidden;
}

.hero-small .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.6) 0%,
            rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

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

.hero-small h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.hero-small p {
    color: #eee;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
}

/* Features Strip */
.features-strip {
    background-color: #f5f5f5;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.features-strip .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Sections */
section {
    padding: 60px 0;
}

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

.premium-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.section-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    letter-spacing: 1.5px;
    /* Increased letter spacing */
    font-family: var(--font-heading);
    text-transform: uppercase;
}

.section-subtitle {
    color: #666;
    font-size: 15px;
    max-width: 600px;
    margin: 10px auto 0;
    line-height: 1.5;
}

/* Premium Title Decoration */
.title-decoration-line {
    height: 2px;
    width: 60px;
    /* Adjust length as needed */
    display: block;
    position: relative;
    border-radius: 2px;
}

.title-decoration-line.left {
    background: var(--icon-gradient);
}

.title-decoration-line.right {
    background: linear-gradient(to right, var(--primary-color), transparent);
}

.title-decoration-line::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    /* Diamond shape */
}

.title-decoration-line.left::after {
    right: -3px;
    /* Slightly overlap or touch */
}

.title-decoration-line.right::after {
    left: -3px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-5px);
}

.product-img-wrapper {
    position: relative;
    padding-top: 100%;
    /* Square aspect ratio */
    overflow: hidden;
    background: #f9f9f9;
}

.product-img,
.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Contain to show full product */
    padding: 20px;
    transition: transform 0.5s ease;
}

/* Specific Override for Beads Slider Full Coverage */
#beads-slider-lower .slide img {
    object-fit: cover;
    padding: 5;
}

/* Points Animation Wrapper */
.points_wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--rounded);
    pointer-events: none;
    z-index: 15;
    /* Removed overflow hidden from here so they can enter/exit smoothly, blocked by parent */
}

.points_wrapper .point {
    position: absolute;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fffacd;
    /* LemonChiffon (Pale Gold/White) */
    /* Strong Yellow/Gold Glow for Positive Energy */
    box-shadow:
        0 0 10px #ffd700,
        0 0 20px #ff8c00;
    opacity: 0;
    animation: floating-points-horizontal 15s infinite linear;
}

@keyframes floating-points-horizontal {
    0% {
        transform: translate(-50px, 15px) scale(0.5);
        opacity: 0;
        left: 0%;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        transform: translate(50px, -15px) scale(1.2);
        opacity: 0;
        left: 100%;
        /* Move across the Full Navbar */
    }
}

/* Random Positions & timings for 20 Dots */
/* We set 'top' randomly, and animate 'left' from 0 to 100% */
.points_wrapper .point:nth-child(1) {
    top: 20%;
    animation-duration: 12s;
    animation-delay: 0s;
}

.points_wrapper .point:nth-child(2) {
    top: 60%;
    animation-duration: 15s;
    animation-delay: 2s;
}

.points_wrapper .point:nth-child(3) {
    top: 40%;
    animation-duration: 10s;
    animation-delay: 5s;
}

.points_wrapper .point:nth-child(4) {
    top: 75%;
    animation-duration: 18s;
    animation-delay: 1s;
}

.points_wrapper .point:nth-child(5) {
    top: 30%;
    animation-duration: 14s;
    animation-delay: 7s;
}

.points_wrapper .point:nth-child(6) {
    top: 85%;
    animation-duration: 11s;
    animation-delay: 3s;
}

.points_wrapper .point:nth-child(7) {
    top: 15%;
    animation-duration: 16s;
    animation-delay: 8s;
}

.points_wrapper .point:nth-child(8) {
    top: 55%;
    animation-duration: 9s;
    animation-delay: 4s;
}

.points_wrapper .point:nth-child(9) {
    top: 90%;
    animation-duration: 13s;
    animation-delay: 6s;
}

.points_wrapper .point:nth-child(10) {
    top: 10%;
    animation-duration: 17s;
    animation-delay: 2.5s;
}

.points_wrapper .point:nth-child(11) {
    top: 45%;
    animation-duration: 12.5s;
    animation-delay: 1.5s;
}

.points_wrapper .point:nth-child(12) {
    top: 70%;
    animation-duration: 14.5s;
    animation-delay: 9s;
}

.points_wrapper .point:nth-child(13) {
    top: 25%;
    animation-duration: 11.5s;
    animation-delay: 0.5s;
}

.points_wrapper .point:nth-child(14) {
    top: 80%;
    animation-duration: 19s;
    animation-delay: 5.5s;
}

.points_wrapper .point:nth-child(15) {
    top: 35%;
    animation-duration: 10.5s;
    animation-delay: 3.5s;
}

.points_wrapper .point:nth-child(16) {
    top: 65%;
    animation-duration: 15.5s;
    animation-delay: 6.5s;
}

.points_wrapper .point:nth-child(17) {
    top: 50%;
    animation-duration: 13.5s;
    animation-delay: 8.5s;
}

.points_wrapper .point:nth-child(18) {
    top: 5%;
    animation-duration: 16.5s;
    animation-delay: 4.5s;
}

.points_wrapper .point:nth-child(19) {
    top: 95%;
    animation-duration: 9.5s;
    animation-delay: 2s;
}

.points_wrapper .point:nth-child(20) {
    top: 58%;
    animation-duration: 12s;
    animation-delay: 7.5s;
}

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

.new-arrival-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--icon-gradient);
    color: #fff;
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 20px;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(194, 24, 91, 0.2);
}

/* Slider inside Card */
.slider-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
    color: #333;
}

.product-card:hover .slider-arrow {
    opacity: 1;
}

.slider-arrow.prev {
    left: 10px;
}

.slider-arrow.next {
    right: 10px;
}

.slider-arrow:hover {
    background: #fff;
    color: var(--primary-color);
}

.product-info {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info .add-to-cart-btn {
    margin-top: auto;
}

.product-title {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-meta {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    min-height: 50px;
    /* Ensure space for at least two items */
}

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

.star-rating {
    font-size: 12px;
    color: #ffc107;
}

.star-rating span {
    color: #999;
    margin-left: 5px;
}

.add-to-cart-btn {
    background: var(--icon-gradient);
    color: #fff;
    border: none;
    padding: 12px 25px;
    width: 100%;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(194, 24, 91, 0.2);
}

.add-to-cart-btn:hover {
    background: var(--icon-gradient-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(194, 24, 91, 0.4);
}

.add-to-cart-btn::before,
.add-to-cart-btn::after {
    display: none !important;
}

/* Custom Features Section (Replacing Statues) */
.custom-features-section {
    background-color: #f6eddf;
    background-image: url("../images/bg_texture_clean.jpg");
    background-repeat: repeat;
    background-size: auto;
    /* Light beige background with texture */
    padding: 60px 0;
    width: 100%;
    margin: 20px 0;
    border-top: 1px solid #eeddcc;
    border-bottom: 1px solid #eeddcc;
}

.custom-features-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 350px;
}

.custom-feature-img {
    width: 188px;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    filter: sepia(0.3) contrast(0.95);
    /* background-color removed */
}

/* Modifiers to crop the single sheet image */
/* Based on assumption that Image contains multiple sketches in corners */
.feat-img-1 {
    object-position: 80% 20%;
    /* Sages - Top Rightish */
    transform: scale(1.2);
    /* Adjust scale to zoom in */
}

.feat-img-2 {
    object-position: 50% 60%;
    /* Hand - Center/Bottom */
    transform: scale(1.2);
}

.feat-img-3 {
    object-position: 90% 90%;
    /* Temple - Bottom Right */
    transform: scale(1.3);
}

.custom-feature-text {
    font-family: "Outfit", sans-serif;
    color: #4a4a4a;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #999;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 13px;
}

/* Premium Benefits Section */
.premium-benefits-section {
    background-color: #fffaf0;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.premium-benefits-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 1px,
            transparent 1px);
    background-size: 40px 40px;
    opacity: 0.05;
    pointer-events: none;
}

.premium-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    padding-top: 20px;
}

.premium-benefit-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.premium-benefit-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.premium-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(194, 24, 91, 0.15);
}

.premium-benefit-card:hover::after {
    transform: scaleX(1);
}

.premium-benefit-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.premium-benefit-icon {
    font-size: 32px;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(194, 24, 91, 0.1);
    border-radius: 50%;
    transition: 0.4s ease;
    z-index: 1;
}

.premium-benefit-card:hover .icon-bg {
    transform: scale(1.2);
    background-color: var(--primary-color);
}

.premium-benefit-card:hover .premium-benefit-icon {
    color: #fff;
    transform: scale(1.1);
}

.premium-benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 0;
    font-family: var(--font-heading);
}

/* Premium Origin Section */
.origin-section {
    background-color: #fff;
    padding: 100px 0;
    position: relative;
}

.origin-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.origin-image-container {
    flex: 1;
    position: relative;
}

.origin-image-main {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0px rgba(194, 24, 91, 0.1);
    transition: transform 0.5s ease;
}

.origin-image-container:hover .origin-image-main {
    transform: translateY(-10px);
}

.origin-content {
    flex: 1;
}

.origin-subtitle {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
    font-size: 14px;
}

.origin-title {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.origin-text {
    color: #666;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.video-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
}

.play-button {
    width: 60px;
    height: 60px;
    background: var(--icon-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(194, 24, 91, 0.3);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.video-btn-wrapper:hover .play-button {
    transform: scale(1.1);
}

.watch-text {
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(194, 24, 91, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(194, 24, 91, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(194, 24, 91, 0);
    }
}

@media (max-width: 991px) {
    .origin-layout {
        flex-direction: column;
        gap: 50px;
    }

    .origin-image-main {
        box-shadow: 10px 10px 0px rgba(194, 24, 91, 0.1);
    }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .premium-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .premium-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* Premium How It Works Section */
.how-it-works-section {
    background-color: #1a1a2e;
    /* Dark theme for contrast */
    color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.how-it-works-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
    /* Subtle texture */
    opacity: 0.1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.process-card {
    background: rgba(255, 255, 255, 0.05);
    /* Glassmorphism */
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease;
}

.process-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.process-number {
    font-size: 60px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    margin-bottom: -30px;
    display: block;
    font-family: var(--font-heading);
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--icon-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 20px rgba(194, 24, 91, 0.3);
    position: relative;
}

.process-icon {
    font-size: 32px;
    color: #fff;
}

.process-title {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.process-text {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
}

/* Connecting Lines (Desktop only) */
@media (min-width: 992px) {
    .process-card:not(:last-child)::after {
        content: "\f061";
        /* FontAwesome arrow right */
        font-family: "Font Awesome 6 Free";
        font-weight: 900;
        position: absolute;
        top: 50%;
        right: -30px;
        transform: translateY(-50%);
        font-size: 24px;
        color: rgba(255, 255, 255, 0.2);
        z-index: -1;
    }
}

/* Premium Why Choose Us Section */
.why-choose-us-section {
    background-color: #fff;
    padding: 20px 0 100px;
    position: relative;
    overflow: hidden;
}

.why-choose-us-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    position: relative;
    z-index: 2;
    align-items: center;
}

.why-card {
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    border-right: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.why-card:nth-child(3n) {
    border-right: none;
}

.why-card:hover {
    background-color: #fffaf0;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    z-index: 10;
    border-radius: 20px;
    border: none;
}

.why-icon {
    font-size: 48px;
    margin-bottom: 25px;
    background: var(--icon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.why-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.why-desc {
    font-size: 14px;
    color: #777;
    line-height: 1.6;
}

.center-image-wrapper {
    grid-column: 2;
    grid-row: 1 / span 2;
    text-align: center;
    padding: 20px;
    position: relative;
}

.center-hero-img {
    max-width: 100%;
    border-radius: 20px;
}

/* Background Circle Decoration */
.why-choose-us-section::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle,
            rgba(194, 24, 91, 0.05) 0%,
            rgba(255, 255, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

@media (max-width: 991px) {
    .why-choose-us-grid {
        grid-template-columns: 1fr 1fr;
    }

    .why-card:nth-child(2n) {
        border-right: none;
    }

    .why-card:nth-child(3n) {
        border-right: 1px solid #f0f0f0;
    }

    .center-image-wrapper {
        grid-column: 1 / -1;
        grid-row: auto;
        order: -1;
        margin-bottom: 40px;
    }
}

@media (max-width: 600px) {
    .why-choose-us-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        border-right: none;
    }
}

/* Premium Celebrity Reviews Section */
.celebrity-reviews-section {
    background-color: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.review-layout {
    display: flex;
    align-items: center;
    gap: 80px;
}

.review-image-container {
    flex: 1;
    position: relative;
    height: 100%;
    /* Fill container height */
    min-height: 400px;
    /* Ensure visibility */
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-image-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the area without distortion */
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.review-content {
    flex: 1;
    text-align: left;
}

.review-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    background: var(--icon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    display: block;
}

.star-rating-review {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.star-rating-review i {
    background: var(--icon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
}

.review-title {
    font-size: 20px;
    line-height: 1.4;
    color: #1a1a1a;
    font-weight: 400;
    /* Lighter weight for elegance */
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.review-author-note {
    font-size: 16px;
    color: #333;
    font-weight: 700;
    margin-bottom: 40px;
    border-left: 4px solid;
    border-image: var(--icon-gradient) 1;
    padding-left: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-controls {
    display: flex;
    gap: 20px;
}

.review-nav-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    width: auto;
    /* Reset any button width */
}

.review-nav-btn:hover {
    color: #333;
}

@media (max-width: 991px) {
    .review-layout {
        flex-direction: column;
        gap: 40px;
    }

    .review-slide {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .review-slide.active {
        position: relative;
        height: auto;
    }

    .review-slide:not(.active) {
        position: absolute;
    }

    .review-layout {
        min-height: unset !important;
        height: auto !important;
    }

    .review-image-container {
        width: 250px;
        max-width: 100%;
        height: 250px;
        min-height: 250px !important;
        flex: 0 0 250px;
        margin: 0 auto;
    }

    .review-content {
        text-align: center;
    }

    .star-rating-review {
        justify-content: center;
    }

    .review-author-note {
        border-left: none;
        padding-left: 0;
    }

    .review-title {
        font-size: 16px;
    }
}

.review-slide {
    display: flex;
    align-items: center;
    gap: 80px;
}

/* Dashed Process Grid (How It Works Redesign) */
.dashed-process-section {
    background-color: var(--theme-pink-light);
    padding: 20px 0 80px;
    text-align: center;
}

.dashed-process-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.dashed-process-row {
    display: flex;
    flex-wrap: wrap;
    border: 2px solid #d4af37;
    /* Premium Solid Gold Border */
    border-radius: 12px;
    margin-bottom: 40px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    /* Soft Gold Glow */
    overflow: hidden;
    /* Ensure corners are clipped */
}

.dashed-process-item {
    flex: 1;
    min-width: 200px;
    padding: 40px 20px;
    position: relative;
    border-right: 1px solid rgba(212, 175, 55, 0.3);
    /* Subtle internal divider */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.dashed-process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    z-index: 10;
    /* Maintain border context */
}

/* Fix for borders appearing disappearing weirdly: actually keeping border right might be safer or just setting z-index high covers it if rows overlap. 
   Let's just do z-index and shadow */

.dashed-process-item:last-child {
    border-right: none;
}

.dashed-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    background: transparent;
}

.dashed-process-item:hover .dashed-icon-wrapper {
    background: rgba(194, 24, 91, 0.1);
    transform: rotateY(180deg);
    /* 3D flip effect */
}

.dashed-icon {
    font-size: 40px;
    color: #333;
    /* Dark icon */
    transition: all 0.3s ease;
}

.dashed-process-item:hover .dashed-icon {
    color: var(--primary-color);
    /* Brand orange */
}

.dashed-title {
    font-family: var(--font-heading);
    color: #b8860b;
    /* Gold/Brown tone like reference */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.dashed-desc {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .dashed-process-item {
        flex: 1 1 50%;
        /* 2 items per row */
        border-bottom: 1px dashed #ccc;
    }

    .dashed-process-item:nth-child(2n) {
        border-right: none;
    }

    /* Reset borders for bottom items if needed, but flex wrap makes it tricky. Simple grid might be better but user asked for specific dashed look. */
}

@media (max-width: 600px) {
    .dashed-process-item {
        flex: 1 1 100%;
        /* 1 item per row */
        border-right: none;
    }

    .dashed-process-item:last-child {
        border-bottom: none;
    }
}

/* Shop By Festival Section */
.festival-section {
    padding: 80px 0;
    text-align: center;
    background-image: url("../images/reference_bg.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    /* Maintain readability if image is dark/busy, though usually we add an overlay div or pseudo-element */
}

.festival-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(60 59 57 / 85%);
    z-index: 0;
}

.festival-section .container {
    position: relative;
    z-index: 1;
}

.festival-header {
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.festival-title {
    font-size: 29px;
    color: #333;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
}

.festival-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.festival-item {
    text-align: center;
    width: 150px;
}

.festival-img-wrapper {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #b8860b;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    /* Added for text support */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    /* Changed to white for image background */
    font-size: 32px;
    font-weight: 700;
    position: relative;
    /* Ensure overlay aligns */
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay */
    z-index: 1;
}

.festival-img-wrapper:hover {
    transform: scale(1.05);
}

.festival-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.festival-name {
    font-size: 14px;
    color: #d3d3d3;
    font-weight: 500;
}

/* New Stats Section (Dark Gold Theme) */
.dark-stats-section {
    background: url("../images/custom_features.jpg") center/cover no-repeat;
    /* Fallback or use a dark dynamic background */
    background-color: #000;
    position: relative;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.dark-stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* Darken content image */
    z-index: 1;
}

.dark-stats-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.dark-stats-title {
    font-size: 42px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
    color: #fff;
}

.dark-stats-desc {
    font-size: 16px;
    color: #ccc;
    margin-bottom: 60px;
    line-height: 1.6;
}

.dark-stats-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.gold-stat-item {
    text-align: center;
    width: 180px;
}

.gold-circle-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(184, 134, 11, 0.5);
    border-radius: 50%;
}

/* Decorative spikes/compass feel */
.gold-circle-wrapper::before {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    border: 1px solid rgba(184, 134, 11, 0.2);
    border-radius: 50%;
}

.gold-stat-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--icon-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Premium Footer */
/* Premium Footer Redesign */
/* Premium Footer Redesign */
footer {
    color: #aeaeae;
    padding: 60px 0 20px;
    font-size: 15px;
    position: relative;
    box-shadow: inset 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    background: #000;
    /* Fallback */
}

footer::before {
    content: "";
    position: absolute;
    top: 136;
    left: 180;
    width: 105%;
    height: 100%;
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url("../images/footer_peacock_v3.jpg") center/cover no-repeat;
    filter: blur(8px);
    transform: scale(1.1);
    /* Prevent blurred edges */
    opacity: 0.8;
    z-index: 0;
    pointer-events: none;
}

footer .container {
    max-width: 1400px;
    padding: 0 45px;
    position: relative;
    z-index: 10;
}

/* Footer Floating Points Override */
footer .points_wrapper {
    z-index: 1;
    /* Behind content */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: start;
    gap: 30px;
    margin-bottom: 0;
}

.footer-col h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
    display: inline-block;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.footer-col:hover h4::after {
    width: 100%;
}

.footer-logo {
    max-height: 120px;
    width: auto;
    margin-bottom: 18px;
    display: block;
}

.footer-col p {
    color: #aeaeae;
    line-height: 1.8;
    margin-bottom: 25px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #aeaeae;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    padding-left: 0;
}

/* Remove old square bullet and use hover slide effect */
.footer-col ul li a::before {
    content: none;
}

/* Social Media Brand Colors */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #1a1a1a;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a:nth-child(1):hover {
    background: #1877f2;
}

/* Facebook */
.social-links a:nth-child(2):hover {
    background: #e4405f;
}

/* Instagram */
.social-links a:nth-child(3):hover {
    background: #ff0000;
}

/* YouTube */
.social-links a:nth-child(4):hover {
    background: #1da1f2;
}

/* Twitter */

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

/* Recent Posts widget in Footer */
.footer-recent-post {
    display: flex;
    gap: 15px;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #222;
}

.footer-recent-post:last-child {
    border-bottom: none;
}

.footer-post-img-wrapper {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.footer-post-img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
}

.footer-post-info a {
    color: #e0e0e0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.footer-post-info span {
    font-size: 12px;
    color: #666;
}

.footer-post-info a:hover {
    color: var(--primary-color);
}

/* Contact Us in Footer */
.footer-contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    color: #aeaeae;
    font-size: 15px;
    line-height: 1.5;
    align-items: flex-start;
    /* Better for multi-line address */
}

.footer-contact-item .footer-icon-circle {
    margin-top: -8px;
    /* Perfectly aligns center of 40px circle with center of 22.5px text line */
}

.footer-icon-circle {
    width: 40px;
    height: 40px;
    background: var(--icon-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.footer-contact-item:hover .footer-icon-circle {
    background: var(--icon-gradient-hover);
    color: #fff;
    transform: rotate(360deg) scale(1.1);
}

.bottom-bar {
    background-color: transparent;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Very subtle separator */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 30px;
    position: relative;
    /* For absolute centered text */
}

.bottom-bar p {
    font-size: 14px;
    color: #bbb;
    /* Brighter grey for visibility */
    margin: 0;
    font-weight: 500;
}

.footer-copy {
    grid-column: 2 / span 2;
    text-align: center;
    justify-self: center;
}

.footer-bottom-links {
    grid-column: 1;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bottom-bar .social-links {
    grid-column: 4;
    justify-self: end;
}

.footer-bottom-links a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    /* Bold for prominence */
    letter-spacing: 0.5px;
}

.footer-bottom-links a:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(194, 24, 91, 0.4);
}

/* Latest Articles Section - Premium Dark Mode */
.articles-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fffaf5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.articles-section .section-title {
    color: #222 !important;
    text-shadow: none;
}

.articles-section .section-subtitle {
    color: #666 !important;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.article-card {
    background: #2a2a2a;
    /* Dark card background */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #444;
    /* Subtle border */
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--primary-color);
    /* Brand orange on hover */
}

.article-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.article-card:hover .article-image {
    transform: scale(1.05);
    /* Zoom effect */
}

.article-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-date {
    font-size: 13px;
    color: var(--primary-color);
    /* Orange accent */
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.article-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    /* White title */
    margin-bottom: 15px;
    line-height: 1.5;
    font-family: var(--font-heading);
    transition: color 0.3s;
}

.article-card:hover .article-title {
    color: var(--primary-color);
}

.article-excerpt {
    font-size: 15px;
    color: #bbb;
    /* Light grey text */
    margin-bottom: 25px;
    line-height: 1.7;
}

.read-more-link {
    margin-top: auto;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more-link i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.read-more-link:hover {
    gap: 12px;
    color: var(--primary-color);
}

.read-more-link:hover i {
    transform: translateX(3px);
}

/* Background Ornament */
.articles-section::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle,
            rgba(194, 24, 91, 0.05) 0%,
            transparent 60%);
    pointer-events: none;
}

/* Duplicated section styles removed */

/* Theme Background Utilities */
.bg-theme-faint {
    background-color: #fff9f5 !important;
    background: linear-gradient(to bottom, #fffbf7, #fff) !important;
}

.bg-white {
    background-color: #ffffff !important;
}

/* User Profile Dropdown */
.profile-toggle {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.profile-toggle:hover {
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(194, 24, 91, 0.5);
    /* using explicit color for shadow glow */
    transform: scale(1.1);
}

/* Wishlist Count Badge */
.wishlist-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

/* About Page Redesign */

.section-padding {
    padding: 100px 0;
}

.bg-light-pink {
    background-color: #fff5f8;
}

.about-siddha-card {
    background: #fff;
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.about-bead-image-wrapper {
    position: relative;
    max-width: 450px;
    margin: 0 auto;
}

.bead-orbit-1,
.bead-orbit-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px dashed rgba(194, 24, 91, 0.3);
}

.bead-orbit-1 {
    width: 120%;
    height: 120%;
    animation: spin 20s linear infinite;
}

.bead-orbit-2 {
    width: 150%;
    height: 150%;
    border-color: rgba(184, 134, 11, 0.2);
    animation: spin-reverse 25s linear infinite;
}

.usage-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--icon-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(194, 24, 91, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--theme-pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--primary-color);
    color: #fff;
}

.feature-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.feature-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.vision-mission-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vision-mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

/* ==========================================================================
   Responsive Design & Mobile Menu
   ========================================================================== */

/* Utility Classes for Responsiveness */
.w-full {
    width: 100%;
}

.mb-3 {
    margin-bottom: 15px;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    display: flex;
    justify-content: flex-end;
}

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

.mobile-nav-content {
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    padding: 30px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav-overlay.active .mobile-nav-content {
    transform: translateX(0);
}

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

.mobile-nav-header .logo img {
    max-height: 50px;
}

.close-menu {
    font-size: 35px;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-links {
    margin-bottom: 40px;
}

.mobile-links li {
    margin-bottom: 20px;
}

.mobile-links a {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    display: block;
}

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

.mobile-auth {
    margin-top: auto;
}

/* Nav Icon Links */
.nav-icon-link {
    color: var(--primary-color);
    font-size: 20px;
    position: relative;
    display: inline-flex;
    text-decoration: none;
    margin-right: 15px;
}

.nav-icon-link i {
    transition: transform 0.3s ease;
}

.nav-icon-link:hover i {
    transform: scale(1.1);
}

/* Profile Toggle Base Styles */
.profile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    background: #f0f0f0;
    border: 2px solid var(--primary-color);
}

/* Tablet & Mobile Media Queries */

@media (max-width: 1200px) {
    .container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .floating-nav {
        max-width: 95%;
    }
}

@media (max-width: 850px) {
    .nav-center {
        display: none !important;
    }

    .auth-buttons-desktop {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
    }

    .nav-card-content {
        padding: 0 20px;
    }
}

/* Compact Desktop (Standard Laptops) */
@media (min-width: 1001px) and (max-width: 1350px) {
    .nav-card-content {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        gap: 20px !important;
        padding: 0 10px;
    }

    .nav-center {
        display: flex !important;
        justify-content: center !important;
        padding-left: 0 !important;
    }

    .nav-links {
        gap: 18px !important;
    }

    .nav-links a {
        font-size: 17px !important;
        letter-spacing: 0.5px;
    }

    .auth-buttons-desktop {
        gap: 16px !important;
        justify-content: flex-end !important;
    }

    .nav-btn {
        padding: 8px 15px !important;
        font-size: 13px !important;
    }

    .nav-icon-link {
        margin-right: 18px !important;
    }
}

/* Ultra-Compact Tablet/Small Laptop (e.g. 873px) */
@media (min-width: 850px) and (max-width: 1000px) {
    .nav-card-content {
        display: grid !important;
        grid-template-columns: auto 1fr auto !important;
        gap: 15px !important;
        padding: 0 5px;
    }

    .nav-center {
        display: flex !important;
        justify-content: center !important;
        padding-left: 0 !important;
    }

    .nav-links {
        gap: 14px !important;
    }

    .nav-links a {
        font-size: 16px !important;
        letter-spacing: 0 !important;
    }

    .logo img {
        max-height: 35px !important;
    }

    .auth-buttons-desktop {
        gap: 14px !important;
        justify-content: flex-end !important;
    }

    .nav-btn {
        padding: 6px 12px !important;
        font-size: 12px !important;
        letter-spacing: 0 !important;
    }

    .nav-icon-link {
        margin-right: 15px !important;
        font-size: 18px !important;
    }
}

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

    .bottom-bar {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

    .footer-bottom-links {
        grid-column: 1 / span 2;
        justify-content: center;
        margin-bottom: 15px;
    }

    .footer-copy {
        grid-column: 1 / span 2;
        order: 3;
    }

    .bottom-bar .social-links {
        grid-column: 1 / span 2;
        justify-self: center;
        margin-bottom: 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero {
        height: 700px;
    }
}

@media (max-width: 768px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .vision-mission-row {
        grid-template-columns: 1fr;
    }

    .floating-nav {
        height: 70px;
        --rounded: 35px;
    }

    .nav-card-content {
        background: #fff;
        /* Solid white background for mobile to improve readability */
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-card-content .logo img {
        max-height: 45px;
    }

    .nav-links a {
        color: var(--text-dark);
        /* Ensure visibility on white bg */
    }

    header {
        top: 10px;
        padding: 0 10px;
    }

    .main-content {
        padding-top: 100px;
    }

    .page-header {
        padding: 120px 0 40px;
    }

    .page-header .page-title {
        font-size: 28px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .footer-col {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-recent-post {
        justify-content: center;
    }

    .footer-contact-wrapper {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin: 0 auto;
    }

    .footer-contact-item {
        justify-content: flex-start;
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-info .social-links {
        justify-content: center;
    }

    .section-padding {
        padding: 60px 0;
    }

    .hero-small {
        height: 250px;
        padding-top: 100px;
    }

    .hero-small h1 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero {
        height: 600px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 12px;
    }

    .nav-right {
        gap: 15px;
    }

    .nav-icon-link {
        margin-right: 5px;
    }

    .floating-contact-widgets {
        bottom: 20px;
        right: 20px;
    }
}

/* Account Layout Styles */
.account-container {
    padding: 40px 20px;
}

.account-layout {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.account-sidebar-col {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
}

.account-main-content {
    flex: 0 0 75%;
    max-width: 75%;
    padding: 0 15px;
}

/* Home Hero Section Improvements */
.hero-home {
    background-size: cover;
    background-position: center;
    align-items: center;
    justify-content: flex-start;
    padding-left: 5%;
    text-align: left;
    display: flex;
}

.hero-home .hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 10;
}

.hero-home .hero-title {
    font-size: 48px;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    color: #fff;
    line-height: 1.2;
}

.btn-hero {
    background: var(--icon-gradient);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 700;
    color: #fff !important;
    box-shadow: 0 5px 20px rgba(194, 24, 91, 0.4);
    display: inline-block;
}

/* Media Queries for Account and Hero */
@media (max-width: 991px) {

    .account-sidebar-col,
    .account-main-content {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .account-sidebar-col {
        margin-bottom: 30px;
    }

    .hero-home {
        padding-left: 0;
        justify-content: center;
        text-align: center;
    }

    .hero-home .hero-title {
        font-size: 32px;
        margin-bottom: 25px;
    }
}

@media (max-width: 576px) {
    .hero-home .hero-title {
        font-size: 26px;
    }

    .btn-hero {
        padding: 12px 30px;
        font-size: 14px;
    }

    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

/* Internal Grid Utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

@media (max-width: 768px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

.bg-light-pink {
    background-color: #fdf2f2;
}

.bg-theme-light {
    background-color: #fafafa;
}

.bg-dark-overlay {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.bg-dark-overlay::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.relative {
    position: relative;
}

.z-2 {
    z-index: 2;
}

.mb-3 {
    margin-bottom: 1rem;
}

.text-center {
    text-align: center;
}

.header-line {
    height: 2px;
    width: 100px;
    background: linear-gradient(90deg, transparent, var(--primary-color));
}

.about-bead-image-wrapper {
    position: relative;
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-bead-image-wrapper img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15));
    position: relative;
    z-index: 2;
}

.blob-wrapper {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    background: rgba(254, 228, 236, 0.4);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: blob 10s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.blob-wrapper img {
    width: 70%;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.usage-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

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

.vision-mission-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

@media (max-width: 576px) {
    .blob-wrapper {
        height: 300px;
    }

    .header-line {
        width: 50px;
    }

    .section-padding {
        padding: 40px 0;
    }
}

/* Contact Styles */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 18px;
    width: 25px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-card,
.contact-info-card {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Policy Pages Styles */
.policy-card {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.policy-content h4 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

.policy-content p {
    color: #444;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .policy-card {
        padding: 30px 20px;
    }
}

/* Utility Classes */
.mt-0 {
    margin-top: 0 !important;
}

.mt-4 {
    margin-top: 1.5rem !important;
}

.w-100 {
    width: 100% !important;
}

.alert {
    padding: 12px 15px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-success {
    background: #e7f7e7;
    color: #2e7d32;
    border: 1px solid #d0e8d0;
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 26px;
    }

    .title-decoration-line {
        width: 50px;
    }

    .premium-header-wrapper {
        gap: 15px;
    }

    .nav-card-content {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }

    .section-title {
        font-size: 20px;
    }

    .section-header {
        margin-bottom: 25px;
    }

    .premium-header-wrapper {
        gap: 8px;
        flex-direction: row;
        /* Force row to keep lines next to text */
        justify-content: center;
        width: 100%;
    }

    .title-decoration-line {
        width: 25px;
        /* Much smaller lines */
        flex-shrink: 0;
    }

    section {
        padding: 30px 0;
    }

    .container {
        padding: 0 15px;
    }

    /* Footer Mobile Adjustments */
    .footer {
        padding: 50px 0 30px;
    }

    .footer-columns {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 25px;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-logo {
        margin: 0 auto 20px;
    }

    .footer-contact-wrapper {
        width: 100%;
        align-items: flex-start;
    }

    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .footer-icon-circle {
        margin-top: 0 !important;
    }

    .footer-recent-post {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-post-img {
        margin-bottom: 10px;
    }

    .bottom-bar {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 25px;
        padding: 30px 0;
    }

    .footer-bottom-links,
    .footer-copy,
    .bottom-bar .social-links {
        grid-column: 1 !important;
        justify-self: center !important;
        text-align: center;
        width: 100%;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 20px;
        flex-direction: row;
        font-size: 12px;
    }

    .footer-bottom-links a {
        display: block;
        padding: 5px 0;
    }

    .footer-copy {
        order: 3;
    }

    .social-links {
        justify-content: center;
    }

    /* Contact Page Mobile */
    .contact-info-card {
        text-align: center;
        padding: 30px 20px;
    }

    .contact-details {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    /* Fixed Header Icons for Mobile */
    .nav-right {
        gap: 10px;
    }

    .nav-icon-link {
        font-size: 15px;
    }

    .cart-count,
    .wishlist-count {
        width: 14px;
        height: 14px;
        font-size: 8px;
        top: -8px;
        right: -8px;
    }

    .nav-card-content {
        padding: 0 8px;
    }

    .logo img {
        max-height: 40px;
    }

    .profile-toggle {
        font-size: 24px;
        width: 32px;
        height: 32px;
        overflow: hidden;
        border-radius: 50%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 18px;
    }

    .section-subtitle {
        font-size: 12px;
    }

    .title-decoration-line {
        display: none;
        /* Hide decoration on very small screens to save space */
    }

    .logo img {
        max-height: 32px;
    }
}

/* Responsive Who We Are / Stats Section */
@media (max-width: 768px) {
    .festival-grid {
        gap: 15px !important;
    }

    .festival-item {
        width: calc(50% - 10px) !important;
        min-width: 140px;
    }

    .festival-item:nth-child(3) {
        width: 100% !important;
    }

    .festival-item .stat-number {
        font-size: 32px !important;
    }

    .festival-item .festival-name {
        font-size: 11px !important;
    }
}

/* Base Desktop Styles for Split Footer */
.footer-col h4.policies-heading {
    display: none !important;
}

.ql-section:first-child ul {
    margin-bottom: 0;
}

/* Articles Mobile Slider Arrows */
.article-slider-arrow {
    position: absolute;
    top: 140px;
    /* Precisely centers vertically against the shifted 240px tall article images */
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color, #c2185b);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    font-size: 14px;
}

.article-slider-arrow.prev {
    left: -10px;
}

.article-slider-arrow.next {
    right: -10px;
}

@media (max-width: 768px) {
    .article-slider-arrow {
        display: flex !important;
    }

    .articles-grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        -ms-overflow-style: none;
        padding-top: 20px;
        margin-top: 30px;
        padding-bottom: 20px;
        gap: 20px;
    }

    .articles-grid::-webkit-scrollbar {
        display: none;
    }

    .articles-grid .article-card {
        flex: 0 0 100%;
        scroll-snap-align: center;
        min-width: 250px;
    }

    /* Footer Recent Articles 2-in-a-row with center-alone-last-item */
    .footer-recent-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        width: 100%;
    }

    .footer-recent-grid>*:last-child:nth-child(odd) {
        grid-column: 1 / span 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 100%;
    }

    .footer-recent-post {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-bottom: none !important;
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .footer-recent-post .footer-post-img-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 0px;
    }

    .footer-recent-post .footer-post-img {
        max-width: 100% !important;
        max-height: 100% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
    }

    .footer-recent-post .footer-post-info a {
        font-size: 13px;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        line-height: 1.4;
        max-height: 2.8em;
    }

    /* Footer Contact Us 2-in-a-row with center-alone-last-item */
    .footer-contact-wrapper {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        width: 100%;
        text-align: center;
    }

    .footer-contact-wrapper>*:last-child:nth-child(odd) {
        grid-column: 1 / span 2;
        justify-self: center;
    }

    .footer-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        font-size: 12px;
        gap: 8px;
        width: 100%;
    }

    .footer-icon-circle {
        margin-top: 0 !important;
    }

    /* Mobile Quick Links Split (Consistent Centering) */
    .quick-links-split-wrapper {
        display: flex !important;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        width: 100%;
        gap: 15px;
    }

    .ql-section {
        flex: 1;
        text-align: center;
    }

    .ql-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 0;
    }

    .ql-section.policies-section {
        text-align: center;
    }

    .ql-section.policies-section ul {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ql-section.policies-section ul li {
        text-align: center;
    }

    .footer-col h4.policies-heading {
        display: block !important;
        text-align: center;
        width: 100%;
    }
}

/* Responsive Typography Refinement */
.responsive-title {
    /* Base style inherits from section-title or inline */
}

.responsive-slogan {
    /* Base style inherits from inline */
}

@media (max-width: 991px) {
    .responsive-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    .responsive-slogan {
        font-size: 18px !important;
    }
}

/* Hero Section Mobile Arrows Centering */
@media (max-width: 768px) {
    .hero-controls {
        position: absolute;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 20px;
        z-index: 10;
        width: 100%;
        justify-content: center;
    }

    .hero-arrow {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.4);
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        backdrop-filter: blur(5px);
    }
}

.mobile-br {
    display: none;
}

@media (max-width: 768px) {
    .mobile-br {
        display: block;
    }
}

/* Sacred Craftsmanship Mobile 50/50 Balance */
@media (max-width: 768px) {
    .custom-features-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .custom-feature-item {
        max-width: 100%;
        width: 100%;
        gap: 15px;
        display: flex;
        align-items: center;
    }

    .custom-feature-img {
        width: 45% !important;
        /* Using 45% to account for gap/padding and keep it visually balanced */
        height: auto !important;
        aspect-ratio: 4/3;
        flex-shrink: 0;
    }

    .custom-feature-text {
        width: 55% !important;
        font-size: 12px;
        line-height: 1.3;
        padding-right: 5px;
    }
}

/* ==========================================================================
   Additional Multi-Device Responsiveness (Large Screens & TVs)
   ========================================================================== */

@media (min-width: 1441px) {
    .container {
        max-width: 1400px;
    }

    .floating-nav {
        max-width: 1600px;
        --h-card: 95px;
    }

    .nav-links {
        gap: 60px;
    }

    .nav-links a {
        font-size: 18px;
    }

    .hero h1 {
        font-size: 72px;
    }

    .hero-content .subtitle {
        font-size: 20px;
    }
}

@media (min-width: 1921px) {
    .container {
        max-width: 1600px;
    }

    .floating-nav {
        max-width: 1800px;
        --h-card: 100px;
    }

    .nav-links {
        gap: 80px;
    }

    .hero h1 {
        font-size: 84px;
    }
}