/* ================================================================
   responsive.css — Invicscent Full Responsive Fix
   ADD THIS as the LAST <link> in your <head>, after style.css
   Covers: navbar, carousel, services, product grid, collections,
           owner section, news, footer — all breakpoints
================================================================ */

/* ── Reset box model ─────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
body {
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

header {
  margin: 0;
  padding: 0;
}

/* ════════════════════════════════════════════════════════════════
   1. NAVBAR
════════════════════════════════════════════════════════════════ */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  position: relative;
  z-index: 1000;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile menu hidden by default */
.mobile-header { display: none; }

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 75vw;
    max-width: 300px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 40px;
    gap: 0;
    box-shadow: 4px 0 20px rgba(0,0,0,.15);
    transition: left .3s ease;
    z-index: 2000;
    overflow-y: auto;
  }
  .nav-links.open {
    left: 0;
  }
  .mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 20px 16px;
    border-bottom: 1px solid #eee;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
  }
  .mobile-header button {
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    color: #333;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    display: block;
    padding: 13px 24px;
    font-size: .95rem;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #f5f5f5;
    transition: background .15s, color .15s;
  }
  .nav-link:hover {
    background: #fdf2f8;
    color: #d63384;
  }
  .cart-price { display: none; }
  .nav-icons { gap: 8px; }
}

@media (max-width: 380px) {
  .navbar { padding: 0 14px; }
  .logo { font-size: .9rem; }
}

/* ════════════════════════════════════════════════════════════════
   2. HERO CAROUSEL — Full override
════════════════════════════════════════════════════════════════ */
.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  
  /* ✅ NEW: Default color and smooth transition */
  background-color: #072a40; 
  transition: background-color 1.2s ease-in-out;

  /* Desktop height */
  height: 92vh;
  max-height: 720px;
  min-height: 480px;
}

/* Every slide: absolute, hidden by default */
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(30px) scale(1.02);
  transition: opacity .65s ease, transform .65s ease, visibility 0s .65s;
  z-index: 1;
}
.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(125deg, #0e0610 0%, #18091a 45%, #0a0d1c 100%); */

}

/* Active slide */
.slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  transition: opacity .65s ease, transform .65s ease;
  z-index: 2;
}

/* Content layout */
.slide-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 8vw;
  gap: 40px;
}

/* ── Text ── */
.slide-text {
  flex: 1 1 0;
  min-width: 0;
  max-width: 500px;
  color: #fff;
}

/* Stagger animation on text children */
.slide .slide-text > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.slide.active .slide-tag     { opacity:1; transform:none; transition-delay:.12s; }
.slide.active .slide-text h2 { opacity:1; transform:none; transition-delay:.22s; }
.slide.active .slide-text p  { opacity:1; transform:none; transition-delay:.32s; }
.slide.active .slide-cta     { opacity:1; transform:none; transition-delay:.42s; }

.slide-tag {
  display: inline-block;
  background: #d63384;
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.slide-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 5vw, 3.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -1px;
}

.slide-text p {
  font-size: clamp(.8rem, 1.5vw, 1rem);
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  margin: 0 0 28px;
  max-width: 420px;
}

.slide-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #d63384;
  color: #fff;
  border: none;
  padding: 13px 32px;
  border-radius: 4px;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 8px 24px rgba(214,51,132,.35);
}
.slide-cta:hover {
  background: #b52870;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(214,51,132,.5);
}

/* ── Image ── */
.slide-image {
  flex: 0 0 auto;
  width: clamp(200px, 40%, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  position: relative;
}
.slide-image::before {
  content: '';
  position: absolute;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214,51,132,.2) 0%, transparent 70%);
  pointer-events: none;
}
.slide-image img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  max-height: 60vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 48px rgba(0,0,0,.6));
  transition: transform .65s ease;
}
.slide.active .slide-image img {
  transform: scale(1.05) translateY(-6px);
}

/* ── Arrows ── */
.slider-container .prev-btn,
.slider-container .next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background .2s, transform .2s;
}
.slider-container .prev-btn { left: 20px; }
.slider-container .next-btn { right: 20px; }
.slider-container .prev-btn:hover,
.slider-container .next-btn:hover {
  background: rgba(214,51,132,.5);
  transform: translateY(-50%) scale(1.1);
  border-color: #d63384;
}

