/* ============================================================
   LAILA PYJAMA — Feminine & Romantic Stylesheet
   Palette: Blush · Rose · Ivory · Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Tajawal:wght@300;400;500&display=swap');

/* ── CSS Variables ── */
:root {
  --blush:        #F2C4C4;
  --blush-light:  #FAE8E8;
  --blush-deep:   #E8A0A0;
  --rose:         #C97B84;
  --rose-dark:    #A85B65;
  --ivory:        #FDF6F0;
  --ivory-warm:   #F9EDE3;
  --gold:         #C9A96E;
  --gold-light:   #E8D5B0;
  --text-dark:    #3D2B2B;
  --text-mid:     #7A5C5C;
  --text-soft:    #B08A8A;
  --white:        #FFFFFF;
  --shadow-soft:  0 4px 30px rgba(180, 100, 110, 0.10);
  --shadow-card:  0 8px 40px rgba(180, 100, 110, 0.15);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --radius-pill:  100px;
  --transition:   0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Tajawal', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--ivory);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  direction: rtl;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 90% 10%, rgba(242,196,196,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 10% 90%, rgba(201,123,132,0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ── Decorative petal divider ── */
.petal-divider {
  text-align: center;
  margin: 8px 0;
  color: var(--gold);
  letter-spacing: 8px;
  font-size: 1.1rem;
  opacity: 0.7;
}

/* ============================================================
   HEADER & NAV
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(253, 246, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(180, 100, 110, 0.12);
}

.navbar { padding: 0; }

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

/* Brand */
.logo-section { cursor: pointer; display: flex; align-items: center; gap: 10px; }

.brand-name {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  font-style: italic;
  color: var(--rose-dark);
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: color var(--transition);
}
.brand-name:hover { color: var(--gold); }

.brand-tagline {
  font-size: 0.65rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  display: block;
  margin-top: -4px;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-menu a {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--text-mid);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%; right: 50%;
  height: 1.5px;
  background: var(--gold);
  border-radius: 2px;
  transition: left var(--transition), right var(--transition);
}

.nav-menu a:hover {
  color: var(--rose-dark);
  background: rgba(242, 196, 196, 0.25);
}
.nav-menu a:hover::after { left: 14px; right: 14px; }

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-toggle {
  background: transparent;
  border: 1.5px solid var(--blush-deep);
  color: var(--rose-dark);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
}
.lang-toggle:hover {
  background: var(--blush);
  border-color: var(--blush);
  color: var(--rose-dark);
}

.whatsapp-btn {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 12px rgba(37,211,102,0.30);
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 20px rgba(37,211,102,0.45);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--rose-dark);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(160deg, var(--ivory-warm) 0%, var(--blush-light) 50%, var(--ivory) 100%);
  padding: 120px 24px 80px;
}

/* Floating petals decoration */
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(242,196,196,0.35) 0%, transparent 70%);
  top: -100px; right: -200px;
  animation: floatSlow 8s ease-in-out infinite alternate;
}
.hero::after {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.15) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  animation: floatSlow 10s ease-in-out infinite alternate-reverse;
}

@keyframes floatSlow {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(30px, -20px) scale(1.05); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 20px;
  border: 1px solid var(--gold-light);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(6px);
  animation: fadeInDown 0.8s ease both;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 24px;
  animation: fadeInUp 0.9s ease 0.15s both;
}

.hero-tagline em {
  color: var(--rose);
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 40px;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 15px 36px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 28px rgba(168, 91, 101, 0.35);
  transition: all var(--transition);
  animation: fadeInUp 0.9s ease 0.45s both;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(168, 91, 101, 0.45);
  color: white;
}
.hero-cta i { font-size: 1.1rem; }

.hero-scroll {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: var(--text-soft);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: fadeIn 1.2s ease 1s both;
}
.hero-scroll span { display: block; width: 1px; height: 40px; background: var(--blush-deep); animation: scrollPulse 2s ease infinite; }

@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 0.6; }
  50%      { transform: scaleY(0.6); opacity: 1; }
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.collections-container { position: relative; z-index: 1; }

.collection-section {
  padding: 90px 0;
  background: var(--ivory);
}
.collection-section.bg-light {
  background: linear-gradient(180deg, var(--blush-light) 0%, var(--ivory-warm) 100%);
}

.collection-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 20px;
}

.collection-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--text-dark);
  position: relative;
}
.collection-title::after {
  content: '';
  display: block;
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin-top: 10px;
  border-radius: 2px;
}

.collection-discover {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rose-dark);
  border: 1.5px solid var(--blush-deep);
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  transition: all var(--transition);
  white-space: nowrap;
}
.collection-discover::after { content: '←'; font-size: 1rem; }
.collection-discover:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  color: white;
  transform: translateX(-4px);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}

/* Product Card */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.product-img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--blush-light);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img {
  transform: scale(1.06);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}

