/* Shop Hero */
.shop-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 5rem 2rem 3rem;
    text-align: center;
}

@media (max-width: 768px) {
    .shop-hero {
        padding: 3rem 1rem 2rem;
    }
}

.shop-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .shop-hero h1 {
        font-size: 2rem;
    }
}

.shop-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .shop-hero p {
        font-size: 1rem;
    }
}

/* Countries Section */
.countries-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

@media (max-width: 768px) {
    .countries-section {
        padding: 3rem 1rem;
    }
}

.countries-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .countries-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
}

.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.country-card {
    background: var(--white);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-dark);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.country-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.country-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .country-card h3 {
        font-size: 1.1rem;
    }
}

.country-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Products Section */
.products-section {
    padding: 5rem 2rem;
}

@media (max-width: 768px) {
    .products-section {
        padding: 3rem 1rem;
    }
}

.products-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .products-section h2 {
        font-size: 1.8rem;
    }
}

.products-section > .container > p {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .products-section > .container > p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
}

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

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

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

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

.product-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-btn {
    display: block;
    width: 100%;
    background: var(--accent-color);
    color: var(--white);
    text-align: center;
    padding: 0.9rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #d63850;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

/* Active nav link */
.nav-menu a.active {
    color: var(--accent-color);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .countries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .country-card {
        padding: 1.5rem 1rem;
    }

    .country-flag {
        font-size: 2.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}