/* ── Dots ── */
.slider-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dots .dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all .3s ease;
}
.slider-dots .dot.active {
  background: #d63384;
  width: 28px;
}

/* ── Carousel: Tablet ≤ 900px ── */
@media (max-width: 900px) {
  .slider-container {
    height: auto;
    max-height: none;
    min-height: 0;
  }
  .slide {
    position: relative;     /* stacks instead of overlapping */
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .slide.active {
    display: flex;
    transform: none;
  }
  .slide-content {
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 48px 24px 72px;
    gap: 20px;
    min-height: 420px;
  }
  .slide-text {
    max-width: 100%;
  }
  .slide-text p {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  /* Reset stagger on tablet — no delay issues */
  .slide .slide-text > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .slide-image {
    width: 200px;
    height: 200px;
  }
  .slide-image img {
    max-height: 180px;
    transform: none !important;
  }
  .slider-container .prev-btn { left: 10px; width: 36px; height: 36px; font-size: .8rem; }
  .slider-container .next-btn { right: 10px; width: 36px; height: 36px; font-size: .8rem; }
}

/* ── Carousel: Mobile ≤ 480px ── */
@media (max-width: 480px) {
  .slide-content {
    padding: 36px 18px 64px;
    min-height: 360px;
  }
  .slide-text h2 { font-size: 1.7rem; }
  .slide-text p  { font-size: .82rem; margin-bottom: 20px; }
  .slide-cta     { padding: 11px 24px; font-size: .78rem; }
  .slide-image   { width: 150px; height: 150px; }
  .slide-image img { max-height: 130px; }
  .slider-dots .dot { width: 6px; height: 6px; }
  .slider-dots .dot.active { width: 20px; }
  .slider-dots { bottom: 16px; }
}

/* ════════════════════════════════════════════════════════════════
   3. SERVICES SECTION
════════════════════════════════════════════════════════════════ */
.services-section {
  padding: 60px 24px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .services-section { padding: 40px 18px; }
}

/* ════════════════════════════════════════════════════════════════
   4. NEW ARRIVALS — product grid
════════════════════════════════════════════════════════════════ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 60px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .container { padding: 32px 18px 48px; }
}
@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* Product card */
.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.product-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  transform: translateY(-4px);
}
.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-image img {
  transform: scale(1.06);
}
.product-info {
  padding: 14px 16px;
}
.product-info h4 {
  margin: 0 0 6px;
  font-size: .95rem;
  font-weight: 600;
  color: #222;
}
.product-info .price {
  color: #d63384;
  font-weight: 700;
  font-size: .95rem;
  margin: 0;
}
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d63384;
  color: #fff;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  z-index: 2;
}

/* Action bar */
.action-bar {
  position: absolute;
  bottom: 15px !important;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 10px;
  background: rgba(255,255,255,.9);
  list-style: none;
  margin: 0;
  transition: bottom .25s ease;
  z-index: 3;
}

.action-bar li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #333;
  color: #fff;
  font-size: .85rem;
  text-decoration: none;
  transition: background .2s, transform .15s;
}
.action-bar li a:hover {
  background: #d63384;
  transform: scale(1.1);
}

