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

:root {
  --fnp-pink: #E91C7A;
  --fnp-pink-dark: #C2185B;
  --fnp-ink: #222;
  --fnp-muted: #6b6b6b;
  --fnp-bg: #fff;
  --fnp-soft: #FFF5F9;
  --bs-primary: #E91C7A;
  --theme-accent: #E91C7A;
  --theme-accent-2: #ffd0e6;
  --theme-soft: #FFF5F9;
  --theme-ink: #222;
  --theme-card: #fff;
  --theme-radius: 22px;
  --theme-btn-radius: 999px;
}

html, body {
  background: var(--fnp-bg);
  font-family: Rubik, "Segoe UI", sans-serif;
  color: var(--fnp-ink);
}

.fnp-strip {
  background: #111;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .02em;
  padding: 8px 0;
}
.fnp-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.fnp-strip a { color: #fff; text-decoration: underline; }

.fnp-head {
  background: #fff;
  border-bottom: 1px solid #f1f1f1;
  padding: 14px 0;
}
.fnp-head-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}
.fnp-logo img { max-height: 48px; width: auto; }
.fnp-search {
  flex: 1;
  display: flex;
  background: #f4f4f4;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #eee;
}
.fnp-search input {
  border: 0;
  background: transparent;
  height: 46px;
  padding: 0 18px;
  flex: 1;
  font-size: 14px;
}
.fnp-search button {
  border: 0;
  background: var(--fnp-pink);
  color: #fff;
  width: 52px;
}
.fnp-tools { display: flex; align-items: center; gap: 16px; }
.fnp-tools a {
  color: var(--fnp-ink);
  font-weight: 600;
  font-size: 13px;
  text-align: center;
  line-height: 1.2;
}
.fnp-tools i { display: block; font-size: 20px; margin-bottom: 2px; }
.fnp-tools .quantity,
.fnp-tools .cart-add-num {
  background: var(--fnp-pink) !important;
  color: #fff !important;
  border-radius: 10px;
  padding: 0 6px;
  font-size: 11px;
}

.fnp-iconbar {
  background: #fff;
  border-bottom: 1px solid #f3f3f3;
  padding: 10px 0 14px;
}
.fnp-iconbar ul {
  display: flex;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
}
.fnp-iconbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 92px;
  color: var(--fnp-ink);
  font-size: 12px;
  font-weight: 600;
}
.fnp-iconbar img,
.fnp-icon-fallback {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  background: #ffe4f0;
  margin-bottom: 6px;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(233,28,122,.12);
}
.fnp-icon-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.fnp-hero {
  position: relative;
  margin: 16px auto 8px;
  max-width: 1240px;
  padding: 0 15px;
}
.fnp-hero img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}
.fnp-hero-copy {
  position: absolute;
  left: 48px;
  bottom: 40px;
  background: rgba(255,255,255,.92);
  padding: 22px 26px;
  border-radius: 16px;
  max-width: 420px;
}
.fnp-hero-copy span {
  color: var(--fnp-pink);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.fnp-hero-copy h1 { font-size: 32px; font-weight: 800; margin: 6px 0 10px; }
.fnp-hero-copy a {
  display: inline-block;
  background: var(--fnp-pink);
  color: #fff;
  border-radius: 24px;
  padding: 10px 18px;
  font-weight: 700;
}

.fnp-section { padding: 36px 0; }
.fnp-section h2 {
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 6px;
}
.fnp-section .lead-line {
  color: var(--fnp-muted);
  margin-bottom: 22px;
}

.fnp-occasions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.fnp-occasions a {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  min-height: 210px;
  color: #fff;
}
.fnp-occasions img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.fnp-occasions span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px;
  font-weight: 800;
  font-size: 18px;
  background: linear-gradient(transparent, rgba(0,0,0,.65));
}

.fnp-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--fnp-soft);
  border-radius: 16px;
  padding: 18px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
}
.fnp-trust strong { display: block; color: var(--fnp-pink); font-size: 15px; }

