/* =========================
   RESET & VARIABLES
   ========================= */


   
:root {
  --gold: #d4af37;
  --dark: #111;
  --muted: #777;
  --container: 1200px;
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-bg-scrolled: rgba(255, 255, 255, 0.80);
  --header-height: 88px;
  --header-height-scrolled: 62px;
  --nav-gap: 22px;
  --transition-fast: 220ms;
  --gold-light: #f1dfb4;
  --gray: #666;
  --font-title: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--dark);
  background: #fff;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   TOP NOTE
   ========================= */
.top-note {
  background: #aae6eb;
  border-bottom: 1px solid #eee;
  padding: 8px 20px;
  text-align: center;
  font-size: 14px;
  color: #3a2c17;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  height: auto;
  opacity: 0;
  transform: translateY(10px);
  animation: topNoteFadeUp 1.1s ease-out forwards;
  animation-delay: 0.4s;
}

.top-note .container {
  display: flex;
  justify-content: space-between;
  padding: 0;
  align-items: center;
}

@keyframes topNoteFadeUp {
  0% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 1; transform: translateY(0); }
}

.top-rotate {
  opacity: 0;
  transform: translateY(8px);
  display: inline-block;
  transition: opacity .35s ease, transform .35s ease;
}

.top-rotate.show {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   HEADER (GLASS + ANIMATIONS)
   ========================= */
.header-glass {
  position: sticky;
  top: 0;
  z-index: 1200;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  background: var(--glass-bg);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--transition-fast) ease, padding var(--transition-fast) ease, box-shadow var(--transition-fast) ease;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  height: var(--header-height);
  transition: height var(--transition-fast) ease, padding var(--transition-fast);
}

.header-glass.scrolled {
  background: var(--glass-bg-scrolled);
  box-shadow: 0 8px 24px rgba(18, 18, 18, 0.06);
}

.header-glass.scrolled .header-inner {
  height: var(--header-height-scrolled);
  padding: 8px 20px;
}

/* Desktop logo */
.site-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

/* Desktop Navigation - SHOW BY DEFAULT */
#mainNav, .main-nav {
  display: flex !important;
  gap: var(--nav-gap);
  align-items: center;
  justify-content: center;
  flex: 1;
}

/* Tablet */
@media (max-width: 768px) {
  .site-logo {
    height: 38px;
  }
}

/* Mobile Fix – Best Size For Long Logos */
@media (max-width: 480px) {
  .site-logo {
    height: 28px;
    max-width: 180px;
    width: auto;
  }

  .logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

/* Nav Links */
.nav-link {
  color: #111;
  text-decoration: none;
  font-weight: 500;
  padding: 6px 4px;
  position: relative;
  transition: color var(--transition-fast) ease, transform var(--transition-fast) ease;
  font-size: 15px;
  will-change: transform, color;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  height: 3px;
  width: 0%;
  background: var(--gold);
  border-radius: 6px;
  transition: width 220ms cubic-bezier(.2,.9,.3,1), opacity 220ms;
  opacity: 0;
}

.nav-link:hover {
  color: var(--gold);
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 70%;
  opacity: 1;
}

.nav-link.active { color: var(--gold); }
.nav-link.active::after { width: 70%; opacity: 1; }

.nav-link:focus, .mobile-link:focus, .icon-btn:focus {
  outline: 3px solid rgba(212, 175, 55, 0.14);
  outline-offset: 4px;
}

/* Header Right */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.icon-btn {
  background: transparent;
  border: 0;
  font-size: 18px;
  cursor: pointer;
  color: #222;
  padding: 8px;
  border-radius: 8px;
  transition: transform .15s ease;
}

.icon-btn:hover { transform: translateY(-3px); }

.cart { position: relative; }
.cart-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: #111;
  font-size: 12px;
  padding: 2px 6px;
  border-radius: 999px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.12);
}

/* Mobile Menu Button - HIDDEN BY DEFAULT ON DESKTOP */
.mobile-menu-btn, #mobileMenuBtn {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}

