/* ==========================================
   TUWISH GIFTING STUDIO - DESIGN SYSTEM
   ========================================== */

:root {
  --primary: #c5a059;
  /* Champagne Gold */
  --primary-hover: #b08d47;
  --rose-gold: #d48a85;
  /* Warm Rose Gold */
  --gold-glow: rgba(197, 160, 89, 0.3);
  --dark-bg: #090c15;
  /* Deep Luxurious Slate */
  --dark-surface: #111526;
  --light-bg: #fbf9f6;
  /* Warm Ivory/Alabaster */
  --light-surface: #ffffff;
  --text-dark: #1a1e29;
  /* Near Black for readability */
  --text-muted: #5a6275;
  --text-light: #f3f4f6;
  --accent: #d4af37;
  /* Classic Gold */
  --accent-rose: #e6b0aa;

  --border-light: rgba(197, 160, 89, 0.15);
  --border-glass: rgba(255, 255, 255, 0.55);
  --border-glass-dark: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.03);
  --shadow-md:
    0 12px 20px -3px rgba(197, 160, 89, 0.08), 0 4px 8px -2px rgba(197, 160, 89, 0.04);
  --shadow-lg:
    0 25px 35px -5px rgba(26, 30, 41, 0.06), 0 12px 18px -5px rgba(26, 30, 41, 0.03);
  --shadow-glow: 0 0 30px rgba(197, 160, 89, 0.25);

  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Outfit", sans-serif;

  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-medium: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.2s ease;
}

/* ==========================================
   LUXURY PRELOADER
   ========================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #090c15;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.preloader-content {
  text-align: center;
  position: relative;
}

.preloader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: preloaderContentReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-brand-name {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--primary);
  letter-spacing: 8px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #f3e5ab, #c5a059, #f7dc6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: preloaderLetterSpacing 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.preloader-tagline {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--rose-gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 1.2s ease-out 0.8s forwards;
}

.preloader-line-wrap {
  width: 120px;
  height: 1px;
  background-color: rgba(197, 160, 89, 0.15);
  margin: 20px auto 0 auto;
  position: relative;
  overflow: hidden;
}

.preloader-line {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  position: absolute;
  left: -100%;
  animation: preloaderLineAnim 2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

@keyframes preloaderContentReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes preloaderLetterSpacing {
  0% {
    letter-spacing: 2px;
  }

  100% {
    letter-spacing: 12px;
  }
}

@keyframes preloaderLineAnim {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--light-bg);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  /* Custom cursor used */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
  border: 2px solid var(--light-bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-hover);
}

/* Custom Cursor Elements */
.custom-cursor {
  width: 35px;
  height: 35px;
  border: 1.5px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  z-index: 9999;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    background-color 0.3s ease,
    border-color 0.3s ease,
    opacity 0.3s ease;
}

.custom-cursor-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
  position: fixed;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: none;
  z-index: 9999;
  transition:
    transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.3s ease;
}

/* Cursor effects on hover */
body.hover-interactive .custom-cursor {
  transform: translate(-50%, -50%) scale(1.7);
  background-color: rgba(197, 160, 89, 0.08);
  border-color: var(--rose-gold);
}

body.hover-interactive .custom-cursor-dot {
  transform: translate(-50%, -50%) scale(0);
}

@media (max-width: 1024px) {
  body {
    cursor: auto;
  }

  .custom-cursor,
  .custom-cursor-dot {
    display: none;
  }
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* Typography elements */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--rose-gold) 100%);
  color: var(--light-surface);
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 10px 20px -8px rgba(197, 160, 89, 0.35);
  transition: var(--transition-medium);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow:
    0 15px 25px -5px rgba(197, 160, 89, 0.45),
    var(--shadow-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  font-weight: 500;
  padding: 11px 27px;
  border-radius: 50px;
  border: 1.5px solid var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition-medium);
  font-size: 0.95rem;
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--light-surface);
  transform: translateY(-3px);
}

.btn-large {
  padding: 15px 36px;
  font-size: 1.05rem;
}

.btn-gold-glow {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-medium);
  border: none;
  cursor: pointer;
}

.btn-gold-glow:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 20px 30px rgba(197, 160, 89, 0.45);
}

