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

:root {
    --forest-green: #1a6b1a;
    --forest-green-dark: #145214;
    --forest-green-light: #228B22;
    --white: #ffffff;
    --gray-light: #f8f9fa;
    --gray: #6c757d;
    --gray-dark: #343a40;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    color: var(--forest-green);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--white);
    border-bottom: 1px solid rgba(34, 139, 34, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--forest-green);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--forest-green);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--forest-green-dark);
}

.cart-btn {
    background: var(--forest-green);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: background-color 0.3s ease;
}

.cart-btn:hover {
    background: var(--forest-green-dark);
}

.cart-count {
    background: var(--white);
    color: var(--forest-green);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 80px;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--forest-green);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--forest-green);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.cta-button {
    background: var(--forest-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: var(--forest-green-dark);
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-display {
    width: 450px;
    height: 600px;
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.stick-3d {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
}

/* Product Section */
.product-section {
    padding: 6rem 0;
    background: var(--gray-light);
}

.product-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--forest-green);
}

.product-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-image {
    display: flex;
    justify-content: center;
}

.product-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 700px;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.1rem;
    color: var(--forest-green);
    opacity: 0.8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.product-options {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.option label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
}

.option select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--forest-green);
    border-radius: 8px;
    background: var(--white);
    color: var(--forest-green);
    font-size: 1rem;
}

.pricing-options-btn {
    width: 100%;
    background: transparent;
    color: var(--forest-green);
    border: 2px solid var(--forest-green);
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.pricing-options-btn:hover {
    background: var(--forest-green);
    color: var(--white);
}

.add-to-cart {
    width: 100%;
    background: var(--forest-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-to-cart:hover {
    background: var(--forest-green-dark);
    transform: translateY(-2px);
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--white);
}

.features-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--forest-green);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--forest-green);
}

.feature p {
    color: var(--forest-green);
    opacity: 0.8;
}

/* Brooklyn Section */
.brooklyn-section {
    padding: 2rem 0;
    background: var(--white);
    text-align: center;
}

.brooklyn-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--forest-green);
}

.marquee-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 220px;
    background: transparent;
}

.marquee {
    width: 100%;
    height: 100%;
    position: relative;
}

.marquee-track {
    display: flex;
    position: absolute;
    height: 100%;
    animation: scroll 60s linear infinite;
    left: 0;
}

.marquee-track img {
    height: 200px;
    width: auto;
    margin: 0 20px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.marquee-track img:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--gray-light);
    text-align: center;
}

.about-section h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--forest-green);
}

.about-section p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: var(--forest-green);
    opacity: 0.8;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: var(--forest-green);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--gray);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--forest-green);
}

.modal-content h3 {
    font-size: 1.8rem;
    color: var(--forest-green);
    margin-bottom: 1.5rem;
}

.pricing-options-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pricing-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid rgba(26, 107, 26, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-option:hover {
    border-color: var(--forest-green);
    background-color: rgba(26, 107, 26, 0.05);
}

.pricing-option input[type="radio"] {
    width: 20px;
    height: 20px;
    margin-right: 1rem;
    cursor: pointer;
    accent-color: var(--forest-green);
}

.pricing-option .option-label {
    font-size: 1rem;
    color: var(--forest-green);
    font-weight: 500;
}

.pricing-option input[type="radio"]:checked + .option-label {
    font-weight: 600;
}

.modal-apply-btn {
    width: 100%;
    background: var(--forest-green);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-apply-btn:hover {
    background: var(--forest-green-dark);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
        padding-top: 100px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .product-details {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}