* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Header Styles */
.header {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 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;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 2rem;
    color: white;
}

.logo h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    display: inline-block;
    margin-right: 8px;
}

.logo .closet {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    vertical-align: middle;
    margin-top: 8px;
}

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

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #ffe4d1;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
}

.whatsapp-link {
    background: #25d366;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-link:hover {
    background: #128c7e;
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #fff5f0, #ffe8dc);
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h2 {
    font-size: 3rem;
    color: #ff6b1a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.cta-button {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 107, 26, 0.3);
}

/* Products Section */
.products {
    padding: 80px 0;
    background: white;
}

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

.product-categories {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.category h3 {
    text-align: center;
    font-size: 2rem;
    color: #ff8c42;
    margin-bottom: 2rem;
    font-weight: 600;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid #fff5f0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 107, 26, 0.2);
    border-color: #ff8c42;
}

.product-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fff5f0, #ffe8dc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #ff6b1a;
}

.product-card h4 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
}

/* About Section */
.about {
    background: linear-gradient(135deg, #fff5f0, #ffe8dc);
    padding: 80px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

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

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

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

.location-info h3 {
    font-size: 1.5rem;
    color: #ff6b1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.location-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: #555;
}

.location-info i {
    color: #ff8c42;
    width: 20px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: white;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ff6b1a;
    margin-bottom: 3rem;
    font-weight: 700;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: #ff8c42;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-info p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
    color: #555;
    font-size: 1rem;
}

.contact-details i {
    color: #ff8c42;
    width: 20px;
}

.whatsapp-contact {
    text-align: center;
    background: linear-gradient(135deg, #fff5f0, #ffe8dc);
    padding: 3rem;
    border-radius: 15px;
}

.whatsapp-contact h3 {
    font-size: 1.8rem;
    color: #ff6b1a;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.whatsapp-contact p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.whatsapp-button {
    background: #25d366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-button:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    font-size: 1.3rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.footer-logo h3 span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    margin-top: 6px;
}

.footer-logo p {
    opacity: 0.9;
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-contact i {
    width: 20px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav ul {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        padding-top: 80px;
        z-index: 999;
    }
    
    .nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav ul li {
        text-align: center;
        padding: 0.5rem 0;
    }
    
    .nav ul li a {
        display: block;
        padding: 0.5rem 1rem;
        color: #ff6b1a;
        font-weight: 500;
    }
    
    .nav ul li a:hover {
        color: #ff8c42;
        background: #fff5f0;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .logo .closet {
        font-size: 1rem;
    }
    
    .logo-icon {
        font-size: 1.5rem;
    }
    
    .whatsapp-link {
        padding: 8px 12px;
        font-size: 1.2rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .products h2,
    .about-text h2,
    .contact h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .product-image {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .product-card h4 {
        font-size: 1.2rem;
    }
    
    .product-card p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .products,
    .about,
    .contact {
        padding: 60px 0;
    }
    
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .logo .closet {
        font-size: 0.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .cta-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .category h3 {
        font-size: 1.5rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card {
        padding: 1.2rem;
    }
    
    .product-image {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .product-card h4 {
        font-size: 1.1rem;
    }
    
    .product-card p {
        font-size: 0.85rem;
    }
    
    .about-text h2,
    .contact h2 {
        font-size: 1.8rem;
    }
    
    .about-text p,
    .contact-info p {
        font-size: 1rem;
    }
    
    .location-info,
    .whatsapp-contact {
        padding: 1.5rem;
    }
    
    .whatsapp-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-logo h3 span {
        font-size: 0.8rem;
    }
    
    .footer-contact h4 {
        font-size: 1rem;
    }
    
    .footer-contact p {
        font-size: 0.9rem;
    }
}
