/* =========================
   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;
  /* Product Page Specifics */
  --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: #f8f1e7;
  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;
}

/* Tablet */
@media (max-width: 768px) {
  .site-logo {
    height: 38px;
  }
}

/* Mobile Fix – Best Size For Long Logos */
@media (max-width: 480px) {
  .site-logo {
    height: 28px;          /* reduces height */
    max-width: 180px;      /* stops logo from being too wide */
    width: auto;
  }

  .logo-link {
    display: flex;
    align-items: center;
    justify-content: center;   /* centers logo perfectly */
    width: 100%;               /* optional: makes nav spacing perfect */
  }
}

/* Nav */
.main-nav {
  display: flex;
  gap: var(--nav-gap);
  align-items: center;
  justify-content: center;
  flex: 1;
}

.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 */
.mobile-menu-btn {
  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-nav {
  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 {
  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;
}

/* =========================
   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; } /* Original hidden, replaced by scroll below */

.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;
  /* Premium Micro-Interactions */
  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: #1b1b1b;
  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: #f6dfb4;
  margin-bottom: 10px;
}

.f-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #c9a464;
  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); }
}

/* ==========================================
   SHOP THEME (WHITE + CHAMPAGNE MIST)
   ========================================== */

/* Hero */
.shop-top-hero {
  background: #ffffff;
  padding: 36px 0 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.shop-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.shop-title, .shop-hero-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 36px;
  color: #3b2b17;
  margin: 10px 0 6px;
  /* Animation */
  opacity: 0;
  transform: translateY(14px);
  letter-spacing: 2px;
  animation: heroTitleReveal 1.1s ease-out forwards;
  animation-delay: 0.2s;
}

.shop-sub, .shop-hero-subtitle {
  margin: 0;
  color: #7a6a52;
  font-family: 'Playfair Display', serif !important;
  /* Animation */
  opacity: 0;
  transform: translateY(12px);
  animation: heroSubReveal 1.2s ease-out forwards;
  animation-delay: 0.45s;
}

@keyframes heroTitleReveal {
  0% { opacity: 0; transform: translateY(20px); letter-spacing: 4px; }
  60% { opacity: 1; }
  100% { opacity: 1; transform: translateY(0); letter-spacing: 1px; }
}

