/* ================= GLOBAL ================= */

html{
  scroll-behavior:smooth;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'DM Sans',sans-serif;
}

body{
  background:linear-gradient(45deg,#ff66b2,#66ccff);
}

/* ================= HEADER ================= */

header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:0 6%;
  height:120px;
  background:#fff;
  position:relative;
  z-index:9999;
}

.logo img{
  height:120px;
}

nav{
  display:flex;
  gap:40px;
}

.nav-link{
  text-decoration:none;
  color:#ff66b2;
  font-weight:600;
  font-size:17px;
}

.nav-link:hover{
  opacity:.7;
}

/* ================= HERO ================= */

.hero{
  position:relative;
  height:90vh;
  min-height:500px;
  max-height:900px;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  color:#fff;
}

/* Each slide is a full background image */
.hero-slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
  opacity:0;
  transition:opacity 1.2s ease-in-out;
  z-index:0;
  /* Subtle zoom effect for a polished feel */
  transform:scale(1.03);
  transition:opacity 1.2s ease-in-out, transform 5s ease-in-out;
}

.hero-slide.active{
  opacity:1;
  transform:scale(1);
}

/* Dark overlay so text is always readable */
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
  z-index:1;
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
}

.hero-content h1{
  font-size:52px;
  font-weight:700;
  margin-bottom:16px;
  text-shadow:0 2px 12px rgba(0,0,0,0.4);
}

.hero-content p{
  font-size:18px;
  margin-bottom:28px;
  opacity:0.92;
}

.shop-btn{
  padding:14px 32px;
  border:none;
  background:#fff;
  color:#ff66b2;
  font-weight:700;
  font-size:16px;
  border-radius:8px;
  cursor:pointer;
  transition:transform 0.2s, box-shadow 0.2s;
}

.shop-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(0,0,0,0.2);
}

/* Dot indicators */
.hero-dots{
  position:absolute;
  bottom:24px;
  left:50%;
  transform:translateX(-50%);
  display:flex;
  gap:10px;
  z-index:3;
}

.hero-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:rgba(255,255,255,0.5);
  cursor:pointer;
  transition:background 0.3s, transform 0.3s;
}

.hero-dot.active{
  background:#fff;
  transform:scale(1.3);
}

/* ================= CATALOG ================= */

.catalog{
  background:#fff;
  padding:70px 6%;
}

.section-title{
  text-align:center;
  font-size:32px;
  margin-bottom:40px;
}

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

.product-link{
  text-decoration:none;
  color:inherit;
}

.card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 6px 15px rgba(0,0,0,.08);
  transition:.3s;
}

.card:hover{
  transform:translateY(-6px);
}

.card img{
  width:100%;
  height:240px;
  object-fit:cover;
  transition:.4s;
}

.card:hover img{
  transform:scale(1.07);
}

.card-content{
  padding:16px;
}

.price{
  font-weight:600;
  color:#ff66b2;
}

/* ================= PRODUCT PAGE ================= */

.product-page{
  width:100%;
  background:#fff;
  padding:70px 6%;
}

.product-container{
  max-width:1400px;
  margin:auto;
  display:flex;
  gap:80px;
  align-items:flex-start;
}

/* LEFT */

.product-gallery{
  flex:1;
}

.main-img{
  width:100%;
  border-radius:12px;
}

.thumbs{
  display:flex;
  gap:12px;
  margin-top:15px;
}

.thumbs img{
  width:80px;
  height:80px;
  object-fit:cover;
  cursor:pointer;
  border-radius:8px;
}

/* RIGHT */

.product-info{
  flex:1;
}

.product-info h1{
  font-size:36px;
  margin-bottom:15px;
}

.product-price{
  font-size:24px;
  font-weight:700;
  color:#ff66b2;
  margin-bottom:20px;
}

.product-description{
  line-height:1.7;
  margin-bottom:25px;
}

#product-details li{
  margin-bottom:8px;
}

/* buttons */

