:root {
    --pink: #e91e63;
    --dark-pink: #c2185b;
    --soft-pink: #fce4ec;
    --dark: #2c2c2c;
    --gray: #666;
    --light: #f9f9f9;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }
img { max-width: 100%; height: auto; }
a { text-decoration: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-title { text-align: center; font-size: 42px; margin-bottom: 10px; }
.section-sub { text-align: center; color: var(--gray); margin-bottom: 50px; }
.btn-primary { display: inline-block; background: var(--pink); color: #fff; padding: 15px 40px; border-radius: 50px; font-weight: 600; transition: all .3s; border: none; cursor: pointer; }
.btn-primary:hover { background: var(--dark-pink); transform: translateY(-2px); }
.top-bar { background: var(--dark); color: #fff; font-size: 13px; padding: 8px 0; }
.top-bar .container { display: flex; justify-content: space-between; }
.site-header { background: #fff; padding: 20px 0; position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo a { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 700; color: var(--pink); }
.main-nav ul { display: flex; gap: 30px; list-style: none; }
.main-nav a { color: var(--dark); font-weight: 500; transition: color .3s; }
.main-nav a:hover { color: var(--pink); }
.header-actions { display: flex; gap: 15px; font-size: 20px; align-items: center; }
.header-actions .icon { color: var(--dark); }
.header-actions .cart { position: relative; }
.header-actions .count { position: absolute; top: -8px; right: -10px; background: var(--pink); color: #fff; font-size: 11px; padding: 2px 6px; border-radius: 50%; }
.mobile-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }
.search-bar { display: none; background: var(--light); padding: 15px 0; }
.search-bar input { width: 100%; padding: 12px 20px; border: 1px solid #ddd; border-radius: 50px; }
.hero { background: linear-gradient(135deg, #fff5f7 0%, #fce4ec 100%); padding: 60px 0 80px; position: relative; }
.hero-slider { position: relative; min-height: 480px; }
.slide { display: none; }
.slide.active { display: block; animation: fadeIn .6s; }
@keyframes fadeIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.tagline { display: inline-block; background: var(--pink); color: #fff; padding: 6px 16px; border-radius: 50px; font-size: 13px; margin-bottom: 20px; }
.hero-text h1 { font-size: 56px; line-height: 1.15; margin-bottom: 20px; }
.hero-text p { font-size: 18px; color: var(--gray); margin-bottom: 30px; }
.hero-image img { width: 100%; border-radius: 20px; }
.slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; }
.slider-dots .dot { width: 12px; height: 12px; background: #fff; border-radius: 50%; cursor: pointer; opacity: .5; }
.slider-dots .dot.active { opacity: 1; background: var(--pink); }
.trust-bar { background: #fff; padding: 30px 0; border-bottom: 1px solid #eee; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; text-align: center; }
.trust span { font-size: 28px; display: block; margin-bottom: 5px; }
.trust p { font-weight: 500; font-size: 14px; }
.categories { padding: 80px 0; }
.cat-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; }
.cat-card { text-align: center; color: var(--dark); transition: transform .3s; }
.cat-card:hover { transform: translateY(-8px); }
.cat-img { height: 140px; border-radius: 15px; display: flex; align-items: center; justify-content: center; font-size: 48px; margin-bottom: 12px; }
.cat-card h3 { font-size: 16px; font-weight: 500; }
.featured { padding: 80px 0; background: var(--light); }
.featured.alt { background: #fff; }
.product-grid ul.products { display: grid !important; grid-template-columns: repeat(4,1fr); gap: 25px; list-style: none; margin: 0 !important; padding: 0 !important; }
.product-grid ul.products li { background: #fff; border-radius: 15px; overflow: hidden; padding: 15px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); transition: transform .3s; }
.product-grid ul.products li:hover { transform: translateY(-5px); }
.product-grid ul.products li img { border-radius: 10px; }
.product-grid ul.products li h2 { font-size: 16px; margin: 10px 0; font-family: 'Poppins', sans-serif; }
.product-grid ul.products li .price { color: var(--pink); font-weight: 600; }
.product-grid ul.products li .button { background: var(--pink); color: #fff; padding: 8px 20px; border-radius: 50px; margin-top: 10px; display: inline-block; font-size: 13px; }
.promo { background: linear-gradient(135deg, #e91e63, #c2185b); color: #fff; padding: 70px 0; text-align: center; }
.promo h2 { font-size: 40px; margin-bottom: 10px; }
.promo p { font-size: 18px; margin-bottom: 25px; }
.promo .btn-primary { background: #fff; color: var(--pink); }
.why-us { padding: 80px 0; }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 30px; text-align: center; }
.why span { font-size: 48px; display: block; margin-bottom: 15px; }
.why h4 { margin-bottom: 8px; font-size: 18px; }
.why p { color: var(--gray); font-size: 14px; }
.testimonials { padding: 80px 0; background: var(--soft-pink); }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.testi { background: #fff; padding: 30px; border-radius: 15px; box-shadow: 0 4px 20px rgba(0,0,0,0.05); }
.stars { margin-bottom: 15px; }
.testi p { font-style: italic; color: var(--gray); margin-bottom: 15px; }
.testi h5 { color: var(--pink); }
.newsletter { background: var(--dark); color: #fff; padding: 70px 0; text-align: center; }
.newsletter h2 { font-size: 36px; margin-bottom: 10px; }
.newsletter p { margin-bottom: 25px; opacity: .8; }
.news-form { max-width: 500px; margin: 0 auto; display: flex; gap: 10px; }
.news-form input { flex: 1; padding: 15px 20px; border: none; border-radius: 50px; }
.news-form button { background: var(--pink); color: #fff; border: none; padding: 15px 35px; border-radius: 50px; cursor: pointer; font-weight: 600; }
.page-hero { background: var(--soft-pink); padding: 80px 0; text-align: center; }
.page-hero h1 { font-size: 48px; margin-bottom: 10px; }
.page-hero p { color: var(--gray); }
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; }
.contact-info h2 { margin-bottom: 20px; }
.contact-info p { margin-bottom: 12px; font-size: 16px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 20px; border: 1px solid #ddd; border-radius: 10px; margin-bottom: 15px; font-family: inherit; }
.contact-form button { width: 100%; }
.site-footer { background: var(--dark); color: #ddd; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.site-footer h3, .site-footer h4 { color: #fff; margin-bottom: 20px; }
.site-footer a { color: #ddd; display: block; margin-bottom: 8px; }
.site-footer a:hover { color: var(--pink); }
.social { display: flex; gap: 12px; margin-top: 15px; font-size: 22px; }
.footer-bottom { border-top: 1px solid #444; padding: 20px 0; text-align: center; font-size: 14px; }
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-text h1 { font-size: 38px; }
    .cat-grid { grid-template-columns: repeat(3,1fr); }
    .trust-grid, .why-grid, .testi-grid { grid-template-columns: repeat(2,1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .product-grid ul.products { grid-template-columns: repeat(2,1fr); }
    .mobile-toggle { display: block; }
    .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.1); }
    .main-nav ul { flex-direction: column; gap: 15px; }
    .main-nav.active { display: block; }
}
@media (max-width: 600px) {
    .section-title { font-size: 30px; }
    .cat-grid, .trust-grid, .why-grid, .testi-grid, .footer-grid, .product-grid ul.products { grid-template-columns: 1fr; }
    .news-form { flex-direction: column; }
    .hero-text h1 { font-size: 30px; }
}