/* ============================================================
   Chally's Closet — style.css
   Fonts: Cormorant Garamond (display) + DM Sans (body)
   Palette: Deep rose, warm cream, charcoal, gold accent
============================================================ */

:root {
  --rose:       #c4637a;
  --rose-dark:  #a04d62;
  --rose-light: #f5dde4;
  --cream:      #fdf8f4;
  --charcoal:   #2b2b2b;
  --muted:      #6b6b6b;
  --gold:       #c8a96e;
  --white:      #ffffff;
  --radius:     14px;
  --shadow-sm:  0 4px 18px rgba(0,0,0,0.07);
  --shadow-md:  0 10px 40px rgba(0,0,0,0.12);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  font-size: 15px;
  line-height: 1.7;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
}

em { font-style: italic; color: var(--rose); }

/* ============================================================
   TOP BAR
============================================================ */
.topbar {
  background: var(--charcoal);
  color: rgba(255,255,255,0.85);
  font-size: 12.5px;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.topbar a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color var(--transition);
}
.topbar a:hover { color: var(--gold); }
.topbar-tag {
  background: var(--rose);
  color: #fff;
  padding: 2px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.sitelogo{max-height:70px;transform: scale(1.3);}
/* ============================================================
   NAVBAR
============================================================ */
.main-navbar {
  background: rgba(253, 248, 244, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 99, 122, 0.12);
  padding: 14px 0;
  transition: padding var(--transition), box-shadow var(--transition);
}
.main-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
}
.brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--rose);
  letter-spacing: -0.02em;
}
.navbar-nav .nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--rose);
  background: var(--rose-light);
}

/* ============================================================
   HERO SECTION
============================================================ */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f9e8ee 0%, #fdf0f5 40%, #f5e8df 100%);
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(196,99,122,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(200,169,110,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}
.hero-overlay { display: none; }
.hero-content { position: relative; z-index: 2; }
.hero-sub {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 600;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(52px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--charcoal);
  margin-bottom: 22px;
}
.hero-desc {
  font-size: 17px;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 36px;
}
.btn-hero {
  background: var(--rose);
  color: #fff;
  padding: 14px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: none;
  transition: all var(--transition);
  box-shadow: 0 6px 24px rgba(196, 99, 122, 0.35);
}
.btn-hero:hover {
  background: var(--rose-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(196, 99, 122, 0.45);
}

/* ============================================================
   BADGES / TRUST
============================================================ */
.badges-section {
  background: var(--charcoal);
  padding: 0;
}
.badges-row { border-radius: 0; }
.badge-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.9);
}
.badge-item:last-child { border-right: none; }
.badge-item i {
  font-size: 26px;
  color: var(--gold);
  flex-shrink: 0;
}
.badge-item strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.badge-item span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   SECTION COMMON
============================================================ */
.section-header { margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  background: var(--rose-light);
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(32px, 5vw, 48px);
  color: var(--charcoal);
  margin-bottom: 14px;
}
.section-desc {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
  font-size: 15px;
}

/* ============================================================
   PRODUCTS
============================================================ */
.products-section {
  padding: 100px 0;
  background: var(--cream);
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 5;
  background: var(--rose);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.product-badge.sale { background: var(--gold); color: var(--charcoal); }

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--rose-light);
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 43, 43, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.product-card:hover .product-overlay { opacity: 1; }
.btn-order-now {
  background: var(--white);
  color: var(--rose);
  border: none;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}
.btn-order-now:hover {
  background: var(--rose);
  color: var(--white);
}

.product-info {
  padding: 20px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-info h5 {
  font-size: 18px;
  margin-bottom: 4px;
  color: var(--charcoal);
}
.product-price {
  font-size: 17px;
  font-weight: 600;
  color: var(--rose);
  margin-bottom: 14px;
}
.original-price {
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
  margin-left: 6px;
}
.size-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.size-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.size-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.size-chip input[type="radio"] { display: none; }
.size-chip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 34px;
  border: 1.5px solid #e0d5d5;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  transition: all var(--transition);
  padding: 0 6px;
}
.size-chip input:checked + span {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
}
.size-chip span:hover { border-color: var(--rose); color: var(--rose); }

.btn-add-cart {
  background: var(--charcoal);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 11px 20px;
  transition: all var(--transition);
  margin-top: auto !important;
}
.btn-add-cart:hover {
  background: var(--rose);
  color: var(--white);
}

/* ============================================================
   WHY / ABOUT
============================================================ */
.why-section {
  padding: 100px 0;
  background: var(--white);
}
.why-image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.why-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.why-pill {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--rose);
  color: #fff;
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow-md);
}
.why-desc {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
  margin: 18px 0 28px;
}
.why-features { display: flex; flex-direction: column; gap: 12px; }
.why-feat {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--charcoal);
}
.why-feat i { color: var(--rose); font-size: 18px; flex-shrink: 0; }