.whatsapp-btn,
.insta-btn{
  display:block;
  text-align:center;
  padding:14px;
  margin-top:12px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  color:#fff;
}

.whatsapp-btn{
  background:#25D366;
}

.insta-btn{
  background:linear-gradient(45deg,#ff66b2,#66ccff);
}

/* ================= CARE ================= */

.care-section{
  padding:70px 6%;
  background:#f9fbff;
}

.care-title{
  text-align:center;
  color:#ff66b2;
  margin-bottom:35px;
}

.care-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
}

.care-card{
  background:#fff;
  padding:20px;
  border-radius:10px;
  box-shadow:0 4px 10px rgba(0,0,0,.05);
}

.care-card h3{
  color:#ff66b2;
  margin-bottom:10px;
}

/* ================= PREMIUM GRADIENT FOOTER ================= */

.footer{
  background:linear-gradient(135deg,#ff66b2,#66ccff);
  color:#fff;
  padding:70px 6% 40px;
}

.footer-container{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:50px;
  margin-bottom:50px;
  align-items:start;
}

.footer-column h3{
  margin-bottom:18px;
  font-size:17px;
  font-weight:700;
  letter-spacing:0.3px;
}

.footer-column a{
  display:block;
  text-decoration:none;
  color:#fff;
  margin-bottom:10px;
  opacity:.88;
  font-size:14px;
}

.footer-column a:hover{
  opacity:1;
}

/* Policy column — centered */
.footer-policy-col{
  text-align:center;
}

.footer-policy-col h3{
  text-align:center;
}

/* Contact Us column — right aligned on desktop */
.footer-contact-col{
  text-align:right;
}

.footer-contact-col h3{
  text-align:right;
}

/* Contact items */
.footer-contact-item{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:12px;
  justify-content:flex-end;
}

.footer-contact-item i{
  font-size:15px;
  opacity:0.85;
  width:16px;
  flex-shrink:0;
}

.footer-contact-item a{
  display:inline;
  margin-bottom:0;
}

/* Social icons row — centered below all columns */
.footer-social-row{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  margin-bottom:40px;
}

.footer-social-row h3{
  font-size:17px;
  font-weight:700;
  text-align:center;
}

.footer-social-icons{
  display:flex;
  gap:24px;
  justify-content:center;
}

.footer-icon{
  width:68px;
  height:68px;
  border-radius:50%;
  background:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#ff66b2;
  font-size:26px;
  text-decoration:none;
  box-shadow:0 6px 20px rgba(0,0,0,0.15);
  transition:transform .2s, box-shadow .2s;
}

.footer-icon:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 28px rgba(0,0,0,0.2);
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.25);
  padding-top:24px;
  text-align:center;
  font-size:13px;
  opacity:.85;
}

/* Tablet footer */
@media(max-width:900px){
  .footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
  }
  .footer-contact-col,
  .footer-contact-col h3{
    text-align:left;
  }
  .footer-contact-item{
    justify-content:flex-start;
  }
  .footer-policy-col,
  .footer-policy-col h3{
    text-align:left;
  }
}

/* Mobile footer */
@media(max-width:600px){
  .footer-container{
    grid-template-columns:1fr;
    gap:28px;
  }
  .footer-contact-col,
  .footer-contact-col h3{
    text-align:left;
  }
  .footer-contact-item{
    justify-content:flex-start;
  }
  .footer-policy-col,
  .footer-policy-col h3{
    text-align:left;
  }
  .footer-icon{
    width:58px;
    height:58px;
    font-size:22px;
  }
}

/* ================= FLOAT BUTTONS ================= */

.floating-insta,
.floating-whatsapp{
  position:fixed;
  right:25px;
  width:60px;
  height:60px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:26px;
  text-decoration:none;
  z-index:99999;
  box-shadow:0 8px 20px rgba(0,0,0,.25);
}

