@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --primary: #802B7D;
    --primary-light: #A54B9E;
    --secondary: #D4AF37;
    --secondary-dark: #B38F2D;
    --bg-main: #FDFBF7;
    --text-main: #282828;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-wrapper {
    background: var(--primary);
    color: var(--white);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.marquee {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    gap: 50px;
}

.marquee span {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

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

/* Typography Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.section-padding { padding: 100px 0; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(128, 43, 125, 0.2);
}

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

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

/* Glassmorphism */
.glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    margin: 20px auto 0;
    border-radius: 2px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    height: 90px;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.desktop-nav ul {
    display: flex;
    gap: 40px;
}

.desktop-nav ul li a {
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desktop-nav ul li a:hover {
    color: var(--primary);
}

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

.cart-icon {
    position: relative;
    cursor: pointer;
}

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

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Slider (Split Layout Redesign) */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
    background: #fff;
    border-bottom: 1px solid #eee;
}

.hero-split {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 50px;
}

.hero-text-side {
    flex: 1;
    text-align: left;
}

.hero-image-side {
    flex: 1.2;
    height: 80%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slide img.zoom-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 10s ease-out;
}

.hero-pretitle {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: var(--text-main);
    line-height: 1.1;
}

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

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--text-light);
    max-width: 550px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

@media (max-width: 992px) {
    .hero-slider { height: auto; padding: 120px 0 60px; }
    .hero-split { flex-direction: column; text-align: center; }
    .hero-text-side { order: 2; }
    .hero-image-side { order: 1; width: 100%; height: 400px; }
    .hero-title { font-size: 3rem; }
    .hero-btns { justify-content: center; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
}

/* Slider Nav */
.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.nav-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.nav-dot.active {
    background: var(--white);
    transform: scale(1.3);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(128, 43, 125, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 100;
}

.slider-arrow:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev { left: 30px; }
.slider-arrow.next { right: 30px; }

@media (max-width: 768px) {
    .slider-arrow { width: 45px; height: 45px; }
    .slider-arrow.prev { left: 15px; }
    .slider-arrow.next { right: 15px; }
}

/* Ritual Redesign Section */
.ritual-redesign-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ritual-video-frame {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    padding: 15px;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow);
}

.framed-video {
    width: 100%;
    border-radius: 30px;
    display: block;
}

.frame-label {
    position: absolute;
    top: 30px;
    right: 30px;
    background: var(--primary);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 100px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.importance-list-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.imp-card {
    background: #fdfbf7;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.imp-card:hover {
    transform: translateX(10px);
    border-color: var(--gold);
}

.imp-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.imp-card h5 {
    margin-bottom: 5px;
    color: var(--primary);
}

.imp-card p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.section-p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .ritual-redesign-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* Product Bundle Section */

/* Responsive Extensions */
@media (max-width: 768px) {
    .hero-title { font-size: 3rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .video-info { padding: 30px; }
    .video-info h3 { font-size: 1.8rem; }
}

/* Product Bundle Section */
.product-bundle-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.main-bundle-img {
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.main-bundle-img:hover {
    transform: scale(1.02);
}

.badge {
    background: var(--secondary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.product-name {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.product-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.bundle-includes {
    margin-bottom: 40px;
}

.bundle-includes li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.bundle-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 700;
}

.price-display {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.mrp {
    font-size: 1.25rem;
    text-decoration: line-through;
    color: var(--text-light);
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.discount {
    background: #E8F5E9;
    color: #2E7D32;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 700;
}

.btn-block { width: 100%; }

/* Reverse Grid for alternating sections */
.product-bundle-grid.reverse {
    grid-template-columns: 1.2fr 1fr;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.rounded-img {
    border-radius: 40px;
    box-shadow: var(--shadow);
}

.about-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

/* Footer */
.footer {
    background: #282828;
    color: var(--white);
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    opacity: 0.7;
    max-width: 300px;
}

.footer-links h5, .footer-contact h5 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    color: var(--secondary);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    opacity: 0.8;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Responsive Extensions */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .product-bundle-grid.reverse {
        grid-template-columns: 1fr;
    }
    .product-bundle-grid.reverse .product-info-side {
        order: 2;
    }
    .product-bundle-grid.reverse .product-image-side {
        order: 1;
    }
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 15px;
    aspect-ratio: 1/1;
}

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

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

/* Contact */
.contact-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 30px;
}

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

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    background: rgba(255,255,255,0.5);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(128, 43, 125, 0.1);
}

.contact-form textarea {
    margin-bottom: 30px;
    resize: none;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .contact-card {
        padding: 30px;
    }
}

/* Scroll Top */
#scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
}

#scroll-top:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px);
}

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

.offer-card {
    padding: 0;
    overflow: hidden;
    border-radius: 24px;
}

.offer-img {
    height: 250px;
    overflow: hidden;
}

.offer-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.offer-content {
    padding: 30px;
    text-align: center;
}

.offer-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.offer-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.price-box {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 20px;
}

.old-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: var(--text-light);
    font-weight: 400;
    margin-left: 10px;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

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

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-10px);
}

.p-img {
    height: 280px;
    background: #f9f9f9;
}

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

.p-info {
    padding: 20px;
    text-align: center;
}

.p-info h4 {
    margin-bottom: 10px;
}

.p-info .price {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
    display: block;
}

.p-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.tax-info {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .offers-grid { grid-template-columns: 1fr 1fr; }
    .shop-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 576px) {
    .offers-grid { grid-template-columns: 1fr; }
    .shop-grid { grid-template-columns: 1fr; }
}

/* Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 992px) {
    .product-bundle-grid {
        grid-template-columns: 1fr;
    }
    .hero-title { font-size: 3rem; }
    .features-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .desktop-nav { display: none; }
    header { height: 70px; }
}