/* Gradients text styles */
.gold-gradient-text {
  background: linear-gradient(90deg, #b08d47, #d4af37, #f7dc6f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.rose-gradient-text {
  background: linear-gradient(90deg, #b35d6f, #d48a85, #e8a7a1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.main-header.scrolled {
  background: rgba(251, 249, 246, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.main-header:not(.scrolled) {
  padding: 20px 0;
}

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

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 44px;
  width: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--primary);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.05));
  transition: var(--transition-medium);
}

.logo-area:hover .brand-logo {
  transform: rotate(10deg) scale(1.05);
  border-color: var(--rose-gold);
  box-shadow: 0 0 10px rgba(212, 138, 133, 0.3);
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-dark);
  background: linear-gradient(90deg, var(--text-dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--rose-gold));
  transition: var(--transition-medium);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-dark);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta {
  font-size: 0.85rem;
  padding: 10px 22px;
}

/* Mobile Nav Toggle Icon */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 101;
}

.hamburger-line {
  width: 100%;
  height: 2px;
  background-color: var(--text-dark);
  transition: var(--transition-medium);
}

/* ==========================================
   MOBILE MENU OVERLAY
   ========================================== */

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(251, 249, 246, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition-smooth);
}

.mobile-nav-overlay.open {
  right: 0;
}

.mobile-nav-menu ul {
  list-style: none;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mobile-link {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition-medium);
  display: block;
}

.mobile-link:hover {
  color: var(--primary);
  transform: scale(1.05);
}

.mobile-cta {
  margin-top: 15px;
  display: inline-flex;
}

/* Hamburger morph */
.mobile-nav-toggle.open .line-1 {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-nav-toggle.open .line-2 {
  opacity: 0;
}

.mobile-nav-toggle.open .line-3 {
  transform: rotate(-45deg) translate(6px, -7px);
}

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

  .mobile-nav-toggle {
    display: flex;
  }
}

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

.hero-section {
  min-height: 100vh;
  padding-top: 140px;
  padding-bottom: 110px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--light-bg);
}

.hero-background-gradient {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 70%;
  background: radial-gradient(circle,
      rgba(197, 160, 89, 0.12) 0%,
      rgba(212, 138, 133, 0.08) 50%,
      rgba(251, 249, 246, 0) 100%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(197, 160, 89, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(197, 160, 89, 0.02) 1px, transparent 1px);
  pointer-events: none;
  z-index: 1;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 160, 89, 0.08);
  color: var(--primary-hover);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(197, 160, 89, 0.15);
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 580px;
  font-weight: 300;
}

.hero-btn-group {
  display: flex;
  gap: 20px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

/* Ultra-Sleek Automatic Trust Rotator */
.hero-trust-rotator {
  margin-top: 0;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(197, 160, 89, 0.35);
  border-radius: 50px;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(197, 160, 89, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  max-width: 440px;
  width: 100%;
}

.rotator-track {
  position: relative;
  height: 42px;
  overflow: hidden;
}

.rotator-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease-in-out, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.rotator-item.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.rotator-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.18), rgba(212, 138, 133, 0.12));
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-hover);
  font-size: 1rem;
  flex-shrink: 0;
}

.rotator-text {
  display: flex;
  flex-direction: column;
}

.rotator-title {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
}

.rotator-desc {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* Hero visual on right */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  background-color: var(--light-surface);
  padding: 16px;
  max-width: 100%;
}

.hero-main-img {
  width: 100%;
  max-width: 460px;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  aspect-ratio: 1 / 1;
}

/* Floating decorations inside hero image container */
.hero-floating-badge {
  position: absolute;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.5);
  z-index: 3;
}

.badge-1 {
  top: 40px;
  left: -20px;
  color: var(--rose-gold);
  animation: floatingEffect1 4s ease-in-out infinite;
}

.badge-2 {
  bottom: 80px;
  right: -20px;
  color: var(--primary);
  animation: floatingEffect2 4s ease-in-out infinite;
}

.hero-floating-card {
  position: absolute;
  bottom: -20px;
  left: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 3;
}

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

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulseGlow 1.5s infinite;
}

.hero-floating-card p {
  font-size: 0.85rem;
  color: var(--text-dark);
  margin: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-down-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 2px;
}

.arrow-scroll-box {
  width: 32px;
  height: 48px;
  border: 1.5px solid var(--text-muted);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  position: relative;
}

.arrow-scroll-box i {
  font-size: 0.6rem;
  color: var(--primary);
  animation: scrollIndicatorAnim 1.6s ease-in-out infinite;
}

