:root {
    --primary: #f8f9fa;
    --secondary: #e9ecef;
    --accent: #F00006;
    --accent-hover: #FFC71E;
    --text: #2c3e50;
    --light-text: #666666;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--primary);
    color: var(--text);
}

nav {
    position: fixed;
    width: 100%;
    background: white;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-weight: 600;
    font-size: 1.25rem;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

header {
    height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 2rem;
    gap: 4rem;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
}

.header-content {
    text-align: left;
}

.header-image {
    width: 100%;
}

.header-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.explore-btn {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 2rem;
    transition: background 0.3s;
}

.explore-btn:hover {
    background: var(--accent-hover);
}

section {
    padding: 6rem 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-content p{
    font-size: 1.2rem;
}


.about-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.5rem 1.5rem;
    border: 2px solid var(--accent);
    background: none;
    color: var(--text);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.filter-btn::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
}

.filter-btn:hover::after {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--accent);
    color: white;
}

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

.product {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease, grid-column 0.3s ease;
}

.product.expanded {
    grid-template-columns: 400px 1fr;
    transition: all 0.3s ease, grid-column 0.3s ease;
}

.product:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 24px rgba(0,0,0,0.15);   
    border-color: var(--accent);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.product-info h3 {
    color: var(--text);
    font-size: 1.25rem;
    margin: 0;
}

.product-info p {
    color: var(--light-text);
    font-weight: 500;
}


h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

footer {
    background: white;
    padding: 4rem 2rem 4rem 2rem;  
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 4rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: var(--light-text);
}

.map {
    margin-top: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    display: block;
    width: 100%;
    border-radius: 10px;
}

.map-container iframe {
    display: block;
    width: 100%;
}

.map img {
    width: 100%;
    height: auto;
}



.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
}



@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product {
        grid-template-columns: 200px 1fr;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    nav ul {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    section {
        padding: 4rem 1rem;
    }

    .product {
        grid-template-columns: 1fr;
        text-align: center;
        transition: all 0.3s ease;
    }

    .product-image {
        max-width: 200px;
        margin: 0 auto;
        transition: max-width 0.3s ease;
    }

    .product.expanded {
        grid-template-columns: 1fr;
        transition: all 0.3s ease;
    }
    
    .product.expanded .product-image {
        max-width: 300px;
        transition: max-width 0.3s ease;
    }

    header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .header-content {
        text-align: center;
    }

    .mobile-menu-btn {
        display: block;
        order: 1;
    }

    nav {
        padding: 1rem;
    }

    nav ul {
        display: none;
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: white;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    nav ul.show {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .header-image {
        margin-top: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}
