@import url('https://fonts.googleapis.com/css?family=Playfair+Display:700,400|Montserrat:400,500&display=swap');
@font-face {
  font-family: 'Breathney';
  src: url('fonts/breathney/Breathney\ Demo.ttf')
}

:root {
  --main-bg: #e8e0da;
  --accent: #beb2a4;
  --text-dark: #2d2c2a;
  --text-light: #847c72;
  --white: #fff;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--main-bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }
img, video, canvas, svg { max-width: 100%; height: auto; display: block; }

/* NAVBAR */
/* NAVBAR */
.custom-navbar {
  width: 100%;
  background: transparent !important;
  position: absolute;
  top: 0; left: 0;
  z-index: 100;
  box-shadow: none;
  transition: background 0.3s;
}

.navbar-top, .navbar-bottom {
  width: 100%;
  left: 0;
}
/* Optional: Add a blur or shadow on scroll */
.custom-navbar.scrolled {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 1px 8px #ccc3;
}
.navbar-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 2vw 8px 2vw;
  width: 100%;
  gap: 36px;
  position: relative;
}
.navbar-logo {
  flex: 1;
  font-family: 'Breathney';
  font-weight: bold;
  font-size: 1.35rem;
  text-align: center;
  color: #23292f;
  user-select: none;
  margin-left: 4vw;
}
.navbar-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.13); /* semi-transparent white, adjust as needed */
  width: 100%;
  max-width: 340px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.22); /* subtle border for visibility */
  border-radius: 24px;
  position: relative;
  padding: 0;
  box-shadow: 0 2px 8px rgba(80,80,80,0.07);
  backdrop-filter: blur(4px); /* optional: glass effect */
}
.navbar-search input[type="text"] {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 48px 0 14px;
  background: transparent;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222;
  letter-spacing: 0.04em;
}
.navbar-search input[type="text"]::placeholder {
  color: #888;
  opacity: 1;
}
.search-btn {
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #f6f7f900;
  border: 1px solid #bdbdbd;
  border-radius: 6px;
  cursor: pointer;
  transition: border 0.2s, box-shadow 0.2s;
  z-index: 2;
  border: none;
}
.search-btn:hover {
  border-color: #a98a6f;
  box-shadow: 0 1px 4px rgba(170, 150, 110, 0.09);
}
.search-btn i {
  color: #23292f;
  font-size: 1.07rem;
}

.navbar-icons {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
  margin-right: 2vw;
}
.navbar-icons a {
  color: #23292f;
  font-size: 1.19rem;
  transition: color 0.17s;
}
.navbar-icons a:hover {
  color: #bc9a7e;
}
.navbar-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
  padding: 8px 0 2px 0;
  background: #ffffff00;
}
.navbar-bottom a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.93rem;
  letter-spacing: 0.18em;
  color: #22292f;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 400;
  padding: 2px 2px;
  transition: color 0.18s;
}
.navbar-bottom a:hover {
  color: #a98a6f;
}
@media (max-width: 950px) {
  .navbar-bottom { gap: 14px; font-size: 0.89rem; }
  .navbar-logo { font-size: 1rem; }
  .navbar-search { max-width: 180px; }
}
@media (max-width: 700px) {
  .navbar-top { flex-direction: column; gap: 14px; }
  .navbar-search { max-width: 90vw; width: 100%; }
  .navbar-bottom { flex-wrap: wrap; gap: 11px; font-size: 0.85rem; }
}

/* --- The rest of your CSS (hero section, about-section, collection, etc) stays the same! --- */

/* FULLSCREEN HERO */
.hero-section {
  position: relative;
  width: 100vw;
  height: 100vh; /* FULL PAGE HEIGHT */
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(90deg, #e8e0da88 50%, rgba(255,255,255,0.05) 100%);
  z-index: 2;
  pointer-events: none;
}

.hero-overlay::after {
  content: "";
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.11) 0%, rgba(0,0,0,0.08) 60%, transparent 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #181716;
  padding-top: 245px; /* Adjust based on logo height */
}
.hero-logo {
 position: absolute;
  top: -17px;         /* Move as high as you want */
  left: 50%;
  transform: translateX(-50%);
  width: 330px;   /* or whatever large size */
  height: auto;
  /* Optional: add some negative top margin if you want it to overlap hero-content's top edge */
}