/* Responsive hero */
@media (max-width: 992px) {
  .hero-section {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-btn-group {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    width: 100%;
  }

  .badge-1 {
    left: 10px;
  }

  .badge-2 {
    right: 10px;
  }
}

/* ==========================================
   COLLECTIONS SECTION
   ========================================== */

.collections-section {
  padding: 100px 0;
  background-color: var(--light-surface);
  position: relative;
}

.section-decor {
  position: absolute;
  width: 100%;
  height: 100px;
  left: 0;
  pointer-events: none;
}

.decor-top {
  top: 0;
  background: linear-gradient(to bottom, var(--light-bg), transparent);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 70px auto;
}

.section-subtitle {
  display: block;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.8rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.header-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--rose-gold));
  margin: 0 auto 24px auto;
  border-radius: 5px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.category-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--light-bg);
  border: 1px solid var(--border-light);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.category-img-container {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  color: var(--primary-hover);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

/* Category Hover Overlay */
.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top,
      rgba(9, 12, 21, 0.9) 0%,
      rgba(9, 12, 21, 0.4) 60%,
      rgba(9, 12, 21, 0.1) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  transition: var(--transition-medium);
  z-index: 1;
}

.category-overlay-content {
  transform: translateY(20px);
  transition: var(--transition-medium);
  color: var(--text-light);
}

.category-overlay-content h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #ffffff;
}

.category-overlay-content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  font-weight: 300;
}

.btn-card-order {
  background: linear-gradient(135deg, var(--primary) 0%, var(--rose-gold) 100%);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 10px 22px;
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-medium);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-card-order:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px rgba(197, 160, 89, 0.4);
}

.category-info {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-medium);
}

.category-info h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.category-link {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-medium);
}

/* Hover effects */
.category-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.category-card:hover .category-img {
  transform: scale(1.08);
}

.category-card:hover .category-overlay {
  opacity: 1;
}

.category-card:hover .category-overlay-content {
  transform: translateY(0);
}

.category-card:hover .category-info {
  background-color: var(--primary);
  color: var(--light-surface);
}

.category-card:hover .category-link {
  color: var(--light-surface);
  transform: translateX(5px);
}

@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

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

  .section-title {
    font-size: 2.2rem;
  }
}

/* ==========================================
   HOW TO ORDER SECTION
   ========================================== */

.how-to-order-section {
  padding: 100px 0;
  background-color: var(--light-bg);
  position: relative;
  overflow: hidden;
}

.how-to-decor-blur {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle,
      rgba(212, 138, 133, 0.08) 0%,
      rgba(197, 160, 89, 0.05) 50%,
      transparent 100%);
  border-radius: 50%;
  pointer-events: none;
}

.order-flow-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.order-step-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 18px 22px;
  text-align: center;
  border: 1.5px solid rgba(197, 160, 89, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: default;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

/* Gradient border on hover via pseudo-element */
.order-step-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--primary), var(--rose-gold), #d4af37);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.order-step-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.03) 0%, rgba(197, 160, 89, 0) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  border-radius: inherit;
}

.order-step-card:hover::before {
  opacity: 1;
}

.order-step-card:hover::after {
  opacity: 1;
}

/* Step number badge */
.step-num-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--primary);
  background: rgba(197, 160, 89, 0.1);
  border-radius: 20px;
  padding: 3px 9px;
  transition: background 0.4s ease, color 0.4s ease;
}

.order-step-card:hover .step-num-badge {
  background: var(--primary);
  color: #fff;
}

/* Icon wrap */
.step-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  flex-shrink: 0;
  margin-top: 8px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, background 0.4s ease, color 0.4s ease;
}

/* Per-step icon colors */
.icon-gold {
  background: rgba(197, 160, 89, 0.12);
  color: #c5a059;
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.12);
}

.icon-rose {
  background: rgba(212, 138, 133, 0.12);
  color: #d48a85;
  box-shadow: 0 6px 18px rgba(212, 138, 133, 0.12);
}

.icon-insta {
  background: linear-gradient(135deg, rgba(240, 148, 51, 0.1) 0%, rgba(188, 24, 136, 0.1) 100%);
  color: #c93091;
  box-shadow: 0 6px 18px rgba(188, 24, 136, 0.1);
}

.icon-accent {
  background: rgba(212, 175, 55, 0.12);
  color: #d4af37;
  box-shadow: 0 6px 18px rgba(212, 175, 55, 0.12);
}

