/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', 'Inter', sans-serif;
    line-height: 1.6;
    color: #7A9B6A;
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 69, 19, 0.03) 2px,
            rgba(139, 69, 19, 0.03) 4px
        );
    min-height: 100vh;
}

/* Force header background */
header.header {
    background: #4a5a4a !important;
    background-image: 
        linear-gradient(135deg, #4a5a4a 0%, #3a4a3a 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 10px,
            rgba(139, 69, 19, 0.08) 10px,
            rgba(139, 69, 19, 0.08) 20px
        ) !important;
}

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

/* Header */
.header {
    background: #4a5a4a !important;
    background-image: 
        linear-gradient(135deg, #4a5a4a 0%, #3a4a3a 100%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 10px,
            rgba(139, 69, 19, 0.08) 10px,
            rgba(139, 69, 19, 0.08) 20px
        ) !important;
    box-shadow: 
        0 4px 20px rgba(0,0,0,0.3), 
        0 2px 4px rgba(0,0,0,0.2),
        inset 0 1px 0 rgba(255,255,255,0.15);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #8B4513;
    border-top: 1px solid rgba(139, 69, 19, 0.3);
    width: 100%;
    min-height: 80px;
}

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

.nav-brand {
    flex: 0 0 auto;
    min-width: 200px;
}

.nav-brand h1 {
    color: #8B4513;
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    border: 2px solid #8B4513;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1));
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
}

.nav-cart {
    flex: 0 0 auto;
}

.nav-link {
    text-decoration: none;
    color: #7A9B6A;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: #8B4513;
    border: 1px solid #8B4513;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1));
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.cart-btn {
    background: 
        linear-gradient(135deg, #8B4513 0%, #A0522D 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(0,0,0,0.1) 2px,
            rgba(0,0,0,0.1) 4px
        );
    color: white;
    border: 2px solid #654321;
    padding: 0.75rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 
        0 4px 15px rgba(139, 69, 19, 0.4), 
        0 2px 4px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
}

.cart-btn:hover {
    background: linear-gradient(135deg, #1a3a0f 0%, #0f2a08 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4), 0 4px 8px rgba(0,0,0,0.15);
}

.cart-count {
    background: #ef4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 6rem 2rem 2rem;
    background: 
        linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(139, 69, 19, 0.05) 20px,
            rgba(139, 69, 19, 0.05) 40px
        ),
        radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 69, 19, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid #8B4513;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 69, 19, 0.03) 2px,
            rgba(139, 69, 19, 0.03) 4px
        );
    pointer-events: none;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    color: #6B8E5A;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.7);
    border: 3px solid #8B4513;
    padding: 20px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1));
    position: relative;
}

.hero-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #7A9B6A;
    margin-bottom: 2rem;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    border-left: 4px solid #8B4513;
    padding-left: 20px;
}

.cta-btn {
    background: 
        linear-gradient(135deg, #8B4513 0%, #A0522D 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 3px,
            rgba(0,0,0,0.1) 3px,
            rgba(0,0,0,0.1) 6px
        );
    color: white;
    border: 3px solid #654321;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 6px 20px rgba(139, 69, 19, 0.4), 
        0 2px 4px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #1a3a0f 0%, #0f2a08 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4), 0 4px 8px rgba(0,0,0,0.15);
}

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

.hero-main-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(139, 69, 19, 0.1);
    transition: all 0.3s ease;
    object-fit: cover;
    border: 3px solid rgba(139, 69, 19, 0.1);
}

.hero-main-image:hover {
    transform: scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.2),
        0 12px 24px rgba(139, 69, 19, 0.15);
}

/* Fallback for when image doesn't load */
.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: -1;
}

.hero-image::after {
    content: '🛍️';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: #8A9B7A;
    z-index: -1;
    opacity: 0.3;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, #2d3a2d 0%, #1a2a1a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(139, 69, 19, 0.03) 15px,
            rgba(139, 69, 19, 0.03) 30px
        );
    border-top: 2px solid #8B4513;
    border-bottom: 2px solid #8B4513;
}

