/* Reset and Variables */
:root {
    --color-pink: #f4508f;
    --color-purple: #9d69d4;
    --color-teal: #26c6da;
    --color-yellow: #fbc02d;
    --color-bg: #fdf8fa;
    --color-white: #ffffff;
    --color-text: #4a4a4a;
    --color-text-light: #7a7a7a;
    --color-border: #f0e6ea;
    
    --font-main: 'Poppins', sans-serif;
    
    --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 15px rgba(244, 80, 143, 0.1);
    --shadow-lg: 0 15px 30px rgba(0,0,0,0.08);
    
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s ease;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography Utility */
.text-pink { color: var(--color-pink); }
.text-purple { color: var(--color-purple); }
.text-teal { color: var(--color-teal); }
.text-yellow { color: var(--color-yellow); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: #e03c7a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(244, 80, 143, 0.2);
}

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

.btn-secondary:hover {
    border-color: var(--color-teal);
    background-color: rgba(38, 198, 218, 0.05);
    transform: translateY(-2px);
}

/* Header */
.header {
    background-color: rgba(253, 248, 250, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-border);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
}

.logo-icon {
    background-color: var(--color-pink);
    color: var(--color-white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.logo-text strong {
    color: var(--color-teal);
    font-weight: 700;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-link.active {
    background-color: var(--color-pink);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
}

.nav-link:not(.active):hover {
    color: var(--color-pink);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-btn {
    background-color: var(--color-teal);
    color: var(--color-white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition);
}

.cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 10px rgba(38, 198, 218, 0.3);
}

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

/* Hero Section */
.hero {
    padding: 60px 0;
    overflow: hidden;
}

.hero-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-purple);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--color-text);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    background-color: var(--color-white);
    padding: 20px;
    transform: rotate(2deg);
    transition: var(--transition);
}

.hero-image-wrapper:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-md);
    display: block;
}

.floating-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background-color: var(--color-yellow);
    color: var(--color-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    animation: bounce 2s infinite ease-in-out;
}

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

/* Marquee */
.marquee {
    background-color: var(--color-purple);
    color: var(--color-white);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    animation: scroll 20s linear infinite;
}

.marquee-content span {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-right: 40px;
    font-weight: 500;
    font-size: 1.1rem;
}

.marquee-content span i {
    color: var(--color-yellow);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Features */
.features {
    padding: 80px 0;
    background-color: var(--color-white);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.icon-pink { background-color: var(--color-pink); color: var(--color-white); }
.icon-yellow { background-color: var(--color-yellow); color: var(--color-white); }
.icon-teal { background-color: var(--color-teal); color: var(--color-white); }

.feature-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-desc {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

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

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 5px;
}

.section-subtitle {
    color: var(--color-text-light);
}

.view-all {
    color: var(--color-pink);
    font-weight: 600;
    text-decoration: underline;
}

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

.product-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-img {
    height: 200px;
    overflow: hidden;
    padding: 15px;
    background-color: #f9f9f9;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: var(--transition);
}

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

.product-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    margin-bottom: 15px;
    flex: 1;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-purple);
    margin-bottom: 15px;
}

.btn-add {
    width: 100%;
    background-color: var(--color-teal);
    color: var(--color-white);
    border-radius: var(--radius-full);
    padding: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.btn-add:hover {
    background-color: #20a6b7;
}

/* CTA Section */
.cta {
    padding: 40px 0 80px;
}

.cta-box {
    background-color: var(--color-pink);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn-cta:hover {
    background-color: #f8f8f8;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--color-purple);
    color: var(--color-white);
    padding: 60px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    max-width: 300px;
}

.footer-subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

.footer-links a, .footer-links li {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-description {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 40px;
        width: 100%;
        max-width: 500px;
    }
    
    .features-container {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(253, 248, 250, 0.98);
        padding: 20px;
        border-bottom: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
    }
    
    .nav.active {
        display: block;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-text {
        margin: 0 auto;
    }
}
