/* ============================================
   FB Fashion Store — Custom Stylesheet
   Palette:
     --rose      #C88D87  (from logo)
     --rose-dark #6E3F3B
     --cream     #FBF4F0
     --ink       #3A2B28
     --gold      #C9A15A
   Type:
     Headings — 'Cormorant Garamond' (serif)
     Body/UI  — 'Poppins' (sans)
   ============================================ */

:root {
  --rose: #c88d87;
  --rose-soft: #e8cfc9;
  --rose-dark: #6e3f3b;
  --cream: #fbf4f0;
  --cream-2: #f5e8e2;
  --ink: #3a2b28;
  --ink-soft: #7a655f;
  --gold: #c9a15a;
  --radius: 2px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.7;
}
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
  color: var(--rose-dark);
  font-weight: 600;
  margin: 0 0 0.5em;
  line-height: 1.2;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: none;
} /* intentionally unused — avoiding tracked-out caps eyebrow cliche */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--rose-dark);
  color: #fff;
}
.btn-primary:hover {
  background: #57302c;
}
.btn-outline {
  border-color: var(--rose-dark);
  color: var(--rose-dark);
  background: transparent;
}
.btn-outline:hover {
  background: var(--rose-dark);
  color: #fff;
}
.btn-whatsapp {
  background: #3d7a5c;
  color: #fff;
}
.btn-whatsapp:hover {
  background: #2f6249;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(251, 244, 240, 0.96);
  border-bottom: 1px solid var(--rose-soft);
  backdrop-filter: blur(6px);
}
.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
}
.brand-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--rose-dark);
  letter-spacing: 0.02em;
}
.brand-text small {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-nav a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.main-nav a.active,
.main-nav a:hover {
  color: var(--rose-dark);
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--gold);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-actions .btn {
  padding: 10px 20px;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--rose-dark);
  cursor: pointer;
}

@media (max-width: 960px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: -300px;
    height: 100vh;
    width: 280px;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 30px;
    gap: 26px;
    transition: right 0.3s ease;
    box-shadow: -6px 0 24px rgba(0, 0, 0, 0.08);
  }
  .main-nav.open {
    right: 0;
  }
  .header-actions .btn-outline-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}

/* ===== Hero ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 560px;
  background: var(--cream);
}
.hero-content {
  padding: 60px 24px 60px 0;
  max-width: 560px;
  justify-self: end;
}
.hero-content h1 {
  font-size: 52px;
  margin-bottom: 0.35em;
}
.hero-content p {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 460px;
  margin-bottom: 30px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-image {
  height: 100%;
  min-height: 560px;
  overflow: hidden;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-content {
    justify-self: stretch;
    padding: 50px 24px 30px;
    order: 2;
  }
  .hero-image {
    order: 1;
    min-height: 320px;
  }
  .hero-content h1 {
    font-size: 36px;
  }
}

/* ===== Section basics ===== */
.section {
  padding: 84px 0;
}
.section-tight {
  padding: 56px 0;
}
.section-head {
  max-width: 620px;
  margin-bottom: 44px;
}
.section-head h2 {
  font-size: 38px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 16px;
}
.bg-soft {
  background: var(--cream-2);
}

/* ===== Category grid ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.cat-card {
  position: relative;
}
.cat-card .frame {
  border: 1px solid var(--rose-soft);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img {
  transform: scale(1.04);
}
.cat-card .cap {
  margin-top: 14px;
}
.cat-card .cap h3 {
  font-size: 21px;
  margin-bottom: 2px;
}
.cat-card .cap span {
  font-size: 13px;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ===== Product grid (shop page) ===== */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 26px;
}
.prod-card .frame {
  border: 1px solid var(--rose-soft);
  overflow: hidden;
  aspect-ratio: 5/6;
}
.prod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.prod-card .cap {
  margin-top: 12px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.prod-card .cap h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  margin: 0;
}
.prod-card .cap span {
  font-size: 12.5px;
  color: var(--ink-soft);
  white-space: nowrap;
}
@media (max-width: 900px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}

.category-band {
  margin-bottom: 64px;
}
.category-band-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--rose-soft);
  padding-bottom: 14px;
  margin-bottom: 28px;
}
.category-band-head h3 {
  font-size: 28px;
  margin: 0;
}
.category-band-head span {
  font-size: 13px;
  color: var(--ink-soft);
}

