/* ============================================================
   THREYA — MODERN LUXURY ACCENTS & LAYOUTS (PRODUCTION READY)
   ============================================================ */

:root {
  --gold: #D4AF37;
  --gold-dark: #B8932C;
  --rose-gold: #E8B4A0;
  --bg: #FFFFFF;
  --bg-sec: #FAF8F5;
  --text: #222222;
  --text-sec: #666666;
  --black: #111111;
  --border: #ECECEC;

  /* Legacy Variable Fallbacks & Utilities */
  --ink-soft: var(--text-sec);
  --white: var(--bg);
  --line: var(--border);
  --success: #16a34a;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', 'Inter', sans-serif;

  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-card: 0 10px 30px rgba(17, 17, 17, 0.04);
  --shadow-hover: 0 20px 40px rgba(17, 17, 17, 0.08);
  --container: 1240px;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

/* ---------- Scroll Reveal & Anim Inputs ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(5px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    filter 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

[data-reveal].active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--black);
  color: var(--bg);
  border: 1px solid var(--black);
}

.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--black);
  background: rgba(17, 17, 17, 0.02);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold);
  color: white;
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* ---------- Header & Sticky ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.logo-link {
  display: flex;
  align-items: center;
}

.brand-logo-img {
  height: 74px;
  margin-top: -8px;
  margin-bottom: -8px;
  width: auto;
  display: block;
  transition: var(--transition);
}

.brand-logo-img:hover {
  opacity: 0.85;
}

.footer-logo-img {
  height: 96px;
  margin-left: -10px;
}

@media (max-width: 480px) {
  .brand-logo-img {
    height: 46px;
  }
}

.nav-links {
  display: flex;
  gap: 40px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a {
  padding: 6px 0;
  position: relative;
  color: var(--text-sec);
}

.site-header.scrolled .nav-links a {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 18px;
}

.header-icons a,
.header-icons button {
  position: relative;
  color: var(--text-sec);
  transition: var(--transition);
}

.header-icons a:hover,
.header-icons button:hover {
  color: var(--gold);
}

.site-header.scrolled .header-icons a,
.site-header.scrolled .header-icons button {
  color: var(--black);
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--gold);
  color: white;
  font-size: 9px;
  font-weight: 700;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle {
  display: none;
}

@media (max-width: 860px) {
  .nav-links {
    display: none;
  }

  .mobile-toggle {
    display: block;
    font-size: 22px;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 24px;
    gap: 12px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-hover);
  }
}

/* ---------- Hero Luxury Slider ---------- */
.hero-section {
  position: relative;
  background: var(--bg-sec);
  overflow: hidden;
  height: 95vh;
  min-height: 650px;
  display: flex;
  align-items: center;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  display: none;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  height: 100%;
  padding: 120px 24px 80px;
  align-items: center;
}

.slide.active {
  display: grid;
  opacity: 1;
}

.slide-content h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  color: var(--black);
  margin: 18px 0;
  line-height: 1.1;
  font-weight: 500;
  animation: revealWord 1s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.slide-content p {
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--text-sec);
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeUp 1s ease-out 0.3s both;
}

.slide-content .hero-actions {
  animation: fadeUp 1s ease-out 0.5s both;
}

.slide-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  aspect-ratio: 0.9;
  animation: scaleCover 1.2s cubic-bezier(0.25, 1, 0.5, 1) both;
}

.slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 7s ease-out;
}

.slide.active .slide-image img {
  transform: scale(1.05);
}

/* Slide Indicators */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 10;
}

.dot {
  width: 24px;
  height: 3px;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--gold);
  width: 48px;
}

/* ---------- Featured Collections Grid ---------- */
.section {
  padding: 96px 24px;
  background: var(--bg);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 500;
}

.section-head .view-all {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
}

.section-head .view-all::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--gold);
}

.collections-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.collection-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 0.85;
  box-shadow: var(--shadow-card);
  background: #fff;
  transition: var(--transition);
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.collection-card .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.collection-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.collection-card .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 24px;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.7) 0%, rgba(17, 17, 17, 0) 100%);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: var(--transition);
}

.collection-card .overlay h3 {
  color: white;
  font-size: 20px;
  font-weight: 550;
  font-family: var(--font-body);
  margin-bottom: 6px;
}

.collection-card .overlay span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}

.collection-card .overlay-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  color: white;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
}

