/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; }

html {
  scroll-behavior: smooth;
}

/* HEADER */
.header {
  width: 100%;
  background: white;
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #eee;
}

.header-container {
  max-width: 1250px;
  margin: auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* HAMBURGER */
.hamburger {
  display: none;
  font-size: 22px;
  cursor: pointer;
}

/* LOGO */
.logo img { height: 50px; }

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
  font-weight: 500;
}

.nav-links a:hover { color: #b68b4c; }

/* MEGA MENU */
.dropdown { position: relative; }

.mega-menu {
  position: absolute;
  top: 35px;
  left: 0;
  width: 450px;
  background: white;
  padding: 20px;
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.dropdown:hover .mega-menu { display: grid; }

.mega-column h4 {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
}

.mega-column a {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  color: #444;
}

/* RIGHT ICONS */
.icons {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 18px;
}

.cart {
  position: relative;
}
.cart-count {
  position: absolute;
  top: -6px;
  right: -10px;
  background: #b68b4c;
  color: white;
  padding: 2px 6px;
  border-radius: 50%;
  font-size: 12px;
}

/* CURRENCY */
.currency {
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  height: 100%;
  background: white;
  z-index: 9999;
  padding: 20px;
  transition: 0.3s;
}

.mobile-menu ul { list-style: none; }
.mobile-menu ul li { margin: 15px 0; }
.mobile-menu a { color: #333; font-size: 18px; text-decoration: none; }

#closeMenu {
  font-size: 30px;
  cursor: pointer;
  display: block;
  text-align: right;
}

/* HERO SLIDER */
.hero-slider {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: none;
}

.slide.active { display: block; }

/* HERO CONTENT */
.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  max-width: 90%;
}

.hero-content h1 {
  font-size: 3rem;
  margin: 10px 0;
  line-height: 1.2;
}

.sub-title { font-size: 1.4rem; opacity: 0.85; }

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #f4e9d8;
  color: #6b4b20;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
}

/* ARROWS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 30px;
  background: rgba(0,0,0,0.4);
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  color: white;
}

.prev { left: 20px; }
.next { right: 20px; }

/* RESPONSIVE */
@media(max-width: 992px) {
  .nav { display: none; }
  .hamburger { display: block; }
}

@media(max-width: 768px) {
  .hero-content h1 { font-size: 2rem; }
  .cta-btn { padding: 10px 20px; }
}
/* ============= GLOBAL SECTION TITLES ============= */
.section-title {
  text-align: center;
  margin: 50px auto 30px;
  max-width: 700px;
  padding: 0 16px;
}

.section-title h5 {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b68b4c;
  margin-bottom: 6px;
}

.section-title h2 {
  font-size: 2rem;
  color: #3b2a23;
  font-weight: 600;
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 1.6rem;
  }
}

/* ============= SHOP BY CATEGORY ============= */
.category-section {
  padding: 50px 0 60px;
  background: #ffffff;
}

.category-slider-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.category-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.category-slider::-webkit-scrollbar {
  height: 6px;
}
.category-slider::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

/* Category Card */
.category-card {
  flex: 0 0 20%;
  min-width: 200px;
  background: #f7f2ea;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.category-card p {
  padding: 12px 8px 16px;
  font-size: 0.95rem;
  font-weight: 500;
  color: #3b2a23;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* Category Arrows */
.cat-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  color: #3b2a23;
  z-index: 5;
}

.cat-arrow.left { left: 10px; }
.cat-arrow.right { right: 10px; }

.cat-arrow i { font-size: 0.9rem; }

@media (max-width: 768px) {
  .category-slider-container {
    padding: 0 16px;
  }
  .category-card {
    flex: 0 0 55%; /* 2 cards visible, 3rd partially */
  }
  .cat-arrow {
    display: none; /* rely on native swipe */
  }
}

/* ============= SHOP BY OCCASION SECTION ============= */
.occasion-section {
  padding: 60px 0;
  background: #faf5ee;
}

.occasion-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.occasion-filters button {
  border: 1px solid #b68b4c;
  background: transparent;
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #3b2a23;
  cursor: pointer;
  transition: all 0.2s ease;
}

.occasion-filters button:hover,
.occasion-filters button.active {
  background: #b68b4c;
  color: #fff;
}

.occasion-feature {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 32px;
  align-items: stretch; /* important */
}

.feature-img img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

.feature-box {
  background: #fff;
  border-radius: 14px;
  padding: 28px 30px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.1);
}

