:root {
    --csp-bg-dark: #07070a;
    --csp-gold: #e5c158;
    --csp-gold-glow: rgba(229, 193, 88, 0.5);
    --csp-text-light: #ececf1;
    --csp-text-muted: #9e9eb2;
    --csp-font-serif: 'Cormorant Garamond', serif;
    --csp-font-sans: 'Inter', sans-serif;
}

/* BANNER SECTION STYLES */
.csp-banner-section {
    position: relative;
    width: 100%;
    min-height: 75%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* overflow: hidden; */
    background: radial-gradient(
        circle at 75% 30%,
        #0e0d19 0%,
        rgba(7, 7, 10, 0.95) 70%
    );
    color: var(--csp-text-light);
    font-family: var(--csp-font-sans);
    padding: 0px 0 30px 0;
}

/* Background Video & Layer Overlay */
.csp-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.csp-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 1;
    mix-blend-mode: screen;
}

.csp-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at center,
            transparent 20%,
            var(--csp-bg-dark) 87%
        ),
        linear-gradient(to top left, #00000000 80%, transparent 100%);
    z-index: 1;
}

/* Glowing Main CTA Button */
.csp-btn-glow {
    position: relative;
    background: linear-gradient(177deg, #e5c158 0%, #b89230 100%);
    color: #0c0b08;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow:
        0 0 20px var(--csp-gold-glow),
        0 0 40px rgba(229, 193, 88, 0.2);
    cursor: pointer;
}

.csp-btn-glow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 15%;
    width: 70%;
    height: 12px;
    background: var(--csp-gold);
    filter: blur(12px);
    opacity: 0.8;
    border-radius: 50%;
    z-index: -1;
    transition: opacity 0.3s;
}

.csp-btn-glow:hover {
    transform: translateY(-2px);
    box-shadow:
        0 0 30px var(--csp-gold-glow),
        0 0 60px rgba(229, 193, 88, 0.4);
    color: #000;
}

.csp-btn-glow i {
    transition: transform 0.3s ease;
}

.csp-btn-glow:hover i {
    transform: translateX(4px);
}

/* Secondary Outline Button */
.csp-btn-outline {
    background: transparent;
    color: var(--csp-text-light);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 11px;
    letter-spacing: 2px;
    padding: 14px 32px;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.csp-btn-outline:hover {
    border-color: var(--csp-gold);
    color: var(--csp-gold);
    background: rgba(229, 193, 88, 0.05);
}

/* Main Hero Text Content */
.csp-hero-content {
    position: relative;
    z-index: 5;
}

.csp-badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(229, 193, 88, 0.3);
    background: rgba(18, 18, 26, 0.6);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #d1d1e0;
    margin-bottom: 24px;
}

.csp-badge-pill::before {
    content: '•';
    color: var(--csp-gold);
}

.csp-hero-title {
    font-family: var(--csp-font-serif);
    font-size: clamp(42px, 5.5vw, 76px);
    line-height: 1.05;
    font-weight: 400;
    margin-bottom: 20px;
}

.csp-hero-title span.highlight {
    font-style: italic;
    color: var(--csp-gold);
    display: block;
    font-weight: 500;
    background: linear-gradient(
        180deg,
        #f5e1a4 0%,
        #cebe8c 35%,
        #aa7c11 70%,
        #e2c875 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin: 0;
}

.bs-products-section .section-title span {
    background: linear-gradient(
        180deg,
        #f5e1a4 0%,
        #cebe8c 35%,
        #aa7c11 70%,
        #e2c875 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.csp-hero-desc {
    color: var(--csp-text-muted);
    font-size: 14px;
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 35px;
}

/* Product Bottle Stage Animation */
.csp-product-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.csp-product-stage {
    position: relative;
    width: 100%;
    max-width: 480px;
    animation: floatProduct 6s ease-in-out infinite;
}

@keyframes floatProduct {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

.csp-bottle-img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.8));
}

/* Middle Sub-features with Custom Images */
.csp-subfeatures-row {
    margin-top: 35px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.csp-subfeature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.csp-subfeature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
}

.csp-subfeature-icon-img {
    width: 28px;
    height: 38px;
    object-fit: scale-down;
    filter: drop-shadow(0 0 5px var(--csp-gold-glow));
}

