/* ===== Global Styles ===== */
:root {
    --primary: #6B8E23;
    --primary-light: #8FBC8F;
    --primary-dark: #556B2F;
    --secondary: #A0522D;
    --accent: #D2691E;
    --light-bg: #F5F5DC;
    --card-bg: #FFFFFF;
    --text-main: #2C3E50;
    --text-muted: #7F8C8D;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --glass: rgba(255, 255, 255, 0.7);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --border-radius: 16px;
}

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'calibri', 'Arial';
    color: var(--text-main);
    background: var(--light-bg);
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* ===== Typography ===== */
h1,
h2,
h3,
.playfair {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    font-weight: 700;
}

h1 {
    font-size: 4rem;
    line-height: 1.1;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

p {
    line-height: 1.8;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== Premium Sections ===== */
section {
    padding: 100px 0;
    position: relative;
}

.bg-pattern {
    background-image: url('data:image/svg+xml,<svg width="40" height="40" viewBox="0 0 40 40" xmlns="http://www.w3.org/2000/svg"><path d="M20 20c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10-10-4.477-10-10zM0 20c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10S0 25.523 0 20z" fill="%236B8E23" fill-opacity="0.03" fill-rule="evenodd"/></svg>');
}

/* ===== Glassmorphism ===== */
.glass {
    background: var(--glass);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--border-radius);
}

/* ===== Buttons ===== */
.btn-premium {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: none;
    display: inline-block;
}

.btn-primary-premium {
    background: linear-gradient(45deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 20px rgba(107, 142, 35, 0.2);
}

a {
    text-decoration: none;
}

.btn-primary-premium:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(107, 142, 35, 0.4);
    color: white;
}

.btn-pulse {
    animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 142, 35, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(107, 142, 35, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(107, 142, 35, 0);
    }
}

/* ===== Product Cards ===== */
.product-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.product-image-container {
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    margin-bottom: 20px;
    position: relative;
}

.product-image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image-container img {
    transform: scale(1.1);
}

/* ===== Aura Effect ===== */
.aura {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(20px);
}

/* ===== Navbar ===== */
.navbar-premium {
    background: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

.navbar-premium.scrolled {
    background: var(--glass);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* ===== Floating Elements ===== */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translateY(0px);
    }

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

    100% {
        transform: translateY(0px);
    }
}

/* ===== Loader ===== */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-creme);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.herbal-spinner {
    width: 100px;
    height: 100px;
    position: relative;
    animation: rotate 10s linear infinite;
}

.herbal-spinner i {
    position: absolute;
    color: var(--primary);
    font-size: 2rem;
}

/* ===== Animations Classes ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .sticky-mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 15px;
        background: white;
        box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        display: flex;
        gap: 10px;
    }
}

/* ===== Premium Footer ===== */
.footer-premium {
    background: #1B240A;
    /* Deep Olive Night */
    color: #F5F5DC;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-premium h5 {
    color: #C19A6B;
    /* Soft Gold/Camel */
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-premium .text-muted {
    color: rgba(245, 245, 220, 0.6) !important;
}

.footer-premium a {
    transition: var(--transition);
    color: rgba(245, 245, 220, 0.7) !important;
}

.footer-premium a:hover {
    color: var(--primary) !important;
    transform: translateX(5px);
}

.footer-premium .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.footer-premium .social-links a:hover {
    background: var(--primary);
    color: white !important;
    transform: translateY(-5px);
}

.footer-premium hr {
    border-color: rgba(245, 245, 220, 0.1);
    margin: 40px 0;
}

/* Common Transactional Polish */
.icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: var(--transition);
    line-height: 1;
}

.icon-circle:hover {
    transform: scale(1.1) rotate(10deg);
}

.form-control:focus {
    background: white !important;
    border: 1px solid var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(107, 142, 35, 0.1) !important;
}

.playfair {
    font-family: 'Playfair Display', serif;
}