/* Hover — icon fills solid */
.order-step-card:hover .icon-gold {
  background: linear-gradient(135deg, #c5a059 0%, #d4af37 100%);
  color: #fff;
  transform: scale(1.12) translateY(-5px);
  box-shadow: 0 18px 35px rgba(197, 160, 89, 0.35);
}

.order-step-card:hover .icon-rose {
  background: linear-gradient(135deg, #d48a85 0%, #c06060 100%);
  color: #fff;
  transform: scale(1.12) translateY(-5px);
  box-shadow: 0 18px 35px rgba(212, 138, 133, 0.35);
}

.order-step-card:hover .icon-insta {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 60%, #bc1888 100%);
  color: #fff;
  transform: scale(1.12) translateY(-5px);
  box-shadow: 0 18px 35px rgba(188, 24, 136, 0.3);
}

.order-step-card:hover .icon-accent {
  background: linear-gradient(135deg, #d4af37 0%, #c5a059 100%);
  color: #fff;
  transform: scale(1.12) translateY(-5px);
  box-shadow: 0 18px 35px rgba(212, 175, 55, 0.35);
}

/* Card body */
.step-card-body h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text-dark);
  font-family: var(--font-body);
}

.step-card-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Bottom arrow */
.step-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid rgba(197, 160, 89, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 2px;
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, transform 0.4s ease;
}

.order-step-card:hover .step-card-arrow {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: scale(1.15);
}

.step-card-arrow.last-step {
  border-color: rgba(197, 160, 89, 0.25);
  color: var(--primary);
}

.order-step-card:hover .step-card-arrow.last-step {
  background: linear-gradient(135deg, var(--primary), var(--rose-gold));
  border-color: transparent;
  color: #fff;
}

/* Card hover lift */
.order-step-card:hover {
  transform: translateY(-10px);
  border-color: transparent;
  box-shadow: 0 22px 50px rgba(197, 160, 89, 0.12), 0 6px 20px rgba(0, 0, 0, 0.07);
}

/* Responsive */
@media (max-width: 992px) {
  .order-flow-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .order-flow-wrapper {
    grid-template-columns: 1fr;
  }
}


/* Order CTA Box */
.order-cta-box {
  margin-top: 80px;
  text-align: center;
}

.cta-inner {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #171d33 100%);
  border-radius: 24px;
  padding: 60px 40px;
  position: relative;
  border: 1px solid var(--border-glass-dark);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 60%;
  height: 200%;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
  text-align: left;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-inner h3 {
  color: #fff;
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1.25;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.6;
}

.cta-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.cta-feature-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 18px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease;
}

.cta-feature-item:hover {
  transform: translateX(6px);
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(197, 160, 89, 0.25);
}

.feature-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.12);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.1);
  transition: transform 0.3s ease;
}

.cta-feature-item:hover .feature-icon {
  transform: scale(1.1);
}

.feature-text {
  text-align: left;
}

.feature-text h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-text p {
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.8rem !important;
  margin-bottom: 0 !important;
  line-height: 1.4 !important;
}

@media (max-width: 768px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .cta-content {
    align-items: center;
  }

  .cta-feature-item {
    padding: 16px;
  }
}

@media (max-width: 992px) {
  .order-flow-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .flow-line-connector {
    display: none;
  }

  .order-step-card {
    padding: 36px 28px;
  }
}

@media (max-width: 576px) {
  .order-flow-wrapper {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    padding: 40px 24px;
  }

  .cta-inner h3 {
    font-size: 1.7rem;
  }
}

/* ==========================================
   WHY CHOOSE US / PROMISE
   ========================================== */