.section-title {
    text-align: center;
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    color: #6B8E5A;
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    border: 2px solid #8B4513;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1));
    position: relative;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: 
        linear-gradient(135deg, #3d4a3d 0%, #2a3a2a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 5px,
            rgba(139, 69, 19, 0.05) 5px,
            rgba(139, 69, 19, 0.05) 10px
        );
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 4px 10px rgba(139, 69, 19, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid #8B4513;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B4513, #A0522D, #8B4513);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px) rotateX(5deg);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.15),
        0 8px 15px rgba(139, 69, 19, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-card:hover::before {
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #8A9B7A;
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6B8E5A;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #8A9B7A;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8B4513;
    margin-bottom: 1rem;
}

.add-to-cart {
    width: 100%;
    background: #8B4513;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.add-to-cart:hover {
    background: #1d4ed8;
}

/* About Section */
.about {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, #2d3a2d 0%, #1a2a1a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(139, 69, 19, 0.03) 15px,
            rgba(139, 69, 19, 0.03) 30px
        );
    border-top: 2px solid #8B4513;
    border-bottom: 2px solid #8B4513;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 100px,
            rgba(139, 69, 19, 0.02) 100px,
            rgba(139, 69, 19, 0.02) 200px
        );
    pointer-events: none;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6B8E5A;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #8A9B7A;
    margin-bottom: 3rem;
    line-height: 1.7;
}

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

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.feature i {
    font-size: 2.5rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6B8E5A;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #8A9B7A;
    font-size: 0.9rem;
}

/* Proceeds Section */
.proceeds {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, #2d3a2d 0%, #1a2a1a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(139, 69, 19, 0.03) 15px,
            rgba(139, 69, 19, 0.03) 30px
        );
    border-top: 2px solid #8B4513;
    border-bottom: 2px solid #8B4513;
}

.proceeds-content {
    max-width: 1000px;
    margin: 0 auto;
}

.proceeds-statement {
    text-align: center;
    margin-bottom: 3rem;
}

.proceeds-statement h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    font-weight: 700;
    color: #6B8E5A;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    border: 2px solid #8B4513;
    padding: 15px 30px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1));
}

.proceeds-statement p {
    font-size: 1.2rem;
    color: #7A9B6A;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

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

.organization-card {
    background: 
        linear-gradient(135deg, #3d4a3d 0%, #2a3a2a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 5px,
            rgba(139, 69, 19, 0.05) 5px,
            rgba(139, 69, 19, 0.05) 10px
        );
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 4px 10px rgba(139, 69, 19, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid #8B4513;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.organization-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 15px 35px rgba(0,0,0,0.4),
        0 8px 15px rgba(139, 69, 19, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.organization-card h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: #6B8E5A;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.organization-card p {
    color: #7A9B6A;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.org-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border: 2px solid #8B4513;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1));
    transition: all 0.3s ease;
}

.org-link:hover {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.proceeds-footer {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    border: 2px solid #8B4513;
    border-radius: 4px;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1));
}

.proceeds-footer p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #6B8E5A;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, #2d3a2d 0%, #1a2a1a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(139, 69, 19, 0.03) 15px,
            rgba(139, 69, 19, 0.03) 30px
        );
    border-top: 2px solid #8B4513;
    border-bottom: 2px solid #8B4513;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: #8A9B7A;
}

.contact-item i {
    color: #8B4513;
    font-size: 1.25rem;
    width: 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.submit-btn {
    background: #8B4513;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #1d4ed8;
}

/* Footer */
.footer {
    background: 
        linear-gradient(135deg, #1e293b 0%, #0f172a 100%),
        radial-gradient(circle at 50% 0%, rgba(139, 69, 19, 0.1) 0%, transparent 70%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(139, 69, 19, 0.03) 50px,
            rgba(139, 69, 19, 0.03) 100px
        );
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f8fafc;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8B4513;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #8B4513;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #cbd5e1;
}

/* Cart Modal */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
}

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

.cart-content {
    background: white;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.cart-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6B8E5A;
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #8A9B7A;
}

.cart-items {
    padding: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #6B8E5A;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: #8B4513;
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    background: #f1f5f9;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background: #e2e8f0;
}

.quantity {
    margin: 0 0.5rem;
    font-weight: 600;
}

.remove-item {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
}

.remove-item:hover {
    background: #dc2626;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.cart-total {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.checkout-btn {
    width: 100%;
    background: #8B4513;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.checkout-btn:hover {
    background: #1d4ed8;
}

/* Error Page */
.error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 2rem;
}

