/* ==========================================================================
   REFLENIX | HAUTE LUXURY LIGHT THEME E-COMMERCE (RYVAN INSPIRED)
   Colors Extracted & Refined from Logo:
   - Primary Cyan: #00A8E8
   - Reflenix Red / Crimson Accent: #D90429
   - Deep Navy / Midnight Blue: #1B2A4A
   - Background Light: #FFFFFF / #F8FAFC
   - Card Light: #FFFFFF
   - Text Dark: #0F172A
   - Secondary Text: #64748B
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Scanned Logo Colors */
  --logo-cyan: #00A8E8;
  --logo-cyan-bright: #0082C8;
  --logo-navy: #1B2A4A;
  --logo-red: #D90429;

  /* Light Theme Core Palette */
  --bg-light: #FFFFFF;
  --bg-secondary: #F8FAFC;
  --card-light: #FFFFFF;
  --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 20px 40px rgba(0, 168, 232, 0.15), 0 10px 25px rgba(217, 4, 41, 0.1);
  --border-light: rgba(226, 232, 240, 0.8);

  --primary-gold: #C89B3C;
  --logo-gradient: linear-gradient(135deg, #00A8E8 0%, #1B2A4A 50%, #D90429 100%);
  --btn-gradient: linear-gradient(135deg, #00A8E8 0%, #0072B1 50%, #D90429 100%);

  --text-main: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;

  /* Modern Sleek & User-Attractive Typography */
  --font-heading: 'Outfit', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Inter', system-ui, -apple-system, sans-serif;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 50px;

  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* --------------------------------------------------
   Reset & Base Styles
   -------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-light);
  color: var(--text-main);
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #F1F5F9;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--logo-cyan), var(--logo-red));
  border-radius: 10px;
}

/* Selection */
::selection {
  background: var(--logo-cyan);
  color: #fff;
}

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

ul {
  list-style: none;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Typography Helpers */
h1, h2, h3, h4, h5, h6, .font-heading, .section-title, .hp-hero-title, .b-title {
  font-family: var(--font-heading) !important;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.text-gold {
  color: var(--primary-gold);
}

.text-gradient {
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-secondary {
  color: var(--text-secondary) !important;
}

/* Glassmorphism Containers (Light Theme) */
.glass-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(0, 168, 232, 0.3);
}

/* Buttons */
.btn-gold {
  background: var(--btn-gradient);
  color: #ffffff !important;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(0, 168, 232, 0.25);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-gold:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(217, 4, 41, 0.35);
}

.btn-outline-glass {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-weight: 500;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.btn-outline-glass:hover {
  background: var(--bg-secondary);
  border-color: var(--logo-cyan);
  color: var(--logo-cyan-bright);
  transform: translateY(-3px);
}

/* --------------------------------------------------
   1. Announcement Bar
   -------------------------------------------------- */
.announcement-bar {
  background: linear-gradient(90deg, #1B2A4A 0%, #00A8E8 50%, #D90429 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 10px 15px;
  text-align: center;
  position: relative;
  z-index: 1030 !important;
  letter-spacing: 0.5px;
}

.announcement-bar i {
  color: #FFD700;
  margin-right: 6px;
}

/* --------------------------------------------------
   2. Sticky Navbar (Light Clean)
   -------------------------------------------------- */
.navbar-custom {
  position: sticky !important;
  top: 0 !important;
  width: 100%;
  z-index: 1035 !important;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition-smooth);
}

/* Offcanvas Cart Backdrop & Drawer Z-Index Hierarchy (Drawer ON TOP of Header) */
.offcanvas-backdrop {
  z-index: 1040 !important;
}

.offcanvas {
  z-index: 1050 !important;
}

.navbar-custom.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom-color: rgba(0, 168, 232, 0.3);
}

.navbar-brand-img {
  height: 42px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.nav-link-custom {
  color: var(--text-main);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 16px;
  position: relative;
}

.nav-link-custom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--logo-gradient);
  transition: var(--transition-smooth);
}

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

.nav-icon-btn {
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.nav-icon-btn:hover {
  background: var(--logo-cyan);
  color: #fff;
  border-color: var(--logo-cyan);
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--logo-red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------
   3. Fullscreen Hero Section (Light Clean)
   -------------------------------------------------- */
.hero-section {
  position: relative;
  min-height: 80vh;
  padding-top: 30px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 10% 20%, rgba(0, 168, 232, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(217, 4, 41, 0.06) 0%, transparent 40%),
              #FFFFFF;
}

.hero-video-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.04;
  z-index: -1;
}

.floating-perfume {
  width: 100%;
  max-width: 440px;
  filter: drop-shadow(0 25px 35px rgba(0, 168, 232, 0.2));
  animation: floatBottle 6s ease-in-out infinite;
}

@keyframes floatBottle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(2deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid var(--logo-cyan);
  border-radius: 12px;
  position: relative;
}

.scroll-wheel {
  width: 4px;
  height: 8px;
  background: var(--logo-red);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollAnim 1.8s infinite;
}

@keyframes scrollAnim {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 20px; }
}

/* --------------------------------------------------
   General Section Styling
   -------------------------------------------------- */
.section-padding {
  padding: 100px 0;
}

.bg-secondary-custom {
  background-color: var(--bg-secondary) !important;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  background: rgba(0, 168, 232, 0.1);
  border: 1px solid rgba(0, 168, 232, 0.2);
  color: var(--logo-cyan-bright);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

/* --------------------------------------------------
   4 & 6 & 7. Product Cards Grid (Light White Cards)
   -------------------------------------------------- */
.product-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--card-light);
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: var(--logo-cyan);
  box-shadow: var(--card-shadow-hover);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #F1F5F9;
  flex-shrink: 0;
}