.floating-insta{
  bottom:95px;
  background:linear-gradient(45deg,#ff66b2,#66ccff);
}

.floating-whatsapp{
  bottom:25px;
  background:#25D366;
}

.floating-insta:hover,
.floating-whatsapp:hover{
  transform:scale(1.1);
}

/* ================= POLICY PAGE ================= */

.policy-page{
  background:#fff;
  color:#333;
  padding:100px 12%;
  min-height:80vh;
  line-height:1.8;
}

.policy-page h1{
  color:#ff66b2;
  font-size:36px;
  margin-bottom:20px;
}

.policy-page h3{
  color:#66ccff;
  margin-top:30px;
}

.policy-page p {
  line-height: 1.8;
  margin-bottom: 18px;
}

.policy-page ul {
  margin: 15px 0 20px 20px;
  line-height: 1.8;
}

.policy-page li {
  margin-bottom: 8px;
}

/* ================= MOBILE ================= */

@media(max-width:900px){

  .product-container{
    flex-direction:column;
  }

  nav{
    gap:20px;
    font-size:14px;
  }

}

/* ================= PRODUCT PAGE ================= */

.product-page{
  background:#f6f6f6;
  padding:60px 8%;
  min-height:100vh;
}

/* main layout */

.product-container{
  max-width:1300px;
  margin:auto;

  display:grid;
  grid-template-columns: 1.1fr 1fr;
  gap:70px;
  align-items:start;
}

/* ================= LEFT SIDE ================= */

.product-gallery{
  width:100%;
}

.image-wrapper{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.main-img{
  width:100%;
  height:520px;
  object-fit:cover;
  display:block;
}

/* arrows */

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:38px;
  height:38px;
  border-radius:50%;
  background:rgba(255,255,255,0.92);
  color:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  font-size:18px;
  box-shadow:0 2px 10px rgba(0,0,0,0.15);
  border:none;
  transition:background .2s, box-shadow .2s;
  z-index:5;
}

.arrow:hover{
  background:#fff;
  box-shadow:0 4px 16px rgba(0,0,0,0.22);
  transform:translateY(-50%) scale(1.05);
}

.arrow.left{ left:12px; }
.arrow.right{ right:12px; }

/* thumbnails */

.thumbs{
  margin-top:18px;
  display:flex;
  gap:14px;
}

.thumbs img{
  width:85px;
  height:85px;
  object-fit:cover;
  border-radius:12px;
  cursor:pointer;
  opacity:.7;
  transition:.3s;
  border:2px solid transparent;
}

.thumbs img:hover{
  opacity:1;
  border-color:#ff66b2;
}

/* ================= PRODUCT INFO ================= */

.product-info h1{
  font-size:40px;
  font-weight:700;
  margin-bottom:10px;
}

.product-price{
  font-size:28px;
  font-weight:700;
  color:#ff66b2;
  margin-bottom:20px;
}

.product-description{
  line-height:1.8;
  color:#444;
  margin-bottom:25px;
  max-width:420px;
}

/* headings */

.product-info h3{
  margin-top:30px;
  margin-bottom:10px;
  font-size:20px;
}

/* sizes */

.sizes{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.sizes span{
  padding:10px 18px;
  border-radius:30px;
  background:#fff;
  border:1px solid #ddd;
  font-size:14px;
}

/* details list */

#product-details{
  margin-top:10px;
  padding-left:18px;
  line-height:1.8;
}

/* ================= ORDER BUTTONS ================= */

.whatsapp-btn,
.insta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:16px 26px;
  margin-top:25px;

  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  font-size:16px;

  transition:.3s ease;
}

/* whatsapp */

.whatsapp-btn{
  background:#25D366;
  color:white;
}

.whatsapp-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 20px rgba(0,0,0,.15);
}

/* instagram */