.enquire-note {
  background: var(--cream-2);
  border: 1px solid var(--rose-soft);
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.enquire-note p {
  margin: 0;
  max-width: 520px;
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* ===== About / feature split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split .frame {
  border: 1px solid var(--rose-soft);
  overflow: hidden;
}
.split img {
  width: 100%;
}
.split h2 {
  font-size: 34px;
}
.split p {
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .split {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* ===== Feature row (why choose us) ===== */
.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: left;
}
.feature {
  padding: 28px;
  border-top: 2px solid var(--gold);
}
.feature .num {
  font-family: "Cormorant Garamond", serif;
  font-size: 15px;
  color: var(--rose);
  margin-bottom: 10px;
}
.feature h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.feature p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
}
@media (max-width: 900px) {
  .feature-row {
    grid-template-columns: 1fr;
  }
}

/* ===== CTA band ===== */
.cta-band {
  background: #3b211f;
  color: #fff;
  padding: 60px 0;
  text-align: center;
}
.cta-band h2 {
  color: #fff;
  font-size: 32px;
}
.cta-band p {
  color: #ebd6d1;
  margin-bottom: 26px;
}
.cta-band .btn-outline {
  border-color: #fff;
  color: #fff;
}
.cta-band .btn-outline:hover {
  background: #fff;
  color: var(--rose-dark);
}

/* ===== Page title band (inner pages) ===== */
.page-title {
  background: var(--cream-2);
  padding: 56px 0;
  text-align: center;
  border-bottom: 1px solid var(--rose-soft);
}
.page-title h1 {
  font-size: 42px;
  margin-bottom: 8px;
}
.page-title .crumb {
  font-size: 13px;
  color: var(--ink-soft);
}
.page-title .crumb a {
  color: var(--rose-dark);
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--rose-soft);
  padding: 34px;
}
.contact-card h3 {
  font-size: 22px;
  margin-bottom: 18px;
}
.contact-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-row i {
  color: var(--rose-dark);
  font-size: 18px;
  margin-top: 3px;
  width: 22px;
}
.contact-row div p {
  margin: 2px 0 0;
  color: var(--ink-soft);
  font-size: 14.5px;
}
.contact-row div strong {
  font-size: 14.5px;
}
.contact-btns {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.map-frame {
  border: 1px solid var(--rose-soft);
  overflow: hidden;
  height: 100%;
  min-height: 360px;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
}
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--rose-dark);
  color: #efdad5;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 46px;
  padding-bottom: 46px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 52px;
  width: 52px;
  border-radius: 50%;
}
.footer-brand span {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  color: #fff;
}
.site-footer p {
  color: #e3c4be;
  font-size: 14px;
}
.site-footer h4 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  margin-bottom: 18px;
}
.site-footer ul li {
  margin-bottom: 10px;
  font-size: 14px;
}
.site-footer ul li a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: #d9b7b1;
}

/* ===== WhatsApp floating button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 600;
  background: #3d7a5c;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
}

/* ===== misc ===== */
.mb-0 {
  margin-bottom: 0;
}
.note-strip {
  background: var(--gold);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 8px 16px;
}

/* ===== Style Gallery (lookbook) ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--rose-soft);
  aspect-ratio: 3/4;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
.gallery-item .tag {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: var(--radius);
}
.gallery-item.wide {
  grid-column: span 2;
}
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-item.wide {
    grid-column: span 2;
  }
}
@media (max-width: 560px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .gallery-item.wide {
    grid-column: span 1;
  }
}

/* ===== Testimonials ===== */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-card {
  background: #fff;
  border: 1px solid var(--rose-soft);
  padding: 32px 28px;
  position: relative;
}
.testi-card .stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testi-card p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0 0 20px;
  font-style: italic;
}
.testi-who {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--rose-soft);
  color: var(--rose-dark);
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testi-who strong {
  display: block;
  font-size: 14px;
  color: var(--ink);
}
.testi-who span {
  font-size: 12.5px;
  color: var(--ink-soft);
}
@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== Newsletter band ===== */
.newsletter-band {
  background: var(--cream-2);
  border-top: 1px solid var(--rose-soft);
  border-bottom: 1px solid var(--rose-soft);
  padding: 56px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.newsletter-inner h2 {
  font-size: 28px;
  margin-bottom: 6px;
}
.newsletter-inner p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin: 0;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form input {
  padding: 14px 18px;
  border: 1px solid var(--rose-soft);
  background: #fff;
  min-width: 260px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: var(--ink);
  border-radius: var(--radius);
}
.newsletter-form input:focus {
  outline: none;
  border-color: var(--rose-dark);
}
@media (max-width: 900px) {
  .newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .newsletter-form {
    width: 100%;
  }
  .newsletter-form input {
    flex: 1;
    min-width: 0;
  }
}

/* ===== Video hero banner ===== */
.hero-video {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2a1d1b;
}
.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(42, 24, 22, 0.78) 0%, rgba(42, 24, 22, 0.45) 55%, rgba(42, 24, 22, 0.15) 100%);
}
.hero-video-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 70px;
  padding-bottom: 70px;
}
.hero-video-content h1 {
  color: #fff;
  font-size: 54px;
  max-width: 640px;
  margin-bottom: 0.35em;
}
.hero-video-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 4px 14px;
  margin-bottom: 18px;
}
.btn-light {
  background: #fff;
  color: var(--rose-dark);
  border: 1px solid #fff;
}
.btn-light:hover {
  background: transparent;
  color: #fff;
}
@media (max-width: 900px) {
  .hero-video { min-height: 560px; }
  .hero-video-overlay { background: rgba(42, 24, 22, 0.6); }
  .hero-video-content h1 { font-size: 34px; }
}

/* videos inside frames / cards */
.frame video, 
.prod-card video,
.gallery-item video {                      
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.frame-video { aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--rose-soft); }
@media (prefers-reduced-motion: reduce) { .hero-video video { display: none; } }
.card-img-top {
  height: 280px;
  object-fit: cover;
}
.bg-danger{
    background-color: #6e3f3b !important;
}
.text-danger{
     color: #6e3f3b !important;
}