.hamburger {
  display: inline-block;
  width: 20px;
  height: 2px;
  background: #222;
  position: relative;
  border-radius: 2px;
}

.hamburger::before, .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #222;
  border-radius: 2px;
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* Mobile Menu - Always hidden by default */
.mobile-nav, #mobileNav {
  display: block;
  max-height: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.97);
  border-top: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 15px 28px rgba(0,0,0,0.08);
  position: relative;
  z-index: 1100;
  padding: 0 22px;
  transition: max-height .45s cubic-bezier(.3,.9,.3,1), padding .3s ease;
}

.mobile-nav.open, #mobileNav.open {
  max-height: 420px;
  padding: 14px 22px;
}

.mobile-link {
  display: block;
  padding: 14px 4px;
  border-bottom: 1px solid #ececec;
  color: #333;
  font-size: 15px;
  text-decoration: none;
  transition: .25s;
}

.mobile-link:hover {
  color: #c9a464;
  padding-left: 6px;
}

/* ============================================
   MOBILE NAVBAR FIX - 100% WORKING
   ============================================ */

/* DESKTOP: Show navbar, hide mobile button */
@media (min-width: 881px) {
  #mainNav, .main-nav {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
    position: relative !important;
    pointer-events: all !important;
  }
  
  .mobile-menu-btn, #mobileMenuBtn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    pointer-events: none !important;
  }
  
  .mobile-nav, #mobileNav {
    display: none !important;
  }
}

/* MOBILE: Hide navbar, show mobile button */
@media (max-width: 880px) {
  #mainNav, .main-nav {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    pointer-events: none !important;
  }
  
  .mobile-menu-btn, #mobileMenuBtn {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    width: auto !important;
    pointer-events: all !important;
  }
  
  #mobileNav {
    position: fixed !important;
    top: 70px !important;
    right: -260px !important;
    width: 260px !important;
    height: calc(100vh - 70px) !important;
    background: rgba(255,255,255,0.98) !important;
    padding: 22px 20px !important;
    box-shadow: -8px 0 25px rgba(0,0,0,0.15) !important;
    transition: right 0.3s ease !important;
    z-index: 99999 !important;
    display: block !important;
    overflow-y: auto !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }
  
  #mobileNav.open {
    right: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  
  /* Adjust header layout for mobile */
  .header-inner {
    padding: 10px 16px !important;
  }
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-split {
  position: absolute;
  inset: 0;
  display: flex;
  background-size: 110%;
  background-position: center;
  animation: heroZoom 12s ease-in-out infinite;
}

.hero-split .left, .hero-split .right {
  flex: 1;
  background-position: center;
  background-size: cover;
}

.hero-split.left { animation-delay: 0s; }
.hero-split.right { animation-delay: 3s; }

/* Dark fade to blend center */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.0), rgba(255, 255, 255, 0.0));
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #111;
}

.hero-overlay h1 {
  position: relative;
  top: 20px;
  font-family: 'Playfair Display', serif;
  font-size: 60px;
  font-weight: 600;
  color: #efeded;
  opacity: 0;
  margin: 0 0 20px;
  transform: translateY(25px);
  letter-spacing: 2px;
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
  animation: heroTitleFade 1.3s ease-out forwards;
  animation-delay: 0.4s;
}

.hero-overlay .btn-primary {
  margin-top: 18px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroBtnFade 1.3s ease-out forwards;
  animation-delay: 1.0s;
}

/* Hero Animations */
@keyframes heroZoom {
  0% { transform: scale(1); background-size: 110%; }
  50% { transform: scale(1.05); background-size: 120%; }
  100% { transform: scale(1); background-size: 110%; }
}

@keyframes heroTitleFade {
  0% { opacity: 0; transform: translateY(25px); letter-spacing: 4px; }
  60% { opacity: 1; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 2px; }
}