.csp-subfeature-text h6 {
    font-family: var(--csp-font-serif);
    font-size: 15px;
    margin: 0;
    color: #ffffff;
}

.csp-subfeature-text p {
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--csp-text-muted);
    margin: 0;
}

/* Bottom Centered Feature Grid (Image 3) */
.csp-bottom-cards-container {
    position: absolute;
    bottom: -110px;
    width: 100% !important;
    left: 0;
    right: 0;
    z-index: 111;
}

.csp-cards-wrapper {
    background: rgba(15, 15, 22, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.csp-card-col {
    padding: 40px 35px !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s ease;
}

.csp-card-col:last-child {
    border-right: none;
}

.csp-card-col:hover {
    background: rgba(255, 255, 255, 0.03);
}

.csp-card-icon-wrapper {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(229, 193, 88, 0.08);
    border: 1px solid rgba(229, 193, 88, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.csp-card-custom-img {
    width: 20px;
    height: 20px;
    object-fit: scale-down;
}

i.fa-solid.fa-arrow-right.animate__rotateInUpLeft {
    padding-left: 11px;
    transform: rotate(333deg);
    position: relative;
    top: 6px;
}

.csp-card-title {
    font-size: 18px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 500;
    font-family: var(--heading-regular);
    font-weight: 400;
    font-feature-settings:
        'swsh' 1,
        'calt' 1;
    -webkit-font-feature-settings:
        'swsh' 1,
        'calt' 1;
}

.csp-card-desc {
    font-size: 11px;
    color: var(--csp-text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .csp-card-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .csp-card-col:last-child {
        border-bottom: none;
    }

    .csp-subfeature-item:not(:last-child)::after {
        display: none;
    }

    .csp-subfeatures-row {
        flex-wrap: wrap;
    }
}

/* ==========================================
   CUSTOM ABOUT SECTION STYLES (UNIQUE CLASSES)
   ========================================== */

/* Main Section Wrapper */
.csp-about-section {
    background-color: #06050b;
    padding: 90px 0;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

/* Subheading (02 — ABOUT US) */
.csp-subheading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 2.5px;
    font-weight: 500;
    color: #9e9aa8;
}

.csp-subheading .csp-num {
    color: #e5c158;
}

/* Headings */
.csp-main-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 46px;
    font-weight: 400;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.csp-highlight-text {
    font-style: italic;
    background: linear-gradient(90deg, #fcebb6 0%, #e5c158 50%, #b38b2d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400;
    background: linear-gradient(
        180deg,
        #f5e1a4 43%,
        #d4b962fc 50%,
        #aa7c11 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.csp-description {
    color: #9e9aa8;
    font-size: 15px;
    line-height: 1.6;
    max-width: 480px;
    font-weight: 300;
}

/* Buttons */
.csp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.csp-btn-gold {
    background: linear-gradient(90deg, #e5c158 0%, #c49a37 100%);
    color: #06050b;
    border: none;
    box-shadow: 0 0 25px rgba(229, 193, 88, 0.25);
}

.csp-btn-gold:hover {
    color: #000;
    box-shadow: 0 0 35px rgba(229, 193, 88, 0.45);
    transform: translateY(-2px);
}

.section-intro .csp-btn-outline {
    position: relative;
    top: 10px;
}

.csp-btn-outline {
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.csp-btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Feature Cards */
.csp-feature-card {
    background: rgba(18, 16, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 22px 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.csp-feature-card:hover {
    border-color: rgba(229, 193, 88, 0.3);
    background: rgba(25, 22, 38, 0.8);
    transform: translateY(-3px);
}

.csp-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5c158;
    font-size: 15px;
    flex-shrink: 0;
}

.csp-feature-text h6 {
    margin: 0;
    font-size: 14px;
    font-size: 18px;
    color: #ffffff;
    font-weight: 500;
    font-family: var(--heading-regular);
    font-feature-settings:
        'swsh' 1,
        'calt' 1;
    -webkit-font-feature-settings:
        'swsh' 1,
        'calt' 1;
}

.csp-feature-text p {
    margin: 2px 0 0 0;
    font-size: 10px;
    letter-spacing: 1.2px;
    color: #7b7687;
    font-weight: 600;
}

/* Right Side Image Box */
.csp-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: radial-gradient(
        circle at center,
        rgba(82, 34, 126, 0.25) 0%,
        rgba(6, 5, 11, 0) 70%
    );
}

.csp-main-img {
    width: 100%;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    object-fit: cover;
}

/* product */
/* ==========================================================================
   LUXURY DARK THEME - UNIQUE CLASSES (NO ROOT VARS)
   ========================================================================== */

/* Main Section Wrapper */
.bs-products-section.bg-dark-theme {
    background-color: #0a0b0e !important;
    color: #ffffff;
    overflow: hidden;
    padding-top: 170px !important;
}

/* Specific Gold Utilities */
.bs-products-section .text-gold {
    color: #d4af37 !important;
}

.bs-products-section .fs-8 {
    font-size: 0.75rem;
}

.bs-products-section .ls-1 {
    letter-spacing: 1px;
}

.bs-products-section .ls-2 {
    letter-spacing: 2px;
}

/* Left Side Intro Elements */
.bs-products-section .gold-line {
    display: inline-block;
    width: 24px;
    height: 1px;
    background-color: #d4af37;
}

.bs-products-section .section-title {
    font-family: 'Playfair Display', 'Cinzel', Georgia, serif;
    letter-spacing: -0.5px;
    font-size: 43px;
}

/* Custom Gold Button */
.bs-products-section .btn-outline-gold {
    color: #d4af37;
    border: 1px solid rgba(212, 175, 55, 0.4);
    background: transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bs-products-section .btn-outline-gold:hover {
    color: #000000;
    background: #d4af37;
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Slider Custom Navigation Arrows */
.bs-products-section .bs-arrow-btn {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.bs-products-section .bs-arrow-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #d4af37;
    color: #d4af37;
    transform: translateY(-2px);
}

/* ==========================================================================
   DARK PRODUCT CARD STYLES
   ========================================================================== */
.dark-product-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 25px;
}

.dark-product-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-6px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.6),
        0 0 20px rgba(212, 175, 55, 0.15);
}

/* Category Badge & Wishlist */
.dark-product-card .category-badge {
    color: #8e95a5;
    letter-spacing: 1.5px;
}

.dark-product-card .wishlist-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dark-product-card .wishlist-btn:hover {
    color: #ff4d4d !important;
    background: rgba(255, 255, 255, 0.08);
}

/* Product Image & Glow */
.dark-product-card .product-img-container {
    position: relative;
}

.dark-product-card .product-image {
    max-height: 200px;
    object-fit: contain;
    transition:
        transform 0.4s ease,
        filter 0.4s ease;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.6));
}

.dark-product-card:hover .product-image {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 20px rgba(212, 175, 55, 0.25));
}

/* Product Title & Details */
.dark-product-card .product-title {
    font-family: 'Playfair Display', 'Cinzel', Georgia, serif;
}

.dark-product-card .product-title a {
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dark-product-card .product-title a:hover {
    color: #d4af37 !important;
}

.dark-product-card .product-dosage {
    letter-spacing: 1px;
}

.dark-product-card .product-price {
    letter-spacing: -0.5px;
    font-family: 'Playfair Display', 'Cinzel', Georgia, serif;
    color: #d6a84a;
}

.sub-title11 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--para-font);
    font-size: 12px;
}

.sub-title11 .gold-line {
    display: inline-block;
    width: 24px;
    height: 1px;
    background-color: #d4af37;
}

.product_Card_btn {
    border: 1px solid #d6a84a !important;
    padding: 7px 23px;
    height: 100%;
    border-radius: 50px !important;
    color: #d6a84a !important;
    background: #0c0e17 !important;
}

/* ==========================================================================
   RESEARCH CATEGORIES SECTION - UNIQUE SCOPED CSS
   ========================================================================== */

/* Main Section Wrapper */
.csp-categories-section {
    background-color: #07080b;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Header Badge & Subtitle */
.csp-categories-section .sub-title11 {
    color: #d4af37 !important;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.csp-categories-section .gold-line {
    display: inline-block;
    width: 25px;
    height: 1px;
    background-color: #d4af37;
}

/* Headings */

/* Description Text */
.csp-categories-section .csp-cat-desc {
    color: #8e95a5;
    font-size: 0.95rem;
    line-height: 1.7;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    max-width: 440px;
}

/* Category Cards Styling */
.csp-category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 35px 15px;
    height: 100%;
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.csp-category-card:hover {
    border-color: rgba(212, 175, 55, 0.35);
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-6px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.5),
        0 0 15px rgba(212, 175, 55, 0.12);
}

/* Image Container Circle */
.csp-category-card .csp-cat-img-box {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.25);
    background: rgba(212, 175, 55, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.csp-category-card:hover .csp-cat-img-box {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

/* Category Image Tag */
.csp-category-card .csp-cat-img {
    width: 28px;
    height: 28px;
    object-fit: scale-down;
    transition: transform 0.3s ease;
}

.csp-category-card:hover .csp-cat-img {
    transform: scale(1.1);
}

/* Category Title */
.csp-category-card .csp-cat-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    color: #e2e8f0;
    font-size: 1.05rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.csp-category-card:hover .csp-cat-title {
    color: #d4af37;
}

/* ==========================================================================
   REWARDS SECTION - UNIQUE SCOPED CSS (NO ROOT VARS)
   ========================================================================== */

/* Main Section Background & Padding */
.csp-rewards-section {
    background-color: #07080b;
    color: #ffffff;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

/* Left Description Text */
.csp-rewards-section .csp-rewards-desc {
    color: #8e95a5;
    font-size: 0.95rem;
    line-height: 1.6;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    max-width: 320px;
}

/* Left Side Glowing Button */
.csp-rewards-section .csp-rewards-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e5be58 0%, #c1952e 100%);
    color: #0b0d12;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 35px rgba(212, 175, 55, 0.35);
}

.csp-rewards-section .csp-rewards-btn:hover {
    color: #000000;
    background: linear-gradient(135deg, #f3d478 0%, #d4af37 100%);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.55);
    transform: translateY(-2px);
}

/* Reward Cards Styling */
.csp-reward-card {
    background: #131420;
    background: linear-gradient(
        180deg,
        rgba(19, 20, 32, 1) 0%,
        rgba(16, 17, 28, 1) 50%,
        rgba(3, 4, 7, 1) 100%
    );
    border-radius: 20px;
    padding: 35px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #2a2c36;
}

.csp-reward-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    background: #030407;
    background: linear-gradient(
        180deg,
        rgba(3, 4, 7, 1) 0%,
        rgba(16, 17, 28, 1) 50%,
        rgba(19, 20, 32, 1) 100%
    );
    transform: translateY(-5px);
    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.08);
}

/* Circular Icon/Image Wrapper */
.csp-reward-card .csp-reward-img-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.csp-reward-card:hover .csp-reward-img-box {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
}

/* Image Tag Styling */
.csp-reward-card .csp-reward-img {
    width: 22px;
    height: 22px;
    object-fit: scale-down;
    transition: transform 0.3s ease;
}

.csp-reward-card:hover .csp-reward-img {
    transform: scale(1.1);
}

/* Card Content */
.csp-reward-card .csp-reward-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 12px;
}

.csp-reward-card .csp-reward-text {
    color: #8e95a5;
    font-size: 0.88rem;
    line-height: 1.6;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    margin: 0;
}

/* ==========================================================================
   HOW IT WORKS SECTION - UNIQUE SCOPED CSS (NO ROOT VARS)
   ========================================================================== */

/* Main Section Background */
.csp-how-it-works-section {
    background-color: #07080b;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Main Outer Container with Linear Gradient */
.csp-how-container-card {
    /* Top-left to bottom-right subtle luxury dark gradient */
    background: linear-gradient(
        135deg,
        rgba(23, 25, 35, 0.7) 0%,
        rgba(13, 15, 22, 0.9) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 50px 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    transition: border-color 0.3s ease;
}

.csp-how-container-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
}

/* Individual Step Content */
.csp-step-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

/* Circular Number Badge */
.csp-step-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: #090a10;
    color: #d4af37;
    font-size: 21px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: 'Cormorant Garamond', serif;
}

.csp-step-item:hover .csp-step-badge {
    border-color: #d4af37;
    background: rgba(212, 175, 55, 0.12);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    transform: translateY(-2px);
}

/* Title */
.csp-step-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    color: #ffffff;
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.2;
}

/* Description Text */
.csp-step-text {
    color: #8e95a5;
    font-size: 0.85rem;
    line-height: 1.6;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    margin: 0;
    max-width: 200px;
}

/* ==========================================================================
   KNOWLEDGE HUB SECTION - UNIQUE SCOPED CSS (NO ROOT VARS)
   ========================================================================== */

/* Section Wrapper */
.csp-knowledge-section {
    background-color: #07080b;
    color: #ffffff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Header Subtitle */
.csp-knowledge-section .sub-title11 {
    color: #d4af37 !important;
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.csp-knowledge-section .gold-line {
    display: inline-block;
    width: 25px;
    height: 1px;
    background-color: #d4af37;
}

/* Main Heading */
.csp-knowledge-section .csp-main-heading {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.15;
    color: #ffffff;
}

.csp-knowledge-section .csp-highlight-text {
    font-style: italic;
    font-weight: 400;
    color: #d4af37;
    background: linear-gradient(180deg, #f5e1a4 0%, #d4af37 50%, #aa7c11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Top Right Description */
.csp-knowledge-section .csp-kh-desc {
    color: #8e95a5;
    font-size: 0.9rem;
    line-height: 1.6;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    max-width: 320px;
}

/* Browse All Button */
.csp-knowledge-section .csp-browse-btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.csp-knowledge-section .csp-browse-btn:hover {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.05);
}

/* Article Cards */
.csp-kh-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.csp-kh-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.csp-kh-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

/* Card Typography */
.csp-kh-title {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 1.3;
}

.csp-kh-text {
    color: #8e95a5;
    font-size: 0.85rem;
    line-height: 1.5;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    margin-bottom: 15px;
}

/* Read Article Gold Link */
.csp-kh-link {
    color: #d4af37;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-transform: uppercase;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.csp-kh-link:hover {
    color: #f3e5ab;
}

.wrapper-roateas {
    transform: rotate(-42deg);
}

/* ==========================================================================
   NEWSLETTER SECTION - CLEAN CSS (USING BG IMAGE TAG)
   ========================================================================== */

/* Main Section Base */
.csp-newsletter-section {
    background-color: #07080b;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

/* Card Outer Wrapper */
.csp-news-card {
    position: relative;
    padding: 50px 50px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    background: linear-gradient(        135deg,        #1A1030,       #0D0A1F,#1E1440    );
}

/* Background Image Tag Absolute Positioning */
.csp-news-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

/* Content Layer (Image ke upar text dikhane ke liye) */
.csp-news-content-layer {
    z-index: 2;
}

/* Subtitle & Badge Styling */
.csp-newsletter-section .sub-title11 {
    color: #d4af37 !important;
    font-size: 0.75rem;
    letter-spacing: 2.5px;
    font-weight: 600;
    text-transform: uppercase;
}

.csp-newsletter-section .gold-line {
    display: inline-block;
    width: 25px;
    height: 1px;
    background-color: #d4af37;
}

/* Main Heading */
.csp-newsletter-section .csp-main-heading {
    font-family: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.15;
    color: #ffffff;
}

.csp-newsletter-section .csp-highlight-text {
    font-style: italic;
    font-weight: 400;
    color: #d4af37;
    background: linear-gradient(180deg, #f5e1a4 0%, #d4af37 50%, #aa7c11 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.csp-newsletter-section .csp-news-desc {
    color: #8e95a5;
    font-size: 0.9rem;
    font-weight: 300;
    font-family: 'Inter', system-ui, sans-serif;
    max-width: 400px;
}

/* Input Form Container (Pill Shaped Dark Bar) */
.csp-news-form {
    max-width: 500px;
}

.csp-input-group {
    background: rgba(10, 11, 16, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 6px 7px 6px 18px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.csp-input-group:focus-within {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.15);
}

/* Email Icon */
.csp-input-icon {
    color: #6c7485;
    font-size: 0.95rem;
}

/* Input Text Field */
.csp-email-input {
    background: transparent !important;
    border: none !important;
    color: #ffffff !important;
    font-size: 0.88rem;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 300;
    box-shadow: none !important;
    padding-left: 5px;
}

.csp-email-input::placeholder {
    color: #585f70;
}

/* Gold Glowing Subscribe Button */
.csp-news-btn {
    background: linear-gradient(135deg, #e5be58 0%, #c1952e 100%);
    color: #0b0d12 !important;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    box-shadow:
        0 0 35px rgba(212, 175, 55, 0.5),
        0 0 10px rgba(212, 175, 55, 0.3);
}

.csp-news-btn:hover {
    background: linear-gradient(135deg, #f3d478 0%, #d4af37 100%);
    transform: translateY(-1px);
    box-shadow:
        0 0 50px rgba(212, 175, 55, 0.75),
        0 0 20px rgba(212, 175, 55, 0.5);
}

.product-dosage {
    border-bottom: 1px solid #20202a;
    padding-bottom: 17px;
}

@media (max-width: 1367px) {
    .csp-banner-section {
        min-height: 100%;
    }

    .csp-card-col {
        padding: 20px 35px !important;
        border-right: 1px solid rgba(255, 255, 255, 0.06);
        transition: background 0.3s ease;
    }

     .csp-bg-video {
         position: absolute;
         top: unset;
         left: unset;
         min-width: 50%;
         min-height: 50%;
         width: auto;
         height: auto;
         transform: unset;
         object-fit: fill;
         opacity: 1;
         mix-blend-mode: screen;
         width: 100%;
         height: 100%;
     }

     .csp-hero-title {
         font-size: 48px;
     }

     .csp-bottom-cards-container {
         position: absolute;
         bottom: -86px;
         width: 100% ! important;
         left: 0;
         right: 0;
         z-index: 111;
     }

     .csp-btn-glow {
         position: relative;
         background: linear-gradient(177deg, #e5c158 0%, #b89230 100%);
         color: #0c0b08;
         font-weight: 600;
         font-size: 12px;
         letter-spacing: 1.5px;
         padding: 11px 20px;
         border-radius: 50px;
         border: none;
         text-transform: uppercase;
         text-decoration: none;
         display: inline-flex;
         align-items: center;
         gap: 10px;
         transition: all 0.3s ease;
         box-shadow: 0 0 20px var(--csp-gold-glow), 0 0 40px rgba(229, 193, 88, 0.2);
         cursor: pointer;
         width: max-content;
     }

     .dark-product-card .product-title a {
         transition: color 0.2s ease;
         display: -webkit-box;
         -webkit-line-clamp: 2;
         -webkit-box-orient: vertical;
         overflow: hidden;
         text-overflow: ellipsis;
         font-size: 16px;
     }
 }
    .csp-bg-video {
        position: absolute;
        top: unset;
        left: unset;
        min-width: 50%;
        min-height: 50%;
        width: auto;
        height: auto;
        transform: unset;
        object-fit: fill;
        opacity: 1;
        mix-blend-mode: screen;
        width: 100%;
        height: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .csp-news-card {
        padding: 35px 25px;
    }

    .csp-newsletter-section .csp-main-heading {
        font-size: 2.2rem;
    }

    .csp-news-form {
        max-width: 100%;
    }
}

@media (max-width: 575px) {
    .csp-input-group {
        flex-direction: column;
        border-radius: 20px;
        padding: 12px;
        gap: 10px;
    }

    .csp-news-btn {
        width: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .csp-knowledge-section .csp-main-heading {
        font-size: 2.2rem;
    }

    .csp-knowledge-section {
        padding: 50px 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .csp-how-container-card {
        padding: 35px 20px;
    }
}

@media (max-width: 575px) {
    .csp-step-text {
        max-width: 100%;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    .csp-rewards-section .csp-main-heading {
        font-size: 2.3rem;
    }

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

    .csp-rewards-section .csp-rewards-desc {
        max-width: 100%;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .csp-categories-section .csp-main-heading {
        font-size: 2.2rem;
    }

    .csp-categories-section {
        padding: 50px 0;
    }
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .csp-main-heading {
        font-size: 38px;
    }

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

@media (max-width: 576px) {
    .csp-main-heading {
        font-size: 32px;
    }

    .csp-btn-group {
        width: 100%;
    }

    .csp-btn {
        width: 100%;
    }
}