.hero-brand {
  font-family: 'Playfair Display', serif;
  font-size: 2.3rem;
  font-weight: bold;
  letter-spacing: 0.11em;
  color: #705943;
  display: block;
  margin-bottom: 0.2em;
}
.hero-accent-dot {
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background: #695441;
  border-radius: 50%;
  margin-left: 0.32em;
  vertical-align: middle;
}
.hero-content h2 {
  font-family: Breathney;
  font-size: 1.1rem;
  margin: 0 0 0.6em 0;
  font-weight: 550;
  color: #695441;
  letter-spacing: 0.25em;
}

.hero-btn {
  background: #89735f;
  color: #ffffff;
  padding: 0.85em 2.5em;
  border-radius: 32px;
  border: none;
  font-weight: 600;
  font-size: 1.15rem;
  margin-top: 2vw;
  box-shadow: 0 3px 20px #beb2a433;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hero-btn:hover {
  background: #beb2a4;
  color: #fff;
  box-shadow: 0 10px 40px #beb2a4cc;
  transform: translateY(-2px) scale(1.04);
}
@media (max-width: 700px) {
  .hero-content h2 { font-size: 1.2rem; }
  .hero-brand { font-size: 1.3rem; }
  .hero-content { padding: 0 2vw; }
}
@media (max-width: 700px) {
  .hero-logo {
    width: 149px;
    top: -24px;
  }
  .hero-content h1 {
    margin-top: 85px;
  }
}

/* Main content grid */
.main-content {
  padding: 2vw 5vw 4vw 5vw;
  display: flex;
  flex-direction: column;
  gap: 5vw;
  position: relative;
  z-index: 11;
  background: var(--main-bg);
  
}

/* ABOUT US SECTION - EVEN BIGGER IMAGES */
/* ABOUT US SECTION (fixed mobile visibility for Learn More) */
.about-section-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 100px 8vw 70px 8vw;
  background: var(--main-bg, #e8e0da);
  max-width: 1400px;
  margin: 0 auto;
  height: auto;              /* was: fixed 700px – removed */
  min-height: 520px;         /* keeps generous desktop height without cropping */
}