@keyframes heroBtnFade {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Primary Button (Luxury Shine) */
.btn-primary {
  position: relative;
  overflow: hidden;
  background: #000;
  color: #fff;
  padding: 14px 36px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background .3s ease, transform .2s ease;
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 120%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.4) 30%, rgba(255, 255, 255, 0.1) 60%);
  transform: skewX(-20deg);
}

.btn-primary:hover::before { animation: shineSweep 0.9s ease forwards; }
.btn-primary:hover { transform: translateY(-2px); }

@keyframes shineSweep {
  0% { left: -120%; }
  100% { left: 120%; }
}

/* =========================
   FEATURE STRIP (SCROLL)
   ========================= */
.feature-strip {
  width: 100%;
  overflow: hidden;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 10px 0;
  background: #faf6f0;
  position: relative;
}

.strip-inner { display: none; }

.strip-scroll { white-space: nowrap; }

.strip-content {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  color: #4b3823;
  animation: featureScroll 10s linear infinite;
}

@keyframes featureScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =========================
   CATEGORIES SLIDER
   ========================= */
.categories {
  padding: 70px 0 30px !important;
  margin-bottom: 0 !important;
  text-align: center;
}

.cat-slider-wrapper {
  position: relative;
  margin-top: 25px;
}

.cat-slider {
  display: flex;
  gap: 40px;
  overflow-x: hidden;
  padding: 20px 10px;
  scroll-behavior: smooth;
}

.cat-item {
  text-align: center;
  flex: 0 0 auto;
  width: 200px;
}

.cat-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #fdf8f2;
  border: 4px solid #056100;
  transition: .4s ease;
  box-shadow: 0 0 0 rgba(212, 175, 55, 0);
  margin: 0 auto 14px;
}

.cat-img:hover {
  transform: scale(1.12);
  box-shadow: 0 0 30px 10px rgba(212, 175, 55, 0.45);
}

.cat-name, .cat-title {
  margin-top: 14px;
  font-weight: 600;
  color: #3b2b17;
  font-size: 16px;
  transition: .3s ease;
  opacity: 0;
  transform: translateY(8px);
}

.cat-item:hover .cat-name {
  opacity: 1;
  transform: translateY(0);
}

/* Arrows */
.cat-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  background: #ffffff;
  border: 2px solid #c9a464;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  color: #c9a464;
  z-index: 10;
  transition: 0.3s;
}

.cat-arrow:hover {
  background: #c9a464;
  color: #fff;
}

.cat-arrow.left { left: -10px; }
.cat-arrow.right { right: -10px; }

/* Section Spacing Fix */
section {
  margin: 0 !important;
  padding-top: 30px;
  padding-bottom: 40px;
}

/* =========================
   NEW ARRIVALS SLIDER
   ========================= */
.new-arrivals {
  padding-top: 10px !important;
  padding-bottom: 40px;
  margin-top: 0 !important;
  text-align: center;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  color: #222;
  margin-bottom: 40px;
  position: relative;
}

.arrival-slider-wrapper {
  position: relative;
  max-width: 1150px;
  margin: 25px auto 0;
}

.arrival-slider {
  display: flex;
  gap: 35px;
  overflow-x: hidden;
  padding: 10px 0;
  scroll-behavior: smooth;
}

.product-card {
  width: 240px;
  flex: 0 0 auto;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  animation: cardFadeUp 0.8s ease-out forwards;
  animation-delay: 0.12s;
}

/* Product Card Animation Delays */
.product-card:nth-child(1) { animation-delay: 0.10s; }
.product-card:nth-child(2) { animation-delay: 0.16s; }
.product-card:nth-child(3) { animation-delay: 0.22s; }
.product-card:nth-child(4) { animation-delay: 0.28s; }
.product-card:nth-child(5) { animation-delay: 0.34s; }
.product-card:nth-child(6) { animation-delay: 0.40s; }

@keyframes cardFadeUp {
  0% { opacity: 0; transform: translateY(18px); }
  100% { opacity: 1; transform: translateY(0); }
}