.error h1 {
    font-size: 4rem;
    color: #8B4513;
    margin-bottom: 1rem;
}

.error p {
    font-size: 1.25rem;
    color: #8A9B7A;
    margin-bottom: 2rem;
}

.error a {
    color: #8B4513;
    text-decoration: none;
    font-weight: 600;
}

.error a:hover {
    text-decoration: underline;
}

/* Mission Statement */
.mission-statement {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border: 2px solid #000000;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.2),
        0 4px 10px rgba(139, 69, 19, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.mission-statement h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.mission-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
    font-style: italic;
    position: relative;
    z-index: 2;
}

/* Beta Values Section */
.beta-values {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.beta-values h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-align: center;
}

.values-intro {
    font-size: 1.1rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.values-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1rem;
    line-height: 1.5;
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list i {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.values-list strong {
    color: #ffffff;
    font-weight: 600;
}

.values-footer {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: 
        linear-gradient(135deg, #2d3a2d 0%, #1a2a1a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 15px,
            rgba(139, 69, 19, 0.03) 15px,
            rgba(139, 69, 19, 0.03) 30px
        );
    border-top: 2px solid #8B4513;
    border-bottom: 2px solid #8B4513;
}

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

.testimonial {
    background: 
        linear-gradient(135deg, #3d4a3d 0%, #2a3a2a 100%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 5px,
            rgba(139, 69, 19, 0.05) 5px,
            rgba(139, 69, 19, 0.05) 10px
        );
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.3),
        0 4px 10px rgba(139, 69, 19, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-left: 4px solid #8B4513;
    border: 2px solid #8B4513;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #8B4513, #A0522D, #8B4513);
    opacity: 0.8;
}

.testimonial:hover {
    transform: translateY(-8px) rotateX(3deg);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.15),
        0 8px 15px rgba(139, 69, 19, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #7A9B6A;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: #8B4513;
    font-size: 1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Checkout Page Styles */
.checkout-section {
    padding: 6rem 0 4rem;
    background: #f8fafc;
    min-height: 100vh;
}

.checkout-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.order-summary {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 2rem;
}

.order-summary h3 {
    color: #8B4513;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.order-item:last-child {
    border-bottom: none;
}

.item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.item-name {
    font-weight: 500;
    color: #7A9B6A;
}

.item-quantity {
    font-size: 0.9rem;
    color: #6b7280;
}

.item-price {
    font-weight: 600;
    color: #8B4513;
}

.order-totals {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e5e7eb;
}

.total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    color: #7A9B6A;
}

.total-final {
    font-size: 1.2rem;
    font-weight: 700;
    color: #8B4513;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.checkout-form {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: #8B4513;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-row.three-col {
    grid-template-columns: 1fr 1fr 1fr;
}

input, select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    margin-bottom: 1rem;
}

input:focus, select:focus {
    outline: none;
    border-color: #8B4513;
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.payment-option input[type="radio"] {
    width: auto;
    margin: 0;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    color: #7A9B6A;
}

.payment-option i {
    font-size: 1.5rem;
    color: #8B4513;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.beta-guarantee {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: center;
}

.beta-guarantee h3 {
    color: #0ea5e9;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.beta-guarantee p {
    color: #0c4a6e;
    line-height: 1.6;
    font-style: italic;
}

.checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.checkout-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Modal Styles */
.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-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-body {
    padding: 2rem;
}

.order-info {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.order-info p {
    margin: 0.5rem 0;
    color: #7A9B6A;
}

.confirmation-note {
    text-align: center;
    color: #6b7280;
    font-style: italic;
    margin-top: 1rem;
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #e5e7eb;
    text-align: center;
}

.btn-primary {
    background: #8B4513;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background: #1d4ed8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        padding: 1rem;
        gap: 1rem;
    }
    
    .nav-brand {
        min-width: 150px;
    }
    
    .nav-brand h1 {
        font-size: 1.4rem;
        padding: 6px 12px;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-placeholder {
        width: 200px;
        height: 200px;
        font-size: 3rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mission-statement {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .mission-text {
        font-size: 1.1rem;
    }
    
    .beta-values {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .values-list li {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .values-list i {
        align-self: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .checkout-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .order-summary {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .form-row.three-col {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}
