.about {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.about p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.products {
    padding: 4rem 2rem;
    background: #fff;
}

.products h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.products .view-all-btn {
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(90deg, #2563eb, #3b82f6, #8b5cf6, #2563eb);
    background-size: 300% 100%;
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    animation: colorShift 8s ease infinite;
    transition: transform 0.2s;
}

.products .view-all-btn:hover {
    transform: scale(1.02);
    animation: none;
    background: #1d4ed8;
}

@keyframes colorShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

.product-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2563eb;
}

.product-img {
    width: 180px;
    height: 180px;
    object-fit: contain;
    margin-bottom: 1rem;
}

.product-card p {
    opacity: 0.7;
    line-height: 1.6;
    color: #6b7280;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb !important;
    margin-top: 0.5rem;
}

.add-to-cart {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s;
}

.add-to-cart:hover {
    background: #1d4ed8;
    transform: scale(1.02);
}

.contact {
    padding: 4rem 2rem;
    text-align: center;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--color-text-dark);
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light-bg);
    border-radius: 50%;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.contact-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}

.contact-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.contact-card a {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 600;
    transition: color 0.3s;
}

.contact-card a:hover {
    color: var(--color-primary-hover);
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    transition: background-color 0.3s, transform 0.3s;
}

.social-link:hover {
    background: #1d4ed8;
    transform: scale(1.1);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.products-page {
    padding: 8rem 2rem 4rem;
    min-height: 100vh;
    background: #fff;
}

.products-page h1 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1f2937;
}

.products-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #6b7280;
    margin-bottom: 3rem;
}

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

.products-grid.loaded .product-skeleton {
    display: none;
}

.product-skeleton {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
}

.no-products {
    text-align: center;
    color: #6b7280;
    font-size: 1.2rem;
    grid-column: 1 / -1;
}

.facebook-feed {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.facebook-feed h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1f2937;
}

.fb-feed-container {
    display: flex;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

@media screen and (max-width: 767px) {
    .product-reel {
        max-width: 100%;
    }
    
    .reel-slide {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }
    
    .reel-slide img {
        width: 200px;
        height: 200px;
    }
    
    .reel-info {
        text-align: center;
    }
    
    .reel-info h3 {
        font-size: 1.25rem;
    }
}