.why-us-section {
  padding: 100px 0;
  background-color: var(--light-surface);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.why-us-text .accent-text {
  font-size: 1.1rem;
  color: var(--primary-hover);
  margin: -10px 0 36px 0;
  font-weight: 500;
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.promise-item {
  display: flex;
  gap: 20px;
}

.promise-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 138, 133, 0.08);
  color: var(--rose-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.promise-content h4 {
  font-size: 1.2rem;
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-weight: 600;
}

.promise-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 300;
}

/* Why us visual side */
.promise-display-box {
  background: linear-gradient(135deg,
      rgba(251, 249, 246, 0.6) 0%,
      rgba(212, 138, 133, 0.05) 100%);
  border-radius: 24px;
  padding: 48px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.feature-tag {
  position: absolute;
  top: -15px;
  left: 48px;
  background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
  color: #fff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.promise-quote-card {
  background: var(--light-surface);
  border-radius: 16px;
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.quote-icon {
  font-size: 2rem;
  color: var(--rose-gold);
  opacity: 0.3;
  display: block;
  margin-bottom: 16px;
}

.quote-body {
  font-style: italic;
  color: var(--text-dark);
  font-size: 1rem;
  margin-bottom: 24px;
  font-weight: 300;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  font-size: 2.2rem;
  color: var(--primary);
}

.quote-author h5 {
  font-size: 0.95rem;
  margin: 0;
  font-family: var(--font-body);
  font-weight: 600;
}

.quote-author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.promotions-glass-badge {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 20px 30px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.badge-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.badge-text {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
}

@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

/* ==========================================
   SOCIAL SHOWCASE (INSTAGRAM FEED MOCK)
   ========================================== */

.social-showcase-section {
  padding: 100px 0;
  background-color: var(--light-bg);
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.insta-photo-card {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.7);
}

.insta-photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 12, 21, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  color: #fff;
  font-size: 0.85rem;
  transition: var(--transition-fast);
}

.insta-hover-overlay i {
  font-size: 1.5rem;
  color: var(--rose-gold);
}

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

.insta-photo-card:hover .insta-hover-overlay {
  opacity: 1;
}

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

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

/* ==========================================
   FOOTER / CONTACT SECTION
   ========================================== */

.main-footer {
  background-color: var(--dark-bg);
  color: var(--text-light);
  padding: 80px 0 30px 0;
  position: relative;
  overflow: hidden;
}

.footer-decor-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg,
      var(--primary),
      var(--rose-gold),
      var(--accent),
      var(--primary));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr 1.3fr;
  gap: 40px;
  border-bottom: 1px solid var(--border-glass-dark);
  padding-bottom: 50px;
}

.footer-brand-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.footer-logo .brand-name {
  background: linear-gradient(90deg, #fff, var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  max-width: 320px;
  font-weight: 300;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  transition: var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-links a:hover {
  background-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-links-col h4,
.footer-contact-col h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

.footer-links-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links-col ul a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: var(--transition-fast);
}

.footer-links-col ul a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-method {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.contact-method i {
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-method a {
  color: #fff;
  font-weight: 500;
  transition: var(--transition-fast);
}

.contact-method a:hover {
  color: var(--rose-gold);
}

.footer-bottom {
  padding-top: 30px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 300;
}

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

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

/* ==========================================
   POPUP MODAL (INSTAGRAM REDIRECT)
   ========================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 12, 21, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-medium);
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  background-color: var(--light-surface);
  border-radius: 24px;
  padding: 40px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-light);
  position: relative;
  transform: translateY(30px);
  transition: var(--transition-medium);
  text-align: center;
}

.modal-overlay.open .modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--text-dark);
}

.modal-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
  color: #fff;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  box-shadow: 0 8px 20px rgba(220, 39, 67, 0.3);
}

.modal-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.modal-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.instruction-box {
  background: var(--light-bg);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 30px;
  text-align: left;
  border: 1px solid var(--border-light);
}

.inst-row {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.inst-row:last-child {
  margin-bottom: 0;
}

.inst-num {
  width: 20px;
  height: 20px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.inst-row p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-dark);
  line-height: 1.4;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-btn {
  width: 100%;
  justify-content: center;
  padding: 14px;
}

.modal-btn-alt {
  width: 100%;
  padding: 12px;
  border-radius: 50px;
  border: 1.5px solid #25d366;
  color: #25d366;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-fast);
}

.modal-btn-alt:hover {
  background-color: #25d366;
  color: #fff;
  transform: translateY(-2px);
}

/* ==========================================
   FLOATING ACTION BUTTONS (FAB)
   ========================================== */

.floating-social-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.floating-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  position: relative;
  transition: var(--transition-medium);
}

.floating-btn:hover {
  transform: translateY(-5px) scale(1.08);
}

.insta-float {
  background: linear-gradient(135deg,
      #f09433 0%,
      #e6683c 25%,
      #dc2743 50%,
      #cc2366 75%,
      #bc1888 100%);
}

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

/* Tooltip on hover */
.tooltip-text {
  position: absolute;
  right: 65px;
  background-color: var(--text-dark);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.floating-btn:hover .tooltip-text {
  opacity: 1;
  right: 60px;
}

@media (max-width: 768px) {
  .floating-social-widget {
    bottom: 20px;
    right: 20px;
  }

  .floating-btn {
    width: 44px;
    height: 44px;
    font-size: 1.25rem;
  }
}

/* ==========================================
   SCROLL REVEAL ANIMATIONS (Triggered via JS)
   ========================================== */

.reveal-left,
.reveal-right,
.reveal-up,
.reveal-scale,
.reveal-fade {
  opacity: 0;
  transition:
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.reveal-left {
  transform: translateX(-50px);
}

.reveal-right {
  transform: translateX(50px);
}

.reveal-up {
  transform: translateY(50px);
}

.reveal-scale {
  transform: scale(0.94);
}

.reveal-fade {
  transform: none;
}

.reveal-left.active,
.reveal-right.active,
.reveal-up.active,
.reveal-scale.active,
.reveal-fade.active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Transition delay helpers for stunning sequential animation */
.delay-50 {
  transition-delay: 0.05s;
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-150 {
  transition-delay: 0.15s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-250 {
  transition-delay: 0.25s;
}

.delay-300 {
  transition-delay: 0.3s;
}

.delay-350 {
  transition-delay: 0.35s;
}

.delay-400 {
  transition-delay: 0.4s;
}

.delay-450 {
  transition-delay: 0.45s;
}

.delay-500 {
  transition-delay: 0.5s;
}

.delay-550 {
  transition-delay: 0.55s;
}

.delay-600 {
  transition-delay: 0.6s;
}

.delay-650 {
  transition-delay: 0.65s;
}

.delay-700 {
  transition-delay: 0.7s;
}

.delay-750 {
  transition-delay: 0.75s;
}

.delay-800 {
  transition-delay: 0.8s;
}

/* Custom Animations Keyframes */
@keyframes floatingEffect1 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(3deg);
  }
}

@keyframes floatingEffect2 {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(-3deg);
  }
}

@keyframes pulseGlow {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4);
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
    box-shadow: 0 0 10px 4px rgba(197, 160, 89, 0.2);
  }
}

@keyframes scrollIndicatorAnim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(8px);
    opacity: 0.3;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================
   SIDE DECORATIONS & TEXTURES (ANTI-EMPTINESS)
   ========================================== */

/* Section background soft glows */
.collections-section::before {
  content: "";
  position: absolute;
  top: 20%;
  left: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.collections-section::after {
  content: "";
  position: absolute;
  bottom: 10%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 138, 133, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.how-to-order-section::after {
  content: "";
  position: absolute;
  top: 15%;
  right: -10%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.why-us-section::before {
  content: "";
  position: absolute;
  top: 10%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Side Ornaments (Floating Icons/Sparkles) */
.side-ornament {
  position: absolute;
  font-size: 2.2rem;
  color: rgba(197, 160, 89, 0.12);
  /* Soft luxury gold shadow */
  pointer-events: none;
  z-index: 2;
  transition: var(--transition-smooth);
}

.ornament-left-1 {
  left: 2.5%;
  top: 15%;
  animation: floatSideLeft 7s ease-in-out infinite;
}

.ornament-right-1 {
  right: 2.5%;
  top: 55%;
  color: rgba(212, 138, 133, 0.15);
  /* soft rose gold */
  animation: floatSideRight 9s ease-in-out infinite;
}

.ornament-left-2 {
  left: 3%;
  top: 35%;
  color: rgba(212, 138, 133, 0.15);
  animation: floatSideRight 8s ease-in-out infinite;
}

.ornament-right-2 {
  right: 3%;
  top: 75%;
  animation: floatSideLeft 10s ease-in-out infinite;
}

.ornament-left-3 {
  left: 2.5%;
  top: 50%;
  animation: floatSideLeft 9s ease-in-out infinite;
}

.ornament-right-3 {
  right: 2.5%;
  top: 25%;
  color: rgba(212, 138, 133, 0.15);
  animation: floatSideRight 7s ease-in-out infinite;
}

/* Floating Animations for Side Ornaments */
@keyframes floatSideLeft {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    color: rgba(197, 160, 89, 0.12);
    filter: drop-shadow(0 0 0 transparent);
  }

  50% {
    transform: translateY(-25px) rotate(15deg) scale(1.1);
    color: rgba(212, 138, 133, 0.25);
    filter: drop-shadow(0 10px 15px rgba(197, 160, 89, 0.15));
  }
}

@keyframes floatSideRight {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
    color: rgba(212, 138, 133, 0.12);
    filter: drop-shadow(0 0 0 transparent);
  }

  50% {
    transform: translateY(25px) rotate(-15deg) scale(1.15);
    color: rgba(197, 160, 89, 0.25);
    filter: drop-shadow(0 10px 15px rgba(212, 138, 133, 0.15));
  }
}

/* Responsive side ornaments hiding on mobile for spacing */
@media (max-width: 1200px) {
  .side-ornament {
    display: none;
  }
}

/* ==========================================
   NEW PREMIUM VISUAL ENHANCEMENTS
   ========================================== */

/* 1. Paper Grain Texture */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.015;
  pointer-events: none;
  z-index: 9998;
  /* Just below custom cursor */
}

/* 2. Hero Particle Canvas */
#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* 3. Floating Vector Shapes */
.hero-vector-shape {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-vector-shape.shape-1 {
  top: 18%;
  right: 8%;
  width: 200px;
  height: 200px;
  opacity: 0.22;
}

.hero-vector-shape.shape-2 {
  bottom: 22%;
  left: 6%;
  width: 50px;
  height: 50px;
  opacity: 0.28;
}

.float-slow {
  animation: floatSlow 10s ease-in-out infinite;
}

.float-medium {
  animation: floatMedium 6s ease-in-out infinite;
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0) rotate(0deg) scale(1);
  }

  50% {
    transform: translateY(-18px) rotate(8deg) scale(1.05);
  }
}

@keyframes floatMedium {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(12px) rotate(-15deg);
  }
}

/* 4. Button Shimmer Effect */
.btn-primary,
.btn-secondary,
.btn-gold-glow,
.btn-card-order,
.modal-btn,
.modal-btn-alt {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-gold-glow::after,
.btn-card-order::after,
.modal-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: skewX(-25deg);
  transition: 0.75s;
  pointer-events: none;
  z-index: 1;
}

/* Shimmer trigger on hover and periodic automatic sweep */
.btn-primary:hover::after,
.btn-gold-glow:hover::after,
.btn-card-order:hover::after,
.modal-btn:hover::after,
.btn-primary.shimmer-active::after,
.btn-gold-glow.shimmer-active::after {
  animation: shimmerEffect 1.5s ease-out;
}

@keyframes shimmerEffect {
  0% {
    left: -100%;
  }

  100% {
    left: 100%;
  }
}

/* 5. Animated SVG Icons */
.animated-svg-icon {
  width: 100%;
  height: 100%;
  transition: filter 0.45s ease, transform 0.45s ease;
}

.step-icon-box:hover .animated-svg-icon,
.promise-icon:hover .animated-svg-icon {
  transform: scale(1.1);
}


.promise-item:hover .svg-promise {
  animation: promisePulse 1s ease-in-out infinite alternate;
}

@keyframes promisePulse {
  0% {
    transform: scale(1);
    filter: drop-shadow(0 0 1px var(--primary));
  }

  100% {
    transform: scale(1.15);
    filter: drop-shadow(0 0 6px var(--primary));
  }
}

/* 6. Testimonial Slider / Carousel */
.testimonial-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
  width: 300%;
}

.testimonial-slide {
  width: 33.3333%;
  flex-shrink: 0;
  opacity: 1;
  transform: none;
  box-sizing: border-box;
  padding: 0 4px;
}

.testimonial-slide.active {
  opacity: 1;
  transform: none;
}

.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 15px;
  padding: 0 16px;
}

.slider-arrow {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  z-index: 5;
}

.slider-arrow:hover {
  background: var(--primary);
  color: #fff;
  transform: scale(1.1);
}

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

.slider-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(197, 160, 89, 0.25);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dots .dot.active {
  background-color: var(--primary);
  width: 20px;
  border-radius: 4px;
}

/* 7. Cursor Click Sparkles */
.click-sparkle {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  animation: sparkleFadeScale 0.8s cubic-bezier(0.1, 0.8, 0.2, 1) forwards;
}

@keyframes sparkleFadeScale {
  0% {
    transform: translate(-50%, -50%) scale(0.1) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) scale(1.5) rotate(180deg);
    opacity: 0;
  }
}

