 /* ===============================
   LUNA NATURALS PREMIUM THEME
================================= */

:root {
    /* Backgrounds */
    --bg-primary: #060606;
    --bg-secondary: #0f1115;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #bfc5d2;

    /* Brand Colors */
    --gold-1: #F7D98A;
    --gold-2: #D9A441;
    --gold-3: #B57A22;
    --moringa-green: #4E7D55;
    --mushroom-beige: #C9A37A;

    /* Compatibility Variables */
    --gold: var(--gold-2);
    --green: var(--moringa-green);
    --cream: #F8F4EC;
    --dark: #111111;
    --gray: #6B7280;

    /* Effects */
    --shadow: 0 10px 30px rgba(0,0,0,.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,.12);
    --transition: all .3s ease;
}

/* ===============================
   GLOBAL
================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-logo{
    height:120px;
    width:auto;
    display:block;
    transition:all .3s ease;
    object-fit:contain;
}


section {
    position: relative;
    padding: 100px 0;
}

.section-header h2 {
    font-size: 3rem;
    font-family: 'Playfair Display', serif;
    color: var(--green);
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray);
}

/* ===============================
   TOP BAR & HEADER
================================= */
.top-bar {
    background: #0F3B2E;
    color: #fff;
    padding: 8px 0;
    font-size: 14px;
}

.main-header {
    background: #fff;
    box-shadow: 0 3px 20px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 9999;
    backdrop-filter: blur(15px);
}

.navbar {
    padding: 1px 0;
}

.navbar-brand {
    padding: 0;
    margin-right: 40px;
}

.logo-main {
    display: block;
    font-family: 'Playfair Display', serif;
    color: #C8A15A;
    font-size: 38px;
    line-height: 1;
}

.logo-sub {
    letter-spacing: 4px;
    color: #0F3B2E;
    font-size: 12px;
    font-weight: 600;
    display: block;
}

.nav-link {
    color: #222 !important;
    font-weight: 500;
    margin: 0 10px;
    transition: var(--transition);
}

.nav-link:hover {
    color: #C8A15A !important;
}

.header-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icons a {
    color: #222;
    font-size: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.header-icons a:hover {
    color: #C8A15A;
}

.cart-btn {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #C8A15A;
    color: #000;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.login-btn {
    background: #0F3B2E;
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
}

.login-btn:hover {
    background: #C8A15A;
    color: #111 !important;
}

/* ===============================
   HERO SECTION
================================= */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(6,6,6,.85), rgba(78,125,85,.85)), url('https://ln.lunateanetworks.com/assets/img/hero-background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 0;
}

.hero-tag {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.1;
}

.hero-title span {
    color: var(--gold);
}

.hero-description {
    margin-top: 25px;
    font-size: 1.1rem;
    line-height: 1.9;
    opacity: .9;
}

.hero-buttons {
    margin-top: 35px;
}

.btn-shop {
    display: inline-block;
    padding: 14px 35px;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
    color: #111;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-shop:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(217,164,65,.35);
}

.btn-outline-custom {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid white;
    color: white;
    border-radius: 50px;
    margin-left: 15px;
    transition: var(--transition);
}

.btn-outline-custom:hover {
    background: white;
    color: var(--green);
}

.hero-image {
    animation: float 4s ease-in-out infinite;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* ===============================
   CATEGORY SECTION
================================= */
.category-section {
    padding: 100px 0;
}

.category-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    margin-bottom: 30px;
}

.category-card:hover {
    transform: translateY(-10px);
}

.category-card img {
    height: 350px;
    width: 100%;
    object-fit: cover;
}

.category-content {
    padding: 30px;
    text-align: center;
}

.category-content h3 {
    color: var(--green);
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.category-content a {
    color: var(--gold);
    font-weight: 600;
}

/* ===============================
   WHY CHOOSE US
================================= */
.why-section {
    background: white;
}

.feature-box {
    text-align: center;
    padding: 40px 25px;
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
}

.feature-box i {
    font-size: 40px;
    color: var(--gold);
    margin-bottom: 20px;
}

.feature-box:hover {
    background: var(--cream);
    transform: translateY(-10px);
}

.feature-box h4 {
    color: var(--green);
    margin-bottom: 15px;
}

/* ===============================
   PRODUCTS
================================= */
.products-section {
    padding: 100px 0;
}

.product-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-card img {
    height: 280px;
    width: 100%;

}

.product-card h4 {
    margin-top: 25px;
    color: var(--green);
    font-family: 'Playfair Display', serif;
}

.product-card p {
    color: var(--gray);
    padding: 0 15px;
}

.price {
    color: var(--gold);
    font-size: 1.7rem;
    font-weight: 700;
    margin: 15px 0;
}

.btn-cart {
    width: 85%;
    border: none;
    padding: 14px;
    margin-bottom: 25px;
    background: var(--green);
    color: white;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cart:hover {
    background: var(--gold);
    color: #111;
}

/* ===============================
   STORY SECTION
================================= */
.story-section {
    background: white;
}

.story-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--green);
    margin-bottom: 20px;
    font-size: 3rem;
}

