/* =========================================================
   LUXORA CLOTHING — Design System
   Font stack : Poppins (display) / Inter (body)
   Palette    : cream #FDF6F0 · coral #E8604C · ink #221D1B
   ========================================================= */

* {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

/* ---------- Header ---------- */
#site-header {
  background: rgba(253, 246, 240, 0);
}
#site-header.scrolled {
  background: rgba(253, 246, 240, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(34, 29, 27, 0.06), 0 12px 24px -18px rgba(34, 29, 27, 0.25);
}

.nav-link {
  position: relative;
  color: #221D1B;
  padding-bottom: 4px;
  transition: color .2s ease;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  background: #E8604C;
  transition: width .25s ease;
  border-radius: 2px;
}
.nav-link:hover,
.nav-link.active-link {
  color: #E8604C;
}
.nav-link:hover::after,
.nav-link.active-link::after {
  width: 100%;
}

.mobile-link {
  padding: 10px 4px;
  border-bottom: 1px solid rgba(34,29,27,0.06);
  color: #221D1B;
}
.mobile-link:hover { color: #E8604C; }

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #221D1B;
  transition: background .2s ease, color .2s ease;
}
.icon-btn:hover {
  background: #FBE7E1;
  color: #E8604C;
}

/* ---------- Buttons ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #E8604C;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  box-shadow: 0 10px 22px -10px rgba(232, 96, 76, 0.55);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.btn-primary:hover {
  background: #D14E3B;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(232, 96, 76, 0.6);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: #221D1B;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid rgba(34, 29, 27, 0.18);
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}
.btn-outline:hover {
  border-color: #E8604C;
  color: #E8604C;
  background: #FBE7E1;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #E8604C;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: 999px;
  transition: transform .2s ease;
}
.btn-white:hover { transform: translateY(-2px); }

/* ---------- Section helpers ---------- */
.eyebrow {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #E8604C;
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #221D1B;
  letter-spacing: -0.01em;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #E8604C;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  transition: gap .2s ease;
}
.link-arrow::after {
  content: "→";
}
.link-arrow:hover { gap: 10px; }

/* ---------- Hero decorative ---------- */
.hero-circle {
  position: absolute;
  inset: 6% -6% 6% auto;
  width: 92%;
  aspect-ratio: 1/1;
  margin: auto 0;
  right: -4%;
  background: radial-gradient(circle at 35% 30%, #F6A48F 0%, #E8604C 60%, #D14E3B 100%);
  border-radius: 50%;
  opacity: 0.9;
  z-index: 0;
}

.decor-leaf {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.decor-leaf-1 { top: 8%; right: 6%; }
.decor-leaf-2 { bottom: 4%; left: 2%; display: none; }
@media (min-width: 1024px) {
  .decor-leaf-2 { display: block; }
}

.decor-dot {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}
.decor-dot-1 {
  width: 14px; height: 14px;
  background: #E8604C;
  top: 14%; right: 18%;
  opacity: .5;
}
.decor-dot-2 {
  width: 22px; height: 22px;
  border: 2px solid #E8604C;
  bottom: 10%; right: 4%;
  opacity: .35;
}

/* ---------- Trust card ---------- */
.trust-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border-radius: 1.25rem;
  padding: 14px 20px;
  box-shadow: 0 18px 36px -20px rgba(34, 29, 27, 0.25);
}
.avatar-ring {
  width: 34px; height: 34px;
  border-radius: 999px;
  object-fit: cover;
  border: 2.5px solid #fff;
}
.stars {
  color: #E8604C;
  letter-spacing: 1px;
}

/* ---------- Feature strip ---------- */
.feature-strip {
  background: #fff;
  border-radius: 1.5rem;
  padding: 22px 28px;
  box-shadow: 0 18px 40px -26px rgba(34, 29, 27, 0.25);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .feature-strip { grid-template-columns: repeat(4, 1fr); }
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.feature-icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 999px;
  background: #FBE7E1;
  color: #E8604C;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Category cards ---------- */
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 1.5rem;
  padding: 18px 14px 20px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 30px -18px rgba(34, 29, 27, 0.3);
}
.category-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 1.1rem;
  box-shadow: 0 10px 18px -12px rgba(34, 29, 27, 0.35);
}