/* 8. Peeping Cartoon Character */
.peeping-character-container {
  position: fixed;
  right: 0;
  bottom: 150px;
  width: 160px;
  height: 240px;
  z-index: 999;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.peeping-character-container.active {
  transform: translateX(24px);
  /* Slide in to reveal 85% of the character */
}

.peeping-character-container.active .peeping-character-svg {
  animation: peepBob 3s ease-in-out infinite alternate;
}

@keyframes peepBob {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-8px) rotate(-2deg);
  }
}

/* Hides on mobile screens to avoid overlaying on content */
@media (max-width: 768px) {
  .peeping-character-container {
    display: none !important;
  }
}

/* ==========================================
   9. SCROLL ANIMATED SECTIONS (CYCLIST & COURIER)
   ========================================== */

/* Cyclist Track at bottom of collections */
.collections-section {
  position: relative;
  /* ensure relative for absolute children */
}

.cyclist-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  overflow: hidden;
  pointer-events: none;
  border-bottom: 2px dashed rgba(197, 160, 89, 0.2);
  z-index: 10;
}

.animated-cyclist {
  position: absolute;
  bottom: -5px;
  left: -120px;
  width: 120px;
  height: 80px;
  animation: driveAcross 18s linear infinite;
}

/* Courier Track at bottom of how-to-order */
.how-to-order-section {
  position: relative;
  /* ensure relative for absolute children */
}