.product-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
  height: 100%;
  padding-bottom: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,.04);
}
.product-item .product-img img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}
.product-item .product-content { padding: 0 12px; }
.product-item .product-name {
  display: block;
  min-height: 42px;
  font-weight: 600;
  font-size: 14px;
  color: var(--fnp-ink);
}
.product-item .new-price { color: var(--fnp-ink); font-weight: 800; font-size: 18px; }
.product-item .old-price { color: #999; text-decoration: line-through; font-size: 13px; margin-left: 6px; }
.fnp-eta { font-size: 12px; color: #2e7d32; font-weight: 600; margin: 4px 0 8px; }
.bb-add, .btn-primary, .btn-secondary, .btn-custom-size-deepak {
  background: var(--fnp-pink) !important;
  border-color: var(--fnp-pink) !important;
  color: #fff !important;
  border-radius: 22px !important;
  font-weight: 700;
  width: 100%;
  padding: 8px 12px;
}
.bb-variant {
  width: 100%;
  margin: 8px 0;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 6px;
}

.header-search-area { position: relative; flex: 0 1 360px; max-width: 360px; }
#suggestions {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 52px;
  background: #fff;
  z-index: 30;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

.footer-top { background: #1b1b1b !important; color: #fff !important; }
.footer-top a, .footer-top p, .footer-top li, .footer-top .widget-title { color: #fff !important; }
.footer-bottom { background: var(--fnp-pink) !important; }

@media (max-width: 991px) {
  .fnp-occasions { grid-template-columns: 1fr 1fr; }
  .fnp-trust { grid-template-columns: 1fr 1fr; }
  .fnp-hero img { height: 240px; }
  .fnp-hero-copy { left: 24px; right: 24px; bottom: 16px; max-width: none; padding: 14px; }
  .fnp-hero-copy h1 { font-size: 20px; }
}

.fnp-listing-banner { position: relative; margin-bottom: 28px; background: #2b0d1c; min-height: 220px; }
.fnp-listing-banner img { width: 100%; height: 280px; object-fit: cover; display: block; }
.fnp-listing-copy {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.62));
  color: #fff; padding: 28px 8%;
}
.fnp-listing-copy span { color: #ffd0e6; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: 12px; }
.fnp-listing-copy h1 { font-size: 36px; font-weight: 800; margin: 6px 0; }
.fnp-listing-toolbar { display: flex; justify-content: flex-end; margin-bottom: 16px; }
.fnp-listing-toolbar select { border: 1px solid #eee; border-radius: 24px; padding: 8px 14px; }
.fnp-listing-side { background: var(--fnp-soft); border-radius: 16px; padding: 16px; margin-bottom: 20px; }
.listing-widget h3 { font-size: 14px; font-weight: 800; margin-bottom: 10px; }
.listing-widget ul { list-style: none; margin: 0; padding: 0; }
.listing-cats-occasion label {
  display: flex; align-items: center; gap: 10px; padding: 8px 0; cursor: pointer; font-weight: 600;
}
.listing-cats-occasion img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.listing-packs { display: flex; flex-wrap: wrap; gap: 8px; }
.listing-packs label { border: 1px solid #f3c3d8; border-radius: 999px; padding: 4px 10px; font-size: 12px; cursor: pointer; }
#product-list.is-loading { opacity: .55; }

.pd-crumb { font-size: 13px; margin: 18px 0; }
.pd-crumb a { color: var(--fnp-pink); font-weight: 700; }
.pd-gallery { border-radius: 18px; overflow: hidden; background: #fff5f9; }
.pd-main img { width: 100%; height: 480px; object-fit: cover; }
.pd-thumbs { display: flex; gap: 8px; padding: 10px; }
.pd-thumbs button { border: 2px solid transparent; padding: 0; background: none; border-radius: 12px; overflow: hidden; }
.pd-thumbs button.is-active { border-color: var(--fnp-pink); }
.pd-thumbs img { width: 72px; height: 72px; object-fit: cover; }
.fnp-detail-buy { padding: 8px 0 8px 8px; }
.fnp-badge { display: inline-block; background: var(--fnp-pink); color: #fff; border-radius: 999px; padding: 4px 10px; font-size: 12px; font-weight: 700; }
.fnp-detail-buy h1 { font-size: 32px; font-weight: 800; margin: 10px 0; }
.fnp-detail-buy .new-price { font-size: 28px; font-weight: 800; }
.fnp-detail-buy .old-price { color: #999; text-decoration: line-through; margin-left: 8px; }
.fnp-detail-actions { display: flex; gap: 10px; margin: 16px 0; }
.variant-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }
.variant-chips input { display: none; }
.variant-chips label { border: 1px solid #f3c3d8; border-radius: 22px; padding: 8px 14px; cursor: pointer; font-weight: 700; }
.variant-chips input:checked + label { background: var(--fnp-pink); color: #fff; border-color: var(--fnp-pink); }
.pd-related { padding: 36px 0 56px; }
.pd-related h2 { font-size: 28px; font-weight: 800; margin-bottom: 18px; }

.fnp-footer { background: #111; color: #ddd; margin-top: 24px; }
.fnp-footer a { color: #fff; }
.fnp-footer-band { background: var(--fnp-pink); color: #fff; padding: 16px 0; font-size: 15px; }
.fnp-footer-band .container { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.fnp-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px; padding: 36px 0; }
.fnp-footer img { max-height: 48px; margin-bottom: 12px; }
.fnp-footer h4 { color: #fff; font-size: 14px; letter-spacing: .08em; text-transform: uppercase; }
.fnp-footer ul { list-style: none; padding: 0; }
.fnp-footer li { margin-bottom: 8px; }
.fnp-footer-bottom { border-top: 1px solid #2a2a2a; padding: 14px 0; }
@media (max-width: 991px) {
  .fnp-footer-grid { grid-template-columns: 1fr 1fr; }
  .pd-main img { height: 300px; }
  .fnp-listing-copy h1 { font-size: 24px; }
}

.breadcrumb-area, .breadcrumb-area[data-bg-image] { background: var(--fnp-soft) !important; background-image: none !important; min-height: 110px; padding: 24px 0; }
.account-page-area, .cart-area { padding-top: 28px; }
.myaccount-tab-trigger .nav-link.active { background: var(--fnp-pink); color: #fff; border-radius: 22px; }
.nav-pills .nav-link { color: var(--fnp-pink) !important; border-color: var(--fnp-pink) !important; border-radius: 22px !important; }
.nav-pills .nav-link.active { background: var(--fnp-pink) !important; color: #fff !important; }
.auth-cake .auth-card { border-radius: 22px; }
.auth-cake .auth-input { border-radius: 6px !important; }
.auth-cake .auth-submit { background: var(--fnp-pink); border-radius: 999px; }
.page-kicker { color: var(--fnp-pink); letter-spacing: .12em; text-transform: uppercase; font-size: 12px; font-weight: 800; }
