* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    background: #0d0d0d;
    color: #e8e8e8;
    line-height: 1.6;
}

header {
    background: #000;
    padding: 1.2rem 0;
    border-bottom: 2px solid #c9a961;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: 800;
    color: #c9a961;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-links a {
    color: #e8e8e8;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #c9a961;
}

.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero p {
    font-size: 1.2rem;
    color: #c9a961;
    font-weight: 600;
}

.about-section {
    max-width: 800px;
    margin: 3rem auto;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
    text-align: center;
}

.about-content h2 {
    font-size: 2rem;
    color: #c9a961;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-content p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.donate-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #c9a961;
    color: #000;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.donate-button:hover {
    background: #d4b56d;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(201, 169, 97, 0.4);
}

.section-header {
    max-width: 1200px;
    margin: 3rem auto 1.5rem;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-left: 4px solid #c9a961;
    padding-left: 1rem;
    margin: 0;
}

.view-all-btn {
    color: #c9a961;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
}

.view-all-btn:hover {
    color: #d4b56d;
    transform: translateX(5px);
}

.products-grid {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #2a2a2a;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(201, 169, 97, 0.2);
    border-color: #c9a961;
}

.product-image {
    width: 100%;
    height: 280px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #2a2a2a;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #c9a961;
    color: #000;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: #c9a961;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.product-description {
    color: #aaa;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-price {
    font-size: 1.8rem;
    color: #c9a961;
    font-weight: 700;
    margin-bottom: 1rem;
}

.buy-button {
    width: 100%;
    padding: 0.9rem;
    background: #c9a961;
    border: none;
    border-radius: 4px;
    color: #000;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.buy-button:hover {
    background: #d4b56d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 169, 97, 0.4);
}

footer {
    background: #000;
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
    border-top: 2px solid #c9a961;
}

.disclaimer {
    max-width: 800px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #888;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .nav-links {
        gap: 1rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .logo {
        font-size: 1.4rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }
}