/* --- Variables & Reset --- */
:root {
    --primary-green: #1a2f25;
    /* Deep, dark botanical green */
    --secondary-green: #4a6758;
    /* Muted forest green */
    --accent-gold: #d4af37;
    /* Premium gold accent */
    --accent-pink: #e0a8a8;
    /* Soft dusty pink */
    --bg-light: #f4f7f5;
    /* Very subtle cool grey-green */
    --text-dark: #2c3e35;
    --text-light: #f4f7f5;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --font-head: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* --- Typography --- */
h1,
h2,
h3 {
    font-family: var(--font-head);
    font-weight: 700;
    line-height: 1.2;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-weight: 400;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-green);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.btn-shop {
    background-color: var(--primary-green);
    color: var(--white) !important;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 15px rgba(26, 47, 37, 0.2);
}

.btn-shop:hover {
    background-color: var(--secondary-green);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 47, 37, 0.3);
}

.btn-shop::after {
    display: none !important;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--primary-green);
    transition: 0.3s;
}

/* --- Hero Section --- */
.hero {
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('hero_bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -1;
    transform: scale(1.05);
    transition: transform 10s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-content {
    max-width: 800px;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s ease forwards 0.5s;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
}

/* --- Layout Containers --- */
.container {
    padding: 6rem 5%;
    max-width: 1300px;
    margin: 0 auto;
}

h2 {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 1rem auto 0;
}

/* --- Updates Section --- */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    justify-content: center;
    margin-top: 2rem;
}

.update-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.update-card {
    background: var(--white);
    padding: 2.5rem;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.update-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--accent-pink);
    transition: height 0.3s ease;
}

.update-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.update-card .date {
    font-size: 0.8rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    display: block;
    margin-bottom: 1rem;
}

.update-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
    font-size: 1.5rem;
}

.update-card p {
    color: #666;
}

/* --- Highlight Section --- */
.highlight-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: var(--primary-green);
    color: var(--white);
    overflow: hidden;
}

.highlight-text {
    padding: 1rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.highlight-text h2 {
    text-align: left;
    color: var(--white);
    left: 0;
    transform: none;
}

.highlight-text h2::after {
    margin: 1rem 0 0;
    background-color: var(--accent-pink);
}

.highlight-text p {
    opacity: 0.9;
    margin-bottom: 1rem;
}

.highlight-text a {
    color: var(--accent-pink);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-text a:hover {
    color: var(--white);
    gap: 1rem;
}

.highlight-image {
    position: relative;
    height: 100%;
}

.highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
    transition: transform 0.6s ease;
}

.product-card:hover .product-img {
    transform: scale(1.1);
}

.product-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--white);
    z-index: 1;
}

.product-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-green);
    font-family: var(--font-head);
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.3rem 0.8rem;
    background-color: #f0f4f2;
    color: var(--secondary-green);
    border-radius: 50px;
    font-weight: 700;
}

.price {
    display: block;
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
    margin-top: auto;
}

.btn-add {
    background: transparent;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    width: 100%;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 700;
}

.btn-add:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Footer --- */
footer {
    background-color: #15251d;
    color: var(--white);
    padding: 6rem 5% 2rem;
    border-top: 5px solid var(--accent-gold);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h3 {
    font-family: var(--font-head);
    margin-bottom: 1.5rem;
    color: var(--accent-pink);
    font-size: 1.5rem;
}

.footer-col p {
    opacity: 0.7;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    margin-bottom: 0.8rem;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-col a:hover {
    opacity: 1;
    color: var(--accent-gold);
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

.newsletter-form input {
    background: transparent;
    border: none;
    width: 100%;
    color: var(--white);
    padding: 0.5rem;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form button {
    background: transparent;
    border: none;
    color: var(--accent-gold);
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.copyright {
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.4;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
}

/* --- Animations --- */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger.active .bar {
        background-color: var(--primary-green);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--primary-green);
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .highlight-section {
        grid-template-columns: 1fr;
    }

    .highlight-text {
        padding: 4rem 2rem;
    }

    .highlight-image {
        height: 300px;
        width: 100%;
    }

    .container {
        padding: 4rem 5%;
    }

    .logo-img {
        height: 60px;
        /* Reduced from 100px */
    }
}

/* --- Product Detail Page --- */
.product-detail-container {
    display: grid;
    gap: 4rem;
}

.product-specs {
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid #eee;
}

.product-specs h2 {
    text-align: left;
    left: 0;
    transform: none;
    margin-bottom: 1.5rem;
}

.product-specs h2::after {
    margin: 1rem 0;
}

.product-specs p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.gallery-item {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- How to Order Page --- */
.order-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-green);
}

/* --- Social Media Links --- */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-btn:hover {
    background: var(--white);
    color: var(--primary-green);
    opacity: 1;
    transform: translateY(-2px);
}

/* --- Social Media Icons Grid --- */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-icon-img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icon-img:hover {
    transform: translateY(-3px) scale(1.1);
}