.product-img-wrapper a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
  transition: transform 0.6s ease;
}

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

.discount-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--logo-red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.card-actions-hover {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: var(--transition-smooth);
  z-index: 2;
}

.product-card:hover .card-actions-hover {
  opacity: 1;
  transform: translateX(0);
}

.card-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  color: var(--text-main);
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0 !important;
  margin: 0 !important;
  text-decoration: none !important;
  line-height: 1 !important;
}

.card-action-btn i {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.card-action-btn:hover {
  background: var(--logo-cyan);
  color: #fff;
  border-color: var(--logo-cyan);
}

.product-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-cat {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-title {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 6px 0;
}

.product-rating {
  color: #FFB800;
  font-size: 0.85rem;
  margin-bottom: 10px;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.1rem;
}

.old-price {
  color: var(--text-muted);
  text-decoration: line-through;
  font-size: 0.85rem;
  font-weight: 400;
}

/* Mobile Responsiveness for Product Cards */
@media (max-width: 575.98px) {
  .product-img-wrapper {
    height: 170px;
  }
  .product-content {
    padding: 12px 10px !important;
  }
  .product-title {
    font-size: 0.85rem !important;
    line-height: 1.3;
    margin: 4px 0 !important;
  }
  .product-cat {
    font-size: 0.65rem !important;
  }
  .product-rating {
    font-size: 0.75rem !important;
    margin-bottom: 6px !important;
  }
  .product-price {
    font-size: 0.95rem !important;
    gap: 4px !important;
    margin-bottom: 8px !important;
  }
  .old-price {
    font-size: 0.75rem !important;
  }
  .discount-badge {
    top: 8px;
    left: 8px;
    font-size: 0.65rem;
    padding: 2px 8px;
  }
  .card-actions-hover {
    top: 8px;
    right: 8px;
    gap: 5px;
    opacity: 1; /* Always visible on mobile touch devices */
    transform: translateX(0);
  }
  .card-action-btn {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.85rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
  }
  .btn-add-cart {
    padding: 8px 10px !important;
    font-size: 0.78rem !important;
  }
}

.color-dots {
  display: flex;
  gap: 6px;
  margin-top: 12px;
}

.color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
}

.color-dot:hover, .color-dot.active {
  transform: scale(1.2);
  border-color: var(--logo-cyan);
}

.btn-add-cart {
  width: 100%;
  margin-top: 15px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: #F1F5F9;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-add-cart:hover {
  background: var(--btn-gradient);
  border-color: transparent;
  color: #fff;
}

/* --------------------------------------------------
   5. Categories Grid
   -------------------------------------------------- */
.category-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  box-shadow: var(--card-shadow);
}

.category-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  z-index: 1;
}

.category-card:hover .category-bg {
  transform: scale(1.1);
}

