:root {
    --primary-color: #1a1a1a;
    --secondary-color: #ffffff;
    --accent-color: #007bff;
    --text-color: #333;
    --light-gray: #f4f4f4;
    --border-radius: 8px;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: var(--text-color);
    background-color: var(--secondary-color);
}

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

/* Header */
.main-header {
    background-color: var(--secondary-color);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    margin-right: 10px;
}

.logo-container h1 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.main-header nav a {
    text-decoration: none;
    color: var(--text-color);
    margin-left: 25px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.main-header nav a:hover {
    color: var(--accent-color);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('hero-background.png');
    background-size: cover;
    background-position: center;
    color: var(--secondary-color);
    text-align: center;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.payment-info-hero {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: var(--border-radius);
    font-weight: 400 !important;
}

.cta-button {
    background-color: var(--accent-color);
    color: var(--secondary-color);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

/* Product Gallery */
.product-gallery {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.product-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.product-card h3 {
    font-size: 1.5rem;
    margin: 15px 0 5px;
}

.product-card .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
    margin: 0;
}

.product-card .description {
    padding: 0 20px;
    margin: 15px 0;
    flex-grow: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.buy-button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 15px;
    width: 100%;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.buy-button:hover {
    background-color: #333;
}

/* Payment Methods Section */
.payment-methods-section {
    padding: 80px 0;
    text-align: center;
}

.payment-methods-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.payment-methods-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.payment-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 30px;
}

.payment-logos img {
    height: 60px;
    max-width: 150px;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-align: center;
    padding: 40px 0;
}

.footer-payment-info {
    font-size: 0.9rem;
    color: #ccc;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    .main-header nav {
        margin-top: 10px;
    }

    .main-header nav a {
        margin: 0 10px;
    }

    .hero h2 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