.feature-box h3 {
  font-size: 1.5rem;
  color: #3b2a23;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 0.95rem;
  color: #5b4a3f;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-btn2 {
  display: inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  background: #3b2a23;
  color: #fbeedc;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

.cta-btn2:hover {
  background: #b68b4c;
  color: #fff;
}

@media (max-width: 992px) {
  .occasion-feature {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .feature-box {
    padding: 20px 18px;
  }
}

/* ============= OUR PROMISE SECTION ============= */
.promise-section {
  padding: 60px 0 70px;
  background: linear-gradient(135deg, #fbe7e5, #fff5e9, #ffffff);
}

.promise-text {
  font-size: 0.95rem;
  color: #5b4a3f;
  margin-top: 10px;
}

.promise-grid {
  max-width: 1100px;
  margin: 30px auto 0;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.promise-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.promise-item i {
  font-size: 1.6rem;
  color: #b68b4c;
  margin-bottom: 10px;
}

.promise-item p {
  font-size: 0.95rem;
  color: #3b2a23;
  font-weight: 500;
}

@media (max-width: 768px) {
  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }
}

/* ============= NEW ARRIVALS PRODUCT SLIDER ============= */
.new-arrivals {
  padding: 60px 0 70px;
  background: #ffffff;
}

.product-slider-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}

.product-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
}

.product-slider::-webkit-scrollbar {
  height: 6px;
}
.product-slider::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
}

/* Product Card */
.product-card {
  flex: 0 0 22%;
  min-width: 220px;
  background: #f7f2ea;
  border-radius: 10px;
  overflow: hidden;
  padding-bottom: 14px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.product-card h4 {
  font-size: 0.95rem;
  font-weight: 500;
  color: #3b2a23;
  margin: 10px 10px 6px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 10px;
}

.price .current {
  font-size: 0.95rem;
  font-weight: 600;
  color: #3b2a23;
}

.price .old {
  font-size: 0.85rem;
  color: #8c7a6c;
  text-decoration: line-through;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* Product Arrows */
.prod-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  cursor: pointer;
  color: #3b2a23;
  z-index: 5;
}

.prod-arrow.left { left: 10px; }
.prod-arrow.right { right: 10px; }

.prod-arrow i { font-size: 0.9rem; }

@media (max-width: 768px) {
  .product-slider-container {
    padding: 0 16px;
  }
  .product-card {
    flex: 0 0 60%; /* 1–2 cards visible, next partial */
  }
  .prod-arrow {
    display: none; /* native swipe on mobile */
  }
}
/* ============= DIVINE SAREE COLLECTIONS SECTION ============= */
.divine-section {
  padding: 70px 0;
  /* Light textured / patterned feel */
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 238, 220, 0.55) 0, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(255, 226, 232, 0.5) 0, transparent 40%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.9) 0,
      rgba(255, 255, 255, 0.9) 12px,
      rgba(248, 242, 233, 0.85) 12px,
      rgba(248, 242, 233, 0.85) 24px
    );
}

.divine-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); /* ~60 / 40 */
  gap: 40px;
  align-items: center;
}

/* LEFT COLUMN – COLLAGE WRAPPER */
.divine-visual {
  position: relative;
}

.divine-collage {
  position: relative;
  max-width: 540px;
  margin: 0 auto;
  min-height: 420px;
}

/* Shared image styling */
.divine-img {
  border-radius: 16px;
  object-fit: cover;
  display: block;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

/* Main portrait image */
.divine-img.main-img {
  width: 65%;
  max-width: 350px;
  aspect-ratio: 3 / 4;
  position: relative;
  z-index: 2;
  margin-left: 12%;
}

/* Weave detail (bottom-left overlap) */
.divine-img.detail-img {
  width: 45%;
  max-width: 240px;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-5%, 12%);
  z-index: 3;
}

/* Store image (right-center overlap) */
.divine-img.store-img {
  width: 52%;
  max-width: 300px;
  aspect-ratio: 4 / 3;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(10%, -55%);
  z-index: 1;
}

/* RIGHT COLUMN – TEXT */
.divine-text {
  color: #3b2a23;
}

.divine-text h2 {
  font-size: 2.1rem;
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 600;
}

.divine-text p {
  font-size: 0.98rem;
  line-height: 1.8;
  color: #5b4a3f;
}