.product-wishlist {
  position: absolute;
  top: 12px; right: 12px;
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-soft);
  font-size: 0.9rem;
  transition: all var(--transition);
  opacity: 0;
  transform: scale(0.8);
}
.product-card:hover .product-wishlist { opacity: 1; transform: scale(1); }
.product-wishlist:hover { color: var(--rose); background: white; }

.product-info {
  padding: 18px 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.4;
}

.product-desc {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.5;
  flex: 1;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--blush-light);
}

.product-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--rose-dark);
}
.product-price-old {
  font-size: 0.8rem;
  color: var(--text-soft);
  text-decoration: line-through;
  margin-right: 6px;
}

.product-cta-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--blush-light);
  color: var(--rose-dark);
  border: none;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition);
}
.product-cta-btn:hover {
  background: var(--rose-dark);
  color: white;
}

.product-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 280px;
  gap: 12px;
  color: var(--text-soft);
  background: var(--blush-light);
}
.product-placeholder i { font-size: 2.5rem; opacity: 0.4; }
.product-placeholder p { font-size: 0.85rem; }

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, var(--blush-light) 25%, var(--blush) 50%, var(--blush-light) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--rose-dark) 0%, #8B3D45 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 C20 5 5 20 5 30 S20 55 30 55 55 40 55 30 40 5 30 5Z' fill='none' stroke='rgba(255,255,255,0.04)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  opacity: 0.5;
}

.about-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 32px;
}

.about-logo {
  width: 70px; height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.about-logo-placeholder {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  border: 2px solid rgba(255,255,255,0.3);
}

.about h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 400;
  font-style: italic;
  color: white;
}

.about-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.9;
  font-weight: 300;
}

.about-ornament {
  margin: 28px auto;
  color: var(--gold-light);
  font-size: 1.5rem;
  letter-spacing: 12px;
  opacity: 0.7;
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--ivory-warm);
  border-top: 1px solid var(--blush-light);
  border-bottom: 1px solid var(--blush-light);
  padding: 48px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 32px;
  text-align: center;
}

.feature-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }

.feature-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--blush), var(--blush-deep));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--rose-dark);
  box-shadow: 0 4px 16px rgba(201,123,132,0.20);
}

.feature-title {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-dark);
}
.feature-desc {
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.5;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 90px 0;
  background: var(--ivory);
  text-align: center;
}

.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.contact-subtitle {
  font-size: 0.95rem;
  color: var(--text-soft);
  margin-bottom: 52px;
}

.contact-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--white);
  border: 1.5px solid var(--blush-light);
  border-radius: var(--radius-lg);
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  transition: all var(--transition);
  box-shadow: var(--shadow-soft);
  min-width: 170px;
  justify-content: center;
}
.contact-item i {
  font-size: 1.2rem;
  color: var(--rose);
}
.contact-item:hover {
  background: var(--blush-light);
  border-color: var(--blush-deep);
  color: var(--rose-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   WHATSAPP FLOATING
   ============================================================ */
.whatsapp-floating {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 58px; height: 58px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: 1.6rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.40);
  z-index: 999;
  transition: all var(--transition);
  animation: pulse-wa 3s ease infinite;
}
.whatsapp-floating:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
  animation: none;
  color: white;
}

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,0.40); }
  50%      { box-shadow: 0 6px 36px rgba(37,211,102,0.65), 0 0 0 10px rgba(37,211,102,0.10); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 28px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}

.footer-section h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--blush-light);
  margin-bottom: 20px;
  font-weight: 400;
}

.footer-section ul { display: flex; flex-direction: column; gap: 10px; }

.footer-section a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-section a:hover { color: var(--blush); }

.footer-brand {
  text-align: center;
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--blush);
  margin-bottom: 10px;
}
.footer-brand-text {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  max-width: 200px;
  margin: 0 auto 20px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.footer-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition);
}
.footer-social:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-menu {
    display: none;
    position: fixed;
    inset: 76px 0 0 0;
    background: rgba(253,246,240,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 999;
    padding: 40px 24px;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { font-size: 1.1rem; padding: 12px 28px; }
  .hamburger { display: flex; }

  .hero-tagline { font-size: 2.4rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .collection-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .about-header { flex-direction: column; }
  .contact-info { flex-direction: column; align-items: center; }
  .footer-content { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 520px) {
  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero { padding: 100px 20px 60px; }
  .collection-section { padding: 60px 0; }
  .about { padding: 70px 0; }
  .contact { padding: 60px 0; }
  .whatsapp-floating { width: 50px; height: 50px; font-size: 1.4rem; bottom: 20px; left: 20px; }
  .footer-content { grid-template-columns: 1fr 1fr; }
}

/* ── Size tag ── */
.product-size-tag {
  font-size: 0.75rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-size-tag i { color: var(--blush-deep); font-size: 0.7rem; }
.product-img-placeholder {
  width:100%; height:100%; min-height:260px;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  gap:10px; background:var(--blush-light); color:var(--text-soft);
}
.product-img-placeholder i { font-size:2rem; opacity:0.4; }
