:root {
    --primary-color: #1a4d2e;
    /* Evergreen */
    --accent-color: #d4af37;
    /* Gold */
    --light-bg: #f9f6f0;
    /* Cream */
    --dark-text: #1a1a1a;
    --white: #ffffff;
    --soft-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f9e27d 50%, #d4af37 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* Header & Nav */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 20px 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-weight: 900;
    color: var(--primary-color);
    letter-spacing: -1px;
}

.logo span {
    color: var(--accent-color);
    font-weight: 400;
    font-style: italic;
    margin-left: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

nav ul li a:hover {
    color: var(--accent-color);
}

.cta-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10%;
    margin-top: 80px;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1), transparent);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    background: rgba(26, 77, 46, 0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--primary-color);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-btns {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    /* Better alignment */
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    transition: 0.3s ease;
    text-decoration: none;
    font-size: 1rem;
}

/* Main CTA - Green */
.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(26, 77, 46, 0.2);
    min-width: 200px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 77, 46, 0.3);
}

/* Secondary - Gold Border */
.btn-secondary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Outline - Simple */
.btn-outline {
    border: 2px solid #ccc;
    color: #666;
    background: transparent;
}

.btn-outline:hover {
    border-color: var(--dark-text);
    color: var(--dark-text);
}

.hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--gold-gradient);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: float 6s ease-in-out infinite;
}

.hero-img-container {
    width: 90%;
    height: 450px;
    background: #e0e0e0;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #999;
    position: relative;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 13fr);
    gap: 30px;
    padding: 100px 10%;
    background: var(--white);
}

.feature-card {
    text-align: center;
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
}

.feature-card:hover {
    background: var(--light-bg);
}

.feature-card .icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

/* Products */
.products {
    padding: 100px 10%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
}

.section-title h2 span {
    color: var(--accent-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.product-card {
    background: var(--white);
    border-radius: 30px;
    padding: 20px;
    text-align: center;
    box-shadow: var(--soft-shadow);
    transition: 0.4s;
    border: 1px solid transparent;
}

.product-card:hover {
    transform: translateY(-15px);
    border-color: var(--accent-color);
}

.product-card.active {
    background: var(--primary-color);
    color: var(--white);
}

.product-card.active p {
    color: rgba(255, 255, 255, 0.7);
}

.product-img {
    height: 250px;
    background: #f0f0f0;
    border-radius: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.5rem;
    color: #ccc;
}

.product-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.price {
    display: block;
    font-weight: bold;
    margin: 20px 0;
    font-size: 1.2rem;
    color: var(--accent-color);
}

.btn-buy {
    display: inline-block;
    padding: 12px 25px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: bold;
}

.product-card.active .btn-buy {
    background: var(--white);
    color: var(--primary-color);
}

/* Footer */
footer {
    background: #111;
    color: #888;
    padding: 80px 10%;
    text-align: center;
}

.footer-logo {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.socials {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.socials a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        height: auto;
        padding-top: 100px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-img-container {
        margin-top: 50px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .features {
        grid-template-columns: 1fr;
    }

    nav ul {
        display: none;
    }
}