.about-img-art-wrap {
  position: relative;
  width: 320px;
  height: 480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-art-wrap::before {
  content: "";
  position: absolute;
  left: 50%; top: 54%;
  width: 105%; height: 113%;
  transform: translate(-50%, -50%) scale(1.07) rotate(-8deg);
  background: radial-gradient(ellipse at 70% 80%, #e8e0da 60%, #cfb99822 100%);
  z-index: 0;
  filter: blur(2.5px);
}
.about-img-art {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: 999px / 50%;
  border: 5px solid #fff;
  box-shadow: 0 12px 48px 0 #beb2a455;
  position: relative;
  z-index: 2;
  transition: transform 0.33s cubic-bezier(.36,1.56,.37,.87), box-shadow 0.3s;
}
.about-img-art:hover { transform: scale(1.04) rotate(-1deg); box-shadow: 0 22px 64px 0 #beb2a499; }
@media (max-width: 700px) {
  .about-img-art-wrap { width: 160px; height: 240px; }
}

.about-text-col {
  flex: 1 1 360px;
  padding-left: 2vw;
  color: var(--text-dark, #2d2c2a);
  font-family: 'Montserrat', 'Playfair Display', serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 3; /* ensure link is always clickable above any decorative layers */
}
.about-text-col h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin: 0 0 1.3rem 0;
  letter-spacing: 0.01em;
  color: #181513;
  text-shadow: 0 2px 16px #eee5;
}
.about-text-col p {
  font-size: 1.22rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
  color: #3e3832;
}
.about-accent { font-family: 'Playfair Display', serif; color: var(--accent, #beb2a4); font-weight: 600; font-size: 1.13em; letter-spacing: 0.02em; }
.about-tagline {
  font-style: italic;
  font-size: 1.14rem;
  color: #988c7a;
  letter-spacing: 0.04em;
  margin-top: 1.4rem;
  border-left: 4px solid #beb2a4;
  padding-left: 1.2em;
}

/* Learn More link – visible & centered on mobile */
.about-learn-more {
  color: #8d6d4f;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  cursor: pointer;
  transition: color 0.18s, border-bottom 0.17s;
  display: inline-flex;
  align-items: center;
  gap: .35em;
  margin-top: .9rem;
  align-self: flex-start;
}
.about-learn-more:hover { color: #5c432e; border-bottom: 1.5px solid #8d6d4f; }

@media (max-width: 1050px) {
  .about-section-new {
    flex-direction: column;
    padding: 60px 3vw 40px 3vw;
    gap: 32px;
    min-height: unset; /* allow full height content on mobile */
  }
  .about-img-col { justify-content: center; margin-bottom: 10px; }
  .about-text-col { padding-left: 0; text-align: center; }
  .about-tagline {
    border-left: none;
    border-top: 3px solid #beb2a4;
    padding-left: 0;
    padding-top: 0.7em;
    margin-top: 2em;
    display: inline-block;
  }
  .about-text-col .about-learn-more { align-self: center; }
}

.about-icon { color: #cfb998; font-size: 1.3em; margin-left: 0.2em; vertical-align: middle; letter-spacing: 0; }
.about-highlight { background: #fff6ed; color: #a77e56; border-radius: 8px; padding: 0.1em 0.45em; font-weight: 500; box-shadow: 0 1px 4px #e0cdb733; }
.about-section-new { background: linear-gradient(120deg, #f7f3ef 60%, #e8e0da 100%); }

@media (max-width: 700px) {
  .about-img-capsule { width: 170px; height: 240px; }
  .about-section-new { gap: 20px; padding: 38px 2vw 18px 2vw; }
  .about-text-col h2 { font-size: 1.7rem; }
  .about-text-col p, .about-tagline { font-size: 1rem; }
}
@media (max-width: 650px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 16px 3vw 12px 3vw;
    position: static;
    background: transparent;
  }
  .nav-links {
    gap: 1.4rem;
    font-size: 1rem;
  }
  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content .logo {
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .btn {
    font-size: 1rem;
    padding: 0.7rem 1.6rem;
  }
  .about-gallery {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .about-text {
    margin-left: 0;
    margin-top: 16px;
    max-width: 100%;
  }
  .product-card img {
    height: 130px;
  }
}


.new-collection-fullbg {
  position: relative;
  width: 100vw;
  height: 58vh;
  min-height: 420px;
  max-height: 800px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: #e8e0da;
  padding: 0;
   margin: 0;
  padding: 0;
  left: 0; /* Adjusted to center the background */
}

.new-collection-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.collection-gradient-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(90deg, #f5f0eaee 26%, rgba(245,240,234,0.02) 85%);
  z-index: 2;
  pointer-events: none;
}

.new-collection-content {
  position: absolute;
  z-index: 3;
  top: 18%;
  left: 7vw;
  color: #181716;
  font-family: 'Playfair Display', serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.collection-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.08rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #b5a48f;
  margin-bottom: 1.1em;
  font-weight: 500;
}

.new-collection-content h2 {
  font-size: 3.8vw;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.05;
  margin: 0 0 1.6vw 0;
  color: #181716;
  position: relative;
  text-shadow: 0 2px 24px #eee5;
}

.collection-dot {
  display: inline-block;
  width: 0.42em;
  height: 0.42em;
  background: #cfb998;
  border-radius: 50%;
  margin-left: 0.32em;
  vertical-align: middle;
}

.collection-link {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.18rem;
  color: #23201e;
  text-decoration: none;
  font-weight: 500;
  margin-top: 2.5vw;
  display: inline-flex;
  align-items: center;
  background: rgba(255, 246, 241, 0.85);
  padding: 0.7em 2.1em;
  border-radius: 32px;
  box-shadow: 0 2px 16px #dfcdb430;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.collection-link .arrow {
  margin-left: 10px;
  font-size: 1.2em;
  transition: margin-left 0.2s;
}
.collection-link:hover {
  background: #beb2a4;
  color: #fff;
  box-shadow: 0 8px 24px #beb2a440;
}
.collection-link:hover .arrow {
  margin-left: 16px;
}
.main-content, .container {
  padding: 0;    /* Or set just a small value, e.g., 24px 0; */
  margin: 0 auto;
  max-width: 100vw;  /* Or your desired width */
  padding-top: 130px;
}

@media (max-width: 900px) {
  .new-collection-fullbg{
    height: 52vh;          /* fluid height, similar feel to desktop */
    min-height: 360px;     /* prevent squashing */
    max-height: 620px;
  }
  .new-collection-content{
    left: 6vw;             /* match desktop left offset feel */
    top: 16%;              /* pull text down a bit (was too high) */
  }
  .new-collection-content h2{
    /* fluid, elegant size: never tiny, never huge */
    font-size: clamp(34px, 9vw, 56px);
    line-height: 1.05;
    letter-spacing: 0.04em;
    margin: 0 0 14px 0;
  }
  .collection-label{
    font-size: clamp(12px, 3.2vw, 16px);
    letter-spacing: 0.22em;
    margin-bottom: 0.9em;
  }
  .collection-link{
    font-size: clamp(14px, 3.6vw, 16px);
    padding: 0.65em 1.4em;
  }
}

/* Phones */
@media (max-width: 600px) {
  .new-collection-fullbg{
    height: 54vh;          /* previously 140px — that was the culprit */
    min-height: 340px;
    max-height: 620px;
  }
  .new-collection-content{
    left: 6vw;
    top: 14%;              /* was -1% which pushed it up */
  }
  .new-collection-content h2{
    font-size: clamp(28px, 12vw, 44px);
    margin-bottom: 12px;
  }
  .collection-label{
    font-size: clamp(11px, 3.4vw, 14px);
  }
  .collection-link{
    font-size: 0.95rem;
    padding: 0.6em 1.2em;
  }
}

/* Keep the image nicely framed across sizes */
.new-collection-bg{
  object-fit: cover;
  object-position: center; /* consistent crop on mobile like desktop */
}

/* Slightly stronger gradient on small screens so text reads clearly */
@media (max-width: 900px){
  .collection-gradient-overlay{
    background: linear-gradient(90deg, #f5f0eaee 60%, rgba(245,240,234,0.02) 100%);
  }
}

/* Catalog section */
.catalog {
  text-align: center;
  margin-top: 48px;
  margin-bottom: 48px;
}

.catalog-desc {
  color: #847c72;
  font-size: 1rem;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px 32px;
  justify-items: center;
  align-items: start;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  background: transparent;
  padding: 0 0 40px 0;
}
.card-link {
  display: block;
  height: 100%;
  width: 100%;
}

/* Remove default link styling */
.card-link {
  text-decoration: none;
  color: inherit;
}

/* Make sure .product-card still fills its parent */
.product-card {
  height: 100%;
  width: 100%;
}
.catalog h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #3d2f1d;
  margin-bottom: 0.45em;
  text-transform: capitalize;
}

.catalog-desc {
  font-size: 1.12rem;
  color: #998e80;
  margin-bottom: 2em;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.catalog {
  position: relative;
  z-index: 1;
  background: transparent;
  overflow: visible;
}
.catalog::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 10%, #e3d3b5 0%, transparent 65%) no-repeat;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}


.product-card {
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 4px 28px #beb2a435;
  width: 97%;
  max-width: 340px;
  min-width: 220px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 
    box-shadow 0.33s cubic-bezier(.19,1,.22,1), 
    transform 0.33s cubic-bezier(.19,1,.22,1);
  overflow: hidden;
  padding: 1 0 22px 0;
  position: relative;
  cursor: pointer;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(207,185,152,0.08), rgba(255,255,255,0.12));
  opacity: 0;
  transition: opacity 0.22s;
  z-index: 2;
  pointer-events: none;
}
.product-card:hover {
  box-shadow: 0 12px 38px #c5b18a54, 0 2px 4px #d2c2aa22;
  transform: translateY(-10px) scale(1.035);
  z-index: 2;
}
.product-card:hover::before {
  opacity: 1;
}
.product-card img {
  width: 100%;
  height: 255px;           /* or your preferred height */
  object-fit: cover;
  object-position: top;    /* <<< This is the key! */
  border-radius: 0px 0px 0 0;
  margin-bottom: 0;
  background: #f5f2ec;
  display: block;
  transition: transform 0.45s, filter 0.3s;
  filter: brightness(1);
}
.product-card:hover img {
  transform: scale(1.07) rotate(-0.5deg);
  filter: brightness(0.96) blur(0.2px);
}
.card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  margin-top: 24px;
  margin-bottom: 0;
  padding: 0 14px;
  background: none;
}


@media (max-width: 700px) {
  .product-card {
    box-shadow: 0 2px 10px #beb2a433;
    min-height: 220px;
    max-width: 97vw;
    border-radius: 16px;
    padding: 0 0 12px 0;
  }
  .product-card img {
    height: 130px;
    border-radius: 16px 16px 0 0;
  }
}

/* Trending Abayas Section */
.trending-abayas {
  max-width: 1750px;
  margin: 64px auto 0 auto;
  padding: 0 2vw;
}
.trending-abayas-title {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.18em;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 40px;
  color: #23292f;
}
.trending-abayas-row {
  display: flex;
  gap: 38px;
  justify-content: center;
}
.abaya-card {
  background: #fff;
  border-radius: 0px;
  box-shadow: 0 2px 18px #bfa78d22;
  width: 380px;
  min-width: 320px;
  max-width: 400px;
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.abaya-card:hover {
  box-shadow: 0 6px 38px #baa37944;
  transform: translateY(-8px) scale(1.03);
}
.abaya-img-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 0px 0px 0 0;
  overflow: hidden;
  background: #f8f6f4;
}
.abaya-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}
.fav-btn {
  position: absolute;
  top: 18px;
  right: 20px;
  background: #fff7;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  transition: background 0.15s;
}
.fav-btn:hover {
  background: #fff;
  box-shadow: 0 2px 8px #d1c0ab55;
}
.abaya-info {
  padding: 28px 22px 18px 22px;
}
.abaya-price {
  color: #23292f;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.abaya-name {
  color: #23292f;
  font-size: 1.08rem;
  margin-bottom: 17px;
  font-weight: 400;
  min-height: 40px;
  font-family: 'Montserrat', sans-serif;
}
.abaya-colors {
  display: flex;
  gap: 14px;
  align-items: center;
}
.color-dot {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2.2px solid #e6e1d9;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 1px 3px #bbb3;
  transition: border 0.16s, box-shadow 0.16s;
}
.color-dot:hover {
  border: 2.2px solid #bc9a7e;
  box-shadow: 0 4px 10px #baa3792a;
}
.plus-dot {
  color: #998470;
  background: #f7f4f1;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.2px dashed #d9c5b2;
  cursor: pointer;
}
@media (max-width: 1300px) {
  .abaya-img-wrap { height: 380px; }
  .abaya-card { width: 270px; min-width: 210px; }
}
@media (max-width: 900px) {
  .trending-abayas-row { flex-wrap: wrap; gap: 22px; }
  .abaya-card { width: 98vw; max-width: 350px; }
  .abaya-img-wrap { height: 280px; }
}
.testimonial-bg {
  min-height: 65vh;
  background: url('image/footer1.jpeg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  position: relative;
}
.testimonial-header {
  text-align: center;
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}
.testimonial-title {
  font-family: 'Playfair Display', serif;
  color: #7e5036;
  font-size: 3rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.testimonial-script {
  font-family: 'breathney', cursive;
  color: #e9ded7;
  font-size: 2.3rem;
  margin-top: -14px;
  letter-spacing: 0.07em;
}

.testimonial-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.discover-arrow {
  margin-left: 10px;
  font-size: 1.2em;
  /* No background, no border, no circle! */
  display: inline-block;
  line-height: 1;
  color: inherit;
  transition: margin-left 0.2s;
}
.arrow {
  background: rgba(255,255,255,0.6);
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 8px #0002;
  margin: 0 8px;
  transition: background 0.2s;
}
.arrow:hover {
  background: #bb893a;
  color: #fff;
}
.testimonial-card-wrap {
  width: 450px;
  min-height: 370px;
  display: flex;
  position: relative;
  overflow: visible;          /* allow avatar to float above card */
  align-items: center;
  justify-content: center;
  padding-top: 40px;          /* space for the avatar circle */
}
.testimonial-card {
  background: rgba(255,255,255,0.95);
  border-radius: 28px;
  max-width: 430px;
  margin: 0 auto;
  box-shadow: 0 12px 32px #0002;
  text-align: center;
  padding: 56px 36px 38px 36px;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.96) translateX(80px);
  transition: opacity 0.4s, transform 0.45s;
  z-index: 2;
}
.testimonial-card.active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateX(0);
  z-index: 5;
}
.testimonial-avatar {
  position: absolute;
  left: 50%;
  top: -45px;
  transform: translateX(-50%);
  width: 92px;
  height: 92px;
  border-radius: 50%;
  box-shadow: 0 6px 18px #0001;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-avatar img {
  width: 82px;
  height: 82px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
}

.testimonial-stars {
  color: #bb893a;
  font-size: 1.4rem;
  letter-spacing: 0.2em;
  margin-top: 38px;
  margin-bottom: 18px;
}
.testimonial-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: #232323;
}
.testimonial-user {
  font-size: 0.98rem;
  color: #999;
  margin-bottom: 13px;
}
.testimonial-text {
  color: #474747;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.12rem;
  margin-top: 8px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 700px) {
  .testimonial-card-wrap { 
    width: 96vw; 
    min-height: 340px;
    padding-top: 32px;       /* keep avatar visible on small screens */
  }
  .testimonial-card { padding: 40px 10px 40px 10px; max-width: 99vw; }
  .testimonial-title { font-size: 2rem; }
  .testimonial-script { font-size: 1.2rem; }
  .testimonial-avatar { width: 66px; height: 66px; top: -32px;}
  .testimonial-avatar img { width: 58px; height: 58px; }
  .arrow { width: 38px; height: 38px; font-size: 1.5rem; }
}



/* cart button*/ 
.btn-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  border: none;
  background-color: transparent;
  position: relative;
}

.btn-cart::after {
  content: attr(data-quantity);
  width: fit-content;
  height: fit-content;
  position: absolute;
  font-size: 15px;
  color: white;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  opacity: 0;
  visibility: hidden;
  transition: .2s linear;
  top: 115%;
}

.icon-cart {
  width: 24.38px;
  height: 30.52px;
  transition: .2s linear;
}

.icon-cart path {
  fill: rgb(0, 0, 0);
  transition: .2s linear;
}

.btn-cart:hover > .icon-cart {
  transform: scale(1.2);
}

.btn-cart:hover > .icon-cart path {
  fill: rgb(186, 34, 233);
}

.btn-cart:hover::after {
  visibility: visible;
  opacity: 1;
  top: 105%;
}

.quantity {
  display: none;
}
/* From Uiverse.io by devkatyall */ 
/* PROFILE ICON*/

.popup {
  --burger-line-width: 1.125em;
  --burger-line-height: 0.125em;
  --burger-offset: 0.625em;
  --burger-bg: #05050500;
  --burger-color: #333;
  --burger-line-border-radius: 0.1875em;
  --burger-diameter: 2.125em;
  --burger-btn-border-radius: calc(var(--burger-diameter) / 2);
  --burger-line-transition: 0.3s;
  --burger-transition: all 0.1s ease-in-out;
  --burger-hover-scale: 1.1;
  --burger-active-scale: 0.95;
  --burger-enable-outline-color: var(--burger-bg);
  --burger-enable-outline-width: 0.125em;
  --burger-enable-outline-offset: var(--burger-enable-outline-width);
  /* nav */
  --nav-padding-x: 0.25em;
  --nav-padding-y: 0.625em;
  --nav-border-radius: 0.375em;
  --nav-border-color: #ccc;
  --nav-border-width: 0.0625em;
  --nav-shadow-color: rgba(0, 0, 0, 0.2);
  --nav-shadow-width: 0 1px 5px;
  --nav-bg: #eee;
  --nav-font-family: "Poppins", sans-serif;
  --nav-default-scale: 0.8;
  --nav-active-scale: 1;
  --nav-position-left: 0;
  --nav-position-right: unset;
  /* if you want to change sides just switch one property */
  /* from properties to "unset" and the other to 0 */
  /* title */
  --nav-title-size: 0.625em;
  --nav-title-color: #777;
  --nav-title-padding-x: 1rem;
  --nav-title-padding-y: 0.25em;
  /* nav button */
  --nav-button-padding-x: 1rem;
  --nav-button-padding-y: 0.375em;
  --nav-button-border-radius: 0.375em;
  --nav-button-font-size: 17px;
  --nav-button-hover-bg: rgba(232, 224, 218, 0.83);
  --nav-button-hover-text-color: #fff;
  --nav-button-distance: 0.875em;
  /* underline */
  --underline-border-width: 0.0625em;
  --underline-border-color: #ccc;
  --underline-margin-y: 0.3125em;
}

/* popup settings 👆 */

.popup {
  display: inline-block;
  text-rendering: optimizeLegibility;
  position: relative;
}

.popup input {
  display: none;
}

.burger {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  background: var(--burger-bg);
  width: var(--burger-diameter);
  height: var(--burger-diameter);
  border-radius: var(--burger-btn-border-radius);
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: var(--burger-transition);
  outline: var(--burger-enable-outline-width) solid transparent;
  outline-offset: 0;
}

.popup-window {
  transform: scale(var(--nav-default-scale));
  visibility: hidden;
  opacity: 0;
  position: absolute;
  padding: var(--nav-padding-y) var(--nav-padding-x);
  background: var(--nav-bg);
  font-family: var(--nav-font-family);
  color: var(--nav-text-color);
  border-radius: var(--nav-border-radius);
  box-shadow: var(--nav-shadow-width) var(--nav-shadow-color);
  border: var(--nav-border-width) solid var(--nav-border-color);
  top: calc(
    var(--burger-diameter) + var(--burger-enable-outline-width) +
      var(--burger-enable-outline-offset)
  );
  left: var(--nav-position-left);
  right: var(--nav-position-right);
  transition: var(--burger-transition);
  margin-top: 10px;
}

.popup-window legend {
  padding: var(--nav-title-padding-y) var(--nav-title-padding-x);
  margin: 0;
  color: var(--nav-title-color);
  font-size: var(--nav-title-size);
  text-transform: uppercase;
}

.popup-window ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.popup-window ul button {
  outline: none;
  width: 100%;
  border: none;
  background: none;
  display: flex;
  align-items: center;
  color: var(--burger-color);
  font-size: var(--nav-button-font-size);
  padding: var(--nav-button-padding-y) var(--nav-button-padding-x);
  white-space: nowrap;
  border-radius: var(--nav-button-border-radius);
  cursor: pointer;
  column-gap: var(--nav-button-distance);
}

.popup-window ul li:nth-child(1) svg,
.popup-window ul li:nth-child(2) svg {
  color: #000000;
}

.popup-window ul li:nth-child(4) svg,
.popup-window ul li:nth-child(5) svg {
  color: rgb(153, 153, 153);
}

.popup-window ul li:nth-child(7) svg {
  color: red;
}

.popup-window hr {
  margin: var(--underline-margin-y) 0;
  border: none;
  border-bottom: var(--underline-border-width) solid
    var(--underline-border-color);
}

/* actions */

.popup-window ul button:hover,
.popup-window ul button:focus-visible,
.popup-window ul button:hover svg,
.popup-window ul button:focus-visible svg {
  color: var(--nav-button-hover-text-color);
  background: var(--nav-button-hover-bg);
}

.burger:hover {
  transform: scale(var(--burger-hover-scale));
}

.burger:active {
  transform: scale(var(--burger-active-scale));
}

.burger:focus:not(:hover) {
  outline-color: var(--burger-enable-outline-color);
  outline-offset: var(--burger-enable-outline-offset);
}

.popup input:checked + .burger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.popup input:checked + .burger span:nth-child(2) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

.popup input:checked + .burger span:nth-child(3) {
  transform: translateX(
    calc(var(--burger-diameter) * -1 - var(--burger-line-width))
  );
}

.popup input:checked ~ nav {
  transform: scale(var(--nav-active-scale));
  visibility: visible;
  opacity: 1;
}
/* OUR MISSION SECTION */
.our-mission-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 5vw 60px 5vw;
  background: #f7f3ef;
  max-width: 1600px;
  margin: 0 auto 0 auto;
  gap: 48px;
}

.our-mission-img {
  flex: 1 1 460px;
  max-width: 500px;
  display: flex;
  justify-content: center;
}

.our-mission-img img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  object-fit: cover;
  box-shadow: 0 10px 36px #cab69e44;
}

.our-mission-content {
  flex: 2 1 660px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 780px;
  color: #39291b;
  font-family: 'Montserrat', Arial, sans-serif;
}

.our-mission-title {
  font-family: 'breathney', serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #7e5036;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}

.our-mission-lead {
  font-size: 1.17rem;
  color: #644831;
  font-weight: 500;
  margin-bottom: 18px;
}

.our-mission-desc {
  font-size: 1.06rem;
  color: #5a4632;
  margin-bottom: 38px;
  line-height: 1.8;
}

.mission-feedback-btn {
  background: #89735f;
  color: #fff;
  border: none;
  border-radius: 2px;
  padding: 18px 44px;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, transform 0.12s;
  margin-top: 12px;
  display: inline-block;
  box-shadow: 0 3px 20px #beb2a433;
}
.mission-feedback-btn:hover {
  background: #ccaa8a;
  transform: translateY(-2px) scale(1.04);
}

/* Responsive */
@media (max-width: 1100px) {
  .our-mission-section {
    flex-direction: column;
    padding: 50px 2vw 34px 2vw;
    gap: 28px;
  }
  .our-mission-img, .our-mission-content {
    max-width: 97vw;
  }
  .our-mission-content { align-items: center; text-align: center; }
}
@media (max-width: 600px) {
  .our-mission-title { font-size: 1.3rem; }
  .our-mission-section { padding: 18px 2vw 12px 2vw; }
  .mission-feedback-btn { padding: 12px 22px; font-size: 0.97rem; }
  .our-mission-lead { font-size: 1rem; }
  .our-mission-desc { font-size: 0.96rem; }
}

/* ======================================
   1) River-flow marquee banner
   ====================================== */


/* ===== MOBILE FIXES: category cards / product tiles ===== */
@media (max-width: 700px){
  /* Make the grid a comfy single column with side padding */
  .product-grid{
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 14px 40px;
    max-width: 640px;
  }

  /* Keep card look but ensure the image can breathe */
  .product-card{
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 10px #beb2a433;
    min-height: 240px;
    padding: 0 0 12px 0;
  }

  /* The important bit: stop forcing 130px; keep a tall ratio */
  .product-card img{
    height: auto;              /* override earlier 130px */
    aspect-ratio: 4 / 3;       /* consistent framing on phones */
    object-fit: cover;
    object-position: top center;
    border-radius: 18px 18px 0 0;

    /* fallback if aspect-ratio unsupported */
    min-height: 220px;
    max-height: 360px;
    width: 100%;
    display: block;
  }

  .card-label{
    font-size: 0.9rem;
    letter-spacing: .18em;
    margin: 14px 0 10px;
  }
}