.category-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.1) 60%, transparent 100%);
  z-index: 2;
}

.category-info {
  position: relative;
  z-index: 3;
}

/* --------------------------------------------------
   8. Product Swiper Slider
   -------------------------------------------------- */
.swiper-button-next-custom, .swiper-button-prev-custom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.swiper-button-next-custom:hover, .swiper-button-prev-custom:hover {
  background: var(--logo-cyan);
  color: #fff;
}

/* --------------------------------------------------
   9. Why Choose Us
   -------------------------------------------------- */
.feature-box {
  padding: 30px;
  text-align: center;
  border-radius: var(--radius-md);
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
}

.feature-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 168, 232, 0.1), rgba(217, 4, 41, 0.1));
  border: 1px solid var(--logo-cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--logo-cyan-bright);
}

/* --------------------------------------------------
   10. Brand Story
   -------------------------------------------------- */
.counter-num {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  background: var(--logo-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --------------------------------------------------
   11. Video Section
   -------------------------------------------------- */
.video-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.play-btn-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--logo-red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  z-index: 5;
  box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.6);
  animation: pulseRed 2s infinite;
}

@keyframes pulseRed {
  0% { box-shadow: 0 0 0 0 rgba(217, 4, 41, 0.6); }
  70% { box-shadow: 0 0 0 25px rgba(217, 4, 41, 0); }
  100% { box-shadow: 0 0 0 0 rgba(217, 4, 41, 0); }
}

/* --------------------------------------------------
   12. Customer Reviews
   -------------------------------------------------- */
.review-card {
  padding: 30px;
  border-radius: var(--radius-md);
  height: 100%;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  box-shadow: var(--card-shadow);
}

.avatar-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--logo-cyan);
}

/* --------------------------------------------------
   13. Instagram Gallery
   -------------------------------------------------- */
.insta-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  height: 220px;
}

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

.insta-hover {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  opacity: 0;
  transition: var(--transition-fast);
}

.insta-item:hover .insta-img {
  transform: scale(1.1);
}

.insta-item:hover .insta-hover {
  opacity: 1;
}

/* --------------------------------------------------
   14. Newsletter
   -------------------------------------------------- */
.newsletter-box {
  background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
  border: 1px solid var(--border-light);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
}

.newsletter-input {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  outline: none;
  width: 100%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.newsletter-input:focus {
  border-color: var(--logo-cyan);
  box-shadow: 0 0 15px rgba(0, 168, 232, 0.2);
}

/* --------------------------------------------------
   15. Premium Footer
   -------------------------------------------------- */
.footer-custom {
  background: #0F172A;
  color: #FFFFFF;
  padding-top: 80px;
  padding-bottom: 30px;
}

.footer-custom h5 {
  color: #FFFFFF !important;
}

.footer-link {
  color: #94A3B8;
  font-size: 0.9rem;
  margin-bottom: 10px;
  display: inline-block;
}

.footer-link:hover {
  color: #00F0FF;
  transform: translateX(5px);
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--logo-cyan);
  color: #fff;
}

/* Modal Light */
.modal-content-light {
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  color: var(--text-main);
  border-radius: var(--radius-md);
}

/* Responsive adjustments & Mobile Styling */
@media (max-width: 991.98px) {
  .navbar-custom {
    padding: 10px 16px;
  }
  .navbar-collapse {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px 16px;
    margin-top: 12px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    border: 1px solid var(--border-light);
  }
  .navbar-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 4px;
    margin-bottom: 14px !important;
  }
  .nav-link-custom {
    padding: 10px 14px !important;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    display: block;
    width: 100%;
    color: var(--text-main);
  }
  .nav-link-custom:hover,
  .nav-link-custom.active {
    background: #F8FAFC;
    color: var(--logo-red);
  }
  .nav-link-custom::after {
    display: none;
  }
  .nav-actions-wrapper {
    flex-direction: column;
    align-items: stretch !important;
    gap: 14px !important;
    width: 100%;
    padding-top: 14px;
    border-top: 1px solid #E2E8F0;
  }
  .section-title {
    font-size: 2.1rem;
  }
  .display-3 {
    font-size: 2.4rem;
  }
  .display-4 {
    font-size: 2.1rem;
  }
  .floating-perfume {
    max-width: 280px;
    margin-top: 20px;
  }
  .hero-section {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .announcement-bar {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
  .navbar-brand-img {
    height: 36px;
  }
  .btn-gold {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .btn-outline-glass {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  .product-img {
    height: 200px !important;
  }
  .card-product img {
    height: 180px !important;
  }
  .display-6 {
    font-size: 1.7rem;
  }
  .order-summary-card {
    margin-top: 20px;
  }
}

/* ============================================================
   RYVAN CINEMATIC HERO SLIDER & MARQUEE TICKER STYLES
   ============================================================ */
.hp-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0a0a0a;
}

.hp-hero .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hp-hero-img {
    width: 100%;
    height: 75vh;
    min-height: 480px;
    object-fit: cover;
    display: block;
    filter: brightness(0.85);
    transition: transform 8s ease;
}

.hp-hero .swiper-slide-active .hp-hero-img {
    transform: scale(1.06);
}

.hp-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 80px 70px;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.7) 0%,
        rgba(0,0,0,0.3) 55%,
        transparent 100%
    );
    z-index: 2;
}