.collection-card:hover .overlay-btn {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Product Grid & Luxe Cards ---------- */
.product-slider-wrapper {
  position: relative;
  overflow: hidden;
  max-width: var(--container);
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

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

.product-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.product-card .thumb {
  position: relative;
  aspect-ratio: 0.82;
  overflow: hidden;
  background: var(--bg-sec);
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .thumb img {
  transform: scale(1.05);
}

/* Badge overlays */
.product-card .badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  color: var(--black);
  font-size: 10px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 30px;
  letter-spacing: 0.05em;
  border: 1.5px solid var(--border);
  z-index: 2;
}

/* Heart wishlist */
.wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  border: 1.5px solid var(--border);
  font-size: 14px;
  z-index: 2;
  transition: var(--transition);
}

.wishlist-btn:hover {
  background: #fee2e2;
  color: #ef4444;
  border-color: #fecaca;
  transform: scale(1.1);
}

.product-card .info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.product-card .cat-label {
  font-size: 10px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.product-card h3 {
  font-size: 15px;
  font-weight: 550;
  font-family: var(--font-body);
  color: var(--text);
}

.product-card .rating {
  font-size: 11px;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 4px;
}

.product-card .price {
  font-weight: 700;
  font-size: 16px;
  color: var(--black);
}

.product-card .mrp {
  font-size: 13px;
  color: var(--text-sec);
  text-decoration: line-through;
}

.product-card .off-badge {
  color: #16a34a;
  font-size: 11px;
  font-weight: 600;
}

.product-card .add-btn {
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
  border: 1px solid var(--black);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
  background: transparent;
  transition: var(--transition);
}

.product-card:hover .add-btn {
  background: var(--black);
  color: white;
}

/* ---------- Why Choose Us Cards ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.why-card {
  background: var(--bg-sec);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: var(--bg);
  box-shadow: var(--shadow-hover);
}

.why-card .icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: inline-block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.05));
}

.why-card h4 {
  font-size: 16px;
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--black);
}

.why-card p {
  font-size: 13px;
  color: var(--text-sec);
}

/* ---------- Testimonials Slider ---------- */
.testimonial-container {
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
  padding: 20px 0;
}

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

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

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
}

.testimonial-card .stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 14px;
}

.testimonial-card p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card .profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .profile img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-card .profile .info h5 {
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-body);
}

.testimonial-card .profile .info span {
  font-size: 11px;
  color: var(--text-sec);
}

/* ---------- Pinterest Style Instagram Gallery ---------- */
.instagram-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}

@media (max-width: 860px) {
  .instagram-masonry {
    grid-template-columns: repeat(2, 1fr);
  }
}

.instagram-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.instagram-item:hover img {
  transform: scale(1.06);
}

.instagram-item .ig-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 17, 17, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  color: white;
  font-size: 24px;
  z-index: 2;
}

.instagram-item:hover .ig-overlay {
  opacity: 1;
}

/* ---------- Premium Newsletter Block ---------- */
.newsletter-section {
  position: relative;
  background: var(--bg-sec);
  border-radius: var(--radius-lg);
  padding: 80px 40px;
  text-align: center;
  max-width: var(--container);
  margin: 64px auto;
  overflow: hidden;
  border: 1px solid var(--border);
}

.newsletter-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 180, 160, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  animation: rotateGrad 12s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.newsletter-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto;
}

.newsletter-content h2 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 12px;
}

.newsletter-content p {
  color: var(--text-sec);
  font-size: 14px;
  margin-bottom: 32px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: var(--font-body);
  background: var(--bg);
}

.newsletter-form input:focus {
  outline: 1.5px solid var(--gold);
  border-color: var(--gold);
}

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
  }
}

/* ---------- Minimal Luxury Footer ---------- */
.site-footer {
  background: var(--bg-sec);
  border-top: 1px solid var(--border);
  color: var(--text);
  padding: 80px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto 48px;
}

.footer-grid h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  margin-bottom: 20px;
  font-family: var(--font-body);
}

.footer-grid ul li {
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--text-sec);
}

.footer-grid ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: 0.05em;
  font-family: var(--font-heading);
}

.footer-logo span {
  color: var(--gold);
}

.footer-grid p.tagline {
  font-size: 13px;
  color: var(--text-sec);
  max-width: 320px;
  line-height: 1.7;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: var(--text-sec);
}

.footer-socials {
  display: flex;
  gap: 18px;
  margin-top: 16px;
}

.footer-socials a {
  font-size: 20px;
  color: var(--text-sec);
  transition: var(--transition);
}

.footer-socials a:hover {
  color: var(--gold);
  transform: scale(1.1);
}

@media (max-width: 860px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

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

/* ---------- WhatsApp Float & Toast ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
  z-index: 99;
  color: white;
}

.toast {
  position: fixed;
  bottom: 85px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--bg);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 13px;
  z-index: 101;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-hover);
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---------- Product Page Styling ---------- */
.pd-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.pd-gallery .main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 0.9;
  background: var(--bg-sec);
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}

.pd-gallery .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-thumbs {
  display: flex;
  gap: 14px;
}

