:root {
    --bg-dark: #0f1626;
    --bg-light: #ffffff;
    --bg-offwhite: #fdfdfd;
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --text-dark: #333333;
    --text-light: #ffffff;
    --text-gray: #666666;
    --border-color: #eaeaea;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 4rem;
    background-color: var(--bg-light);
    color: var(--text-dark);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 100%;
    max-height: 80px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links a.active {
    border-bottom: 2px solid var(--gold);
    padding-bottom: 2px;
}

.nav-links a:hover {
    color: var(--gold);
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    font-size: 1.1rem;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--gold);
    color: var(--bg-dark);
    font-size: 0.6rem;
    font-weight: bold;
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Buttons */
.btn-primary {
    background-color: var(--gold);
    color: var(--bg-dark);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e2be4a;
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
    border: none;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
    border-radius: 4px;
}

/* Hero Section */
.hero {
    display: flex;
    background-color: var(--bg-dark);
    color: var(--text-light);
    min-height: 80vh;
    padding: 0 0 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 2rem;
    z-index: 2;
}

.subtitle {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero h1 span {
    color: var(--gold);
}

.hero .description {
    font-size: 1.1rem;
    max-width: 400px;
    margin-bottom: 2.5rem;
    color: #cccccc;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1.2;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to right, transparent, black 10%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%);
}

.scroll-discover {
    position: absolute;
    right: 2rem;
    bottom: 4rem;
    transform: rotate(90deg);
    transform-origin: right bottom;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.scroll-discover .line {
    width: 60px;
    height: 1px;
    background-color: var(--gold);
}

/* Features Bar */
.features-bar {
    display: flex;
    justify-content: space-around;
    padding: 3rem 4rem;
    background-color: var(--bg-offwhite);
    border-bottom: 1px solid var(--border-color);
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 250px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--gold);
}

.feature-text h3 {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.8rem;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 2rem;
    margin: 4rem 0 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    margin: 1rem auto 0;
}

/* Best Sellers */
.best-sellers {
    padding: 0 4rem 4rem;
}

.products-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.carousel-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s;
}

.carousel-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.products-grid {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scrollbar-width: none;
    padding: 1rem 0;
    flex: 1;
}

.products-grid::-webkit-scrollbar {
    display: none;
}

.product-card {
    min-width: 240px;
    background: var(--bg-offwhite);
    padding: 1.5rem;
    border: 1px solid var(--border-color);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.bestseller-badge .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--gold);
    color: var(--bg-dark);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 0.3rem 0.6rem;
    letter-spacing: 1px;
}

.product-img-wrapper {
    position: relative;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.product-img-wrapper .img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.4s ease;
}

.product-img-wrapper .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
    transform: scale(1.05);
}

.product-card:hover .product-img-wrapper .img-main {
    opacity: 0;
}

.product-card:hover .product-img-wrapper .img-hover {
    opacity: 1;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
}

.product-info p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    height: 2.4rem;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
}

.sale-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-dark);
}

.original-mrp {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-decoration: line-through;
    font-weight: 400;
}

.discount-tag {
    font-size: 0.7rem;
    color: #27ae60;
    font-weight: 700;
    background: #eafaf1;
    padding: 0.1rem 0.4rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.actives-tag {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.4rem;
}


.add-to-cart {
    width: 100%;
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.add-to-cart:hover {
    background: var(--bg-dark);
    color: var(--text-light);
    border-color: var(--bg-dark);
}

/* Education Section */
.education-section {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
    background-color: var(--bg-light);
}

.edu-video {
    flex: 1;
    display: flex;
    background-color: #000;
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    min-height: 450px;
}

.edu-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 450px;
}

.edu-video iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
    display: block;
}

.edu-content {
    flex: 1;
    padding: 4rem;
}

.edu-content .subtitle {
    margin-bottom: 1rem;
}

.edu-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.edu-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

/* Categories */
.categories {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    padding: 0 4rem 4rem;
}