.product-img {
  width: 240px;
  height: 260px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  transition: transform 0.55s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08), 0 0 20px rgba(201, 164, 100, 0.12);
}

.product-card:hover .product-img {
  transform: scale(1.035) !important;
}

.product-img.shine::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(25deg);
  transition: .5s;
}

.product-img:hover.shine::after {
  top: 100%;
  left: 100%;
}

.product-title {
  margin-top: 12px;
  font-weight: 600;
  color: #3b2b17;
  font-size: 16px;
}

.product-price {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 700;
  color: #c49a4a;
}

.product-price .old {
  font-size: 14px;
  text-decoration: line-through;
  color: #999;
  margin-left: 8px;
}

/* Arrivals Arrows */
.arr-arrow {
  position: absolute;
  top: 46%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid #c9a464;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 26px;
  color: #c9a464;
  transition: 0.3s;
  z-index: 10;
}

.arr-arrow:hover { background: #c9a464; color: #fff; }
.arr-arrow.left { left: -10px; }
.arr-arrow.right { right: -10px; }

/* Fade Edges */
.arr-fade-left, .arr-fade-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 90px;
  z-index: 8;
  pointer-events: none;
}
.arr-fade-left { left: 0; background: linear-gradient(to right, #ffffff, transparent); }
.arr-fade-right { right: 0; background: linear-gradient(to left, #ffffff, transparent); }

/* Wishlist Heart */
.wishlist-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 25px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.35);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: .3s ease;
  z-index: 3;
}

.wishlist-heart.active {
  background: #c9a464;
  color: #fff;
  transform: scale(1.15);
}

.view-all-wrap {
  text-align: center;
  margin-top: 24px;
}

.view-all-btn {
  background: #fff;
  border: 2px solid #000;
  padding: 12px 28px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: .25s;
}

.view-all-btn:hover { background: #000; color: #fff; }

/* =========================
   TESTIMONIALS (PREMIUM)
   ========================= */
.testimonials { padding: 70px 0; text-align: center; }

.testi-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #3b2b17;
  margin-bottom: 20px;
  position: relative;
}

.testi-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #c9a464, #f4e3b4, #c9a464);
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
}

.testi-container {
  max-width: 900px;
  margin: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

.testi-track {
  display: flex;
  transition: .6s ease;
  width: 100%;
}

.testi-item {
  min-width: 100%;
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  margin: 0 10px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  animation: fadeIn .8s ease;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

.testi-quote {
  font-size: 40px;
  color: #c9a464;
  opacity: 0.5;
  margin-bottom: 10px;
}

.testi-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.testi-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-user img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid #c9a464;
}

.testi-user h4 {
  margin: 0;
  color: #3b2b17;
  font-size: 16px;
  font-weight: 700;
}

.testi-btn {
  position: absolute;
  background: #fff;
  border: 2px solid #c9a464;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  color: #c9a464;
  cursor: pointer;
  transition: .3s;
  z-index: 3;
}

.testi-btn:hover { background: #c9a464; color: #fff; }
.testi-btn.left { left: 0; }
.testi-btn.right { right: 0; }

.testi-dots { margin-top: 15px; text-align: center; }

.tDot {
  width: 9px;
  height: 9px;
  background: #aaa;
  display: inline-block;
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: .3s;
}

.tDot.active {
  background: #c9a464;
  width: 22px;
  border-radius: 10px;
}

/* =========================
   INSTAGRAM SECTION
   ========================= */
.instagram-section {
  margin-top: 60px;
  padding: 30px 0;
  text-align: center;
}

.insta-title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 65%;
  height: 3px;
  background: linear-gradient(90deg, #c49a4a, #f1d39d, #c49a4a);
  animation: underlineGrow 1.3s ease forwards;
}

.insta-infinite-slider {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: instaScroll 26s linear infinite;
  padding: 20px 0;
}

.insta-item {
  width: 200px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #000;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  transition: .3s ease;
}

.insta-item:hover {
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(201, 164, 100, 0.45);
}

@keyframes instaScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.insta-item img, .insta-item video, .insta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Follow Us Box */
.insta-follow-section {
  margin: 70px 0 20px;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.insta-follow-box {
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 22px;
  padding: 45px 30px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
}

.insta-follow-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  text-align: left;
}

.insta-follow-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.insta-icon {
  width: 75px;
  height: 75px;
  fill: url(#goldGradient);
  animation: iconPulse 3s infinite ease-in-out;
}

@keyframes iconPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

.insta-follow-right { max-width: 450px; }
.insta-follow-right h2 {
  font-size: 26px;
  font-weight: 700;
  color: #3b2b17;
  margin-bottom: 6px;
}
.insta-follow-right p {
  color: #666;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 14px;
}

.insta-btn {
  padding: 10px 22px;
  background: linear-gradient(90deg, #c9a464, #f9e9c7, #c9a464);
  color: #3b2b17;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  transition: .3s;
}

.insta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(201, 164, 100, .6);
}

.gold-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(255, 230, 180, 0.55), transparent 70%);
  filter: blur(35px);
  top: -35px;
  right: -35px;
  animation: glowMove 6s infinite ease-in-out;
}

@keyframes glowMove {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-25px, 25px); }
  100% { transform: translate(0, 0); }
}