.hp-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    color: #ff3f6c;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.hp-hero-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: #ff3f6c;
}

.hp-hero-title {
    font-size: 60px;
    font-weight: 800;
    color: #fff;
    line-height: 1.05;
    letter-spacing: -2px;
    margin: 0 0 16px;
    text-transform: uppercase;
    max-width: 700px;
}

.hp-hero-sub {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    font-weight: 400;
    max-width: 450px;
    line-height: 1.6;
}

.hp-hero-btns {
    display: flex;
    gap: 12px;
}

.hp-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ff3f6c;
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    transition: all 0.25s ease;
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(255,63,108,0.4);
}
.hp-hero-btn-primary:hover {
    background: #e52e59;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,63,108,0.5);
    color: #fff !important;
}

.hp-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    transition: all 0.25s ease;
    border-radius: 4px;
    border: 1.5px solid rgba(255,255,255,0.5);
}
.hp-hero-btn-secondary:hover {
    background: rgba(255,255,255,0.3);
    color: #fff !important;
}

/* MARQUEE TICKER */
.hp-ticker {
    background: #1B2A4A;
    overflow: hidden;
    padding: 12px 0;
    position: relative;
}
.hp-ticker-track {
    display: flex;
    width: max-content;
    animation: tickerMove 30s linear infinite;
    white-space: nowrap;
}
.hp-ticker-track:hover { animation-play-state: paused; }
@keyframes tickerMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.hp-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 40px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}
.hp-ticker-dot {
    width: 5px;
    height: 5px;
    background: #ff3f6c;
    border-radius: 50%;
    flex-shrink: 0;
}

/* SECTION HEADER FOR BENTO BOX */
.hp-sec-hdr {
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 15px 15px;
}
.hp-sec-title {
    font-size: 28px;
    font-weight: 800;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    position: relative;
}
.hp-sec-title::after {
    content: '';
    display: block;
    width: 48px;
    height: 3px;
    background: #ff3f6c;
    margin-top: 8px;
    border-radius: 2px;
}
.hp-sec-sub {
    font-size: 14px;
    color: #ff3f6c;
    font-weight: 700;
    margin: 6px 0 0;
}

/* ---- BENTO BOX GRID ---- */
.bento-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 15px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 16px;
}
.bento-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    background: #f5f5f6;
    transform: translateZ(0);
}
.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.bento-item:hover img { transform: scale(1.08); }

.bento-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.05) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}
.bento-overlay-center {
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0,0,0,0.35);
    transition: background 0.4s ease;
}
.bento-item:hover .bento-overlay-center { background: rgba(0,0,0,0.65); }

.b-tag {
    font-size: 11px;
    font-weight: 800;
    color: #ff3f6c;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.b-title {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin: 0;
    letter-spacing: -0.5px;
}
.b-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    margin: 10px 0 0;
    max-width: 85%;
    line-height: 1.5;
}
.b-link {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 12px;
    display: inline-block;
    border-bottom: 1px solid #fff;
    padding-bottom: 2px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}
.bento-item:hover .b-link { opacity: 1; transform: translateY(0); }