.category-card {
    height: 300px;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    color: var(--text-light);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.cat-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.cat-content p {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.shop-link {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Premium Category Pill Card (Sephora/Glossier style) */
.category-pill-card {
    background: #fdfdfd;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.category-pill-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--gold);
}

.cat-img-box {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: transform 0.4s ease;
}

.category-pill-card:hover .cat-img-box {
    transform: scale(1.06);
}

.cat-img-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.category-pill-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: var(--font-body);
}

.category-pill-card p {
    font-size: 0.8rem;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    line-height: 1.4;
    height: 2.2rem;
    overflow: hidden;
}

.category-pill-card .shop-link-text {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}

.category-pill-card:hover .shop-link-text {
    gap: 0.6rem;
}


/* Our Story */
.our-story {
    display: flex;
    padding: 4rem;
    gap: 4rem;
    align-items: center;
    background-color: var(--bg-offwhite);
}

.story-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.story-logo {
    width: 60%;
    max-width: 300px;
    object-fit: contain;
}

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.story-features {
    flex: 0.8;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.s-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.s-feature i {
    font-size: 2rem;
    color: var(--gold);
}

.s-feature h4 {
    font-family: var(--font-body);
    margin-bottom: 0.3rem;
}

.s-feature p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

/* Benefits Banner */
.benefits-banner {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem;
    text-align: center;
}

.benefits-banner h2 {
    color: var(--gold);
    margin-bottom: 3rem;
    font-size: 2rem;
}

.benefits-grid {
    display: flex;
    justify-content: space-between;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.b-icon {
    width: 70px;
    height: 70px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--text-light);
}

.benefit-item p {
    font-size: 0.85rem;
    font-weight: 500;
}

/* Testimonials */
.testimonials {
    padding: 4rem;
    background-color: var(--bg-offwhite);
}

.testimonial-carousel {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.testimonial-cards {
    display: flex;
    gap: 2rem;
    flex: 1;
}

.test-card {
    background: var(--bg-light);
    padding: 2rem;
    border: 1px solid var(--border-color);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: var(--gold);
    margin-bottom: 1rem;
}

.test-card p {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--text-gray);
}

.user-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.user-info img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
}

.dot.active {
    background-color: var(--gold);
}

/* Newsletter */
.newsletter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 4rem;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.nl-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.nl-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.nl-form {
    display: flex;
    gap: 1rem;
}

.nl-form input {
    padding: 0.8rem 1rem;
    width: 300px;
    border: 1px solid var(--border-color);
    font-family: var(--font-body);
}

/* Footer */
.footer {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 4rem 4rem 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

.f-col h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    color: var(--text-dark);
}

.f-col a, .f-col p {
    display: block;
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.f-col a:hover {
    color: var(--gold);
}

.brand-col p {
    margin: 1.5rem 0;
    line-height: 1.6;
}

.socials {
    display: flex;
    gap: 1rem;
}

.socials a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    transition: all 0.3s;
}

.socials a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

.contact-col p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-col button {
    margin-top: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-gray);
    font-size: 0.8rem;
}

.payments {
    display: flex;
    gap: 1rem;
    font-size: 1.5rem;
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 80vh;
    background-color: var(--bg-dark);
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 80vh;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide .hero {
    height: 100%;
    width: 100%;
}

.slider-controls {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    z-index: 10;
    display: flex;
    gap: 1rem;
}

.slider-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--gold);
    color: var(--bg-dark);
    border-color: var(--gold);
}

/* Video Grid Section */
.video-grid-section {
    padding: 4rem;
    background-color: var(--bg-offwhite);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.video-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-card .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.video-card:hover .bg-video {
    transform: scale(1.05);
}

.video-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 22, 38, 0.8), transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    color: var(--text-light);
    padding: 2rem;
    text-align: center;
}

.play-btn-small {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    padding-left: 3px;
}