.divine-text strong {
  color: #b68b4c;
  font-weight: 600;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 992px) {
  .divine-inner {
    grid-template-columns: 1fr;
    padding: 0 20px;
    gap: 32px;
  }
  .divine-text {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .divine-section {
    padding: 50px 0;
  }
  .divine-collage {
    max-width: 420px;
    min-height: 360px;
  }
  .divine-img.main-img {
    width: 68%;
    margin-left: 8%;
  }
  .divine-img.detail-img {
    width: 48%;
    transform: translate(-2%, 15%);
  }
  .divine-img.store-img {
    width: 58%;
    transform: translate(8%, -50%);
  }
  .divine-text h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .divine-inner {
    padding: 0 16px;
  }
  .divine-collage {
    max-width: 360px;
    min-height: 320px;
  }
  .divine-img.main-img {
    width: 72%;
    margin-left: 5%;
  }
  .divine-img.detail-img {
    width: 50%;
    transform: translate(-4%, 18%);
  }
  .divine-img.store-img {
    width: 60%;
    transform: translate(6%, -48%);
  }
  .divine-text h2 {
    font-size: 1.55rem;
  }
}
/* ============= FOOTER ============= */
.site-footer {
  background: #f7f2ea;
  color: #3b2a23;
  border-top: 1px solid #e1d4c3;
  font-size: 0.9rem;
}

/* Top footer layout */
.footer-top {
  max-width: 1250px;
  margin: 0 auto;
  padding: 40px 40px 30px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.9fr 1.4fr; /* Contact + 3 link groups + Newsletter */
  gap: 30px;
}

.footer-column h4,
.footer-links > summary {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #3b2a23;
}

/* Contact column */
.footer-contact ul {
  list-style: none;
}
.footer-contact li {
  margin-bottom: 6px;
}
.footer-contact a {
  color: #3b2a23;
  text-decoration: none;
}
.footer-contact a:hover {
  color: #b68b4c;
}
.footer-label {
  font-weight: 600;
}

/* Links columns (Shop / Support / User Policy) */
.footer-links {
  border: none;
  padding: 0;
}

.footer-links > summary {
  list-style: none;
  cursor: default;
}

/* Hide default summary triangle */
.footer-links > summary::-webkit-details-marker {
  display: none;
}
.footer-links[open] > summary::after {
  content: "";
}

.footer-links ul {
  list-style: none;
  margin-top: 4px;
}
.footer-links li {
  margin-bottom: 6px;
}
.footer-links a {
  color: #5b4a3f;
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: #b68b4c;
}

/* Newsletter */
.footer-newsletter h4 {
  margin-bottom: 14px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #d5c6b0;
  font-size: 0.9rem;
  outline: none;
  background: #fff;
}

.newsletter-form input::placeholder {
  color: #a18d78;
}

.newsletter-form button {
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #3b2a23;
  color: #fbeedc;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.newsletter-form button:hover {
  background: #b68b4c;
  color: #fff;
}

/* visually-hidden label */
.sr-only {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* Stay connected text */
.footer-connect-text {
  margin-bottom: 10px;
}
.connect-title {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8c6c44;
}
.connect-subtitle {
  font-size: 0.9rem;
  color: #5b4a3f;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #3b2a23;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbeedc;
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-social a:hover {
  background: #b68b4c;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid #e1d4c3;
  margin-top: 10px;
  padding: 12px 40px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

.footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.footer-bottom-left p {
  margin: 0;
  font-size: 0.8rem;
  color: #6c5b4b;
}

/* Payment area */
.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.payment-label {
  font-size: 0.8rem;
  color: #6c5b4b;
}

.payment-logos {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pay-pill {
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #d0c1ac;
  font-size: 0.8rem;
  background: #fff;
  color: #3b2a23;
}

/* ============= RESPONSIVE FOOTER ============= */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 32px 20px 24px;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr;
    padding: 28px 16px 22px;
  }

  /* Turn link groups into real accordions on mobile */
  .footer-links {
    border-top: 1px solid #e1d4c3;
    padding-top: 10px;
  }

  .footer-links > summary {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-links > summary::after {
    content: "+";
    font-weight: 600;
    color: #8c6c44;
  }

  .footer-links[open] > summary::after {
    content: "–";
  }

  .footer-newsletter {
    border-top: 1px solid #e1d4c3;
    padding-top: 14px;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }

  .newsletter-form button {
    width: 100%;
    text-align: center;
  }

  .footer-bottom {
    padding: 12px 16px 16px;
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Subheading inside feature box */
.feature-subtitle {
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #3b2a23;
  font-weight: 600;
}

/* Bullet Points */
.feature-points {
  margin: 10px 0 24px;
  padding-left: 0;
  list-style: none;
}

.feature-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #4d3c2b;
  line-height: 1.45;
}

.feature-points i {
  color: #b68b4c;
  font-size: 1rem;
  margin-top: 3px;
}

/* CTA buttons alignment */
.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* WhatsApp CTA */
.cta-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.06em;
}

.cta-whatsapp i {
  font-size: 1.1rem;
}

.cta-whatsapp:hover {
  background: #1ebe57;
}

/* ============= CONTACT SECTION ============= */
.contact-section {
  background: #faf5ee;
  padding: 60px 0 0;
}

.contact-inner {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 40px 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT SIDE */
.contact-left h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #3b2a23;
  margin-bottom: 20px;
}

.contact-details p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: #4d3c2b;
  line-height: 1.5;
}

.contact-details i {
  color: #b68b4c;
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-details a {
  color: #3b2a23;
  text-decoration: none;
}
.contact-details a:hover {
  color: #b68b4c;
}

/* RIGHT SIDE – FORM */
.contact-right h3 {
  font-size: 1.4rem;
  margin-bottom: 14px;
  color: #3b2a23;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d5c6b0;
  font-size: 0.95rem;
  outline: none;
  background: #fff;
}

.contact-btn {
  padding: 12px 20px;
  border: none;
  background: #3b2a23;
  color: #fbeedc;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.05em;
}
.contact-btn:hover {
  background: #b68b4c;
  color: #fff;
}

/* WhatsApp Button */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: #25d366;
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
}
.whatsapp-btn:hover {
  background: #1ebe57;
}

/* MAP */
.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  margin-top: 20px;
  display: block;
}

/* ============= RESPONSIVE ============= */
@media (max-width: 768px) {
  .contact-inner {
    grid-template-columns: 1fr;
    padding: 0 16px 40px;
  }
  .contact-map iframe {
    height: 260px;
  }
}