.insta-btn{
  margin-left:15px;
  background:linear-gradient(45deg,#ff66b2,#66ccff);
  color:white;
}

.insta-btn:hover{
  transform:translateY(-3px);
}

@media(max-width:900px){

  .product-container{
    grid-template-columns:1fr;
  }

  .main-img{
    height:420px;
  }

}

/* ================= PRODUCT PAGE (WHITE PREMIUM UI) ================= */

.product-page {
  background: #ffffff;
  padding: 80px 8%;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
  max-width: 1300px;
  margin: auto;
}

/* ---------- LEFT IMAGE ---------- */

.product-gallery {
  position: sticky;
  top: 120px;
}

.main-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

/* thumbnails */

.thumbs {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  opacity: .7;
  transition: .3s;
}

.thumbs img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* ---------- RIGHT INFO ---------- */

.product-info h1 {
  font-size: 38px;
  margin-bottom: 10px;
  color: #111;
}

.product-price {
  font-size: 24px;
  font-weight: 600;
  color: #ff66b2;
  margin: 15px 0 25px;
}

.product-description {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.section-heading {
  font-size: 18px;
  margin: 25px 0 12px;
}

/* sizes */

.sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.size-box {
  padding: 10px 18px;
  border: 1px solid #ddd;
  border-radius: 50px;
  background: #fff;
  cursor: pointer;
  transition: .3s;
}

.size-box:hover {
  background: #ff66b2;
  color: #fff;
  border-color: #ff66b2;
}

/* delivery info */

.delivery-box {
  display: flex;
  gap: 15px;
  background: #f7f7f7;
  padding: 16px;
  border-radius: 12px;
  margin-top: 25px;
  align-items: center;
}

.delivery-box i {
  font-size: 22px;
  color: #66ccff;
}

/* ---------- ORDER BUTTONS ---------- */

.order-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

.order-buttons a {
  flex: 1;
}

.whatsapp-btn,
.insta-btn {
  padding: 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: .3s;
}

/* WhatsApp */

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

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

/* Instagram */

.insta-btn {
  background: linear-gradient(45deg,#ff66b2,#66ccff);
  color: white;
}

.insta-btn:hover {
  opacity: .9;
}

/* details */

#product-details {
  margin-top: 15px;
  padding-left: 18px;
  color: #555;
  line-height: 1.6;
}

.delivery-timeline{
  margin:50px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  text-align:center;
}

.timeline-step{
  flex:1;
}

.circle{
  width:70px;
  height:70px;
  border-radius:50%;
  background:#ff66b2;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  margin:0 auto 15px;
}

.line{
  flex:1;
  height:4px;
  background:#ddd;
  margin:0 20px;

  position:relative;
  top:35px;   /* aligns line with circle center */
}

.delivery-timeline{
  display:flex;
  align-items:flex-start; /* important */
  justify-content:space-between;
}

.timeline-step h4{
  margin-bottom:8px;
  font-weight:600;
}

.timeline-step p{
  color:#666;
  font-size:14px;
}

.image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

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

.sale-badge {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: black;
  color: white;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

.related-section {
  background: #fff;
  padding: 60px 5%;
  margin: 0;
}

.related-grid {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
}

.related-grid::-webkit-scrollbar {
  display: none;
}

.related-section h2 {
  margin-bottom: 30px;
  font-size: 28px;
  color: #222;
}

.related-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.related-slider::-webkit-scrollbar {
  display: none;
}

.related-card {
  flex: 0 0 240px;       /* FIXED WIDTH */
  max-width: 240px;
  background: white;
  border-radius: 18px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.related-card img {
  width: 100%;
  height: 200px;         /* FORCE SAME HEIGHT */
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 10px;
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 10px;
}

.related-card h4 {
  font-size: 16px;
  margin-bottom: 5px;
}

.related-card p {
  font-weight: 600;
}



.price {
  display: flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.old-price {
  text-decoration: line-through;
  color: #888;
  font-size: 14px;
}

.sale-price {
  color: #ff3b5c;
  font-size: 18px;
  font-weight: 700;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 8px;
}

.sale-price {
  color: #ff4d8d;
  font-weight: 700;
}


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

.old-price {
  text-decoration: line-through;
  color: #888;
}

.sale-price {
  font-weight: 700;
}




/* ================= SALE SYSTEM (FINAL FIX) ================= */

/* price container */
.price{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  color:#ff66b2;
}

/* original price (cut) */
.old-price{
  text-decoration:line-through;
  color:#999;
  font-size:15px;
  font-weight:500;
}

/* sale price */
.sale-price{
  color:#ff3b5c;
  font-size:18px;
  font-weight:700;
}

/* SALE BADGE (thumbnail + product page) */
.sale-badge{
  position:absolute;
  bottom:10px;
  left:10px;
  background:#111;
  color:#fff;
  padding:4px 10px;
  border-radius:14px;
  font-size:11px;
  font-weight:600;
  letter-spacing:.3px;
  z-index:5;
}

/* ensure card allows badge positioning */
.card{
  position:relative;
  overflow:hidden;
}

.delivery-timeline{
  margin:50px 0;
  display:flex;
  align-items:flex-start;   /* change from center */
  justify-content:space-between;
  text-align:center;
}

.timeline-step{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* FORCE SAME HEIGHT FOR DATE AREA */
.timeline-step p{
  min-height:40px;   /* keeps all dates same height */
  margin-top:6px;
  line-height:1.4;
}

.home-section{
  padding:70px 6%;
  background:#fff;
}

.slider-wrapper{
  position:relative;
  display:flex;
  align-items:center;
}

.home-slider{
  display:flex;
  gap:20px;
  overflow-x:auto;
  scroll-behavior:smooth;
  scrollbar-width:none;
}

.home-slider::-webkit-scrollbar{
  display:none;
}

.home-card{
  background:#fff;
  border-radius:15px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  transition:.3s;
}

.home-card:hover{
  transform:translateY(-5px);
}

.home-card a{
  display:block;
  text-decoration:none;
  color:inherit;
}

.home-card-img-wrap{
  position:relative;
  width:100%;
  padding-bottom:100%;
  overflow:hidden;
}

.home-card-img-wrap img{
  position:absolute;
  top:0; left:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.home-card-content{
  padding:15px;
}

.slide-btn{
  width:40px;
  height:40px;
  border:none;
  border-radius:50%;
  background:#000;
  color:#fff;
  font-size:22px;
  cursor:pointer;
  position:absolute;
  z-index:10;
}

.slide-btn.left{
  left:-20px;
}

.slide-btn.right{
  right:-20px;
}

.reviews-section{
padding:80px 6%;
background:#f9f9f9;
}

.reviews-grid{
display:grid;
grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
gap:25px;
margin-top:40px;
}

.review-card{
background:white;
border-radius:18px;
overflow:hidden;
color:#000;
}

.review-card img{
width:100%;
height:260px;
object-fit:cover;
}

.review-content{
padding:18px;
}

.review-text{
font-size:14px;
line-height:1.6;
margin-bottom:15px;
}

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

.review-avatar{
width:36px;
height:36px;
border-radius:50%;
background:#ffd6d6;
color:#000;
display:flex;
align-items:center;
justify-content:center;
font-weight:600;
}

.review-info h4{
font-size:14px;
margin:0;
}

.review-info span{
font-size:12px;
opacity:.7;
}

.reviews-slider{
  display:flex;
  gap:20px;
  overflow-x:auto;
}

.review-card{
  flex:0 0 280px;
}

/* mobile */
@media(max-width:600px){
  .review-card{
    flex:0 0 85%;
  }
}
/* FAQ */

.faq-item {
  border-bottom: 1px solid #eee;
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  line-height: 1.8;
  color: #555;
}

/* CUSTOM PAGE */

.custom-hero {
  background: white;
  color: #000;
  text-align: center;
  padding: 100px 20px 60px;
}

.custom-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.custom-hero p {
  color: #aaa;
  font-size: 18px;
}

.custom-step {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  padding: 80px 10%;
  background: white;
  color: #000;
}

.custom-step.reverse {
  flex-direction: row-reverse;
}

.step-image {
  flex: 1;
  height: 350px;
  background: #f0f0f0;
  border-radius: 20px;
}

.step-image img{
width:100%;
height:100%;
object-fit:cover;
border-radius:20px;
}

.step-content {
  flex: 1;
}

.step-number {
  font-size: 13px;
  letter-spacing: 2px;
  color: #000;
}

.step-content h2 {
  font-size: 36px;
  margin: 15px 0;
}

.step-content p {
  color: #000;
  line-height: 1.8;
  margin-bottom: 15px;
}

.custom-cta {
  background: white;
  text-align: center;
  padding: 80px 20px;
  color: black;
}

.cta-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  background: linear-gradient(45deg, #ff4e8d, #6ec6ff);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.cta-btn:hover {
  opacity: 0.85;
}

/* ABOUT PAGE */

.about-hero {
  background: white;
  color: #000;
  text-align: center;
  padding: 80px 20px 50px;
}

.about-hero h1 {
  color: #ff66b2;
  font-size: 42px;
  margin-bottom: 15px;
}

.about-hero p {
  color: #555;
  font-size: 18px;
}

/* ---- About sections (image + text side by side) ---- */
.about-section {
  display: flex;
  gap: 60px;
  padding: 70px 8%;
  background: white;
  color: #000;
  align-items: center;
}

.about-section.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1.4;
}

.about-text h2 {
  color: #ff66b2;
  font-size: 32px;
  margin-bottom: 16px;
}

.about-text p {
  color: #333;
  line-height: 1.85;
  font-size: 15px;
  white-space: pre-line;
}

.about-image {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.about-video {
  flex: 0.8;
}

.about-video video {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
}

/* ---- Values ---- */
.about-values {
  background: #f9f9f9;
  color: #000;
  text-align: center;
  padding: 70px 8%;
}

.about-values h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.values-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  width: 260px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.value-card i {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ff4e8d;
}

.value-card h3 {
  margin-bottom: 10px;
}

.value-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* ---- TABLET (≤900px) ---- */
@media(max-width:900px){
  .about-section{
    gap: 35px;
    padding: 50px 6%;
  }

  .about-text h2{
    font-size: 26px;
  }

  .about-hero h1{
    font-size: 32px;
  }
}

/* ---- MOBILE (≤600px) ---- */
@media(max-width:600px){

  .about-hero{
    padding: 50px 6% 35px;
  }

  .about-hero h1{
    font-size: 28px;
  }

  .about-hero p{
    font-size: 15px;
  }

  /* Stack: image FIRST, then text */

  /* Text-first sections: show image above text on mobile */
  .about-text-first .about-image,
  .about-text-first .about-video{
    order: -1;
  }

  .about-section{
    flex-direction: column !important;
    padding: 40px 5%;
    gap: 24px;
  }

  .about-image,
  .about-video{
    width: 100%;
    flex: unset;
    border-radius: 16px;
    overflow: hidden;
  }

  .about-image img,
  .about-video video{
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: 16px;
  }

  .about-text{
    flex: unset;
    width: 100%;
  }

  .about-text h2{
    font-size: 22px;
  }

  .about-text p{
    font-size: 14px;
  }

  .about-values{
    padding: 50px 5%;
  }

  .values-grid{
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .value-card{
    width: 100%;
    max-width: 340px;
  }
}

/* ================= CARE PAGE ================= */

.care-page{
  background:#fff;
  padding:100px 12%;
}

.care-title{
  text-align:center;
  font-size:38px;
  color:#ff66b2;
  margin-bottom:50px;
}

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

.care-card{
  background:#fafafa;
  padding:28px;
  border-radius:16px;
  box-shadow:0 8px 20px rgba(0,0,0,.06);
  transition:.3s;
}

.care-card:hover{
  transform:translateY(-6px);
}

.care-card i{
  font-size:28px;
  color:#66ccff;
  margin-bottom:15px;
}

.care-card h3{
  margin-bottom:10px;
  font-size:20px;
}

.care-card p{
  line-height:1.7;
  color:#444;
}

/* ================= REVIEWS SLIDER ================= */

.reviews-section{
  padding:80px 6%;
  background:#f9f9f9;
}

.reviews-section .section-title{
  margin-bottom:50px;
}

.reviews-grid-layout{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  max-width:1200px;
  margin:auto;
}

.review-card{
  display:flex;
  flex-direction:column;
  border-radius:20px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,0.07);
  transition:transform .25s, box-shadow .25s;
}

.review-card:hover{
  transform:translateY(-5px);
  box-shadow:0 16px 36px rgba(0,0,0,0.11);
}

.review-card img,
.review-card video{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.review-content{
  background:#000;
  color:#fff;
  padding:18px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.review-text{
  font-size:14px;
  line-height:1.6;
  margin-bottom:14px;
}

.review-user{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:auto;
}

.user-avatar{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#ff66b2;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:14px;
  flex-shrink:0;
}

.location{
  font-size:12px;
  color:#bbb;
  display:block;
  margin-top:2px;
}

/* Tablet */
@media(max-width:900px){
  .reviews-grid-layout{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
  }
}

/* Mobile */
@media(max-width:600px){
  .reviews-section{
    padding:50px 4%;
  }
  .reviews-grid-layout{
    grid-template-columns:1fr;
    gap:18px;
  }
  .review-card img,
  .review-card video{
    height:220px;
  }
}

.home-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:35px;
max-width:900px;
margin:auto;
}

.view-all{
text-align:center;
margin-top:25px;
}

.view-btn{
background:black;
color:white;
padding:10px 22px;
border-radius:25px;
text-decoration:none;
font-weight:600;
}

.home-section{
padding:80px 6%;
background:#fff;
}

.review-card video{
width:100%;
height:260px;
object-fit:cover;
border-radius:18px 18px 0 0;
}

.custom-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
max-width:1200px;
margin:auto;
}

.custom-card{
background:#fff;
border-radius:18px;
overflow:hidden;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
transition:.3s;
}

.custom-card img{
width:100%;
height:280px;
object-fit:cover;
display:block;
}

.custom-card:hover{
transform:translateY(-6px);
}

.image-wrapper{
position:relative;
overflow:hidden;
}

.img-hover{
position:absolute;
top:0;
left:0;
opacity:0;
transition:opacity .3s ease;
}

.card:hover .img-hover{
opacity:1;
}

.image-wrapper{
position:relative;
overflow:hidden;
}

.img-hover{
position:absolute;
top:0;
left:0;
opacity:0;
transition:opacity .3s ease;
}

.card:hover .img-hover{
opacity:1;
}

.products-grid,
.custom-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

body{
  margin:0;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.main{
  flex:1;
}

/* container */
.container{
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

.card,
.custom-card{
  width:100%;
  border-radius:18px;
  overflow:hidden;
}

.card img,
.custom-card img{
  width:100%;
  height:260px;
  object-fit:cover;
}

@media(max-width:768px){

header{
  flex-direction:column;
  height:auto;
  padding:20px;
}

nav{
  flex-wrap:wrap;
  justify-content:center;
  gap:12px;
}

.nav-link{
  font-size:14px;
}

.logo img{
  height:80px;
}

}

img{
  width:100%;
  height:auto;
  display:block;
}

/* ================= TABLET (max 900px) ================= */
@media(max-width:900px){

.products-grid{
  grid-template-columns:repeat(2,1fr);
}

.home-grid{
  grid-template-columns:repeat(2,1fr);
  gap:20px;
}

.home-section{
  padding:50px 4%;
}

.hero-content h1{
  font-size:36px;
}

.related-grid{
  gap:15px;
}

.related-card{
  flex:0 0 200px;
  max-width:200px;
}

}

/* ================= MOBILE (max 600px) ================= */
@media(max-width:600px){

/* Header / Nav */
header{
  padding:15px 4%;
  gap:10px;
}

nav{
  gap:10px;
}

.nav-link{
  font-size:13px;
}

/* Hero */
.hero{
  height:60vh;
  min-height:320px;
}

.hero-content h1{
  font-size:26px;
  margin-bottom:10px;
}

.hero-content p{
  font-size:14px;
  margin-bottom:18px;
}

.shop-btn{
  padding:10px 22px;
  font-size:14px;
}

/* Sections */
.home-section{
  padding:40px 4%;
}

.section-title{
  font-size:22px;
  margin-bottom:25px;
}

/* Home grid — 2 columns square images */
.home-grid{
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.home-card{
  border-radius:12px;
}

.home-card-img-wrap{
  padding-bottom:100%;
}

.home-card-content{
  padding:10px;
}

.home-card-content h4{
  font-size:13px;
  margin-bottom:4px;
}

.home-card-content .price{
  font-size:13px;
}

/* Products grid */
.products-grid{
  grid-template-columns:repeat(2,1fr);
  gap:14px;
}

.card img{
  height:160px;
}

/* Related */
.related-section{
  padding:40px 4%;
}

.related-card{
  flex:0 0 160px;
  max-width:160px;
}

.related-card img{
  height:140px;
}

/* Reviews */
.reviews-section{
  padding:40px 4%;
}

.review-card{
  min-width:260px;
}

/* Footer */
.footer{
  padding:50px 4% 30px;
}

.footer-container{
  grid-template-columns:1fr;
  gap:30px;
}

/* View all btn */
.view-btn{
  font-size:14px;
  padding:9px 20px;
}

/* Product page */
.product-container{
  flex-direction:column;
}

.product-gallery,
.product-info{
  width:100%;
}

.main-img{
  height:280px;
}

.delivery-timeline{
  gap:8px;
}

.order-buttons{
  flex-direction:column;
  gap:10px;
}

.whatsapp-btn,
.insta-btn{
  width:100%;
  text-align:center;
}

}
/* ================= ACCORDION ================= */

.accordion{
  border-top:1px solid #eee;
  margin-top:30px;
}

.accordion-item{
  border-bottom:1px solid #eee;
}

.accordion-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
  cursor:pointer;
  font-size:15px;
  font-weight:600;
  color:#111;
  user-select:none;
  gap:12px;
}

.accordion-icon{
  width:28px;
  height:28px;
  border-radius:50%;
  background:#111;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  transition:background .25s, transform .25s;
  font-style:normal;
  font-size:14px;
  line-height:1;
}

.accordion-item.active .accordion-icon{
  transform:rotate(180deg);
  background:#ff66b2;
}

.accordion-body{
  overflow:hidden;
  height:0;
  transition:height .28s cubic-bezier(.4,0,.2,1);
}

.accordion-body-inner{
  padding:4px 0 18px 0;
}

.accordion-body ul{
  padding-left:18px;
  color:#555;
  line-height:2;
  font-size:14px;
}

.accordion-body p{
  color:#555;
  line-height:1.75;
  font-size:14px;
}

/* ================= LIGHTBOX ================= */

.lightbox-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.92);
  z-index:99999;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:20px;
}

.lightbox-overlay.open{
  display:flex;
}

.lightbox-img{
  max-width:88vw;
  max-height:80vh;
  object-fit:contain;
  border-radius:12px;
}

.lightbox-close{
  position:absolute;
  top:20px;
  right:24px;
  color:#fff;
  font-size:36px;
  cursor:pointer;
  line-height:1;
  background:none;
  border:none;
}

.lightbox-arrows{
  display:flex;
  gap:30px;
}

.lightbox-arrow{
  background:rgba(255,255,255,0.15);
  border:none;
  color:#fff;
  font-size:28px;
  width:50px;
  height:50px;
  border-radius:50%;
  cursor:pointer;
  transition:background .2s;
}

.lightbox-arrow:hover{
  background:rgba(255,255,255,0.3);
}

.lightbox-dots{
  display:flex;
  gap:8px;
}

.lightbox-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:rgba(255,255,255,0.4);
}

.lightbox-dot.active{
  background:#fff;
}

/* Custom rugs cards clickable */
.home-card{
  cursor:pointer;
}
