:root {
  --navy: #06172a;
  --gold: #b9852f;
  --cream: #fbf7ef;
  --text: #142033;
  --muted: #6f7480;
  --white: #fff;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Cormorant Garamond", Georgia, serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
}
.container {
  width: min(1180px, 92%);
  margin: auto;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
.topbar {
  background: var(--navy);
  color: white;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  padding: 8px 10px;
  letter-spacing: 1px;
}
.navbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(185, 133, 47, 0.22);
}
.navwrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
}
.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}
.brand span {
  font-size: 24px;
  letter-spacing: 2px;
  color: var(--navy);
  font-weight: 700;
}
.menu {
  display: flex;
  gap: 30px;
  font-family: Montserrat, sans-serif;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1.5px;
}
.menu a {
  position: relative;
}
.menu a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: 0.3s;
}
.menu a:hover:after,
.menu a.active:after {
  width: 100%;
}
.hamb {
  display: none;
  font-size: 28px;
  border: 0;
  background: transparent;
  color: var(--navy);
}
.hero {
  position: relative;
  height: 82vh;
  min-height: 560px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  background-size: cover;
  background-position: center;
}
.slide.active {
  opacity: 1;
}
.slide:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(6, 23, 42, 0.78),
    rgba(6, 23, 42, 0.28),
    rgba(6, 23, 42, 0.08)
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
}
.hero-box {
  width: min(650px, 92%);
}
.eyebrow {
  font-family: Montserrat, sans-serif;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}
.hero h1,
.page-hero h1 {
  font-size: clamp(42px, 7vw, 86px);
  line-height: 0.95;
  margin: 18px 0;
  font-weight: 700;
}
.hero p {
  font-size: 22px;
  max-width: 560px;
}
.btns {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
  cursor: pointer;
}
.btn {
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  padding: 14px 26px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: white;
  transition: 0.3s;
}
.btn.outline {
  background: transparent;
  color: white;
}
.btn.dark {
  background: var(--navy);
  border-color: var(--navy);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}
.dots {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 3;
}
.dot {
  width: 35px;
  height: 3px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}
.dot.active {
  background: var(--gold);
}
section {
  padding: 85px 0;
}
.grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  align-items: center;
}
.title {
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  color: var(--navy);
  margin: 12px 0 22px;
}
.text {
  font-family: Montserrat, sans-serif;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}
.image-card {
  position: relative;
}
.image-card img {
  height: 560px;
  width: 100%;
  object-fit: cover;
  border-radius: 180px 180px 8px 8px;
  box-shadow: 0 25px 60px rgba(6, 23, 42, 0.18);
}
.badge {
  position: absolute;
  right: -18px;
  bottom: 34px;
  background: white;
  padding: 22px 28px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  border-left: 4px solid var(--gold);
  font-family: Montserrat, sans-serif;
}
.badge strong {
  display: block;
  font-size: 30px;
  color: var(--navy);
}
.collections {
  background: white;
}
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 42px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: var(--cream);
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(6, 23, 42, 0.08);
}
.card img {
  height: 390px;
  width: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.card:hover img {
  transform: scale(1.05);
}
.card-body {
  padding: 25px;
}
.card h3 {
  font-size: 28px;
  color: var(--navy);
}

.btn-product{

  display: block;
  width: fit-content;
  margin: 30px auto 0;

}

.whatsapp {
  display: inline-block;
  margin-top: 16px;
  background: #c29650;
  color: white;
  padding: 11px 17px;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
}
.why {
  background: var(--navy);
  color: white;
}
.why .title {
  color: white;
}
.features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.feature {
  border: 1px solid rgba(185, 133, 47, 0.42);
  padding: 28px 18px;
  text-align: center;
}
.feature span {
  font-size: 34px;
  color: var(--gold);
}
.feature h4 {
  font-size: 20px;
  margin-top: 12px;
}
.page-hero {
  height: 46vh;
  min-height: 340px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: white;
  position: relative;
}
.page-hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(6, 23, 42, 0.58);
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product {
  background: white;
  padding-bottom: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
.product img {
  height: 430px;
  width: 100%;
  object-fit: cover;
}
.product h3 {
  font-size: 27px;
  padding: 20px 22px 0;
}
.product p {
  padding: 5px 22px;
  font-family: Montserrat, sans-serif;
  color: var(--muted);
  font-size: 14px;
}
.product .whatsapp {
  margin-left: 22px;
}

.product {
  background: white;
  padding-bottom: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border-radius: 10px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.product:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.product img {
  height: 430px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product:hover img {
  transform: scale(1.06);
}   
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
}
.info,
.form {
  background: white;
  padding: 38px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}
input,
textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 14px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: Montserrat, sans-serif;
}
textarea {
  height: 130px;
}
.footer {
  background: #04101f;
  color: white;
  padding: 65px 0 10px;
}
.footergrid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 35px;
}
.footer img {
  width: 96px;
  background: #fff;
  border-radius: 50%;
  padding: 7px;
  margin-bottom: 12px;
}
.footer h3 {
  color: var(--gold);
  margin-bottom: 15px;
}
.footer p,
.footer a {
  font-family: Montserrat, sans-serif;
  color: #cbd1d9;
  font-size: 14px;
  display: block;
  margin-bottom: 9px;
}
.copy {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 35px;
  padding-top: 20px;
  font-family: Montserrat, sans-serif;
  color: #9ba4b1;
  font-size: 13px;
}
@media (max-width: 900px) {
  .hamb {
    display: block;
  }
  .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 86px;
    background: var(--cream);
    display: none;
    flex-direction: column;
    padding: 24px;
  }
  .menu.show {
    display: flex;
  }
  .hero {
    height: 72vh;
    min-height: 520px;
  }
  .grid2,
  .contact-box,
  .footergrid {
    grid-template-columns: 1fr;
  }
  .cards,
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
  .features {
    grid-template-columns: 1fr 1fr;
  }
  .image-card img {
    height: 460px;
  }
  .badge {
    right: 10px;
  }
}
@media (max-width: 560px) {
  .topbar {
    font-size: 11px;
  }
  .brand img {
    width: 46px;
    height: 46px;
  }
  .brand span {
    font-size: 17px;
  }
  .hero h1 {
    font-size: 44px;
  }
  .hero p {
    font-size: 18px;
  }
  .cards,
  .product-grid,
  .features {
    grid-template-columns: 1fr;
  }
  section {
    padding: 60px 0;
  }
  .product img,
  .card img {
    height: 360px;
  }
  .footergrid {
    gap: 20px;
  }
}


