@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800;900&family=Pacifico&display=swap');

:root {
    --pink: #f43f7e;
    --pink-hover: #e02d6c;
    --pink-light: #fff0f5;
    --pink-pale: #fce4ef;
    --dark: #1a1a2e;
    --text: #5a5a7a;
    --white: #ffffff;
    --light: #fdf6f9;
    --border: #f0d6e4;
    --yellow: #fbbf24;
    --font: 'Nunito', sans-serif;
    --font-brand: 'Pacifico', cursive;
    --shadow-sm: 0 2px 8px rgba(244, 63, 126, 0.08);
    --shadow-md: 0 6px 24px rgba(244, 63, 126, 0.12);
    --shadow-lg: 0 16px 48px rgba(244, 63, 126, 0.18);
    --radius: 14px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}
h1,h2,h3,h4 { color: var(--dark); font-weight: 800; line-height: 1.25; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-tag { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--pink); display: block; margin-bottom: 0.4rem; }
.section-title { font-size: 2.25rem; font-weight: 900; color: var(--dark); }
.section-title em { color: var(--pink); font-style: normal; }
.section-sub { font-size: 0.93rem; color: var(--text); margin-top: 0.5rem; }

.btn {
    display: inline-flex; align-items: center; gap: 0.4rem;
    padding: 0.7rem 1.75rem; border-radius: 30px;
    font-family: var(--font); font-weight: 700; font-size: 0.9rem;
    cursor: pointer; border: none; transition: var(--transition);
}
.btn-pink { background: var(--pink); color: var(--white); }
.btn-pink:hover { background: var(--pink-hover); transform: translateY(-2px); box-shadow: 0 6px 18px rgba(244,63,126,0.35); }
.btn-outline { background: transparent; color: var(--pink); border: 2px solid var(--pink); }
.btn-outline:hover { background: var(--pink); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: #2a2a4e; transform: translateY(-2px); }

/* ── TOP PROMOBAR ── */
.promobar {
    background: var(--pink);
    color: var(--white);
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.55rem 1rem;
    letter-spacing: 0.02em;
}
.promobar a { color: var(--white); text-decoration: underline; }

/* ── TOP CONTACT BAR ── */
.contactbar {
    background: var(--light);
    border-bottom: 1px solid var(--border);
    font-size: 0.8rem;
    padding: 0.5rem 0;
}
.contactbar-inner {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.contactbar-item { display: flex; align-items: center; gap: 0.35rem; }

/* ── HEADER ── */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.nav-inner {
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.1rem 2rem; max-width: 1200px; margin: 0 auto;
}
.logo { font-family: var(--font-brand); font-size: 2rem; color: var(--pink); }
.logo span { color: var(--dark); }
.nav-links { display: flex; list-style: none; gap: 2rem; }
.nav-link { font-size: 0.9rem; font-weight: 700; color: var(--dark); }
.nav-link:hover, .nav-link.active { color: var(--pink); }
.nav-link.has-dropdown::after { content: ' ▾'; font-size: 0.7rem; }
.nav-actions { display: flex; align-items: center; gap: 1.25rem; font-size: 1.2rem; }
.nav-icon { cursor: pointer; color: var(--dark); position: relative; }
.nav-icon:hover { color: var(--pink); }
.cart-cnt {
    position: absolute; top: -8px; right: -8px;
    background: var(--pink); color: var(--white);
    font-size: 0.65rem; font-weight: 800;
    width: 17px; height: 17px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}

/* ── HERO BANNER ── */
.hero {
    background: linear-gradient(135deg, #fff0f5 0%, #fce4ef 60%, #ffd6e8 100%);
    position: relative; overflow: hidden;
    padding: 4.5rem 2rem;
    min-height: 480px; display: flex; align-items: center;
}
.hero-blobs {
    position: absolute; inset: 0; pointer-events: none; z-index: 0;
}
.hero-blob {
    position: absolute; border-radius: 50%; opacity: 0.18;
}
.hero-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 3rem; align-items: center; position: relative; z-index: 1;
    width: 100%;
}
.hero-tag {
    background: var(--yellow); color: var(--dark);
    font-size: 0.8rem; font-weight: 800; border-radius: 20px;
    padding: 0.3rem 1rem; display: inline-block; margin-bottom: 1rem;
    letter-spacing: 0.04em;
}
.hero-title {
    font-size: 3.8rem; font-weight: 900; line-height: 1.1;
    color: var(--dark); margin-bottom: 1.25rem;
}
.hero-title span { color: var(--pink); }
.hero-subtitle { font-size: 1rem; color: var(--text); margin-bottom: 2rem; }
.hero-imgs { display: flex; justify-content: center; position: relative; }
.hero-main-img {
    width: 380px; height: 420px; object-fit: cover;
    border-radius: 30px 30px 120px 30px;
    box-shadow: var(--shadow-lg);
}
.hero-badge {
    position: absolute; bottom: 30px; right: -10px;
    background: var(--white); border-radius: 12px;
    padding: 0.9rem 1.4rem; box-shadow: var(--shadow-md);
    font-weight: 800; font-size: 0.85rem; text-align: center;
}
.hero-badge-num { font-size: 1.6rem; color: var(--pink); display: block; }

/* ── TRUST STRIP ── */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.trust-grid { display: flex; justify-content: space-around; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; }
.trust-icon { font-size: 1.8rem; }
.trust-label { font-size: 0.85rem; font-weight: 800; color: var(--dark); }
.trust-desc { font-size: 0.75rem; }

/* ── COLLECTION CARDS ── */
.collections-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.collection-card {
    border-radius: var(--radius);
    overflow: hidden; position: relative;
    height: 340px; cursor: pointer;
    transition: var(--transition);
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.collection-card img {
    width: 100%; height: 100%; object-fit: cover;
    transition: var(--transition);
}
.collection-card:hover img { transform: scale(1.05); }
.collection-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, transparent 55%);
    display: flex; flex-direction: column; justify-content: flex-end;
    padding: 2rem;
}
.collection-tag { font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.75); margin-bottom: 0.3rem; }
.collection-name { font-size: 1.4rem; font-weight: 900; color: white; margin-bottom: 1rem; }