/* =========================
   FOOTER (LUXURY)
   ========================= */
.lux-footer {
  background: #01080e;
  color: #e9e9e9;
  padding: 60px 0 20px;
  margin-top: 60px;
  font-family: 'Poppins', sans-serif;
  position: relative;
}

.lux-footer::before {
  content: "";
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #c9a464, #f6dfb4, #c9a464);
  position: absolute;
  top: 0;
  left: 0;
}

.footer-top {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 35px;
}

.f-title {
  font-size: 26px;
  font-weight: 700;
  color: #ebebeb;
  margin-bottom: 10px;
}

.f-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #f8f8f8;
  margin-bottom: 15px;
}

.f-text {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.5;
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin: 8px 0; }
.footer-col ul li a {
  color: #cfcfcf;
  text-decoration: none;
  transition: .3s;
  font-size: 14px;
}
.footer-col ul li a:hover {
  color: #f6dfb4;
  padding-left: 5px;
}

.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.footer-social a i {
  font-size: 20px;
  color: #f6dfb4;
  transition: .3s;
}

.footer-social a:hover i {
  color: white;
  transform: scale(1.2);
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
  color: #aaa;
  font-size: 13px;
  animation: fadeUp .6s ease;
}

@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(15px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ==========================================
   PRODUCT PAGE UI
   ========================================== */
.product-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
  display: flex;
  gap: 40px;
  animation: fadeIn 0.7s ease;
}

.product-img-lg {
  width: 520px;
  height: 520px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.20);
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

.product-info { flex: 1; padding-top: 15px; }
.product-info h2 { font-family: var(--font-title); font-size: 38px; font-weight: 700; margin-bottom: 10px; }
.product-meta { color: var(--gray); font-size: 16px; }

.product-price-lg {
  font-size: 32px;
  font-weight: 700;
  color: #d11;
  margin: 18px 0;
}