.play-btn-small:hover {
    background: var(--gold);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.video-card-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

/* --- Premium Enhancements & Scroll Animations --- */
html {
    scroll-behavior: smooth;
}

/* Animations Framework */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}

.animate-on-scroll.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Micro-Animations & premium cards */
.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.btn-primary, .btn-secondary, .btn-dark, .add-to-cart {
    border-radius: 50px;
    transition: transform 0.2s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover, .btn-dark:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.category-card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 30px rgba(0,0,0,0.15);
}

.cat-content {
    position: relative;
    z-index: 2;
}



/* Responsive Styles */
@media (max-width: 1024px) {
    .header, .hero, .features-bar, .best-sellers, .categories, .our-story, .benefits-banner, .testimonials, .newsletter, .footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .edu-content {
        padding: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .categories {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .our-story {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
    
    .slider-controls {
        left: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .header {
        padding: 0.8rem 1.5rem;
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .logo-img {
        max-height: 50px;
    }

    /* Premium Immersive Mobile Hero */
    .hero-slider {
        min-height: 80vh;
    }
    
    .slides-container {
        min-height: 80vh;
    }

    .hero {
        flex-direction: column;
        padding: 3rem 1.5rem 2rem !important;
        min-height: 80vh;
        display: flex;
        justify-content: flex-end; /* Push content to bottom */
        position: relative;
    }

    .hero-image {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        mask-image: none !important;
        -webkit-mask-image: none !important;
        filter: brightness(0.45) contrast(1.05); /* Make text readable & background punchy */
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: left;
        padding-right: 0;
        margin-top: auto;
        width: 100%;
        animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .hero h1 {
        font-size: 2.4rem !important;
        line-height: 1.15;
        margin-bottom: 1rem;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    }

    .hero .description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        color: rgba(255,255,255,0.85);
        max-width: 100%;
        text-shadow: 0 1px 5px rgba(0,0,0,0.5);
    }

    .hero-buttons {
        flex-direction: row;
        gap: 0.8rem;
        width: 100%;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        flex: 1;
        padding: 0.8rem 1rem !important;
        font-size: 0.75rem !important;
        text-align: center;
        justify-content: center;
    }

    .scroll-discover {
        display: none;
    }
    
    .slider-controls {
        position: absolute;
        bottom: 2rem;
        right: 1.5rem;
        left: auto;
        z-index: 10;
        margin-top: 0;
        padding-bottom: 0;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        border: 1px solid rgba(255,255,255,0.2);
    }

    /* Native App Horizontal Swipe Sections */
    .products-grid, .categories {
        display: flex !important;
        flex-direction: row !important;
        grid-template-columns: none !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 1.2rem !important;
        padding: 0.8rem 1.5rem 1.5rem !important;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        scrollbar-width: none !important;
    }

    .products-grid::-webkit-scrollbar,
    .categories::-webkit-scrollbar {
        display: none !important;
    }

    .product-card, .category-card, .category-pill-card {
        min-width: 220px !important;
        max-width: 220px !important;
        flex-shrink: 0 !important;
        scroll-snap-align: start !important;
        border-radius: 16px !important;
    }

    .category-card {
        height: 260px !important;
    }

    .category-pill-card {
        height: auto !important;
        padding: 1.5rem 1rem 1rem !important;
    }

    .cat-img-box {
        width: 100px !important;
        height: 100px !important;
        margin-bottom: 1rem !important;
    }

    .category-pill-card p {
        font-size: 0.75rem !important;
        height: 2.2rem !important;
    }


    /* Layout adjustments */
    .best-sellers, .categories-section, .categories {
        padding-left: 1.5rem !important;
        padding-right: 1.5rem !important;
    }

    .section-title {
        font-size: 1.6rem;
        margin: 3rem 0 1.5rem;
    }

    .features-bar {
        flex-direction: row;
        flex-wrap: wrap;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
        justify-content: space-between;
    }

    .feature {
        width: 46%;
        max-width: none;
        gap: 0.8rem;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .feature-text h3 {
        font-size: 0.75rem;
    }

    .feature-text p {
        font-size: 0.7rem;
    }

    .education-section {
        flex-direction: column;
        margin-bottom: 4rem;
    }
    
    .edu-video video {
        min-height: 250px;
    }

    .edu-content {
        padding: 2.5rem 1.5rem;
    }

    .edu-content h2 {
        font-size: 1.8rem;
    }

    .our-story {
        padding: 3rem 1.5rem;
    }

    .story-content h2 {
        font-size: 1.8rem;
    }

    .story-image {
        padding: 1rem;
    }

    .story-features {
        width: 100%;
        margin-top: 1.5rem;
    }

    .video-grid-section {
        padding: 3rem 1.5rem;
    }

    .video-grid {
        grid-template-columns: 1.2fr;
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.2rem;
        padding: 0.5rem 1.5rem 1.5rem;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
        scrollbar-width: none;
    }

    .video-grid::-webkit-scrollbar {
        display: none;
    }

    .video-card {
        min-width: 250px;
        height: 350px;
        flex-shrink: 0;
        scroll-snap-align: start;
        border-radius: 16px;
    }

    .benefits-banner {
        padding: 3rem 1.5rem;
    }

    .benefits-banner h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }

    .benefit-item p {
        font-size: 0.75rem;
    }

    .testimonials {
        padding: 3rem 1.5rem;
    }

    .testimonial-carousel .carousel-btn {
        display: none;
    }

    .testimonial-cards {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 1.2rem;
        padding: 0.5rem 0.5rem 1.5rem;
        scrollbar-width: none;
    }

    .testimonial-cards::-webkit-scrollbar {
        display: none;
    }

    .test-card {
        min-width: 280px;
        flex-shrink: 0;
        scroll-snap-align: start;
        border-radius: 16px;
    }

    .newsletter {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 3rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding-bottom: 2rem;
    }

    .footer {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }


}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.1rem !important;
    }

    .hero-buttons {
        gap: 0.6rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nl-form input {
        width: 100%;
    }
    
    .nl-form {
        flex-direction: column;
        width: 100%;
    }
}

/* Animations definition */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpNav {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


/* ===== 7DAZE Header Override ===== */
.top-navbar {
    background-color: #0f1626 !important;
    color: #ffffff !important;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
}
.top-navbar a, .top-navbar span, .top-navbar li {
    color: #d4af37 !important;
}
.top-navbar .dropdown-menu a {
    color: #333 !important;
}

header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Logo area */
.logo-bar-area {
    border-bottom: 1px solid #eaeaea !important;
}

/* Search bar */
#search {
    border-radius: 50px !important;
    border: 1.5px solid #eaeaea !important;
    padding-left: 1.2rem !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
}
#search:focus {
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 3px rgba(212,175,55,0.15) !important;
}

/* Bottom nav bar */
.bottom-background-color-visibility {
    background-color: #0f1626 !important;
}
.bottom-text-color-visibility, .header_menu_links {
    color:#153362 !important;
}
.header_menu_links:hover {
    color: #d4af37 !important;
    background: transparent !important;
}
.header_menu_links.active {
    color: #d4af37 !important;
    border-bottom: 2px solid #d4af37;
}

/* Category button */
.all-category {
    background-color: #d4af37 !important;
}
.all-category .bottom-text-color-visibility {
    color: #0f1626 !important;
}

/* Cart icon */
.nav-cart-box {
    background-color: rgba(255,255,255,0.05) !important;
}

/* User menu */
.nav-user-info h4 {
    color: #333 !important;
}

/* Dynamic DB Slider */
.hero.hero-db { padding: 0; min-height: 500px; display: block; }
.hero-image-full { width: 100%; height: 500px; overflow: hidden; }
.hero-image-full img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-image-full a { display: block; width: 100%; height: 100%; }
@media (max-width: 768px) {
    .hero-image-full { height: 250px; }
    .hero.hero-db { min-height: 250px; }
}