.bento-feat { grid-column: span 2; grid-row: span 2; }
.bento-wide { grid-column: span 2; grid-row: span 1; }
.bento-square { grid-column: span 1; grid-row: span 1; }
.bento-feat .b-title { font-size: 38px; }

/* Responsive break points for hero and bento grid */
@media (max-width: 1024px) {
    .hp-hero-title { font-size: 44px; }
    .hp-hero-overlay { padding: 0 40px 48px; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .bento-feat { grid-column: span 2; aspect-ratio: 1/1; }
    .bento-wide { grid-column: span 2; aspect-ratio: 2/1; }
    .bento-square { grid-column: span 1; aspect-ratio: 1/1; }
}

@media (max-width: 768px) {
    .hp-hero-img { height: 50vh; min-height: 360px; }
    .hp-hero-title { font-size: 26px; letter-spacing: -0.5px; }
    .hp-hero-overlay { padding: 0 20px 32px; }
    .hp-hero-sub { display: none; }
    .bento-grid { grid-template-columns: 1fr; gap: 12px; padding-bottom: 30px; }
    .bento-feat, .bento-wide, .bento-square { grid-column: span 1; aspect-ratio: auto; height: 260px; }
    .bento-overlay { padding: 20px; }
    .bento-feat .b-title { font-size: 24px; }
}

/* ---- BEST SELLERS (HALL OF FAME) STATIC ELECTRONICS BACKGROUND BANNER ---- */
.best-sellers-bg-section {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  color: #ffffff;
}

.best-sellers-bg-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  z-index: 0;
}

.best-sellers-bg-section > .container {
  position: relative;
  z-index: 2;
}

.best-sellers-bg-section .section-title {
  color: #ffffff !important;
}

.best-sellers-bg-section .section-tag {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

/* ---- MEGA ELECTRONICS SALE BANNER SECTION ---- */
.mega-sale-card {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.82) 0%, rgba(27, 42, 74, 0.85) 100%), 
              url('https://images.unsplash.com/photo-1550745165-9bc0b252726f?w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.style-sale-img {
  max-width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-radius: 16px;
}

.discount-badge-circle {
  width: 85px;
  height: 85px;
  border: 3.5px solid #ffffff;
  animation: pulseBadge 2s infinite ease-in-out;
}

@keyframes pulseBadge {
  0%, 100% { transform: translate(-20%, -20%) scale(1); }
  50% { transform: translate(-20%, -20%) scale(1.06); }
}

/* Mobile Responsiveness for Mega Sale Banner & Image */
@media (max-width: 767.98px) {
  .mega-sale-card {
    padding: 24px 16px !important;
  }
  .mega-sale-card .display-4 {
    font-size: 1.65rem !important;
    line-height: 1.25;
  }
  .style-sale-img {
    max-height: 220px !important;
    width: 100% !important;
    object-fit: cover !important;
    margin-top: 10px;
    border-width: 2px !important;
  }
  .discount-badge-circle {
    width: 62px !important;
    height: 62px !important;
    border-width: 2px !important;
  }
  .discount-badge-circle .fs-4 {
    font-size: 1rem !important;
  }
  .discount-badge-circle .fs-8 {
    font-size: 0.6rem !important;
  }
}

/* --------------------------------------------------
   Footer Custom (Sleek Dark Theme with High Contrast Light Text)
   -------------------------------------------------- */
.footer-custom {
  background: #0F172A !important;
  color: #E2E8F0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-custom h6 {
  color: #FFFFFF !important;
  font-weight: 700;
  letter-spacing: 0.8px;
}

.footer-custom p, .footer-custom .text-secondary, .footer-custom .text-light-muted {
  color: #94A3B8 !important;
}

.footer-custom .footer-links a {
  color: #CBD5E1 !important;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-custom .footer-links a:hover {
  color: #00A8E8 !important;
  transform: translateX(4px);
}

.footer-custom .social-icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF !important;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-custom .social-icon-btn:hover {
  background: #00A8E8 !important;
  border-color: #00A8E8 !important;
  color: #FFFFFF !important;
  transform: translateY(-3px);
}

.footer-custom input.form-control {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  color: #FFFFFF !important;
}

.footer-custom input.form-control::placeholder {
  color: #94A3B8 !important;
}

.footer-custom input.form-control:focus {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #00A8E8 !important;
  box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.25);
}