.pd-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.pd-thumbs img.active {
  border-color: var(--gold);
  transform: scale(1.04);
}

.pd-info .cat-label {
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.pd-info h1 {
  font-size: 32px;
  margin: 12px 0 16px;
  font-weight: 500;
}

.rating-row {
  font-size: 13px;
  color: var(--text-sec);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pd-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}

.pd-price .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--black);
}

.pd-price .mrp {
  text-decoration: line-through;
  color: var(--text-sec);
  font-size: 18px;
}

.pd-price .off {
  color: #16a34a;
  font-size: 14px;
  font-weight: 600;
}

.pd-desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.8;
  margin-bottom: 32px;
}

.pd-variant {
  margin-bottom: 28px;
}

.pd-variant h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-sec);
  margin-bottom: 12px;
}

.swatches {
  display: flex;
  gap: 12px;
}

.swatch {
  padding: 10px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.swatch.active {
  border-color: var(--black);
  background: rgba(17, 17, 17, 0.02);
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}

.qty-stepper {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.qty-stepper button {
  padding: 10px 18px;
  font-size: 18px;
  font-weight: 500;
  background: var(--bg-sec);
}

.qty-stepper button:hover {
  background: var(--border);
}

.qty-stepper span {
  padding: 0 18px;
  min-width: 32px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.pd-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

.pd-actions .btn {
  flex: 1;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  margin-top: 24px;
}

.spec-table td {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.spec-table td:first-child {
  color: var(--text-sec);
  width: 35%;
  font-weight: 500;
}

.spec-table td:last-child {
  color: var(--text);
}

.trust-row {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.trust-row span {
  font-size: 12px;
  color: var(--text-sec);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

@media (max-width: 860px) {
  .pd-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-sec);
  padding: 110px 24px 10px;
  max-width: var(--container);
  margin: 0 auto;
}

.breadcrumb a {
  color: var(--text-sec);
}

.breadcrumb a:hover {
  color: var(--gold);
}

/* ---------- Shop Filters & Grid ---------- */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 20px 24px 80px;
  align-items: start;
}

.filters {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 90px;
}

.filters h3 {
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 600;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-sec);
  margin-bottom: 16px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  margin-bottom: 12px;
  cursor: pointer;
  color: var(--text);
}

.filter-group label input[type="checkbox"],
.filter-group label input[type="radio"] {
  accent-color: var(--gold);
  width: 15px;
  height: 15px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
}

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}

.shop-toolbar select {
  padding: 10px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  background: var(--bg);
  font-family: var(--font-body);
  outline: none;
}

.shop-toolbar select:focus {
  border-color: var(--gold);
}

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

  .filters {
    position: static;
  }
}

/* ---------- Shopping Cart Page ---------- */
.cart-layout {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 48px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 110px 24px 80px;
  align-items: start;
}

.cart-list-title {
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 500;
  margin-bottom: 32px;
}

.cart-item {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 24px;
  background: var(--bg);
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  margin-bottom: 16px;
  align-items: center;
}

.cart-item img {
  width: 90px;
  height: 110px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.cart-item h4 {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  margin-bottom: 6px;
}

.cart-item .meta {
  font-size: 12px;
  color: var(--text-sec);
  margin-bottom: 12px;
}

.cart-item .remove {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ef4444;
  font-weight: 600;
}

.cart-item .right {
  text-align: right;
}

.cart-item .item-price {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 15px;
}

.summary-box {
  background: var(--bg-sec);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 90px;
}

.summary-box h3 {
  font-size: 18px;
  margin-bottom: 24px;
  font-weight: 600;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 16px;
  color: var(--text-sec);
}

.summary-row.total {
  color: var(--black);
  font-weight: 700;
  font-size: 17px;
  border-top: 1.5px solid var(--border);
  padding-top: 18px;
  margin-top: 10px;
}

.promo-row {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.promo-row input {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-family: var(--font-body);
}

.promo-row input:focus {
  outline: 1.5px solid var(--gold);
  border-color: var(--gold);
}

.empty-state {
  text-align: center;
  padding: 96px 24px;
}

.empty-state .icon {
  font-size: 54px;
  margin-bottom: 20px;
}

@media (max-width: 860px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

/* ---------- Interactive Bottom Drawer (Mobile-First Navigation) ---------- */
.mobile-nav-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(15px);
  border-top: 1px solid var(--border);
  z-index: 100;
  padding: 10px 16px;
  justify-content: space-around;
  align-items: center;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.03);
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 20px;
  color: var(--text-sec);
}

.mobile-nav-item span {
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 3px;
  letter-spacing: 0.05em;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: var(--gold);
}

@media (max-width: 600px) {
  .mobile-nav-bar {
    display: flex;
  }

  .whatsapp-float {
    bottom: 85px;
  }

  .toast {
    bottom: 90px;
  }
}

/* ---------- Keyframes ---------- */
@keyframes revealWord {
  from {
    opacity: 0;
    transform: translateY(12px);
    filter: blur(3px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleCover {
  from {
    opacity: 0;
    transform: scale(0.98);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateGrad {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ============================================================
   SUBPAGES & LAYOUT COMPONENT STYLES (ABOUT, FAQ, CONTACT, ETC.)
   ============================================================ */

/* 1. Page Heros & Base Layouts */
.page-hero {
  background: var(--bg-sec);
  text-align: center;
  padding: 140px 24px 70px;
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 500;
  color: var(--black);
  margin-top: 8px;
}

.content-block {
  max-width: 840px;
  margin: 64px auto;
  padding: 0 24px;
}

.content-block h2 {
  font-size: 24px;
  font-weight: 500;
  color: var(--black);
  margin: 40px 0 18px;
  font-family: var(--font-heading);
}

.content-block p {
  color: var(--text-sec);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* 2. Grid & Dual layouts (About Page) */
.two-col-img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: var(--container);
  margin: 80px auto;
  padding: 0 24px;
  align-items: center;
}

.two-col-img div {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.two-col-img h2 {
  font-size: clamp(24px, 3.5vw, 36px);
  margin-bottom: 16px;
  font-weight: 500;
}

.two-col-img p {
  color: var(--text-sec);
  font-size: 14px;
  line-height: 1.8;
}

.two-col-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  aspect-ratio: 1.25;
  object-fit: cover;
  transition: var(--transition);
}

.two-col-img img:hover {
  box-shadow: var(--shadow-hover);
}

/* Trust promisses row */
.badge-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badge {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.trust-badge:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* 3. Collapse Details elements (FAQ Page) */
.faq-item {
  background: var(--bg);
  border: 1.1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item[open] {
  border-color: var(--gold);
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  color: var(--black);
  outline: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: 0.02em;
}

.faq-item summary::after {
  content: '+';
  font-size: 18px;
  font-weight: 400;
  color: var(--text-sec);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 24px 20px;
  margin: 0;
  color: var(--text-sec);
  font-size: 13.5px;
  line-height: 1.7;
}

/* 4. Form Components & Cards (Contact, Login, Checkout) */
.form-card {
  background: var(--bg);
  border: 1.1px solid var(--border);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.form-card h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--black);
}

.field {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.field label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-sec);
  margin-bottom: 8px;
}

.field input[type="text"],
.field input[type="tel"],
.field input[type="email"],
.field textarea {
  width: 100%;
  padding: 12px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--text);
  background: var(--bg);
  outline: none;
  transition: var(--transition);
}

.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* 5. Account/Dashboard Components (Account Page) */
.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  max-width: var(--container);
  margin: 140px auto 80px;
  padding: 0 24px;
  align-items: start;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-right: 1px solid var(--border);
  padding-right: 24px;
}

.account-nav a {
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text-sec);
  transition: var(--transition);
}

.account-nav a:hover,
.account-nav a.active {
  color: var(--gold);
  background: var(--bg-sec);
  font-weight: 600;
}

.account-panel {
  background: var(--bg);
  border: 1.1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  min-height: 400px;
}

.step-pill {
  flex: 1;
  padding: 10px 16px;
  border-radius: 30px;
  background: var(--bg-sec);
  border: 1.5px solid var(--border);
  font-size: 11px;
  font-weight: 600;
  color: var(--text-sec);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.step-pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: white;
}

/* 6. Checkout flow features (Checkout Page) */
.steps-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 140px auto 30px;
  max-width: 600px;
  padding: 0 24px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: 1.8fr 1.2fr;
  gap: 40px;
  max-width: var(--container);
  margin: 0 auto 80px;
  padding: 0 24px;
  align-items: start;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 550;
  transition: var(--transition);
}

.radio-card.active {
  border-color: var(--gold);
  background: rgba(212, 175, 55, 0.03);
}

.radio-card input[type="radio"] {
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
}

/* 7. Responsiveness Media Queries */
@media (max-width: 900px) {
  .account-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 120px;
  }

  .account-nav {
    flex-direction: row;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding-right: 0;
    padding-bottom: 16px;
    overflow-x: auto;
    white-space: nowrap;
  }

  .account-nav a {
    padding: 10px 16px;
  }

  .checkout-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .two-col-img {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 48px auto;
  }

  .two-col-img img {
    order: initial !important;
  }
}

@media (max-width: 480px) {

  .form-card,
  .account-panel {
    padding: 24px;
  }

  .field-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .steps-row {
    gap: 8px;
  }

  .step-pill {
    padding: 8px;
    font-size: 9px;
  }
}

/* Chatbot styles moved to /chatbot/chatbot.css for modular portability */