.courier-track {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 90px;
  overflow: hidden;
  pointer-events: none;
  border-bottom: 2px dashed rgba(212, 138, 133, 0.2);
  z-index: 10;
}

.animated-courier {
  position: absolute;
  bottom: 0;
  left: -130px;
  width: 130px;
  height: 90px;
  animation: driveAcross 14s linear infinite;
}

/* Common driving animation */
@keyframes driveAcross {
  0% {
    left: -130px;
  }

  100% {
    left: 100%;
  }
}

/* Wheel spinning */
.bike-wheel,
.scooter-wheel {
  transform-origin: center;
  animation: wheelRotation 0.8s linear infinite;
}

.wheel-rear {
  transform-origin: 30px 55px;
  /* bike rear cx=30, cy=55 */
}

.wheel-front {
  transform-origin: 90px 55px;
  /* bike front cx=90, cy=55 */
}

.scooter-wheel.wheel-rear {
  transform-origin: 35px 65px;
  /* scooter rear cx=35, cy=65 */
}

.scooter-wheel.wheel-front {
  transform-origin: 85px 65px;
  /* scooter front cx=85, cy=65 */
}

@keyframes wheelRotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* Scooter vibration / bobbing */
.animated-courier svg {
  animation: scooterBob 0.2s linear infinite alternate;
}