.story-section p {
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 20px;
}

.story-section img {
    border-radius: 25px;
    box-shadow: var(--shadow-lg);
}

/* ===============================
   TESTIMONIALS
================================= */
.testimonial-card {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    padding: 35px;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    margin-bottom: 30px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-card i {
    color: var(--gold);
    font-size: 30px;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-card h5 {
    color: var(--green);
    font-weight: 600;
}

/* ===============================
   NEWSLETTER
================================= */
.newsletter-section {
    background: var(--green);
    color: white;
    text-align: center;
}

.newsletter-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #fff;
}

.newsletter-form {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.newsletter-form input {
    width: 450px;
    max-width: 90%;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    outline: none;
}

.newsletter-form button {
    padding: 18px 35px;
    border: none;
    background: var(--gold);
    border-radius: 50px;
    margin-left: -50px; /* Overlap effect */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: #0F3B2E;
    color: #fff;
}

/* ===============================
   CTA
================================= */
.cta-section {
    text-align: center;
}

.cta-section h2 {
    font-family: 'Playfair Display', serif;
    color: var(--green);
    font-size: 3rem;
}

.cta-section p {
    margin: 20px auto 30px;
    max-width: 700px;
    color: var(--gray);
}

/* ===============================
   CART PAGE
================================= */
.cart-page {
    background: #f8f4ec;
    min-height: 70vh;
    padding: 60px 0;
}

.cart-card,
.summary-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    margin-bottom: 30px;
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
}

.qty-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.qty-box button {
    width: 35px;
    height: 35px;
    border: none;
    border-radius: 8px;
    background: #0F3B2E;
    color: #fff;
    cursor: pointer;
}

.qty-box input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    height: 35px;
}

.remove-item {
    color: #dc3545;
    font-size: 20px;
    cursor: pointer;
    background: none;
    border: none;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    color: var(--gray);
}

.total {
    font-size: 22px;
    font-weight: 700;
    color: #0F3B2E;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    margin-top: 15px;
}

.coupon-box {
    display: flex;
    gap: 10px;
    margin: 20px 0;
}

.coupon-box input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
}

.coupon-box button {
    background: #C8A15A;
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

.checkout-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #0F3B2E;
    color: #fff;
    padding: 15px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.checkout-btn:hover {
    background: #C8A15A;
    color: #111;
}

/* ===============================
   FOOTER
================================= */
.footer-section {
    background: #0F3B2E;
    color: #fff;
    padding: 80px 0 20px;
}

.footer-logo {
    color: #C8A15A;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: #C8A15A;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #aaa;
}

/* ===============================
   WHATSAPP FLOAT
================================= */
.whatsapp-btn {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    text-decoration: none;
    z-index: 99999;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ===============================
   SCROLLBAR
================================= */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #eaeaea;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold-1), var(--gold-2));
    border-radius: 50px;
}

/* ===============================
   RESPONSIVE (Fixed syntax)
================================= */
@media(max-width: 991px) {
    .hero-title {
        font-size: 3rem;
        margin-top: 20px;
    }
    .section-header h2,
    .story-section h2,
    .cta-section h2,
    .newsletter-section h2 {
        font-size: 2.2rem;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .btn-outline-custom {
        margin-left: 0;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form button {
        margin-left: 0;
        margin-top: 15px;
        width: 100%;
        max-width: 90%;
    }
}

@media(max-width: 768px) {
    .hero-title {
        font-size: 2.4rem;
    }
    .hero-section {
        text-align: center;
        padding-top: 100px;
    }
    .hero-image {
        margin-top: 40px;
    }
    .cart-product {
        flex-direction: column;
        text-align: center;
    }
}


#heroSlider .carousel-item{
    transition: transform 0.8s ease-in-out;
}

#heroSlider .carousel-control-prev,
#heroSlider .carousel-control-next{
    width:45px;
    height:45px;
    top:50%;
    transform:translateY(-50%);
}

#heroSlider .carousel-control-prev{
    left:-20px;
}

#heroSlider .carousel-control-next{
    right:-20px;
}