/* ---------- Product cards ---------- */
.product-card {
  position: relative;
  background: #fff;
  border-radius: 1.5rem;
  padding: 10px;
  transition: transform .25s ease, box-shadow .25s ease;
  border: 1px solid rgba(34,29,27,0.05);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 34px -20px rgba(34, 29, 27, 0.28);
}
.product-card.featured {
  border: 1.5px solid #E8604C;
}
.product-media {
  position: relative;
  border-radius: 1.1rem;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-media img {
  transform: scale(1.06);
}
.badge {
  position: absolute;
  top: 10px; left: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 999px;
  color: #fff;
  z-index: 2;
}
.badge-hot { background: #E8604C; }
.badge-new { background: #3F9D5B; }
.wish-btn {
  position: absolute;
  top: 10px; right: 10px;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(255,255,255,0.9);
  color: #E8604C;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background .2s ease, color .2s ease;
}
.wish-btn:hover { background: #E8604C; color: #fff; }

.swatch {
  width: 14px; height: 14px;
  border-radius: 999px;
  display: inline-block;
}

.add-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 12px;
  background: #E8604C;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 10px;
  border-radius: 999px;
  transition: background .2s ease;
}
.add-cart-btn:hover { background: #D14E3B; }

/* ---------- Promo banner ---------- */
.promo-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #E8604C 0%, #D14E3B 100%);
  border-radius: 2rem;
  padding: 32px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.promo-leaf {
  position: absolute;
  right: 30%;
  top: -20px;
  z-index: 0;
}
.promo-badge {
  flex-shrink: 0;
  width: 84px; height: 84px;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  line-height: 1.25;
}
.promo-image {
  position: relative;
  z-index: 10;
  width: 260px;
  max-width: 40%;
  height: 150px;
  object-fit: cover;
  border-radius: 1.25rem;
  box-shadow: 0 20px 30px -15px rgba(0,0,0,0.4);
}
@media (max-width: 640px) {
  .promo-image { display: none; }
}

/* ---------- Reviews ---------- */
.review-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 26px;
  box-shadow: 0 18px 34px -24px rgba(34, 29, 27, 0.3);
  border: 1px solid rgba(34,29,27,0.05);
}

.rating-strip {
  margin-top: 48px;
  background: #fff;
  border-radius: 1.5rem;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  box-shadow: 0 18px 34px -26px rgba(34, 29, 27, 0.3);
}
@media (min-width: 768px) {
  .rating-strip { grid-template-columns: repeat(4, 1fr); }
}
.rating-stat {
  text-align: center;
  border-right: 1px solid rgba(34,29,27,0.08);
}
.rating-stat:last-child,
.rating-stat:nth-child(2n) { border-right: none; }
@media (min-width: 768px) {
  .rating-stat:nth-child(2n) { border-right: 1px solid rgba(34,29,27,0.08); }
  .rating-stat:last-child { border-right: none; }
}

/* ---------- About ---------- */
.about-circle {
  position: absolute;
  inset: -8%;
  background: radial-gradient(circle at 30% 30%, #F6A48F 0%, #E8604C 55%, transparent 75%);
  opacity: .55;
  border-radius: 3rem;
  z-index: 0;
}
.about-badge {
  position: absolute;
  bottom: -18px; right: -12px;
  background: #fff;
  border-radius: 1.25rem;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 18px 30px -16px rgba(34, 29, 27, 0.3);
  z-index: 20;
}
.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ---------- Contact ---------- */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  border-radius: 1.25rem;
  padding: 18px;
  box-shadow: 0 14px 30px -22px rgba(34, 29, 27, 0.3);
  border: 1px solid rgba(34,29,27,0.05);
}

.contact-form {
  background: #fff;
  border-radius: 1.5rem;
  padding: 28px;
  box-shadow: 0 18px 34px -24px rgba(34, 29, 27, 0.3);
  border: 1px solid rgba(34,29,27,0.05);
}
.form-label {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.78rem;
  color: #221D1B;
  margin-bottom: 6px;
}
.form-input {
  width: 100%;
  border: 1.5px solid rgba(34,29,27,0.12);
  border-radius: 0.9rem;
  padding: 11px 14px;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  background: #FDF6F0;
  transition: border-color .2s ease, background .2s ease;
}
.form-input:focus {
  outline: none;
  border-color: #E8604C;
  background: #fff;
}
.form-input.invalid {
  border-color: #E8604C;
  background: #FBE7E1;
}

/* ---------- Footer ---------- */
.social-btn {
  width: 36px; height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
}
.social-btn:hover { background: #E8604C; transform: translateY(-2px); }

.newsletter-input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: #fff;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-input:focus { outline: none; border-color: #E8604C; }
.newsletter-btn {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 999px;
  background: #E8604C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}
.newsletter-btn:hover { background: #D14E3B; }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: #E8604C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 26px -12px rgba(232, 96, 76, 0.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease;
  z-index: 50;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { background: #D14E3B; }

/* ---------- Scroll reveal ---------- */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  animation: none;
}
.reveal-up.in-view {
  animation: revealUp .7s cubic-bezier(.22,.68,.32,1) forwards;
}
@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up { opacity: 1; transform: none; animation: none; }
  * { scroll-behavior: auto !important; }
}
