
/* ... keep existing code (reset, body, container styles) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ... keep existing code (header, nav, banner styles) */
/* Header */
.header {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFD700;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #8B0000;
    background: #FFD700;
}

.lang-toggle {
    background: #FFD700;
    color: #8B0000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lang-toggle:hover {
    background: #FFA500;
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 6px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.10);
    transition: 0.3s;
}

/* Banner */
.banner {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    padding: 3rem 0;
    color: white;
    text-align: center;
}

.banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-image-placeholder {
    width: 100%;
    max-width: 800px;
    height: 300px;
    margin: 0 auto 2rem;
    
   
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-text {
    color: #FFD700;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.banner-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: #FFD700;
    color: #8B0000;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    background: #FFA500;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* ... keep existing code (page title, section title styles) */
/* Page Title */
.page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 3rem;
    position: relative;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

/* Sections */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #8B0000;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #FFD700;
    border-radius: 2px;
}

/* Featured Products Section */
.featured-products {
    padding: 5rem 0;
    background: #f8f9fa;
}

/* Products Grid for Home Page (6 items, 3x2 layout) */
.products-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Products Section */
.products-section {
    padding: 5rem 0;
    background: #f8f9fa;
    min-height: calc(100vh - 140px);
}

/* Products Grid for Products Page (9 items, 3x3 layout) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Regular Product Card (for home page) */
.product-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.2);
}

.product-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1rem;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.product-card h3 {
    color: #8B0000;
    font-size: 1.3rem;
    font-weight: 600;
}

/* Square Product Card (for products page) */
.product-card-square {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3sease;
    border: 2px solid transparent;
}

.product-card-square:hover {
    transform: translateY(-10px);
    border-color: #FFD700;
    box-shadow: 0 15px 30px rgba(139, 0, 0, 0.2);
}

.product-image-square {
    width: 250px;
    height: 250px;
    margin: 0 auto 1rem;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-square img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    background: #fff;
}

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

.product-card-square h3 {
    color: #8B0000;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-card-square p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ... keep existing code (about, contact, footer styles) */
/* About Section */
.about-section {
    padding: 5rem 0;
    background: white;
    min-height: calc(100vh - 140px);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
    text-align: justify;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #f8f9fa;
    min-height: calc(100vh - 140px);
}

.contact-content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.contact-details p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #8B0000, #DC143C);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.text-center {
    text-align: center;
}

/* Floating Action Buttons */
.floating-buttons {
    position: fixed;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.call-floating {
    left: 20px;
    bottom: 20px;
}
.whatsapp-floating {
    right: 20px;
    bottom: 20px;
}
.call-btn img, .whatsapp-btn img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    background: #fff;
    animation: shake 1.2s infinite;
}
@keyframes shake {
    0% { transform: translate(0, 0) rotate(0deg); }
    10% { transform: translate(-2px, 2px) rotate(-5deg); }
    20% { transform: translate(-2px, -2px) rotate(5deg); }
    30% { transform: translate(2px, 2px) rotate(-5deg); }
    40% { transform: translate(2px, -2px) rotate(5deg); }
    50% { transform: translate(-2px, 2px) rotate(-5deg); }
    60% { transform: translate(-2px, -2px) rotate(5deg); }
    70% { transform: translate(2px, 2px) rotate(-5deg); }
    80% { transform: translate(2px, -2px) rotate(5deg); }
    90% { transform: translate(-2px, 2px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #8B0000, #DC143C);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: linear-gradient(135deg, #8B0000, #DC143C);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 2000;
        padding: 0;
        margin: 0;
    }

    .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        position: relative;
        z-index: 2100;
        background: rgba(255,255,255,0.15);
        border-radius: 8px;
        padding: 6px 10px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    }
    .mobile-menu-toggle .hamburger-icon {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 32px;
        height: 32px;
        cursor: pointer;
        background: transparent;
        border-radius: 6px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.10);
        transition: background 0.2s;
    }
    .mobile-menu-toggle .hamburger-icon span {
        display: block;
        width: 26px;
        height: 4px;
        margin: 3px 0;
        background: #FFD700;
        border-radius: 2px;
        transition: all 0.3s;
    }
    .mobile-menu-toggle .close-icon {
        display: none;
        font-size: 2rem;
        color: #FFD700;
        cursor: pointer;
        margin-left: 8px;
        user-select: none;
    }
    .mobile-menu-toggle.open .hamburger-icon {
        display: none;
    }
    .mobile-menu-toggle.open .close-icon {
        display: block;
    }

    .nav {
        position: relative;
    }
    
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .products-grid,
    .products-grid-home {
        grid-template-columns: 1fr;
    }
    
    .contact-content-centered {
        align-items: stretch;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

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

    .container {
        padding: 0 15px;
    }

    .product-card,
    .product-card-square {
        padding: 1rem;
    }

    .contact-details {
        padding: 1.5rem;
    }

    .product-card-square p {
        font-size: 0.8rem;
    }
}

/* ... keep existing code (smooth scrolling, minimum height styles) */
/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Ensure minimum height for all pages */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}