/* ════════════════════════════════════════════════════════════════
   5. PRODUCT COLLECTIONS (Best Sellers / Featured / Top Rated)
════════════════════════════════════════════════════════════════ */
.product-collections-section {
  padding: 40px 24px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 900px) {
  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
@media (max-width: 560px) {
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-collections-section { padding: 32px 18px 48px; }
}

.collection-column {}
.collection-title {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #d63384;
  color: #222;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  transition: background .15s;
}
.product-list-item:hover {
  background: #fdf2f8;
}
.product-list-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}
.list-info h3 {
  margin: 0 0 4px;
  font-size: .9rem;
  font-weight: 600;
  color: #222;
}
.list-price {
  font-size: .85rem;
  color: #d63384;
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════════
   6. OWNER / QUOTE SECTION
════════════════════════════════════════════════════════════════ */
.owner-section {
  padding: 60px 24px;
  background: #fdf2f8;
}
.owner-container {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
}
.image-wrapper {
  flex-shrink: 0;
}
.owner-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #d63384;
}
.owner-quote {
  font-size: clamp(.9rem, 1.8vw, 1.05rem);
  color: #444;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}
@media (max-width: 640px) {
  .owner-container {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  .owner-section { padding: 40px 18px; }
}

/* ════════════════════════════════════════════════════════════════
   7. NEWS SECTION
════════════════════════════════════════════════════════════════ */
.news-section {
  padding: 60px 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-heading {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 36px;
  color: #111;
}
.news-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.news-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  cursor: pointer;
}
.news-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.news-card:hover .news-bg {
  transform: scale(1.05);
}
.news-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, transparent 55%);
}
.news-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  color: #fff;
}
.news-content h3 {
  font-size: clamp(.85rem, 2vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 6px;
}
.news-content .meta {
  font-size: .75rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 6px;
}
.news-content .excerpt {
  font-size: .8rem;
  color: rgba(255,255,255,.8);
  margin: 0;
  line-height: 1.5;
}
.button-container {
  text-align: center;
  margin-top: 32px;
}
.read-more-btn {
  display: inline-block;
  padding: 12px 36px;
  border: 2px solid #d63384;
  color: #d63384;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  font-size: .85rem;
  transition: background .2s, color .2s;
}
.read-more-btn:hover {
  background: #d63384;
  color: #fff;
}
@media (max-width: 640px) {
  .news-container {
    grid-template-columns: 1fr;
  }
  .news-section { padding: 40px 18px; }
}

/* ════════════════════════════════════════════════════════════════
   8. FOOTER
════════════════════════════════════════════════════════════════ */
.footer-section {
  position: relative;
  background: #111;
  color: #ccc;
  padding: 60px 24px 0;
}
.footer-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
  pointer-events: none;
  z-index: 0;
}
.footer-section .container,
.footer-section .footer-grid,
.footer-bottom .container {
  position: relative;
  z-index: 1;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.footer-desc {
  font-size: .88rem;
  line-height: 1.7;
  color: #aaa;
  margin-bottom: 20px;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: .9rem;
  transition: background .2s, color .2s;
}
.social-links a:hover {
  background: #d63384;
  color: #fff;
}
.footer-col h3 {
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 10px;
  font-size: .88rem;
  color: #aaa;
}
.footer-col ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color .2s;
}
.footer-col ul li a:hover { color: #d63384; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.contact-list li i {
  color: #d63384;
  margin-top: 2px;
  flex-shrink: 0;
}
.newsletter-text {
  font-size: .88rem;
  color: #aaa;
  margin-bottom: 14px;
}
.newsletter-form {
  display: flex;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 28px;
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 10px 14px;
  color: #fff;
  font-size: .85rem;
  outline: none;
}
.newsletter-form input::placeholder { color: #888; }
.newsletter-form button {
  background: #d63384;
  border: none;
  padding: 10px 16px;
  color: #fff;
  cursor: pointer;
  transition: background .2s;
}
.newsletter-form button:hover { background: #b52870; }
.whatsapp-footer-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.whatsapp-footer-btn:hover { background: #1ebe5d; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 24px;
}
.bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}
.copyright {
  font-size: .82rem;
  color: #888;
}
.payments {
  display: flex;
  gap: 12px;
  font-size: 1.4rem;
  color: #888;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}
@media (max-width: 560px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-section { padding: 40px 18px 0; }
  .bottom-flex { flex-direction: column; align-items: flex-start; }
}

/* ════════════════════════════════════════════════════════════════
   9. MODAL — Quick View
════════════════════════════════════════════════════════════════ */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 3000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.active {
  display: flex;
}
.modal-content {
  background: #fff;
  border-radius: 10px;
  position: relative;
  max-width: 760px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}
.close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f5f5f5;
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 1;
}
.close-modal:hover { background: #ddd; }
.modal-body {
  display: flex;
  gap: 28px;
  padding: 32px;
}
.modal-img {
  flex: 0 0 220px;
}
.modal-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
}
.modal-details {
  flex: 1;
  min-width: 0;
}
@media (max-width: 560px) {
  .modal-body {
    flex-direction: column;
    padding: 20px;
    gap: 16px;
  }
  .modal-img { flex: none; }
  .modal-img img { height: 180px; }
}

/* ════════════════════════════════════════════════════════════════
   10. SECTION TITLES
════════════════════════════════════════════════════════════════ */
.section-title {
  text-align: center;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 36px;
  color: #111;
}