/* ── CATEGORY ICON STRIP ── */
.categories-strip {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    background: var(--light);
}
.categories-row {
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.cat-item { text-align: center; cursor: pointer; }
.cat-icon {
    width: 70px; height: 70px; border-radius: 50%;
    background: var(--white); border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; margin: 0 auto 0.6rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.cat-item:hover .cat-icon { border-color: var(--pink); background: var(--pink-light); transform: translateY(-4px); }
.cat-label { font-size: 0.82rem; font-weight: 700; color: var(--dark); }
.cat-nav-btn {
    width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border);
    background: var(--white); cursor: pointer; font-size: 1rem;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    transition: var(--transition);
}
.cat-nav-btn:hover { background: var(--pink); color: white; border-color: var(--pink); }

/* ── PRODUCT GRID ── */
.products-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem;
}
.product-card {
    border: 1px solid var(--border); border-radius: var(--radius);
    overflow: hidden; background: var(--white);
    transition: var(--transition); position: relative;
}
.product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.product-badge {
    position: absolute; top: 0.8rem; left: 0.8rem; z-index: 1;
    background: var(--pink); color: white;
    font-size: 0.72rem; font-weight: 800;
    padding: 0.2rem 0.6rem; border-radius: 20px;
}
.product-badge.new { background: #10b981; }
.product-img-wrap { height: 220px; background: var(--pink-light); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.product-card:hover .product-img { transform: scale(1.06); }
.product-actions {
    position: absolute; top: 0.75rem; right: 0.75rem;
    display: flex; flex-direction: column; gap: 0.4rem;
    opacity: 0; transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; }
.product-action-btn {
    width: 32px; height: 32px; border-radius: 50%;
    background: white; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.9rem; cursor: pointer; transition: var(--transition);
}
.product-action-btn:hover { background: var(--pink); color: white; border-color: var(--pink); }
.product-info { padding: 1.1rem; }
.product-name { font-size: 0.95rem; font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.product-stars { color: var(--yellow); font-size: 0.8rem; margin-bottom: 0.5rem; }
.product-price { font-size: 1rem; font-weight: 800; color: var(--pink); }
.product-price-old { font-size: 0.85rem; text-decoration: line-through; color: var(--text); margin-left: 0.4rem; font-weight: 500; }

/* ── PROMO TICKER ── */
.promo-ticker {
    background: var(--pink-light);
    border-top: 2px dashed var(--pink);
    border-bottom: 2px dashed var(--pink);
    padding: 1rem 0; overflow: hidden; white-space: nowrap;
}
.ticker-track {
    display: inline-block;
    animation: tickerScroll 22s linear infinite;
}
.ticker-item {
    display: inline-block; padding: 0 2rem;
    font-size: 0.9rem; font-weight: 700; color: var(--dark);
}
.ticker-heart { color: var(--pink); }
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── LOOKBOOK SECTION ── */
.lookbook { background: var(--light); }
.lookbook-inner {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.lookbook-text h2 { font-size: 2rem; margin-bottom: 1rem; }
.lookbook-text p { margin-bottom: 2rem; }
.lookbook-items { display: flex; gap: 1.5rem; margin: 2rem 0; }
.lookbook-item {
    flex: 1; text-align: center; cursor: pointer;
    background: var(--white); border-radius: 12px;
    padding: 1rem; border: 1px solid var(--border);
    transition: var(--transition);
}
.lookbook-item:hover { box-shadow: var(--shadow-md); border-color: var(--pink); }
.lookbook-item-img { width: 100%; height: 160px; object-fit: cover; border-radius: 8px; margin-bottom: 0.75rem; }
.lookbook-item-name { font-size: 0.88rem; font-weight: 700; color: var(--dark); }
.lookbook-item-price { font-size: 0.85rem; color: var(--pink); font-weight: 800; }
.lookbook-item-price s { color: var(--text); font-weight: 500; }
.lookbook-photo { border-radius: 20px; overflow: hidden; height: 520px; }
.lookbook-photo img { width: 100%; height: 100%; object-fit: cover; }

/* ── PROMO BANNER ── */
.promo-banner {
    background: linear-gradient(135deg, var(--dark) 0%, #2d2d5e 100%);
    padding: 4rem 2rem;
    display: flex; justify-content: center; align-items: center; gap: 4rem;
    flex-wrap: wrap;
}
.promo-banner-text h3 { color: white; font-size: 1.5rem; }
.promo-banner-text p { color: rgba(255,255,255,0.7); }
.promo-highlight { color: var(--pink); font-size: 2.5rem; font-weight: 900; }

/* ── NEWSLETTER ── */
.newsletter-section { background: var(--white); padding: 4rem 0; }
.newsletter-inner {
    display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 4rem;
    align-items: center; background: var(--pink-light);
    border-radius: 20px; padding: 3.5rem; border: 1px solid var(--pink-pale);
}
.newsletter-form-row {
    display: flex; gap: 0; background: white; border-radius: 50px;
    overflow: hidden; border: 2px solid var(--border); margin-top: 1.5rem;
}
.newsletter-input {
    flex: 1; border: none; outline: none; padding: 0.85rem 1.5rem;
    font-family: var(--font); font-size: 0.9rem; color: var(--dark);
    background: transparent;
}
.newsletter-input::placeholder { color: #aaa; }
.newsletter-btn {
    background: var(--pink); color: white; border: none; cursor: pointer;
    padding: 0.75rem 1.75rem; border-radius: 50px; font-weight: 700;
    font-family: var(--font); font-size: 0.9rem; transition: var(--transition);
    margin: 0.2rem;
}
.newsletter-btn:hover { background: var(--pink-hover); }

/* ── BLOG CARDS ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.blog-card { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); background: white; transition: var(--transition); }
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-img { height: 220px; overflow: hidden; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-body { padding: 1.5rem; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.78rem; margin-bottom: 0.75rem; color: var(--text); }
.blog-meta-icon { color: var(--pink); }
.blog-title { font-size: 1rem; font-weight: 800; color: var(--dark); margin-bottom: 0.75rem; line-height: 1.4; }
.blog-title a:hover { color: var(--pink); }
.blog-excerpt { font-size: 0.85rem; line-height: 1.65; }
.read-more { color: var(--pink); font-size: 0.85rem; font-weight: 700; display: inline-flex; align-items: center; gap: 0.3rem; margin-top: 1rem; }
.read-more:hover { gap: 0.6rem; }

/* ── BRANDS ── */
.brands-section { padding: 4rem 0; background: var(--light); border-top: 1px solid var(--border); }
.brands-grid {
    display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 2rem;
    opacity: 0.6; filter: grayscale(40%);
}
.brand-logo { font-size: 1.1rem; font-weight: 900; color: var(--dark); letter-spacing: -0.01em; }

/* ── FOOTER ── */
footer {
    background: var(--dark); color: rgba(255,255,255,0.65);
    padding: 5rem 0 2rem; font-size: 0.88rem;
}
.footer-top {
    display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 3.5rem; margin-bottom: 4rem;
}
.footer-brand-logo { font-family: var(--font-brand); font-size: 1.8rem; color: var(--pink); margin-bottom: 1.25rem; display: block; }
.footer-col-title { color: white; font-weight: 800; margin-bottom: 1.25rem; font-size: 0.95rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--pink); }
.footer-socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-btn {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.7); font-size: 0.85rem; transition: var(--transition);
}
.social-btn:hover { background: var(--pink); border-color: var(--pink); color: white; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem; display: flex;
    justify-content: space-between; align-items: center; font-size: 0.82rem;
}

/* ── SUBPAGE ── */
.page-hero {
    background: linear-gradient(135deg, #fce4ef 0%, #fff0f5 100%);
    padding: 5rem 0 4rem; text-align: center;
}
.page-hero h1 { font-size: 2.75rem; margin-bottom: 0.75rem; }
.breadcrumb { display: flex; gap: 0.5rem; justify-content: center; font-size: 0.85rem; margin-top: 0.75rem; }
.breadcrumb a { color: var(--pink); }
.breadcrumb span { color: var(--text); }

/* Cart Drawer */
.cart-drawer {
    position: fixed; top: 0; right: -380px; width: 380px; height: 100%;
    background: white; box-shadow: var(--shadow-lg); z-index: 2000;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    display: flex; flex-direction: column;
}
.cart-drawer.open { right: 0; }
.cart-drawer-header { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
.cart-close { background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--dark); }
.cart-drawer-body { flex: 1; overflow-y: auto; padding: 1.5rem; }
.cart-drawer-footer { padding: 1.5rem; border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; font-weight: 800; color: var(--dark); margin-bottom: 1.25rem; font-size: 1.05rem; }
.cart-checkout-btn { width: 100%; padding: 0.9rem; background: var(--pink); color: white; border: none; border-radius: 30px; font-weight: 700; font-family: var(--font); cursor: pointer; font-size: 1rem; transition: var(--transition); }
.cart-checkout-btn:hover { background: var(--pink-hover); }
.cart-item-row { display: flex; justify-content: space-between; align-items: center; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.cart-item-name { font-weight: 700; color: var(--dark); font-size: 0.9rem; }
.cart-item-price { color: var(--pink); font-weight: 700; font-size: 0.9rem; }
.cart-item-remove { background: none; border: none; cursor: pointer; color: #ef4444; font-weight: 700; font-size: 0.8rem; }
.cart-empty { text-align: center; padding: 3rem 1rem; color: var(--text); font-size: 0.95rem; }

/* Toast */
.toast { position: fixed; bottom: 2rem; right: -320px; background: var(--dark); color: white; padding: 1rem 1.5rem; border-radius: 10px; z-index: 3000; transition: right 0.35s ease; font-size: 0.9rem; box-shadow: var(--shadow-lg); border-left: 4px solid var(--pink); }
.toast.show { right: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .hero-inner { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .collections-grid { grid-template-columns: 1fr; }
    .lookbook-inner { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .newsletter-inner { grid-template-columns: 1fr; }
    .trust-grid { flex-wrap: wrap; gap: 1rem; }
}
@media (max-width: 480px) {
    .products-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .hero-title { font-size: 2rem; }
    .categories-row { flex-wrap: wrap; justify-content: center; gap: 1.5rem; }
}
