/* Shruti Creation - Saree Landing Stylesheet */
:root {
  --red: #c8102e;
  --red-dark: #9c0c23;
  --burgundy: #5c0a16;
  --maroon: #7a1020;
  --cream: #faf3e8;
  --gold: #d4a744;
  --gold-dark: #b8892e;
  --ink: #3a1c1c;
  --muted: #7a5a52;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(92, 10, 22, 0.12);
  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--burgundy);
  line-height: 1.2;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--red);
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: 0 auto;
}

/* ---------- Top Bar ---------- */
.topbar {
  background: var(--burgundy);
  color: #f6e6c8;
  font-size: 0.85rem;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar a {
  color: #f6e6c8;
}

.topbar .topbar-icons a {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
}

.topbar svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  margin-right: 6px;
  vertical-align: middle;
}

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  box-shadow: 0 2px 12px rgba(92, 10, 22, 0.08);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--red), var(--burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 0 0 3px var(--gold);
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--burgundy);
}

.brand-name span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: var(--ink);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 12px 26px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  border: 2px solid transparent;
  transition: background 0.3s, transform 0.3s;
}

.nav-cta:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.nav-cta:hover::after {
  display: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--burgundy);
  margin: 5px 0;
  border-radius: 3px;
  transition: 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(120deg, rgba(92, 10, 22, 0.9), rgba(156, 11, 35, 0.72)),
    url("../images/shop.jpg") center/cover no-repeat,
    var(--maroon);
  color: var(--cream);
  padding: 110px 0;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  max-width: 640px;
  margin: 0 auto 30px;
  font-size: 1.1rem;
  color: #f3e3c6;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: 0.3s;
}

.btn-red {
  background: var(--red);
  color: var(--white);
}

.btn-red:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--burgundy);
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 167, 68, 0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

/* ---------- Section header ---------- */
.section {
  padding: 90px 0;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head .kicker {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
}

.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin: 8px 0 14px;
}

.section-head p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
}

.divider {
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  border-radius: 4px;
  margin: 16px auto 0;
}

/* ---------- Collections ---------- */
.collections {
  background: var(--cream);
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 26px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(92, 10, 22, 0.18);
}

.card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--red), var(--burgundy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.9);
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}

.card-body {
  padding: 22px;
}

.card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.card-body p {
  color: var(--muted);
  font-size: 0.92rem;
}

.card-tag {
  display: inline-block;
  margin-top: 12px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.85rem;
}

/* ---------- Why Choose Us ---------- */
.features {
  background: linear-gradient(135deg, var(--burgundy), var(--maroon));
  color: var(--cream);
}

.features .section-head h2 {
  color: var(--white);
}

.features .section-head p {
  color: #e7cfae;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 26px;
}

.feature {
  text-align: center;
  padding: 26px 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 167, 68, 0.35);
  border-radius: var(--radius);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.feature h3 {
  color: var(--gold);
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.feature p {
  font-size: 0.9rem;
  color: #f0ddbc;
}

/* ---------- About ---------- */
.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-visual {
  height: 380px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--gold), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
}

.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 18px;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 16px;
}

.about-text ul {
  list-style: none;
  margin: 20px 0;
}

.about-text li {
  padding: 8px 0;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-text li::before {
  content: "✦";
  color: var(--gold);
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--cream);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}

.testi {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--red);
}

.testi .quote {
  font-style: italic;
  color: var(--muted);
  margin-bottom: 16px;
}

.testi .stars {
  color: var(--gold);
  margin-bottom: 8px;
}

.testi .who {
  font-weight: 600;
  color: var(--burgundy);
}

.testi .place {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact {
  background: linear-gradient(135deg, var(--burgundy), var(--maroon));
  color: var(--cream);
}

.contact .section-head h2 {
  color: var(--white);
}

.contact .section-head p {
  color: #e7cfae;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 167, 68, 0.35);
  border-radius: var(--radius);
  padding: 30px;
}

.contact-card h3 {
  color: var(--gold);
  margin-bottom: 18px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-item .ico {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}

.contact-item .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #e7cfae;
}

.contact-item .value {
  color: var(--white);
  font-weight: 500;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-whatsapp:hover {
  background: #1da851;
}

.btn-facebook {
  background: #1877f2;
  color: #fff;
}

.btn-facebook:hover {
  background: #0f63cc;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  color: #e7cfae;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer h4 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 1.05rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  color: #cfcfae;
}

.footer ul a:hover {
  color: var(--gold);
}

.footer .brand-name {
  color: var(--white);
  margin-bottom: 12px;
}

.footer .about-text-sm {
  font-size: 0.9rem;
}

.footer-bottom {
  border-top: 1px solid rgba(212, 167, 68, 0.25);
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #a98d6b;
}

.footer-bottom a {
  color: var(--gold);
}

/* ---------- Policy Pages ---------- */
.page-hero {
  background: linear-gradient(120deg, var(--burgundy), var(--red));
  color: var(--cream);
  padding: 70px 0;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
}

.page-hero p {
  color: #f3e3c6;
}

.policy-body {
  background: var(--cream);
  padding: 60px 0;
}

.policy-content {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
  max-width: 820px;
}

.policy-content h2 {
  font-size: 1.4rem;
  margin: 28px 0 12px;
  color: var(--burgundy);
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p,
.policy-content li {
  color: var(--muted);
  margin-bottom: 12px;
}

.policy-content ul {
  padding-left: 22px;
  margin-bottom: 16px;
}

.policy-content .updated {
  font-size: 0.85rem;
  color: var(--red);
  font-style: italic;
  margin-bottom: 24px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s;
    box-shadow: 0 12px 20px rgba(92, 10, 22, 0.1);
  }

  .nav-links.open {
    max-height: 420px;
  }

  .nav-links li {
    padding: 14px 0;
    border-bottom: 1px solid #f0e3d8;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    display: inline-block;
  }

  .topbar .container {
    justify-content: center;
    text-align: center;
  }

  .hero {
    padding: 70px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .policy-content {
    padding: 26px;
  }
}