/* ============================================================
   STRIP / CTA BANNER
============================================================ */
.strip-section {
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  padding: 80px 0;
}
.strip-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 4vw, 36px);
  font-style: italic;
  color: rgba(255,255,255,0.93);
  margin-bottom: 30px;
  font-weight: 400;
}
.btn-strip-cta {
  background: var(--white);
  color: var(--rose);
  font-weight: 600;
  font-size: 14px;
  padding: 14px 36px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  border: none;
}
.btn-strip-cta:hover {
  background: var(--charcoal);
  color: var(--white);
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--cream);
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.testimonial-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 18px;
}
.testi-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--rose);
}

/* ============================================================
   CONTACT
============================================================ */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--rose-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-item strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info-item a,
.contact-info-item span {
  color: var(--muted);
  text-decoration: none;
  font-size: 14.5px;
}
.contact-info-item a:hover { color: var(--rose); }
.social-row { display: flex; gap: 10px; }
.social-btn {
  width: 40px; height: 40px;
  background: var(--rose-light);
  color: var(--rose);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
  text-decoration: none;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--rose); color: #fff; }
.social-btn.whatsapp:hover { background: #25D366; color: #fff; }

.contact-form-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.cc-input {
  border: 1.5px solid #e8dcd8;
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 14px;
  background: var(--white);
  color: var(--charcoal);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cc-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(196,99,122,0.12);
  outline: none;
}
.btn-contact-send {
  background: var(--rose);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
}
.btn-contact-send:hover {
  background: var(--rose-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   FOOTER
============================================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: 70px 0 30px;
}
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 12px;
}
.footer-about {
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-heading {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13.5px;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-qr-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-qr {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid rgba(255,255,255,0.12);
}
.footer-qr-wrap span {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
}
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 40px 0 20px; }
.footer-copy {
  text-align: center;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

/* ============================================================
   ORDER MODAL
============================================================ */
.order-modal-content {
  border: none;
  border-radius: 18px;
  overflow: hidden;
}
.order-modal-header {
  background: var(--charcoal);
  color: var(--white);
  padding: 20px 28px;
  border-bottom: none;
}
.order-modal-header .modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
}
.order-form-col {
  padding: 28px 28px 28px 28px;
  border-right: 1px solid #f0e9e3;
}
.order-product-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--cream);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 22px;
}
.order-product-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.order-product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--charcoal);
}
.order-product-price {
  color: var(--rose);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 0;
}
.order-qr-col {
  background: linear-gradient(160deg, #fdf8f4 0%, #fae8ee 100%);
  display: flex;
  align-items: stretch;
}
.qr-panel {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.qr-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.qr-sub {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.6;
}
.qr-img-wrap {
  background: var(--white);
  padding: 12px;
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  margin-bottom: 16px;
}
.qr-code-img {
  width: 160px;
  height: 160px;
  object-fit: contain;
  display: block;
}
.qr-amount-box {
  background: var(--rose);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 14px;
}
.qr-note {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.upi-ids {
  background: var(--white);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 12.5px;
  color: var(--muted);
}
.order-modal-footer {
  padding: 18px 28px;
  background: #fdf8f4;
  border-top: 1px solid #f0e9e3;
  gap: 10px;
}
.btn-modal-submit {
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
  flex: 1;
}
.btn-modal-submit:hover {
  background: #1da855;
  color: #fff;
  transform: translateY(-1px);
}
.btn-modal-cancel {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid #e0d5d5;
  border-radius: 50px;
  padding: 12px 24px;
  font-size: 14px;
  transition: all var(--transition);
}
.btn-modal-cancel:hover {
  border-color: var(--charcoal);
  color: var(--charcoal);
}

/* ============================================================
   FORM LABEL STYLE
============================================================ */
.form-label {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-select.cc-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23c4637a' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
}
.btgrid {
    width: 100%;
    overflow: hidden;
}
/* ============================================================
   RESPONSIVE TWEAKS
============================================================ */
@media (max-width: 991px) {
  .why-pill { right: 10px; bottom: 12px; font-size: 12px; }
  .why-img { height: 380px; }
}

@media (max-width: 767px) {
  .hero-section { min-height: 75vh; }
  .badge-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .badge-item:last-child { border-bottom: none; }
  .order-form-col { border-right: none; border-bottom: 1px solid #f0e9e3; padding: 22px; }
  .order-qr-col .qr-panel { padding: 22px; }
  .contact-form-card { padding: 24px 18px; }
  .why-pill { position: static; display: inline-block; margin-top: 14px; }
}

@media (max-width: 575px) {
  .topbar-left, .topbar-right { font-size: 11px; }
  .hero-title { font-size: 42px; }
  .products-section, .why-section, .testimonials-section, .contact-section { padding: 70px 0; }
}