@keyframes heroSubReveal {
  0% { opacity: 0; transform: translateY(16px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Shop Main */
.shop-main {
  background: linear-gradient(90deg, #ffffff 0%, #f8f2e6 20%, #f3e8d8 50%, #f8f2e6 80%, #ffffff 100%);
  padding: 55px 0;
}

.shop-container {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
}

/* Sidebar */
.shop-sidebar {
  background: #ffffffcc;
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0e8d8;
}

.shop-sidebar h3 {
  color: #b09056;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.filter-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.filter-list li {
  padding: 10px 8px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.35s ease;
  color: #5a4b36;
}

.filter-list li:hover, .filter-list li.active-filter {
  background: #f2e7d5 !important;
  box-shadow: 0 0 12px rgba(201, 164, 100, 0.22);
  color: #8a6a32;
  transform: translateX(3px);
}

.price-range input {
  width: 100%;
  margin-bottom: 6px;
  accent-color: #c9a464;
}

.price-values {
  font-size: 13px;
  color: #7a7a7a;
  margin-bottom: 12px;
}

.filter-clear {
  padding: 10px 14px;
  border-radius: 8px;
  background: #faf6ef;
  border: 1px solid #e8ddc9;
  color: #7a643c;
  cursor: pointer;
  font-weight: 600;
}

/* Controls */
.shop-products { color: #3b2b17; }
.shop-controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
  align-items: center;
}

.search-wrap input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e9dfd0;
  background: #ffffffaa;
  backdrop-filter: blur(5px);
  color: #333;
  width: 270px;
}

.search-wrap input:focus {
  outline: none;
  border-color: #d6b98a !important;
  box-shadow: 0 0 12px rgba(201, 164, 100, 0.25);
}

.sort-wrap select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e8ddc9;
  color: #3c3c3c;
  background: #ffffffaa;
  transition: 0.25s ease;
}

.sort-wrap select:focus {
  border-color: #d6b98a !important;
  box-shadow: 0 0 10px rgba(201, 164, 100, 0.18);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 24px;
}

.product-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #f0e7d8;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
  overflow: hidden;
}

.product-media {
  height: 210px;
  position: relative;
  background: #faf5ef;
}

.product-media .product-img {
  width: 100%;
  height: 100%;
}

.badge-sale {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #d45c5c;
  color: #fff;
  padding: 6px 10px;
  border-radius: 10px;
  font-size: 13px;
}

.product-body { padding: 16px 14px 18px; }
.product-meta {
  font-size: 13px;
  color: #7c6a54;
  margin-bottom: 6px;
}
.product-price { color: #b48b45; font-weight: 800; font-size: 16px; }
.product-price .old { color: #b7a894; }
.product-rating { margin-top: 4px; color: #dbb771; font-size: 14px; }

/* Pagination */
.shop-pagination {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.page-btn {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #e8ddc9;
  background: white;
  color: #6b573c;
  position: relative;
  overflow: hidden;
  transition: background 0.3s ease;
}

.page-btn.active {
  background: linear-gradient(90deg, #c9a464, #f7e9c4);
  color: #3c2f1c;
  border-color: transparent;
}

.page-btn:active::after {
  content: "";
  position: absolute;
  width: 160%;
  height: 160%;
  background: rgba(201, 164, 100, 0.25);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  animation: rippleGold 0.45s ease-out;
}

@keyframes rippleGold {
  100% { transform: translate(-50%, -50%) scale(1); opacity: 0; }
}

/* ==========================================
   MOBILE FILTERS (SLIDE UP)
   ========================================== */
.mobile-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e8ddc9;
  color: #5a4b36;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.mobile-filter-btn .filter-count {
  background: #c9a464;
  color: #fff;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  margin-left: 6px;
}

.filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: none;
  background: rgba(0, 0, 0, 0.36);
  transition: opacity .28s ease;
}

.mobile-filter-panel {
  position: fixed;
  left: 0; right: 0; bottom: -110%;
  z-index: 1400;
  height: 82vh;
  max-height: 820px;
  background: linear-gradient(180deg, #ffffff, #fbf7ef 30%);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -18px 40px rgba(0, 0, 0, 0.14);
  transition: transform .38s cubic-bezier(.2, .9, .2, 1);
  transform: translateY(110%);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.mobile-filter-panel.open { transform: translateY(0%); bottom: 0; }
.filter-backdrop.show { display: block; opacity: 1; }

.mobile-filter-top {
  padding: 16px 18px 12px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #3b2b17;
  position: relative;
}

.filter-handle {
  width: 64px; height: 6px; border-radius: 6px; background: #f1e6d2; margin: 6px auto; opacity: .95;
}

.mobile-filter-top h3 { font-family: 'Playfair Display', serif; margin: 6px 0 2px; font-size: 18px; }
.mobile-filter-top p { margin: 0; font-size: 13px; color: #7a6a52; }

.mobile-filter-body { padding: 14px 16px 10px; overflow: auto; -webkit-overflow-scrolling: touch; }
.filter-section { margin-bottom: 14px; }
.filter-section h4 { color: #b09056; margin: 0 0 8px; font-size: 14px; font-weight: 700; }

.filter-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  background: #fff; border: 1px solid #efeadf; padding: 8px 12px; border-radius: 999px; color: #6b5740; font-weight: 600;
  cursor: pointer; font-size: 13px; transition: all .16s ease;
}

.chip.active {
  background: linear-gradient(90deg, #f7e9c4, #f1dfb0);
  box-shadow: 0 6px 16px rgba(201, 164, 100, 0.12);
  border-color: transparent;
}

.price-row { display: flex; gap: 8px; align-items: center; margin-bottom: 8px; }
.price-row input { flex: 1; padding: 8px 10px; border-radius: 8px; border: 1px solid #e8ddc9; background: #fff; color: #333; }
#priceRange { width: 100%; margin-top: 6px; accent-color: #c9a464; }

.mobile-filter-footer { display: flex; gap: 12px; padding: 12px; background: #fff; border-top: 1px solid #efe6d6; }
.btn-clear { flex: 1; background: transparent; border: 1px solid #e8ddc9; padding: 10px; border-radius: 10px; color: #6b5740; font-weight: 700; }
.btn-apply { flex: 1; background: linear-gradient(90deg, #c9a464, #f7e9c4); padding: 10px; border-radius: 10px; border: none; color: #1b120b; font-weight: 800; }
.filter-close { position: absolute; right: 12px; top: 12px; background: rgba(255, 255, 255, 0.9); border: none; padding: 6px 8px; border-radius: 8px; cursor: pointer; }

@media(min-width: 601px) {
  .mobile-filter-btn { display: none; }
  .mobile-filter-panel { display: none; }
  .filter-backdrop { display: none; }
}

/* ==========================================
   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; }
  .logo img.logo { height: 52px; }
}

@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; }
  .shop-container { grid-template-columns: 1fr; gap: 20px; }
  .shop-sidebar { display: flex; gap: 10px; overflow-x: auto; padding: 14px; }
  .filter-list { display: flex; gap: 10px; }
  .search-wrap input { width: 100%; }
}

@media (max-width: 880px) {
  .main-nav { display: none; }
  .mobile-menu-btn { display: block; }
  .logo-img { height: 56px; }
  .header-inner { padding: 12px 16px; }
}

@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) {
  .main-nav { display: none; }
  .menu-btn { display: block; }
  .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; }

  /* Shop Specific Mobile */
  .shop-main { padding-top: 12px !important; }
  .shop-sidebar {
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 10px !important;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    height: 55px !important;
    margin-bottom: 10px !important;
  }
  .shop-sidebar::-webkit-scrollbar { display: none; }
  .shop-sidebar h3, .filter-clear, .search-wrap button, .search-wrap .icon-btn { display: none !important; }
  .filter-list {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    margin: 0 !important;
    padding: 0 !important;
  }
  .filter-list li {
    padding: 6px 14px !important;
    background: #ffffff;
    border: 1px solid #e7d9c5;
    border-radius: 50px;
    font-size: 13px;
    line-height: 1;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .filter-list li.active-filter, .filter-list li:hover {
    background: #f2e7d5;
    border-color: #d6b98a;
    color: #8a6a32;
  }
  .shop-controls {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin-bottom: 14px !important;
  }
  .search-wrap, .sort-wrap {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
    position: relative !important;
  }
  .search-wrap input, .sort-wrap select {
    width: 100% !important;
    padding: 12px 14px !important;
    font-size: 14px !important;
    border-radius: 12px !important;
    background: #ffffffee !important;
    border: 1px solid #e9ddcc !important;
  }
  .products-grid { margin-top: 10px; }
  .cat-slider-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    padding: 0 4px;
  }
  .cat-scroll {
    flex: 1;
    overflow-x: auto;
    white-space: nowrap;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }
  .cat-scroll::-webkit-scrollbar { display: none; }
  .cat-left-arrow, .cat-right-arrow {
    border: none;
    background: #f7f0e5;
    color: #b08a54;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: 0.25s;
  }
  .cat-left-arrow:hover, .cat-right-arrow:hover {
    background: #e6d4bd;
    transform: translateY(-2px);
  }
}

@media(max-width: 520px) {
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 18px; }
  .product-media { height: 180px; }
  .product-img-lg { height: 330px; }
  .product-info h2 { font-size: 30px; }
}

*, *: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;
  }
}