.btn-buy {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  padding: 15px 32px;
  font-size: 18px;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 20px;
  border: none;
  transition: 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.btn-buy:hover { transform: scale(1.06); }

.product-tabs { margin-top: 40px; }
.tab-buttons { display: flex; gap: 18px; border-bottom: 2px solid #eee; margin-bottom: 20px; }
.tab-btn {
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 3px solid transparent;
  transition: 0.3s;
}
.tab-btn.active { border-bottom: 3px solid var(--gold); color: var(--gold); }
.tab-content { display: none; font-size: 15px; line-height: 1.8; color: var(--gray); }
.tab-content.active { display: block; animation: fadeIn 0.4s ease; }

/* =========================
   MEDIA QUERIES & RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .hero-overlay h1 { font-size: 72px; }
}

@media (max-width: 980px) {
  .product-wrapper { flex-direction: column; }
  .product-img-lg { width: 100%; height: 420px; }
}

@media(max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 780px) {
  .insta-follow-inner { flex-direction: column; text-align: center; gap: 18px; }
  .insta-follow-right { max-width: 100%; text-align: center; }
  .insta-icon { width: 60px; height: 60px; }
}

@media (max-width: 768px) {
  .hero-overlay h1 { font-size: 48px; }
  .hero-inner { height: 56vh; }
  .cat-grid { gap: 18px; }
  .cat-item { width: 150px; }
  .cat-img { width: 120px; height: 120px; }
  .cat-arrow.left { left: 0; }
  .cat-arrow.right { right: 0; }
  .arr-arrow.left { left: 0; }
  .arr-arrow.right { right: 0; }
  .product-card { width: 180px; }
  .product-img { width: 180px; height: 210px; }
  .insta-item { width: 150px; height: 200px; }
  .instagram-section { padding: 10px 0; }
}

@media(max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-info-bar { grid-template-columns: 1fr; text-align: center; }
  .footer-info-item { justify-content: center; }
  .testimonial-container { padding: 20px 15px; }
  .quote-left, .quote-right { font-size: 28px; top: 10px; }
  .testimonial-text { font-size: 15px; }
  .testimonial-name { font-size: 16px; }
  .testi-item { padding: 22px 15px; }
  .testi-title { font-size: 23px; }
  .testi-user h4 { font-size: 15px; }
  .f-title { font-size: 22px; }
  .footer-col { text-align: center; }
  .footer-social { justify-content: center; }
}

*, *:after, *:before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    cursor: default;
}

.testim {
    width: 100%;
    position: relative;
    padding: 120px 0 80px;
}

.testim .wrap {
    max-width: 1020px;
    margin: auto;
    padding: 40px 20px;
    position: relative;
}

.testim .arrow {
    position: absolute;
    top: 50%;
    color: #eee;
    font-size: 2em;
    padding: 5px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: 0.3s ease;
    z-index: 5;
}
.testim .arrow:hover { color: #ea830e; }
.testim .arrow.left { left: 10px; }
.testim .arrow.right { right: 10px; }

.testim .dots {
    text-align: center;
    position: relative;
    margin-top: 30px;
}
.testim .dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #eee;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: 0.3s ease;
}
.testim .dots .dot.active,
.testim .dots .dot:hover {
    background: #ea830e;
    border-color: #ea830e;
}

.testim .cont {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.testim .cont > div {
    position: absolute;
    opacity: 0;
    width: 100%;
    transition: 0.5s;
    padding-bottom: 50px;
}
.testim .cont > div.active {
    position: relative;
    opacity: 1;
}

.testim .cont .img img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

.testim .cont h2 {
    color: #ea830e;
    margin-top: 15px;
}

.testim .cont p {
    color: #fff;
    font-size: 1.15em;
    width: 80%;
    margin: 10px auto 0;
}
    /* PERFECT INSTAGRAM SLIDER - NO EMPTY SPACE */
.premium-insta-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.slider-track {
  display: flex;
  gap: 15px;
  animation: seamlessInstaScroll 40s linear infinite;
  width: max-content;
}

.insta-item {
  width: 200px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #000;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
  transition: .3s ease;
}

.insta-item:hover {
  transform: scale(1.06);
  box-shadow: 0 0 20px rgba(201, 164, 100, 0.45);
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PERFECT SEAMLESS ANIMATION */
@keyframes seamlessInstaScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Mobile Optimization */
@media (max-width: 768px) {
  .premium-insta-slider {
    padding: 15px 0;
  }
  
  .slider-track {
    gap: 12px;
    animation: seamlessInstaScroll 35s linear infinite;
  }
  
  .insta-item {
    width: 160px;
    height: 200px;
  }
}

@media (max-width: 480px) {
  .insta-item {
    width: 140px;
    height: 180px;
  }
  
  .slider-track {
    animation: seamlessInstaScroll 30s linear infinite;
  }
}


