:root {
    /* Color Palette */
    --yellow: #FFC107;
    --pink: #E91E63;
    --white: #FFFFFF;
    --black: #222222;
    --light-yellow: #FFF9E6;
    --light-gray: #F5F5F5;
    --dark-bg: #1a1a1a;
    
    /* Typography */
    --font-main: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 20px;
}

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

body {
    font-family: var(--font-main);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

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

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--pink);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #d81b60;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(233, 30, 99, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
}

.btn-secondary:hover {
    background-color: rgba(255, 193, 7, 0.1);
    transform: translateY(-3px);
}

section {
    padding: var(--section-padding);
    display: none;
}

section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

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

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--black);
}

.logo-text span {
    color: var(--yellow);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
}

nav a:hover,
nav a.active {
    color: var(--pink);
}

nav a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--pink);
    border-radius: 3px;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--black);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--light-yellow) 0%, #fff5d6 100%);
    padding-top: 150px;
    padding-bottom: 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: rgba(255, 193, 7, 0.1);
    top: -100px;
    right: -100px;
}

.hero::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(233, 30, 99, 0.05);
    bottom: -80px;
    left: -80px;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--black);
}

.hero h1 span {
    color: var(--yellow);
    position: relative;
}

.hero h1 span::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(255, 193, 7, 0.3);
    z-index: -1;
}

.hero p {
    font-size: 20px;
    color: #555;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

/* Animated elements in hero */
.floating-element {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.floating-element:nth-child(1) {
    width: 40px;
    height: 40px;
    background-color: var(--pink);
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    background-color: var(--yellow);
    bottom: 20%;
    right: 15%;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Products Section */
.products {
    background-color: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--black);
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.product-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 200px;
    width: 100%;
    overflow: hidden;
    background-color: #f0f0f0; /* fallback */
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--black);
}

.product-content p {
    color: #666;
    margin-bottom: 20px;
}

/* Why Choose Us Section */
.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    color: var(--pink);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-content h3 {
    color: var(--yellow);
    font-size: 20px;
    margin-bottom: 10px;
}

/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--black);
}

.about-content p {
    margin-bottom: 25px;
    color: #555;
    font-size: 17px;
}

/* Contact Section */
.contact {
    background-color: var(--light-gray);
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--black);
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-item i {
    color: var(--pink);
    font-size: 22px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(233, 30, 99, 0.1);
    border-radius: 50%;
}

.contact-item-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--black);
}

.contact-item-content p {
    color: #666;
}

.social-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--black);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--pink);
    color: var(--white);
    border-radius: 50%;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--yellow);
    transform: translateY(-3px);
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.info-card {
    background-color: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.info-card i {
    font-size: 36px;
    color: var(--pink);
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--black);
}

.info-card p {
    color: #666;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo span {
    color: var(--yellow);
}

.footer-about p {
    color: #aaa;
    margin-bottom: 20px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--pink);
}

.footer-contact p {
    color: #aaa;
    margin-bottom: 15px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 15px;
}

.copyright span {
    color: var(--yellow);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }
    
    .hero p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        padding: 30px 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        gap: 0;
    }
    
    nav ul.active {
        left: 0;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    nav a.active::after {
        display: none;
    }
    
    nav a.active {
        background-color: rgba(233, 30, 99, 0.1);
        padding: 10px 20px;
        border-radius: 30px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }
    
    .hero h1 {
        font-size: 34px;
    }
    
    .hero p {
        font-size: 17px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 130px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .product-card {
        padding: 20px;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}