:root {
    --black: #0c1424;
    --charcoal: #102035;
    --gun: #112a45;
    --primary: #102035;
    --accent: #f4c95d;
    --cream: #f7f1e6;
    --white: #ffffff;
    --muted: #5b6b7c;
    --border: #e4e7ed;
    --card: #f7fafc;
    --shadow: 0 20px 50px rgba(0,0,0,0.08);
    --radius: 16px;
    --font: 'Poppins', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--cream);
    color: #0f172a;
    line-height: 1.6;
    overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { max-width: 1220px; }

/* Top bar */
.top-bar {
    background: linear-gradient(90deg, var(--black), var(--gun));
    color: #e8edf3;
    font-size: 14px;
    padding: 8px 0;
}
.top-social a { color: #e8edf3; margin-left: 12px; transition: 0.2s; }
.top-social a:hover { color: var(--accent); }

/* Navbar */
.main-navbar { background: var(--white); box-shadow: 0 8px 30px rgba(15,29,44,0.08); padding: 12px 0; border-bottom: 1px solid #e8edf3; }
.logo-text .logo-title { font-weight: 800; color: var(--black); display: block; line-height: 1; }
.logo-text .logo-sub { font-size: 12px; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }
.navbar-nav .nav-link {
    font-weight: 600; color: #141414 !important; margin: 0 10px; letter-spacing: 0.2px; position: relative;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    content: ''; position: absolute; left: 8px; right: 8px; bottom: -6px; height: 2px; background: var(--accent);
}
.nav-icons { display: flex; align-items: center; gap: 14px; }
.wishlist-icon, .cart-icon, .account-icon { color: #111; font-size: 18px; position: relative; }
.wishlist-count, .cart-count { position: absolute; top: -8px; right: -10px; background: var(--accent); color: var(--black); border-radius: 50%; padding: 2px 6px; font-size: 11px; font-weight: 700; }
.btn-accent { background: var(--accent); color: var(--black); border: none; font-weight: 700; }
.btn-accent:hover { background: #f0b934; color: var(--black); }
.site-logo { height: 46px; width: auto; object-fit: contain; }

/* Buttons */
.btn { border-radius: 999px; font-weight: 700; letter-spacing: 0.2px; }
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-primary:hover { background: #0c6a68; color: #fff; }
.btn-outline { border: 1px solid var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline.btn-sm { padding: 8px 14px; }

/* Promo bar */
.promo-bar { background: linear-gradient(90deg, #0f1d2c, #0c1424); color: #e9edf3; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pill { display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 999px; background: rgba(255,255,255,0.14); color: #f8f9fb; font-weight: 700; font-size: 13px; letter-spacing: 0.2px; }
.pill-accent { background: var(--accent); color: var(--black); }
.pill-light { background: #eaf1f7; color: var(--black); }
.promo-link-btn { background: var(--accent); color: var(--black); padding: 9px 16px; border-radius: 999px; font-weight: 700; }

/* Hero */
.hero-section { padding: 80px 0 70px; position: relative; }
.hero-fashion h1 { font-size: 44px; font-weight: 800; line-height: 1.1; }
.hero-fashion h1 span { color: var(--primary); }
.hero-fashion .lead { font-size: 18px; color: #2f2f2f; margin: 16px 0 24px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; margin-top: 26px; }
.hero-metrics div { background: #fff; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--border); text-align: center; box-shadow: 0 6px 20px rgba(15,29,44,0.06);}
.hero-metrics strong { display: block; font-size: 20px; }
.hero-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.hero-card { position: relative; height: 280px; max-width: 360px; width: 100%; border-radius: 18px; overflow: hidden; background-size: cover; background-position: center; box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
.hero-card__label { position: absolute; left: 10px; bottom: 10px; background: rgba(0,0,0,0.55); color: #fff; padding: 7px 11px; border-radius: 12px; font-weight: 700; letter-spacing: 0.3px; font-size: 13px; }
@media (max-width: 1199px){
  .hero-card { height: 240px; max-width: none; }
}
@media (max-width: 767px){
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { height: 220px; }
}
.hero-overlay-card { position: absolute; bottom: 16px; left: 16px; background: rgba(0,0,0,0.72); color: #fff; padding: 16px 18px; border-radius: 14px; }

/* Trust strip */
.trust-strip { padding: 22px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-pill { background: #f4f4f4; border-radius: 14px; padding: 10px 14px; font-weight: 700; color: #111; box-shadow: 0 10px 24px rgba(0,0,0,0.04); }
.trust-pill i { color: var(--accent); margin-right: 8px; }

/* Urgency chips */
.urgency-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.urgency-chip { padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--border); font-weight: 700; color: #111; }

.section-padding { padding: 64px 0; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; flex-wrap: wrap; margin-bottom: 26px; }
.section-header h2 { font-size: 30px; font-weight: 800; }
.section-link { color: #111; font-weight: 700; text-decoration: underline; }
.eyebrow { text-transform: uppercase; letter-spacing: 2px; color: var(--muted); font-weight: 700; font-size: 12px; }

/* Category cards */
.category-grid .category-card,
.category-card--ghost { background: #fff; border-radius: var(--radius); padding: 14px; border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,0.05); transition: 0.25s; display: block; }
.category-grid .category-card:hover,
.category-card--ghost:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
.category-img { border-radius: 14px; background-size: cover; background-position: center; height: 140px; margin-bottom: 12px; position: relative; }
.category-card h5 { font-weight: 700; margin-bottom: 6px; }
.link-arrow { color: #111; font-weight: 700; font-size: 13px; }
.category-card--ghost .pill { display: inline-flex; margin-top: 8px; }

/* Product cards */
.product-card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: 0 12px 32px rgba(0,0,0,0.06); display: flex; flex-direction: column; height: 100%; position: relative; }
.product-card.compact { box-shadow: 0 10px 26px rgba(0,0,0,0.05); }
.product-card.ghost { background: #0f0f0f; color: #f8f8f8; border-color: #1f1f1f; }
.product-card .product-img { position: relative; background: #fdfdfd; display: grid; place-items: center; padding: 14px; }
.product-card .product-img img { width: 100%; height: 240px; object-fit: cover; border-radius: 12px; }
.product-card .product-actions { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transition: 0.25s; background: rgba(0,0,0,0.48); }
.product-card:hover .product-actions { opacity: 1; }
.product-card .discount-chip { position: absolute; top: 12px; left: 12px; background: #ff3b30; color: #fff; padding: 6px 10px; border-radius: 10px; font-size: 12px; font-weight: 800; }
.product-card .product-info { padding: 16px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.product-category { text-transform: uppercase; letter-spacing: 1px; font-size: 11px; color: var(--muted); margin: 0; }
.product-card h5 { font-size: 16px; font-weight: 700; line-height: 1.4; }
.price-row { display: flex; align-items: baseline; gap: 8px; }
.price-main { font-weight: 800; color: #111; }
.price-mrp { color: #9ca3af; text-decoration: line-through; font-size: 13px; }
.rating-row { display: flex; align-items: center; gap: 8px; }
.stars-inline i { color: #f4b000; font-size: 13px; }
.card-ctas { display: flex; gap: 8px; }
.card-ctas .btn { flex: 1; border-radius: 12px; }
.product-card.ghost .price-main { color: var(--accent); }

/* Newsletter */
.newsletter { background: #111; color: #f7f7f7; border-radius: 24px 24px 0 0; margin-top: 40px; }
.newsletter .eyebrow { color: #c6c6c6; }
.newsletter h3 { font-size: 28px; font-weight: 800; }
.newsletter-form { display: flex; gap: 10px; flex-direction: column; }
.newsletter-form input { padding: 12px 14px; border-radius: 12px; border: none; }
.newsletter .btn-primary { background: var(--accent); color: #111; border: none; }

/* Reviews */
.review-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 18px; box-shadow: 0 12px 26px rgba(0,0,0,0.05); height: 100%; }
.review-card p { margin: 12px 0; color: #1f2937; }
.stars i { color: #ffb703; margin-right: 2px; }

/* Footer */
.footer { background: linear-gradient(180deg, #0d1e33, #0b1624); color: #e8edf3; padding: 56px 0 28px; border-top: 1px solid rgba(255,255,255,0.04); }
.footer a { color: #e8edf3; text-decoration: none; }
.footer a:hover { color: var(--accent); }
.footer-logo { height: 60px; width: auto; background: #fff; border-radius: 14px; padding: 6px 8px; object-fit: contain; box-shadow: 0 10px 25px rgba(0,0,0,0.12); }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; align-items: start; }
.footer-col h4 { font-weight: 800; margin-bottom: 14px; letter-spacing: 0.8px; color: var(--accent); text-transform: uppercase; font-size: 13px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-col li { margin: 0; }
.footer-text { color: rgba(232,237,243,0.82); margin: 12px 0 16px; line-height: 1.7; max-width: 360px; }
.footer-contact { display: grid; gap: 8px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--accent); margin-top: 4px; }
.footer-social { display: flex; gap: 12px; margin-top: 10px; }
.footer-social a { font-size: 18px; }
.footer-bottom { text-align: left; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; margin-top: 28px; font-size: 13px; color: rgba(232,237,243,0.7); }
.site-logo { height: 54px; width: auto; object-fit: contain; }
.footer-logo { height: 64px; width: auto; object-fit: contain; }

/* Product detail page */
.slider-box { overflow: hidden; border-radius: 14px; background: #fff; border: 1px solid var(--border); }
.slide-img { width: 100%; height: 420px; object-fit: contain; background: #fff; }
.thumb-img { border: 1px solid var(--border); padding: 4px; border-radius: 10px; cursor: pointer; }
.price-row .save-tag { background: #ecfdf3; color: #15803d; padding: 4px 10px; border-radius: 999px; font-size: 11px; font-weight: 800; }
.review-form { border-radius: var(--radius); border: 1px solid var(--border); }

.size-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.size-pill { border: 1px solid var(--border); border-radius: 12px; padding: 8px 14px; font-weight: 700; cursor: pointer; }
.size-pill:hover, .size-pill.active { border-color: #111; background: #111; color: #fff; }

/* Shop listing */
.ecommerce-listing h2 { font-weight: 800; }
.ecommerce-grid-card { border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.ecommerce-grid-card .card-img-top { height: 220px; object-fit: cover; }
.discount-chip { font-size: 12px; font-weight: 800; }

/* Cart */
.cart-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.cart-thumb { width: 70px; height: 70px; object-fit: cover; border-radius: 10px; border: 1px solid var(--border); background: #fff; }

/* Responsive */
@media (max-width: 991px) {
    .hero-fashion h1 { font-size: 34px; }
    .nav-icons { margin-left: auto; }
}
@media (max-width: 768px) {
    .hero-section { padding: 64px 0; }
    .hero-visual { min-height: 260px; }
    .hero-metrics { grid-template-columns: repeat(3, 1fr); }
    .section-header h2 { font-size: 26px; }
    .category-img { height: 120px; }
}
@media (max-width: 576px) {
    .pill { width: 100%; justify-content: center; }
    .hero-actions { flex-direction: column; }
    .card-ctas { flex-direction: column; }
}