.product-image {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.product-image img {
  width: 100%;
  display: block;
}

.product-image .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  backdrop-filter: blur(2px);
}

.social-icons {
  font-size: 18px;
  display: flex;
  gap: 10px;
  color: #9ba4b1;
  cursor: pointer;
  padding-top: 2px;
}

.social-icons i {
  font-size: 16px;
}

.social-icons .fa-whatsapp:hover {
  color: green;
}

.social-icons .fa-instagram:hover {
  color: orchid;
}

.social-icons .fa-facebook-f:hover {
  color: #3c82f6;
}

.social-icons .fa-whatsapp:hover {
  color: green;
}

.social-icons .fa-x-twitter:hover {
  color: white;
}

.social-icons .fa-youtube:hover {
  color: #ff0033;
}

/* ------------------------ */
/* Floating Button */
.chat-toggle {
  position: fixed;
  bottom: 100px;
  right: 20px;
  background: #c79c65;
  color: #fff;
  padding: 12px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Chat Widget Box */
.chat-widget {
  position: fixed;
  bottom: 80px;
  right: 20px;
  width: 320px;
  max-width: 95%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  display: none;
  flex-direction: column;
  z-index: 10000;
}

/* Header */
.chat-header {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid #eee;
  background: #f9f9f9;
}

.chat-header img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-header .online-status {
  font-size: 12px;
  color: green;
}

.chat-header .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: green;
  border-radius: 50%;
  margin-left: 5px;
}

.chat-header button {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
}

/* Body */
.chat-body {
  padding: 15px;
}

.message-time {
  font-size: 12px;
  color: #999;
  text-align: center;
  margin-bottom: 10px;
}

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

.message-bubble img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.message-bubble p {
  background: #f0f0f0;
  padding: 10px 15px;
  color: #000;
  border-radius: 15px;
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.stl strong {
  color: #000;
}

.connect-title {
  margin: 20px 0 10px;
  font-weight: bold;
  color: #000;
  text-align: center;
}

.chat-actions {
  display: flex;
  justify-content: space-around;
  gap: 10px;
  flex-wrap: wrap;
}

.chat-actions a {
  background: rgb(240, 237, 226);
  color: #c79c65;
  padding: 10px 30px 10px 30px;
  border-radius: 12px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
}

.chat-actions a:hover {
  background: #f0f0f0;
  /* light grey */
  color: #c79c65;
  /* darker blue on hover */
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .chat-toggle {
    bottom: 15px;
    right: 15px;
    font-size: 14px;
    padding: 10px 16px;
  }

  .chat-widget {
    right: 10px;
    left: 10px;
    width: auto;
    bottom: 70px;
  }

  .chat-actions {
    justify-content: space-evenly;
  }

  .chat-header img,
  .message-bubble img {
    width: 35px;
    height: 35px;
  }

  .chat-header button {
    font-size: 24px;
  }

  .message-bubble p {
    font-size: 13px;
  }
}

.connect-title {
    margin: 20px 0 10px;
    font-weight: bold;
    color: #000;
    text-align: center;
}

footer .copy {
  display: flex;
  justify-content: center;
}

footer .copy a{
  font-size: 13px;
  padding-left:5px;
  color: #9ba4b1;

}

footer .copy a:hover{
  color: #b9852f;
}


.map-section{
  margin-top: -90px;
  padding-bottom: 80px;
}

.map-wrapper{
  width: 100%;
  height: 420px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.map-wrapper iframe{
  width: 100%;
  height: 100%;
  display: block;
}
@media (max-width: 768px){

  .contact-box{
    grid-template-columns: 1fr;
  }

  .map-wrapper{
    height: 320px;
  }

  .map-section{
    padding-bottom: 40px;
  }

}




/* Elegant Kurtis Listing Page */
.product-link {
  display: block;
  color: inherit;
}

.product-link .whatsapp {
  pointer-events: none;
}

.kurti-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.kurti-card {
  background: #fff;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.kurti-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.kurti-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kurti-card:hover img {
  transform: scale(1.06);
}

.kurti-content {
  padding: 22px;
}

.kurti-content h3 {
  font-size: 27px;
  color: var(--navy);
}

.kurti-content p {
  margin-top: 6px;
  font-family: Montserrat, sans-serif;
  color: var(--muted);
  font-size: 14px;
}

.price {
  margin-top: 14px;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
}

@media (max-width: 900px) {
  .kurti-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .kurti-grid {
    grid-template-columns: 1fr;
  }

  .kurti-card img {
    height: 360px;
  }
}


.w-none{
  cursor: not-allowed;
}