:root {
    --primary-color: #E67E22;
    --text-color: #333;
    --background-color: #FFF;
    --gray-light: #F5F5F5;
    --gray: #666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

/* Header Styles */
header {
    background-color: var(--background-color);
    padding: 1rem 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
}

.search-bar {
    flex: 1;
    max-width: 600px;
    display: flex;
    background: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
}

.search-bar input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
}

.search-bar button {
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    color: var(--gray);
}

.header-icons {
    display: flex;
    gap: 1rem;
}

.icon {
    color: var(--text-color);
    text-decoration: none;
}

nav {
    max-width: 1200px;
    margin: 1rem auto 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

nav a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.hero-content {
    flex: 1;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #d35400;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Featured Categories */
.featured-categories {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.featured-categories h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.category-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card .icon {
    margin-bottom: 1rem;
    display: inline-block;
}

.category-card span {
    font-weight: 500;
}

/* Popular Products */
.popular-products {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.popular-products h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.product-card {
    background: var(--background-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.placeholder-image {
    width: 100%;
    height: 200px;
    background-color: var(--bg-color, #f0f0f0);
    border-radius: 8px 8px 0 0;
    position: relative;
    overflow: hidden;
}

/* Add subtle animation to placeholders */
.placeholder-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    animation: loading 1.5s infinite;
}

@keyframes loading {
    100% {
        left: 100%;
    }
}

.product-card h3 {
    padding: 1rem;
    font-size: 1.1rem;
}

.product-card .price {
    padding: 0 1rem 1rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.25rem;
}

.product-card .description {
    padding: 0 1rem 1rem;
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Footer */
/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-float a:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Page Header */
.page-header {
    background-color: var(--gray-light);
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--gray);
}

/* About Page Styles */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.features-list {
    list-style: none;
    margin-left: 0;
}

.features-list li {
    margin-bottom: 0.75rem;
    color: var(--gray);
}

.about-placeholder {
    height: 400px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

/* Values Section */
.values-section {
    background-color: var(--gray-light);
    padding: 4rem 0;
    margin: 4rem 0;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: var(--background-color);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.value-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 1rem;
}

/* Team Section */
.team-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    text-align: center;
}

.team-intro {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.member-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member .role {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member .bio {
    color: var(--gray);
}

/* Contact CTA */
.contact-cta {
    background-color: var(--gray-light);
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Logo Link */
.logo a {
    text-decoration: none;
    color: inherit;
}

footer {
    background-color: var(--gray-light);
    padding: 2rem;
    text-align: center;
    margin-top: 4rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .category-grid,
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-bar {
        width: 100%;
        max-width: none;
    }
    
    nav ul {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .page-header {
        padding: 2rem 1rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .values-grid,
    .team-section {
        padding: 0 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .category-grid,
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image img {
        width: 300px;
        height: auto;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .about-text h2 {
        font-size: 1.5rem;
    }
    
    .member-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .product-card .description {
        font-size: 0.9rem;
    }
}
