/* Page Header */
.page-header {
    padding: 12rem 5% 5rem;
    background: linear-gradient(135deg, var(--accent), #FFF1D4);
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Grid */
.products-section {
    padding: 5rem 5%;
    background-color: var(--white);
}

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

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    background-color: #f8f8f8;
}

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.product-info .price {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 1rem;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* About Page */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 5%;
}

.about-content p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

/* Contact Page */
.contact-section {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info, .contact-form-container {
    flex: 1;
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: var(--accent);
    padding: 3rem;
    border-radius: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-main);
}

.form-group input, .form-group textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(242, 169, 0, 0.2);
}

/* Where to Buy Page */
.stores-section {
    padding: 5rem 5%;
    background-color: var(--white);
    text-align: center;
}

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

.store-card {
    background: var(--accent);
    padding: 2rem;
    border-radius: 15px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: var(--primary);
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }
    .page-header {
        padding: 10rem 5% 4rem;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
}