@keyframes scooterBob {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-2px);
  }
}

/* Bike bobbing */
.animated-cyclist svg {
  animation: bikeBob 0.6s ease-in-out infinite alternate;
}

@keyframes bikeBob {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  100% {
    transform: translateY(-3px) rotate(1deg);
  }
}

/* Dust puff animations */
.dust-puff-1 {
  animation: puffFade 0.4s ease-out infinite alternate;
}

.dust-puff-2 {
  animation: puffFade 0.4s ease-out infinite 0.2s alternate;
}

@keyframes puffFade {
  0% {
    opacity: 0.2;
    transform: scale(0.8) translate(0, 0);
  }

  100% {
    opacity: 0.8;
    transform: scale(1.3) translate(-3px, -2px);
  }
}

/* ==========================================
   RAKHI SPECIAL HIGHLIGHT & ASSURANCE BANNER
   ========================================== */
.rakhi-special-section {
  padding: 90px 0;
  position: relative;
  background: linear-gradient(180deg, var(--dark-bg) 0%, #151a2e 50%, var(--dark-bg) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}

.rakhi-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.12) 0%, rgba(212, 138, 133, 0.05) 50%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
}

.rakhi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 45px;
}

.rakhi-card {
  background: rgba(17, 21, 38, 0.85);
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  display: flex;
  flex-direction: column;
}

.rakhi-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(197, 160, 89, 0.25);
}

.rakhi-img-wrap {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.rakhi-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.rakhi-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary), #d4af37);
  color: #090c15;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.rakhi-card-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.rakhi-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 10px;
  line-height: 1.35;
}

.rakhi-card-body p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}

.rakhi-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.rakhi-tag {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Luxury Brand Assurance Banner */
.assurance-banner {
  margin: 60px auto 20px auto;
  max-width: 1200px;
  width: calc(100% - 48px);
  padding: 36px 36px;
  background: linear-gradient(135deg, rgba(17, 21, 38, 0.95), rgba(9, 12, 21, 0.98));
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.assurance-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.assurance-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(197, 160, 89, 0.15), rgba(212, 138, 133, 0.1));
  border: 1px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.assurance-text h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.assurance-text p {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}