/* ========== MODERN JEWELRY WEBSITE CSS ========== */
/* ========== GOOGLE FONTS IMPORT ========== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap");

/* ========== GOOGLE FONTS IMPORT ========== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&family=Crimson+Text:wght@400;600;700&display=swap");

/* Gift Section Animations */
.gift-image-container {
  position: relative;
  overflow: hidden;
}

.gift-float-1,
.gift-float-2,
.gift-float-3 {
  position: absolute;
  opacity: 0.6;
  filter: drop-shadow(0 0 5px rgba(var(--color-rose-gold-rgb), 0.3));
}

.gift-float-1 {
  top: 20%;
  left: 20%;
  animation: floatGift1 4s ease-in-out infinite;
}

.gift-float-2 {
  top: 40%;
  right: 20%;
  animation: floatGift2 5s ease-in-out infinite;
}

.gift-float-3 {
  bottom: 20%;
  left: 30%;
  animation: floatGift3 6s ease-in-out infinite;
}

@keyframes floatGift1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -10px) rotate(5deg);
  }
}

@keyframes floatGift2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10px, -15px) rotate(-5deg);
  }
}

@keyframes floatGift3 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, -5px) rotate(3deg);
  }
}

.bg-gradient-overlay-rose {
  background: linear-gradient(
    45deg,
    rgba(var(--color-purple-rgb), 0.3) 10%,
    rgba(var(--color-champagne-rgb), 0.3) 100%
  );
}

.gift-icon-wrapper {
  position: relative;
}

.gift-icon-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: var(--color-rose-gold);
  opacity: 0.2;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
}

.hover-scale {
  transition: transform 0.3s ease-out;
}

.hover-scale:hover {
  transform: scale(1.02);
}
/* Elegant, Professional & Futuristic Design */

/* Font Awesome CDN - Add this to your HTML head or import here */
/* Make sure Font Awesome 5 is loaded in your HTML */

/* ========== CSS VARIABLES - NEW COLOR PALETTE ========== */
:root {
  /* Primary Color Palette - Lighter Theme */
  --color-rose-gold: #e0b4b2; /* Elegant rose gold */
  --color-amber: #e99856; /* Warm amber */
  --color-burgundy: #c85670; /* Lighter burgundy */
  --color-plum: #8a4d68; /* Softer plum */
  --color-purple: #6b3d7a; /* Lighter royal purple */
  --color-midnight: #4a4868; /* Softer midnight blue */

  /* Supporting Colors */
  --color-white: #ffffff;
  --color-cream: #fff9f7;
  --color-light-gray: #f8f8f8;
  --color-dark-gray: #6b6b6b; /* Lighter dark gray */
  --color-text-primary: #4a4868; /* Softer primary text */
  --color-text-secondary: #8a4d68; /* Softer secondary text */
  --color-text-light: #999999; /* Lighter text */

  /* Gradients */
  --gradient-primary: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--color-burgundy),
    var(--color-plum)
  );
  --gradient-dark: linear-gradient(
    135deg,
    var(--color-purple),
    var(--color-midnight)
  );
  --gradient-light: linear-gradient(
    135deg,
    var(--color-cream),
    var(--color-white)
  );
  --gradient-overlay: linear-gradient(
    45deg,
    rgba(224, 180, 178, 0.1),
    rgba(233, 152, 86, 0.1)
  );

  /* Typography - Google Fonts */
  --font-primary: "Poppins", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --font-secondary: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-tertiary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: "Crimson Text", Georgia, serif;
  --font-display: "Playfair Display", Georgia, serif;

  /* Spacing & Sizing */
  --header-height: 80px;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;

  /* Transitions & Animations */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(26, 24, 54, 0.05);
  --shadow-md: 0 4px 12px rgba(26, 24, 54, 0.1);
  --shadow-lg: 0 8px 24px rgba(26, 24, 54, 0.15);
  --shadow-xl: 0 16px 48px rgba(26, 24, 54, 0.2);
  --shadow-glow: 0 0 20px rgba(224, 180, 178, 0.3);
}

/* ========== GLOBAL RESET & BASE STYLES ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========== ENHANCED SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--color-light-gray);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-secondary);
  border-radius: 5px;
  transition: var(--transition-smooth);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-glow);
}

/* ========== ENHANCED PROFESSIONAL HERO CAROUSEL ========== */

/* Main Hero Section */
.hero-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-midnight) 0%,
    var(--color-purple) 100%
  );
  min-height: 100vh;
}

/* Hero Carousel Container */
.hero-carousel-container {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* Individual Hero Slides */
.hero-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* Enhanced Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(74, 72, 104, 0.7) 0%,
    rgba(107, 61, 122, 0.6) 50%,
    rgba(138, 77, 104, 0.7) 100%
  );
  z-index: 1;
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

/* ========== HERO CONTENT STYLING ========== */

/* Premium Badge */
.hero-badge-wrapper {
  margin-bottom: 2rem;
}

.hero-premium-badge {
  display: inline-block;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold) 0%,
    var(--color-amber) 100%
  );
  color: var(--color-white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(224, 180, 178, 0.3);
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-premium-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.hero-premium-badge:hover::before {
  left: 100%;
}

.badge-shine {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: badgeShine 3s infinite;
}

@keyframes badgeShine {
  0%,
  100% {
    transform: translateX(20px);
    opacity: 0;
  }
  50% {
    transform: translateX(-20px);
    opacity: 1;
  }
}

/* Hero Typography */
.hero-title {
  font-family: var(--font-display);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.hero-title-main {
  display: block;
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-accent {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-title-accent::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: titleUnderline 1s ease-out 1.5s both;
}

@keyframes titleUnderline {
  from {
    width: 0;
  }
  to {
    width: 100px;
  }
}

/* Hero Description */
.hero-description {
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  margin-bottom: 3rem;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* ========== HERO ACTION BUTTONS ========== */

.hero-actions {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-btn {
  position: relative;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  min-width: 200px;
  text-align: center;
}

.hero-btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border: 2px solid transparent;
  box-shadow: 0 8px 32px rgba(200, 86, 112, 0.4);
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 48px rgba(200, 86, 112, 0.6);
  color: var(--color-white);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: var(--color-white);
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease;
  z-index: 1;
}

.hero-btn-primary:hover .btn-shine {
  left: 100%;
}

/* ========== TRUST INDICATORS ========== */

.hero-trust-indicators {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item i {
  color: var(--color-amber);
  font-size: 1.1rem;
}

/* ========== PRODUCT SHOWCASE ========== */

.hero-product-showcase {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.showcase-main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.showcase-main-image img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.showcase-main-image:hover img {
  transform: scale(1.05);
}

.image-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: var(--gradient-primary);
  border-radius: 30px;
  opacity: 0.3;
  filter: blur(20px);
  z-index: -1;
  animation: imageGlow 4s ease-in-out infinite alternate;
}

@keyframes imageGlow {
  from {
    transform: scale(0.95);
    opacity: 0.2;
  }
  to {
    transform: scale(1.05);
    opacity: 0.4;
  }
}

/* ========== FLOATING CARDS ========== */

.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem;
  border-radius: 15px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: floatingAnimation 6s ease-in-out infinite;
}

.floating-card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-card-2 {
  bottom: 30%;
  left: -15%;
  animation-delay: 2s;
}

.floating-card-3 {
  top: 60%;
  right: 10%;
  animation-delay: 4s;
}

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

.card-content {
  text-align: center;
  min-width: 120px;
}

.card-content i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.card-content h6 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-text-primary);
}

.card-content p {
  font-size: 0.75rem;
  color: var(--color-text-secondary);
  margin: 0;
}

/* ========== NAVIGATION CONTROLS ========== */

.hero-navigation {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.hero-nav-btn {
  position: relative;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--color-white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.4s ease;
  pointer-events: all;
  overflow: hidden;
}

.hero-nav-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.nav-btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.hero-nav-btn:hover .nav-btn-bg {
  opacity: 1;
}

/* ========== ENHANCED INDICATORS ========== */

.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.indicators-container {
  display: flex;
  gap: 1rem;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-indicator {
  position: relative;
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
}

.hero-indicator.active {
  background: rgba(255, 255, 255, 0.5);
}

.indicator-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gradient-primary);
  border-radius: 2px;
  width: 0;
  transition: width 0.4s ease;
}

.hero-indicator.active .indicator-progress {
  width: 100%;
  animation: indicatorProgress 5s linear infinite;
}

@keyframes indicatorProgress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* ========== SCROLL INDICATOR ========== */

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}

.scroll-icon {
  width: 30px;
  height: 50px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 8px;
}

.scroll-icon i {
  font-size: 0.8rem;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

.scroll-text {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========== SLIDE ANIMATIONS ========== */

.slide-animations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.animation-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.6;
}

.particle-1 {
  top: 20%;
  left: 10%;
  animation: particleFloat1 8s ease-in-out infinite;
}

.particle-2 {
  top: 60%;
  right: 15%;
  animation: particleFloat2 10s ease-in-out infinite;
}

.particle-3 {
  bottom: 30%;
  left: 20%;
  animation: particleFloat3 12s ease-in-out infinite;
}

.particle-4 {
  top: 40%;
  right: 25%;
  animation: particleFloat4 6s ease-in-out infinite;
}

@keyframes particleFloat1 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(20px, -30px) scale(1.5);
    opacity: 0.8;
  }
}

@keyframes particleFloat2 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(-25px, 40px) scale(1.2);
    opacity: 0.9;
  }
}

@keyframes particleFloat3 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translate(30px, -20px) scale(1.8);
    opacity: 0.7;
  }
}

@keyframes particleFloat4 {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-15px, -35px) scale(1.3);
    opacity: 0.6;
  }
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 1200px) {
  .floating-card-1 {
    right: -5%;
  }
  .floating-card-2 {
    left: -10%;
  }
  .floating-card-3 {
    right: 5%;
  }
}

@media (max-width: 992px) {
  .hero-title-main {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }
  .hero-title-accent {
    font-size: clamp(1.5rem, 6vw, 2.5rem);
  }
  .hero-description {
    font-size: 1.1rem;
  }
  .hero-actions {
    gap: 1rem;
  }
  .hero-btn {
    min-width: 180px;
    padding: 0.875rem 2rem;
  }
  .floating-cards {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-navigation {
    padding: 0 1rem;
  }
  .hero-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  .hero-trust-indicators {
    gap: 1rem;
  }
  .trust-item {
    font-size: 0.8rem;
  }
  .indicators-container {
    padding: 0.75rem 1.5rem;
    gap: 0.75rem;
  }
  .hero-indicator {
    width: 30px;
  }
}

@media (max-width: 576px) {
  .hero-section {
    min-height: 100vh;
  }
  .hero-slide {
    height: 100vh;
  }
  .hero-carousel-container {
    height: 100vh;
  }
  .hero-premium-badge {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
  }
  .hero-title-main {
    font-size: clamp(1.8rem, 10vw, 2.5rem);
  }
  .hero-title-accent {
    font-size: clamp(1.3rem, 8vw, 2rem);
  }
  .hero-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-btn {
    width: 100%;
    min-width: unset;
  }
  .hero-trust-indicators {
    flex-direction: column;
    gap: 0.5rem;
  }
  .scroll-indicator {
    bottom: 1rem;
  }
}

/* ========== ENHANCED TYPOGRAPHY SYSTEM ========== */

/* Typography Animation Classes */
.animate-title-main {
  animation: titleMainAnimation 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-title-accent {
  animation: titleAccentAnimation 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

@keyframes titleMainAnimation {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes titleAccentAnimation {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== CRAFTSMANSHIP EXCELLENCE SECTION ========== */

.craftsmanship-excellence {
  background: linear-gradient(
    135deg,
    rgba(248, 249, 250, 0.9) 0%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(248, 249, 250, 0.9) 100%
  );
  overflow: hidden;
  position: relative;
}

.craftsmanship-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.craft-decoration {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  opacity: 0.1;
  filter: blur(50px);
}

.craft-decoration-1 {
  top: -200px;
  left: -200px;
  background: var(--gradient-primary);
  animation: craftFloat1 20s linear infinite;
}

.craft-decoration-2 {
  bottom: -200px;
  right: -200px;
  background: linear-gradient(
    135deg,
    var(--color-amber) 0%,
    var(--color-rose-gold) 100%
  );
  animation: craftFloat2 25s linear infinite;
}

@keyframes craftFloat1 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(50px, -30px) rotate(180deg);
  }
}

@keyframes craftFloat2 {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-30px, 50px) rotate(-180deg);
  }
}

.craftsmanship-excellence .container {
  position: relative;
  z-index: 2;
}

/* Section Header */
.section-header {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold) 0%,
    var(--color-amber) 100%
  );
  color: var(--color-white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(224, 180, 178, 0.3);
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-display);
  color: var(--color-text-primary);
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

.text-gradient::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-primary);
  transform: scaleX(0.7);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.section-subtitle {
    color: rgba(82, 82, 82, 0.928);
    font-size: 0.95rem !important;
    line-height: 1.7;
   
}
.form-check .badge{
    color: white;
  font-size: 0.95rem !important;
  line-height: 1.7;
}
.form-check .badge {

    color: var(--color-dark-gray);
    font-size: 0.8rem;
    line-height: 1.3;
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 1rem;

}

/* Process Cards */
.craft-process-card {
  position: relative;
  background: var(--color-white);
  border-radius: 20px;
  padding: 1.75rem;
  height: 100%;
  border: 1px solid rgba(200, 86, 112, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.craft-process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.craft-process-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(200, 86, 112, 0.15);
}

.craft-process-card:hover::before {
  transform: scaleX(1);
}

.process-icon {
  position: relative;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.icon-bg {
  width: 70px;
  height: 70px;
  background: linear-gradient(
    135deg,
    var(--color-burgundy) 0%,
    var(--color-plum) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  box-shadow: 0 8px 25px rgba(200, 86, 112, 0.2);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.icon-bg i {
  margin: auto;
}

.icon-bg::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(
    135deg,
    var(--color-burgundy) 0%,
    var(--color-plum) 100%
  );
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.3;
  }
}

.process-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-burgundy);
  background: rgba(200, 86, 112, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -10px;
  right: -10px;
  border: 2px solid white;
  box-shadow: 0 4px 15px rgba(200, 86, 112, 0.2);
}

.process-content {
  margin-top: 1.25rem;
}

.process-content h4 {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.process-content p {
  color: var(--color-dark-gray);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: 1rem;
}

.process-features {
  margin-bottom: 1rem;
}

.feature-tag {
  background: linear-gradient(
    135deg,
    rgba(200, 86, 112, 0.1) 0%,
    rgba(138, 77, 104, 0.1) 100%
  );
  color: var(--color-burgundy);
  padding: 0.3rem 0.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(200, 86, 112, 0.2);
  white-space: nowrap;
  display: inline-block;
}

.feature-tag:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(200, 86, 112, 0.15);
  background: linear-gradient(
    135deg,
    var(--color-burgundy) 0%,
    var(--color-plum) 100%
  );
  color: white;
}

.process-arrow {
  position: absolute;
  top: 50%;
  right: -1px;
  transform: translateY(-50%);
  color: var(--color-burgundy);
  font-size: 1.2rem;
  background: var(--color-white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(200, 86, 112, 0.2);
  z-index: 10;
}

@media (max-width: 991px) {
  .process-arrow {
    display: none;
  }

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

  .craftsmanship-excellence {
    padding: 3rem 0;
  }
}

@media (max-width: 767px) {
  .craft-process-card {
    padding: 1.5rem;
  }

  .process-content h4 {
    font-size: 1rem;
  }

  .process-content p {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
  }

  .feature-tag {
    font-size: 0.7rem;
    padding: 0.25rem 0.6rem;
  }
}

/* Craftsmanship Showcase */
.craftsmanship-showcase {
  position: relative;
}

.showcase-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.showcase-main img {
  width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

.showcase-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

.showcase-main:hover .showcase-overlay {
  opacity: 1;
}

.showcase-main:hover img {
  transform: scale(1.05);
}

.overlay-content {
  text-align: center;
  color: var(--color-white);
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.overlay-content span {
  font-size: 1.1rem;
  font-weight: 600;
}

/* Floating Stats */
.craft-stats {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.stat-card {
  position: absolute;
  background: var(--color-white);
  border-radius: 15px;
  padding: 1.1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  pointer-events: all;
  animation: statFloat 6s ease-in-out infinite;
}

.stat-card-1 {
  top: 10%;
  right: -20%;
  animation-delay: 0s;
}

.stat-card-2 {
  bottom: 30%;
  left: -25%;
  animation-delay: 2s;
}

.stat-card-3 {
  top: 60%;
  right: 5%;
  animation-delay: 4s;
}

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

.stat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 150px;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.2rem;
}

.stat-content h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin: 0;
}

.stat-content p {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin: 0;
}

/* Craftsmanship Content */
.craftsmanship-content h3 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.2;
}

.craftsmanship-content .lead {
  font-size: 1.1rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Craft Features */
.craft-features {
  margin-bottom: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  border: 1px solid rgba(200, 86, 112, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: var(--color-white);
  transform: translateX(10px);
  box-shadow: 0 5px 20px rgba(200, 86, 112, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--color-plum) 0%,
    var(--color-purple) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-content h5 {
  color: var(--color-text-burgundy);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.feature-content p {
  color: var(--color-dark-grey);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.feature-icon-glow {
  color: #ffd700 !important;
  text-shadow: 0 0 12px #ffd700, 0 0 24px #c85670;
  filter: drop-shadow(0 0 8px #ffd70088);
}

.feature-icon-bright {
  color: var(--color-burgundy) !important;
  text-shadow: 0 0 16px #ffd700, 0 0 32px #ffd700, 0 0 8px #fff;
  filter: drop-shadow(0 0 12px #ffd700cc);
}

/* Craft CTA */
.craft-cta .btn {
  border-radius: 50px;
  padding: 0.75rem 2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
}

.craft-cta .btn-primary {
  background: var(--gradient-primary);
  border: none;
  box-shadow: 0 8px 25px rgba(200, 86, 112, 0.3);
}

.craft-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(200, 86, 112, 0.4);
}

.craft-cta .btn-outline-primary {
  border: 2px solid var(--color-burgundy);
  color: var(--color-burgundy);
}

.craft-cta .btn-outline-primary:hover {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .stat-card-1 {
    right: -15%;
  }
  .stat-card-2 {
    left: -20%;
  }
}

@media (max-width: 992px) {
  .craft-stats {
    display: none;
  }
  .craftsmanship-content h3 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .craft-process-card {
    padding: 1.5rem;
  }
  .process-icon {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .craftsmanship-content h3 {
    font-size: 1.8rem;
  }
  .craft-cta .btn {
    width: 100%;
    margin-bottom: 1rem;
  }
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .craftsmanship-excellence {
    padding: 3rem 0;
  }
  .craft-process-card {
    padding: 1rem;
  }
  .icon-bg {
    width: 60px;
    height: 60px;
    font-size: 1.3rem;
  }
  .process-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  .craftsmanship-content h3 {
    font-size: 1.5rem;
  }
  .section-badge {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
  }
}

/* ========== ENHANCED TYPOGRAPHY SYSTEM ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 1rem;
  color: var(--color-text-primary);
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h4 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 550;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

h5 {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

h6 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0;
}

p {
  font-family: var(--font-tertiary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: var(--color-text-light);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Professional Typography Classes */
.text-display {
  font-family: var(--font-secondary);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-headline {
  font-family: var(--font-secondary);

  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--color-rose-gold);
}

.text-subheadline {
  font-family: var(--font-primary);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-text-secondary);
}

.text-body-large {
  font-family: var(--font-tertiary);
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.005em;
  color: var(--color-text-light);
}

.text-body {
  font-family: var(--font-tertiary);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--color-text-light);
}

.text-body-small {
  font-family: var(--font-primary);
  font-size: clamp(0.85rem, 1vw, 0.95rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-text-white);
}

.text-caption {
  font-family: var(--font-primary);
  font-size: clamp(0.75rem, 0.9vw, 0.85rem);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

.text-label {
  font-family: var(--font-primary);
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: var(--color-text-primary);
  text-transform: uppercase;
}

.text-accent {
  font-family: var(--font-accent);
  font-weight: 600;
  font-style: italic;
  color: var(--color-burgundy);
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.text-gradient-secondary {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Color Variants */
.text-primary {
  color: var(--color-text-primary) !important;
}
.text-secondary {
  color: var(--color-text-secondary) !important;
}
.text-light {
  color: var(--color-text-light) !important;
}
.text-rose-gold {
  color: var(--color-rose-gold) !important;
}
.text-amber {
  color: var(--color-amber) !important;
}
.text-burgundy {
  color: var(--color-burgundy) !important;
}
.text-plum {
  color: var(--color-plum) !important;
}
.text-purple {
  color: var(--color-purple) !important;
}
.text-midnight {
  color: var(--color-midnight) !important;
}

/* Font Weight Utilities */
.fw-light {
  font-weight: 300 !important;
}
.fw-normal {
  font-weight: 400 !important;
}
.fw-medium {
  font-weight: 500 !important;
}
.fw-semibold {
  font-weight: 600 !important;
}
.fw-bold {
  font-weight: 700 !important;
}
.fw-extrabold {
  font-weight: 800 !important;
}

/* ========== BUTTON SYSTEM ========== */
.btn {
  font-family: var(--font-primary);
  font-weight: 500;
  border: none;
  border-radius: var(--border-radius-md);
  padding: 0.75rem 2rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition-smooth);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  border: none !important;
}

.btn-primary:hover {
  border: none !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-secondary);
  color: var(--color-white);
}

.offer-box-shadow {
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.btn-secondary {
  background: var(--gradient-secondary);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
  border: none !important;
}

.btn-primary i,
.btn-secondary i,
.btn-outline-primary i {
  color: var(--gradient-primary) !important;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: var(--gradient-dark);
}
.btn-check:checked + .btn {
  background-color: none !important;
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-burgundy);
  border: 1px solid var(--color-burgundy) !important;
}

.btn-outline-primary.active,
.btn-outline-primary:active,
.btn-check:checked + .btn-outline-primary,
.btn-outline-primary.active:focus,
.btn-check:checked + .btn-outline-primary:focus {
  background: var(--gradient-primary) !important;
  color: var(--color-white) !important;
  border: none !important;
}

.btn-outline-primary:hover {
  background: var(--gradient-secondary);
  color: var(--color-white) !important;
  border: none !important ;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-cta {
  background: var(--gradient-dark);
  color: var(--color-white);
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
}

.btn-cta:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-xl);
}

/* ========== PROFESSIONAL TOP BAR ========== */
.top-bar {
  background: var(--gradient-dark);
  color: var(--color-white);
  font-size: 0.75rem;
  padding: 0.35rem 0;
  position: relative;
  z-index: 1001;
  border-bottom: 1px solid rgba(224, 180, 178, 0.1);
  backdrop-filter: blur(10px);
}

.top-info-item {
  display: flex;
  align-items: center;
  font-weight: 400;
  transition: var(--transition-smooth);
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
}

.top-info-item i {
  color: var(--color-rose-gold);
  font-size: 0.75rem;
  transition: var(--transition-smooth);
}

.top-bar-right {
  display: flex;
  justify-content: flex-end;
}

.top-link {
  color: var(--color-white);
  text-decoration: none;
  transition: var(--transition-smooth);
  padding: 0.2rem 0.5rem;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 400;
  font-size: 0.75rem;
}

.top-link:hover {
  background: rgba(224, 180, 178, 0.15);
  color: var(--color-rose-gold);
}

.top-link i {
  font-size: 0.75rem;
}

.language-toggle-btn.compact {
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border: none;
  background: transparent;
  color: var(--color-white);
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  border-radius: var(--border-radius-sm);
}

.language-toggle-btn.compact:hover {
  background: rgba(224, 180, 178, 0.15);
  color: var(--color-rose-gold);
}

.language-toggle-btn.compact .fa-xs {
  font-size: 0.6rem;
}

/* ...existing code... */

/* === Custom: Home Stats Card Sizing & Centering === */
.stats-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.stats-wrapper .row {
  justify-content: center;
  align-items: center;
}
.stats-wrapper .stat-card {
  min-height: 140px;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.stats-wrapper .rounded-circle {
  width: 56px !important;
  height: 56px !important;
  font-size: 2rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.stats-wrapper .stat-content h6 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.stats-wrapper .stat-content p {
  font-size: 1rem !important;
}

@media (max-width: 768px) {
  .stats-wrapper .stat-card {
    min-height: 110px;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
  .stats-wrapper .rounded-circle {
    width: 44px !important;
    height: 44px !important;
    font-size: 1.3rem !important;
  }
  .stats-wrapper .stat-content h6 {
    font-size: 1.1rem;
  }
  .stats-wrapper .stat-content p {
    font-size: 0.85rem !important;
  }
}

/* ...existing code... */


/* Certifications Section Responsive Styling */
.certifications-section {
  background: #fff;
  padding: 3rem 0;
}

.cert-row {
  flex-wrap: nowrap;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin-left: 0;
  margin-right: 0;
}
.cert-row::-webkit-scrollbar {
  display: none;
}

.certification-logo {
  background: #f8f9fa;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  width: 100%;
  min-height: 90px;
  height: 100%;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: pointer;
}
.certification-logo:hover,
.certification-logo:focus-within {
  box-shadow: 0 0 0 3px #e0b4b2;
  transform: translateY(-4px) scale(1.04);
}

.cert-img-container {
  position: relative;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cert-img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
  display: block;
  transition: transform 0.3s;
}

.certification-logo:hover .cert-img-cover,
.certification-logo:focus-within .cert-img-cover {
  transform: scale(1.07);
}

.cert-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 1rem 0.5rem 0.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 0 0 0.5rem 0.5rem;
  pointer-events: none;
}

.certification-logo:hover .cert-overlay,
.certification-logo:focus-within .cert-overlay {
  opacity: 1;
  pointer-events: auto;
}

.cert-label {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  display: block;
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25);
}

/* Responsive grid for certifications */
@media (max-width: 1200px) {
  .cert-row {
    gap: 1.5rem !important;
  }
  .certification-logo {
    min-height: 80px;
    padding: 1rem;
  }
  .cert-img-container {
    height: 80px;
  }
}
@media (max-width: 992px) {
  .cert-row {
    gap: 1rem !important;
  }
  .certification-logo {
    min-height: 70px;
    padding: 0.75rem;
  }
  .cert-img-container {
    height: 70px;
  }
}
@media (max-width: 768px) {
  .cert-row {
    gap: 0.75rem !important;
  }
  .certification-logo {
    min-height: 60px;
    padding: 0.5rem;
  }
  .cert-img-container {
    height: 60px;
  }
  .cert-label {
    font-size: 0.8rem;
  }
}
@media (max-width: 576px) {
  .certifications-section {
    padding: 2rem 0;
  }
  .cert-row {
    gap: 0.5rem !important;
  }
  .certification-logo {
    min-height: 48px;
    padding: 0.25rem;
  }
  .cert-img-container {
    height: 48px;
  }
  .cert-label {
    font-size: 0.75rem;
  }
}


/* ========== USER PROFILE DASHBOARD RESPONSIVE STYLES ========== */

/* Dashboard Stats Styling */
.dashboard-stats-container {
  margin-bottom: 2rem;
}

.dashboard-stats-container .col-md-3 {
  margin-bottom: 1rem;
}

.dashboard-stats-container .bg-opacity-10 {
  transition: all 0.3s ease;
  height: 100%;
}

.dashboard-stats-container .bg-opacity-10:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-stats-container .hover-scale {
  height: 100%;
}

/* Order Section Styling */
.order-section {
  background: rgba(var(--color-burgundy-rgb), 0.02);
  border-radius: var(--border-radius-md);
  padding: 2rem;
  transition: all 0.3s ease;
}

.order-section:hover {
  background: rgba(var(--color-burgundy-rgb), 0.03);
}

/* User Profile Avatar Styling */
.avatar {
  position: relative;
  display: inline-block;
}

.pulse-circle {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  background-color: #28a745;
  border-radius: 50%;
  border: 2px solid white;
  z-index: 1;
}

.pulse-circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #28a745;
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .account-dashboard {
    padding: 0 0.5rem;
  }

  .account-sidebar {
    border-radius: var(--border-radius-md);
    margin-bottom: 1rem;
  }

  .user-profile .avatar {
    width: 60px;
    height: 60px;
  }

  .user-profile .rounded-circle {
    width: 60px !important;
    height: 60px !important;
  }

  .account-nav button {
    padding: 0.5rem;
  }

  .account-nav button i {
    margin-right: 0.5rem;
  }

  .account-nav li {
    margin-bottom: 0.5rem !important;
  }

  .order-section {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .dashboard-stats-container .bg-opacity-10 {
    padding: 0.75rem !important;
  }

  .dashboard-stats-container .fs-2 {
    font-size: 1.5rem !important;
  }

  .dashboard-stats-container .mb-2 {
    margin-bottom: 0.25rem !important;
  }

  .dashboard-stats-container small {
    font-size: 0.75rem;
  }

  .order-section {
    padding: 1.25rem;
  }

  .order-section .py-5 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .order-section .fs-1 {
    font-size: 2rem !important;
  }

  .order-section h6 {
    font-size: 1rem;
  }

  .order-section .btn {
    margin-top: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .account-dashboard {
    padding: 0;
  }

  .dashboard-stats-container .row {
    margin: 0 -0.25rem;
  }

  .dashboard-stats-container .col-6 {
    padding: 0 0.25rem;
    margin-bottom: 0.5rem;
  }

  .dashboard-stats-container .bg-opacity-10 {
    padding: 0.625rem !important;
  }

  .dashboard-stats-container .fs-2 {
    font-size: 1.25rem !important;
  }

  .dashboard-stats-container .mb-2 {
    margin-bottom: 0.125rem !important;
  }

  .dashboard-stats-container small {
    font-size: 0.7rem;
  }

  .order-section {
    padding: 1rem;
  }

  .order-section .py-5 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .order-section .fs-1 {
    font-size: 1.75rem !important;
  }

  .order-section h6 {
    font-size: 0.9rem;
  }

  .order-section p {
    font-size: 0.8rem;
  }

  .order-section .btn {
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
  }
}

@media (max-width: 380px) {
  .dashboard-stats-container .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .dashboard-stats-container .bg-opacity-10 {
    padding: 0.75rem !important;
  }

  .dashboard-stats-container .fs-2 {
    font-size: 1.5rem !important;
  }

  .account-nav button {
    font-size: 0.8rem;
  }

  .account-sidebar .badge {
    font-size: 0.7rem;
  }
}

/* Fixed Bottom Controls for Mobile Devices */
@media (max-width: 767.98px) {
  .form-actions.fixed-bottom-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    padding: 0.75rem 1rem;
    z-index: 100;
    margin: 0;
  }

  .form-actions.fixed-bottom-mobile .btn {
    margin-bottom: 0;
  }

  .profile-form,
  .security-form,
  .address-form {
    padding-bottom: 4rem;
  }
}

/* Security Page Mobile Optimizations */
@media (max-width: 767.98px) {
  .password-strength-info {
    padding: 1rem;
  }

  .password-tips li {
    margin-bottom: 0.5rem;
  }

  .security-submit {
    width: 100%;
  }

  .security-note {
    text-align: center;
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* ========== SIDEBAR VISIBILITY FIXES ========== */
.sidebar {
  position: fixed;
  top: 0;
  height: 100%;
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  z-index: 1020;
  overflow-y: auto;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  visibility: hidden;
}

/* ========== USER PROFILE RESPONSIVE STYLES ========== */
.account-section {
  transition: var(--transition-smooth);
}

.account-sidebar {
  transition: var(--transition-smooth);
}

.account-nav button {
  transition: all 0.3s ease;
}

.account-btn {
  background: none;
  color: var(--color-dark-gray);
  border-radius: var(--border-radius-sm);
  border: none !important;
  padding: 0.5rem 1rem;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;

  gap: 0.5rem;
}

.account-nav .transition-all:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
  border: none !important;
}
.logout-btn:hover {
  background-color: rgb(224, 74, 74) !important;
  color: var(--color-white) !important;
}
.account-nav .transition-all i {
  color: var(--color-dark) !important;
}

/* Dashboard Stats Container */
.dashboard-stats-container .col-md-3 {
  margin-bottom: 1rem;
}

/* User Profile Forms */
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  flex: 1;
  min-width: 100%;
}

.form-group.half {
  min-width: calc(50% - 0.5rem);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(var(--color-burgundy-rgb), 0.2);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-burgundy);
  box-shadow: 0 0 0 3px rgba(var(--color-burgundy-rgb), 0.1);
}

.form-error {
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-message {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: var(--border-radius-md);
  font-size: 0.9rem;
}

.form-message.info {
  background: rgba(var(--color-burgundy-rgb), 0.1);
  color: var(--color-burgundy);
}

.form-message.warning {
  background: rgba(255, 193, 7, 0.1);
  color: #856404;
}

/* Address Grid */
.address-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.address-card {
  border: 1px solid rgba(var(--color-burgundy-rgb), 0.1);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.address-card:hover {
  box-shadow: 0 5px 15px rgba(var(--color-burgundy-rgb), 0.1);
  transform: translateY(-5px);
}

.address-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.address-actions {
  display: flex;
  gap: 0.5rem;
}

.btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: var(--transition-smooth);
}

.btn-icon.edit {
  background: rgba(var(--color-amber-rgb), 0.1);
  color: var(--color-amber);
}

.btn-icon.delete {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.btn-icon.default {
  background: rgba(var(--color-burgundy-rgb), 0.1);
  color: var(--color-burgundy);
}

/* Map container styles */
.map-container {
  margin-bottom: 2rem;
}

.address-map {
  height: 300px;
  border-radius: var(--border-radius-md);
  margin-top: 0.5rem;
  border: 1px solid rgba(var(--color-burgundy-rgb), 0.2);
}

/* Wishlist view styles */
.wishlist-container {
  margin-top: 1.5rem;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.wishlist-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wishlist-compact {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 1rem;
}

.wishlist-grid-item,
.wishlist-list-item,
.wishlist-compact-item {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
  background: white;
  box-shadow: 0 3px 10px rgba(var(--color-burgundy-rgb), 0.05);
}

.wishlist-grid-item:hover,
.wishlist-list-item:hover,
.wishlist-compact-item:hover {
  box-shadow: 0 8px 20px rgba(var(--color-burgundy-rgb), 0.1);
  transform: translateY(-5px);
}

/* Empty state styling */
.empty-state-container {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-state-icon {
  font-size: 3rem;
  color: rgba(var(--color-burgundy-rgb), 0.3);
  margin-bottom: 1rem;
}

.empty-state-title {
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.empty-state-description {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

/* Responsive Media Queries for User Profile */
@media (max-width: 991.98px) {
  .account-dashboard .row {
    flex-direction: column;
  }

  .account-sidebar {
    margin-bottom: 1.5rem;
  }

  .form-actions {
    flex-direction: column;
  }

  .form-actions .btn {
    width: 100%;
  }

  .wishlist-list-item {
    flex-direction: column;
  }

  .wishlist-list-image {
    width: 100%;
    height: auto;
  }

  .wishlist-list-content {
    width: 100%;
  }
}

@media (max-width: 767.98px) {
  .account-section {
    padding: 1rem !important;
  }

  .dashboard-stats-container .col-md-3 {
    margin-bottom: 0.75rem;
  }

  .form-group.half {
    min-width: 100%;
  }

  .address-grid {
    grid-template-columns: 1fr;
  }

  .wishlist-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }

  .wishlist-compact {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .address-actions {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 0.5rem;
    padding: 0.25rem;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }

  .section-header .btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .account-section {
    padding: 0.75rem !important;
    border-radius: 0.5rem !important;
  }

  .dashboard-stats-container .row {
    margin: 0 -0.5rem;
  }

  .dashboard-stats-container .col-6 {
    padding: 0 0.5rem;
  }

  .wishlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .wishlist-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .wishlist-badge i,
  .wishlist-price,
  .wishlist-title {
    font-size: 0.9rem;
  }

  .view-mode-controls {
    flex-wrap: wrap;
  }
}

/* ========== MOBILE MENU SPECIFIC STYLES ========== */
@media (max-width: 991.98px) {
  /* Mobile toggle button animation */
  .mobile-menu-toggle {
    position: relative;
    z-index: 1030;
  }

  .menu-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: white;
    transition: all 0.3s ease;
  }

  .mobile-menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
    transform: translateY(5px) rotate(45deg);
  }

  .mobile-menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
    transform: translateY(-5px) rotate(-45deg);
  }

  /* Fix for mobile sidebar behavior */
  .sidebar-overlay {
    visibility: hidden;
    opacity: 0;
  }

  .sidebar-overlay.active {
    visibility: visible;
    opacity: 1;
  }

  .main-nav-sidebar,
  .cart-sidebar,
  .wishlist-sidebar {
    visibility: hidden !important;
  }

  .main-nav-sidebar.active,
  .cart-sidebar.active,
  .wishlist-sidebar.active {
    visibility: visible !important;
  }

  /* Prevent scrolling when sidebar is open */
  body.sidebar-open {
    overflow: hidden;
  }
}

/* Left sidebar (menu) */
.main-nav-sidebar {
  left: 0;
  width: 320px;
  transform: translateX(-100%);
}

/* Right sidebars (cart, wishlist) */
.cart-sidebar,
.wishlist-sidebar {
  right: 0;
  width: 320px;
  transform: translateX(100%);
}

/* Active state for all sidebars */
.sidebar.active {
  transform: translateX(0);
  visibility: visible;
}

/* Sidebar overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1010;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ========== RESPONSIVE BEHAVIOR ========== */
@media (max-width: 991.98px) {
  /* Ensure sidebars are hidden by default on mobile */
  .sidebar {
    visibility: hidden;
  }

  .sidebar.active {
    visibility: visible;
  }

  /* Force z-index to be higher on mobile */
  .mobile-menu-toggle {
    z-index: 1030;
  }
}

/* Login Page Background */
.section-padding.bg-gradient-light[aria-label="Login Form"] {
  background: linear-gradient(
      135deg,
      var(--color-burgundy),
      var(--color-plum) 50%
    ),
    var(--color-rose-gold);
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.section-padding.bg-gradient-light[aria-label="Login Form"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(224, 180, 178, 0.1) 0%,
    rgba(233, 152, 86, 0.05) 100%
  );
  z-index: 0;
}

.section-padding.bg-gradient-light[aria-label="Login Form"] .container {
  position: relative;
  z-index: 1;
}

/* Login Form Styles */
.form-field-container {
  width: 100%;
}

.input-group .btn-outline-secondary {
  width: 40px;
  padding-left: 10px;
  padding-right: 10px;
  background-color: #f8f9fa;
  border-color: #ced4da;
  color: var(--color-plum);
  transition: all 0.2s ease;
}

.input-group .btn-outline-secondary:hover,
.input-group .btn-outline-secondary:focus {
  background-color: #e9ecef;
  color: var(--color-plum);
  border-color: #adb5bd;
}

.input-group .btn-outline-secondary .fa {
  font-size: 16px;
  color: var(--color-plum);
}

/* Checkout Page Enhanced Styling */
.step.active .step-icon {
  box-shadow: 0 0.5rem 1rem rgba(var(--color-rose-gold-rgb), 0.3) !important;
  transform: scale(1.05);
  transition: all 0.3s ease;
}

.step.active .step-label {
  font-weight: 700 !important;
}

.checkout-progress-bar {
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(var(--color-rose-gold-rgb), 0.2),
    rgba(var(--color-burgundy-rgb), 0.2)
  );
}

.step-icon-size {
  width: 48px;
  height: 48px;
}

.outlined-input {
  border: 1px solid rgba(var(--color-rose-gold-rgb), 0.2);
  transition: all 0.3s ease;
  padding: 0.5rem 0.75rem;
}

.outlined-input:focus {
  border-color: var(--color-rose-gold);
  box-shadow: 0 0 0 0.2rem rgba(var(--color-rose-gold-rgb), 0.15);
}

.shipping-option,
.payment-option {
  transition: all 0.3s ease;
  cursor: pointer;
}

.form-check-input:checked ~ .shipping-option,
.form-check-input:checked ~ .payment-option,
.form-check-input:checked ~ .form-check-last {
  border-color: var(--color-rose-gold) !important;
  background-color: rgba(var(--color-rose-gold-rgb), 0.05) !important;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(var(--color-rose-gold-rgb), 0.1) !important;
}

.order-item-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
}

.place-order-btn {
  background: linear-gradient(
    45deg,
    var(--color-burgundy),
    var(--color-rose-gold)
  );
  border: none;
  transition: all 0.3s ease;
}

.place-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(var(--color-burgundy-rgb), 0.2);
}

.promo-apply-btn {
  background-color: var(--color-burgundy);
  border-color: var(--color-burgundy);
  transition: all 0.3s ease;
}

.promo-apply-btn:hover {
  background-color: var(--color-rose-gold);
  border-color: var(--color-rose-gold);
  transform: translateY(-1px);
}

.order-summary-sticky {
  top: 20px;
}

.text-gradient {
  background: linear-gradient(
    135deg,
    var(--color-burgundy),
    var(--color-rose-gold)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-section .shadow {
  box-shadow: 0 0.5rem 1.5rem rgba(var(--color-burgundy-rgb), 0.1) !important;
}

.trust-section .col-md-3:hover .shadow {
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* Values Section Horizontal Scrolling */
.values-section .row.overflow-auto {
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  -ms-overflow-style: none; /* Hide scrollbar in IE and Edge */
  scrollbar-width: none; /* Hide scrollbar in Firefox */
}

.values-section .row.overflow-auto::-webkit-scrollbar {
  display: none; /* Hide scrollbar in Chrome, Safari and Opera */
}

.values-section .value-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.values-section .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Stats Section Horizontal Layout */
.stats-row {
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.stats-row::-webkit-scrollbar {
  display: none;
}

.stat-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-icon span {
  width: 70px;
  height: 70px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon span {
  transform: scale(1.1);
}

.stat-number {
  font-size: 2.5rem;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
  transform: scale(1.05);
}

.about-stat-icon-span {
  width: 70px;
  height: 70px;
}

/* Certifications Section Styling */
.cert-row {
  flex-wrap: nowrap;
  padding-bottom: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.cert-row::-webkit-scrollbar {
  display: none;
}

.cert-img-container {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  border-radius: 0.5rem;
  transition: transform 0.3s ease;
}

.certification-logo:hover .cert-img-container {
  transform: scale(1.05);
}

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

.certification-logo:hover .cert-img-cover {
  transform: scale(1.1);
}

.cert-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 1rem 0.5rem 0.5rem;
  transition: all 0.3s ease;
  opacity: 0;
}

.certification-logo:hover .cert-overlay {
  opacity: 1;
}

.cert-label {
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  display: block;
}

.about-certification-logo {
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.about-certification-logo:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ...existing code... */
.social-card-sm {
  max-width: 220px;
  min-width: 160px;
  width: 100%;
  padding: 0 !important;
  margin: 0 auto;
}
.social-card-sm .card-body {
  padding: 1rem 0.5rem !important;
}
.social-card-sm h5 {
  font-size: 1.05rem;
}
.social-card-sm p,
.social-card-sm .badge {
  font-size: 0.85rem !important;
}
.social-card-sm .btn {
  font-size: 0.9rem !important;
  padding: 0.3rem 1.2rem !important;
}

/* Wishlist Item Overlays and Actions */
.compact-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wishlist-compact-item:hover .compact-item-overlay {
  opacity: 1;
}

.compact-quick-action {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  transform: translateY(10px);
  opacity: 0;
}

.wishlist-compact-item:hover .compact-quick-action {
  transform: translateY(0);
  opacity: 1;
}

.compact-quick-action:hover {
  background: var(--color-primary);
  color: #fff;
}

.compact-quick-action.remove:hover {
  background: var(--color-danger);
}

.compact-item-info {
  padding: 10px;
}

.compact-item-info .item-title {
  margin: 0 0 5px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.compact-price {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
}

/* List View Styling */
.wishlist-list-view {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wishlist-list-item {
  display: flex;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.wishlist-list-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.list-item-image {
  width: 80px;
  height: 80px;
  border-radius: 6px;
  overflow: hidden;
}

.list-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list-item-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}

.list-item-info .item-title {
  margin: 0 0 5px;
  font-size: 14px;
  font-weight: 500;
}

.list-item-price {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 5px;
}

.status-badge {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.status-badge.in-stock {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.list-item-actions {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.list-btn-primary {
  flex: 1;
  padding: 6px 12px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: all 0.2s ease;
}

.list-btn-primary:hover {
  background: var(--color-primary-dark);
}

.list-btn-secondary {
  padding: 6px;
  border: none;
  background: var(--color-light);
  color: var(--color-dark);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.list-btn-secondary:hover {
  background: var(--color-danger-light);
  color: var(--color-danger);
}

/* Grid View */
.wishlist-grid-view {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.wishlist-grid-item {
  position: relative;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.wishlist-grid-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

/* Grid action buttons */
.grid-btn-primary {
  flex: 1;
  padding: 8px;
  border: none;
  background: var(--color-primary);
  color: #fff;
  border-radius: 6px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.grid-btn-primary:hover {
  background: var(--color-primary-dark);
}

.grid-btn-secondary {
  width: 36px;
  padding: 8px;
  border: none;
  background: var(--color-light);
  color: var(--color-dark);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.grid-btn-secondary:hover {
  background: var(--color-danger-light);
  color: var(--color-danger);
}

.grid-item-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  z-index: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.grid-item-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.grid

/* Grid overlay and details */
.grid-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wishlist-grid-item:hover .grid-item-overlay {
  opacity: 1;
}

.grid-quick-view {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.25s ease;
}

.wishlist-grid-item:hover .grid-quick-view {
  transform: scale(1);
  opacity: 1;
}

.grid-item-details {
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Loading and empty states */
.wishlist-loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  backdrop-filter: blur(3px);
}

.wishlist-spinner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.spinner-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  animation: wishlist-spin 1.2s linear infinite;
}

@keyframes wishlist-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.empty-wishlist {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100%;
  padding: 30px;
}

.empty-wishlist-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-primary-light);
  margin-bottom: 10px;
}

/* Footer styling */
.wishlist-sidebar-footer {
  padding: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: var(--color-light-bg);
  border-radius: 10px 10px 0 0;
}

.wishlist-total {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-bottom: 12px;
}

.total-value {
  font-weight: 600;
  color: var(--color-primary);
}

.wishlist-footer-actions {
  display: flex;
  gap: 10px;
}

.wishlist-footer-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ========== CART SIDEBAR SPECIFIC ========== */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 320px;
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  z-index: 1020;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  visibility: hidden;
}

/* ========== RESPONSIVE WISHLIST GRID STYLES ========== */
.responsive-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

/* ========== RESPONSIVE WISHLIST LIST & COMPACT VIEWS ========== */
/* List view responsive improvements */
@media (max-width: 767.98px) {
  .wishlist-list-item {
    flex-direction: column;
  }

  .wishlist-list-image {
    width: 100%;
    height: 200px;
  }

  .wishlist-list-content {
    padding: 1rem;
  }

  .wishlist-list-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }

  .wishlist-list-meta {
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
  }

  .wishlist-list-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .wishlist-list-actions .action-btn {
    width: 100%;
    justify-content: center;
  }

  .action-btn-group {
    display: flex;
    width: 100%;
    gap: 0.5rem;
  }

  .action-btn-group .action-btn {
    flex: 1;
  }
}

/* Compact view responsive improvements */
@media (max-width: 767.98px) {
  .wishlist-compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }

  .wishlist-compact-image {
    height: 120px;
  }

  .wishlist-compact-info {
    padding: 0.5rem;
  }

  .wishlist-compact-info h6 {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }

  .wishlist-compact-price {
    font-size: 0.9rem;
  }

  .wishlist-compact-rating {
    font-size: 0.75rem;
  }

  .wishlist-compact-btn {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 575.98px) {
  .wishlist-compact {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .wishlist-compact-image {
    height: 110px;
  }

  .wishlist-compact-info h6 {
    font-size: 0.8rem;
  }

  .wishlist-compact-price {
    font-size: 0.85rem;
  }
}

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

  .wishlist-compact-image {
    height: 100px;
  }
}

/* View mode controls responsive styling */
@media (max-width: 575.98px) {
  .view-mode-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .view-mode-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .toggle-btn {
    flex: 1;
    justify-content: center;
  }
}

.wishlist-grid-item {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(var(--color-burgundy-rgb), 0.1);
  border-radius: var(--border-radius-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  height: 100%;
}

.wishlist-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.responsive-actions {
  padding: 0.75rem;
  display: flex;
  gap: 0.5rem;
}

.wishlist-actions.responsive-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.responsive-actions .cart {
  flex: 1;
  justify-content: center;
}

/* Mobile responsive adjustments */
@media (max-width: 767.98px) {
  .responsive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .wishlist-details {
    padding: 0.75rem;
  }

  .wishlist-title {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .wishlist-price {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }

  .wishlist-rating {
    font-size: 0.8rem;
  }

  .responsive-actions {
    padding: 0.5rem 0.75rem 0.75rem;
  }

  .action-btn {
    padding: 0.5rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .responsive-grid {
    gap: 0.75rem;
  }

  .wishlist-image {
    height: 160px;
  }

  .wishlist-details {
    padding: 0.5rem 0.75rem;
  }

  .wishlist-title {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }

  .wishlist-price {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }

  .wishlist-rating {
    font-size: 0.75rem;
  }

  .wishlist-quick-btn {
    width: 30px;
    height: 30px;
  }
}

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

  .wishlist-image {
    height: 180px;
  }
}

.cart-sidebar.active {
  transform: translateX(0);
  visibility: visible;
}

/* ========== WISHLIST SIDEBAR SPECIFIC ========== */
.wishlist-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 320px;
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  z-index: 1020;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  visibility: hidden;
}

.wishlist-sidebar.active {
  transform: translateX(0);
  visibility: visible;
}

/* Wishlist Header */
.wishlist-sidebar-header {
  padding: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(
    135deg,
    var(--color-primary-light),
    var(--color-primary)
  );
  color: #fff;
  border-radius: 0 0 10px 10px;
}

.wishlist-header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wishlist-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.wishlist-header-text h5 {
  margin: 0;
  font-size: 17px;
  font-weight: 600;
}

.wishlist-count-badge {
  font-size: 12px;
  opacity: 0.9;
}

/* View Toggle Buttons */
.view-mode-toggle {
  display: flex;
  /* background: rgba(255, 255, 255, 0.15); */
  border-radius: 6px;
  padding: 2px;
}

.view-mode-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.view-mode-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.view-mode-btn.active {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.wishlist-close-btn {
  width: 28px;
  height: 28px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.wishlist-close-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

/* Wishlist Body */
.wishlist-sidebar-body {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
  position: relative;
}

/* Compact Grid View */
.wishlist-compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.wishlist-compact-item {
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.wishlist-compact-item:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.compact-item-image {
  position: relative;
  height: 120px;
  overflow: hidden;
}

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

.wishlist-compact-item:hover .compact-item-image img {
  transform: scale(1.08);
}

/* ========== FORGOT PASSWORD STYLING ========== */
.forgot-password-section {
  background-color: var(--color-rose-gold);
  min-height: 100vh;
}

/* Left side styling */
.image-section {
  background: linear-gradient(
    135deg,
    var(--color-plum) 0%,
    var(--color-burgundy) 90%
  );
  position: relative;
  overflow: hidden;
}

.image-overlay {
  background: linear-gradient(
    135deg,
    rgba(138, 77, 104, 0.7) 0%,
    rgba(200, 86, 112, 0.8) 100%
  );
  z-index: 2;
}

/* ========== SIGNUP PAGE STYLING ========== */
.signup-section {
  background-color: var(--color-rose-gold);
  min-height: 100vh;
}

/* Left side enhancements */
.signup-section .image-section {
  background: linear-gradient(
    135deg,
    var(--color-burgundy) 0%,
    var(--color-purple) 100%
  );
  position: relative;
  overflow: hidden;
}

.signup-section .image-overlay-dark {
  background: linear-gradient(
    135deg,
    rgba(74, 72, 104, 0.8) 0%,
    rgba(107, 61, 122, 0.85) 100%
  );
  z-index: 2;
}

.animated-bg-dark {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: url("/assets/images/jewelry-pattern.png");
  background-size: 200px;
  opacity: 0.1;
  animation: rotateBg 120s linear infinite;
  z-index: 1;
}

.animated-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.animated-particles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-amber);
  border-radius: 50%;
  animation: float 25s linear infinite;
  opacity: 0.6;
}

.animated-particles span:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.animated-particles span:nth-child(2) {
  top: 60%;
  left: 70%;
  animation-delay: 2s;
  animation-duration: 18s;
  width: 8px;
  height: 8px;
}

.animated-particles span:nth-child(3) {
  top: 40%;
  left: 40%;
  animation-delay: 4s;
  animation-duration: 15s;
  width: 4px;
  height: 4px;
}

.animated-particles span:nth-child(4) {
  top: 80%;
  left: 20%;
  animation-delay: 6s;
  animation-duration: 25s;
  width: 7px;
  height: 7px;
}

.animated-particles span:nth-child(5) {
  top: 30%;
  left: 80%;
  animation-delay: 8s;
  animation-duration: 22s;
  width: 5px;
  height: 5px;
}

.image-content {
  z-index: 3;
  position: relative;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

.text-strong-shadow {
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.glow-border {
  position: relative;
}

.glow-border::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px solid rgba(233, 152, 86, 0.2);
  border-radius: 15px;
  z-index: -1;
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.5;
  }
}

.text-justify {
  text-align: justify;
}

.features-list-decor {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
}

.feature-icon-bright {
  color: var(--color-amber) !important;
  text-shadow: 0 0 16px #ffd700, 0 0 32px #ffd700, 0 0 8px #fff;
  filter: drop-shadow(0 0 12px #ffd700cc);
  display: inline-block;
  margin-right: 10px;
}

/* Signup Form Styling */
.signup-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.signup-card {
  transition: var(--transition-smooth);
  border: 1px solid rgba(var(--color-rose-gold-rgb), 0.1);
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(var(--color-burgundy-rgb), 0.1);
  background-color: var(--color-white);
  padding: 2rem;
}

.signup-card:hover {
  box-shadow: 0 15px 35px rgba(var(--color-rose-gold-rgb), 0.15);
  transform: translateY(-5px);
}

.decorative-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1rem 0;
}

.divider-line {
  height: 2px;
  width: 60px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-amber),
    transparent
  );
}

.divider-icon {
  margin: 0 10px;
  color: var(--color-amber);
}

.brand-title {
  margin-bottom: 0.5rem;
  color: var(--color-burgundy);
  font-family: var(--font-secondary);
  letter-spacing: -0.02em;
  font-size: 1.8rem;
}

.brand-icon {
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease-out;
}

.brand-icon i {
  color: var(--color-rose-gold);
  filter: drop-shadow(0 0 5px rgba(var(--color-rose-gold-rgb), 0.3));
}

.animate-title-main {
  animation: titleMainAnimation 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-title-accent {
  animation: titleAccentAnimation 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.text-gradient-secondary {
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* Form Controls Styling */
.jewelry-input {
  border: 2px solid rgba(var(--color-rose-gold-rgb), 0.1);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1rem;
  transition: var(--transition-smooth);
  background-color: rgba(var(--color-rose-gold-rgb), 0.02);
}

.jewelry-input:focus {
  border-color: var(--color-burgundy);
  box-shadow: 0 0 0 3px rgba(var(--color-burgundy-rgb), 0.1);
  background-color: white;
}

.jewelry-input.is-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-select.jewelry-input {
  padding-right: 2rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23c85670' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
}

/* Password Toggle Button */
.btn-password-toggle {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  border: none;
  background: transparent;
  color: var(--color-text-light);
  transition: var(--transition-smooth);
  padding: 0 1rem;
  cursor: pointer;
}

/* Password Toggle Button inside input field */
.btn-password-toggle {
  background: transparent;
  border: none;
  color: var(--color-burgundy);
  padding: 0;
  font-size: 16px;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.btn-password-toggle:hover,
.btn-password-toggle:focus {
  opacity: 1;
  background: transparent;
}

.btn-password-toggle:focus {
  box-shadow: none;
}

.jewelry-input.pe-5 {
  padding-right: 2.5rem !important;
}

.btn-password-toggle:hover {
  color: var(--color-burgundy);
}

/* Password Requirements */
.password-requirements {
  background-color: rgba(var(--color-rose-gold-rgb), 0.05);
  border-radius: var(--border-radius-md);
  border: 1px solid rgba(var(--color-burgundy-rgb), 0.1);
  transition: var(--transition-smooth);
}

.password-requirements .small {
  font-weight: 500;
  color: var(--color-text-primary);
}

.password-requirements i.bi-check-circle {
  color: #28a745;
}

.password-requirements i.bi-x-circle {
  color: #dc3545;
}

.password-strength .badge {
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  text-transform: capitalize;
}

/* Alert styling for signup */
.alert {
  position: relative;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.alert-dismissible {
  padding-right: 4rem;
}

.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
  background: transparent;
  border: 0;
  appearance: none;
  cursor: pointer;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.alert i {
  margin-right: 0.5rem;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.forgot-animated-bg {
  position: absolute;
  width: 150%;
  height: 150%;
  top: -25%;
  left: -25%;
  background: url("/assets/images/jewelry-pattern.png");
  background-size: 200px;
  opacity: 0.1;
  animation: rotateBg 120s linear infinite;
  z-index: 1;
}

@keyframes rotateBg {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.forgot-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.forgot-particles span {
  position: absolute;
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-rose-gold);
  border-radius: 50%;
  animation: float 25s linear infinite;
  opacity: 0.6;
}

.forgot-particles span:nth-child(1) {
  top: 20%;
  left: 30%;
  animation-delay: 0s;
  animation-duration: 20s;
}

.forgot-particles span:nth-child(2) {
  top: 60%;
  left: 70%;
  animation-delay: 2s;
  animation-duration: 18s;
  width: 8px;
  height: 8px;
}

.forgot-particles span:nth-child(3) {
  top: 40%;
  left: 40%;
  animation-delay: 4s;
  animation-duration: 15s;
  width: 4px;
  height: 4px;
}

.forgot-particles span:nth-child(4) {
  top: 80%;
  left: 20%;
  animation-delay: 6s;
  animation-duration: 25s;
  width: 7px;
  height: 7px;
}

.forgot-particles span:nth-child(5) {
  top: 30%;
  left: 80%;
  animation-delay: 8s;
  animation-duration: 22s;
  width: 5px;
  height: 5px;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0.6;
  }
  50% {
    transform: translateY(-100px) translateX(50px) rotate(180deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-200px) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

.forgot-title-gradient {
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  font-size: 2.5rem;
}

.forgot-subtitle-rose {
  color: var(--color-rose-gold);
  font-weight: 500;
}

.text-amber-light {
  color: rgba(233, 152, 86, 0.9);
}

.text-amber {
  color: var(--color-amber);
}

.forgot-feature-card {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.forgot-feature-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-md);
}

.forgot-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold) 0%,
    var(--color-burgundy) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--color-white);
  font-size: 1.2rem;
  box-shadow: 0 0 15px rgba(var(--color-rose-gold-rgb), 0.5);
}

/* Form section styling */
.forgot-password-card {
  border: 1px solid rgba(var(--color-rose-gold-rgb), 0.1);
  transition: var(--transition-smooth);
}

.forgot-password-card:hover {
  box-shadow: 0 15px 30px rgba(var(--color-rose-gold-rgb), 0.1);
  transform: translateY(-5px);
}

.brand-title {
  color: var(--color-burgundy);
  font-family: var(--font-secondary);
  letter-spacing: -0.02em;
  font-size: 1.8rem;
}

.brand-subtitle {
  color: var(--color-text-light);
  font-family: var(--font-primary);
}

.brand-icon i {
  color: var(--color-rose-gold);
  filter: drop-shadow(0 0 5px rgba(var(--color-rose-gold-rgb), 0.3));
}

.jewelry-input {
  border: 2px solid rgba(var(--color-rose-gold-rgb), 0.1);
  border-radius: var(--border-radius-md);
  padding: 0.75rem 1rem;
  transition: var(--transition-smooth);
}

.jewelry-input:focus {
  border-color: var(--color-burgundy);
  box-shadow: 0 0 0 3px rgba(var(--color-burgundy-rgb), 0.1);
}

.jewelry-btn {
  background: linear-gradient(
    135deg,
    var(--color-burgundy) 0%,
    var(--color-plum) 100%
  );
  border: none;
  border-radius: 30px;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(var(--color-burgundy-rgb), 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}

.jewelry-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: var(--transition-slow);
}

.jewelry-btn:hover::before {
  left: 100%;
}

.jewelry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(var(--color-burgundy-rgb), 0.4);
}

.jewelry-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.jewelry-link {
  color: var(--color-burgundy);
  transition: var(--transition-smooth);
  font-weight: 500;
}

.jewelry-link:hover {
  color: var(--color-rose-gold);
  text-decoration: none;
}

.jewelry-btn-outline {
  border: 2px solid var(--color-burgundy);
  color: var(--color-burgundy);
  background: transparent;
  border-radius: 30px;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.jewelry-btn-outline:hover {
  background-color: var(--color-burgundy);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(var(--color-burgundy-rgb), 0.2);
}

.security-notice {
  background-color: rgba(var(--color-rose-gold-rgb), 0.05);
  border: 1px solid rgba(var(--color-rose-gold-rgb), 0.1);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  margin-top: 1.5rem;
}

.security-notice i {
  color: var(--color-burgundy);
}

.jewelry-checkbox {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0;
  vertical-align: top;
  border: 2px solid rgba(var(--color-burgundy-rgb), 0.3);
  border-radius: 4px;
  appearance: none;
  background-color: #fff;
  transition: var(--transition-smooth);
  position: relative;
}

.jewelry-checkbox:checked {
  background-color: var(--color-burgundy);
  border-color: var(--color-burgundy);
}

.jewelry-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.jewelry-checkbox:focus {
  box-shadow: 0 0 0 3px rgba(var(--color-burgundy-rgb), 0.2);
  outline: none;
}

.success-icon i {
  animation: successPulse 2s infinite;
}

@keyframes successPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Font Awesome icon styling */
.fa,
.fas,
.far,
.fab {
  display: inline-block;
  margin-right: 0.2rem;
}

.fa-lock,
.fa-shield-alt,
.fa-clock,
.fa-envelope,
.fa-check-circle {
  color: var(--color-rose-gold);
}

.forgot-feature-icon .fa,
.forgot-feature-icon .fas {
  font-size: 1.1rem;
}

.brand-icon .fa-gem {
  color: var(--color-rose-gold);
  filter: drop-shadow(0 0 8px rgba(var(--color-rose-gold-rgb), 0.4));
  font-size: 2.5rem;
}

.success-icon .fa-check-circle {
  color: var(--color-rose-gold);
  filter: drop-shadow(0 0 5px rgba(var(--color-rose-gold-rgb), 0.4));
  font-size: 3rem;
  animation: successPulse 2s infinite;
}

.shipping-options {
  width: 100%;
}
/* Update form section background */
.form-section {
  background-color: rgba(var(--color-rose-gold-rgb), 0.03);
  display: flex;
  flex-direction: column;
  max-width: 100%;
  align-items: start;
  justify-content: center;
  /* min-height: 100vh; */
  padding: 0rem 0;
}

.form-label {
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.form-label i {
  color: var(--color-burgundy);
  font-size: 0.9rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .forgot-password-section {
    background: linear-gradient(
      135deg,
      rgba(var(--color-rose-gold-rgb), 0.05) 0%,
      rgba(var(--color-amber-rgb), 0.05) 100%
    );
  }

  .forgot-password-card {
    background-color: var(--color-white);
  }

  h1.forgot-title-gradient {
    font-size: 2rem;
  }

  .brand-title {
    font-size: 1.5rem;
  }

  .brand-icon .fa-gem {
    font-size: 2rem;
  }

  .signup-section {
    background: linear-gradient(
      135deg,
      rgba(var(--color-rose-gold-rgb), 0.05) 0%,
      rgba(var(--color-amber-rgb), 0.05) 100%
    );
  }
}

@media (max-width: 576px) {
  .jewelry-btn,
  .jewelry-btn-outline {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .forgot-password-card,
  .signup-card {
    padding: 1.5rem !important;
  }
}

.top-bar .dropdown-item:hover {
  background: var(--gradient-overlay);
  color: var(--color-burgundy);
}

/* ========== MAIN HEADER STYLING ========== */
.main-header {
  background: var(--color-white) !important;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(20px);
}

.main-header.sticky {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
}

.navbar {
  padding: 0.9rem 0;
  min-height: var(--header-height);
}

/* ========== LOGO STYLING ========== */
.navbar-brand {
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  align-items: center;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand img {
  filter: drop-shadow(var(--shadow-sm));
  transition: var(--transition-smooth);
  max-height: 60px;
  width: auto;
}

.navbar-brand:hover img {
  filter: drop-shadow(var(--shadow-md));
}

/* ========== PROFESSIONAL NAVIGATION LINKS ========== */
.navbar-nav {
  gap: 0.25rem;
}

.navbar-nav .nav-item .nav-link {
  color: var(--color-text-primary);
  font-weight: 500;
  font-family: var(--font-primary);
  position: relative;
  padding: 1rem 1.25rem;
  margin: 0 0.125rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  letter-spacing: 0.3px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.navbar-nav .nav-item .nav-link .nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: transparent;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-item .nav-link .nav-icon i {
  font-size: 1rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: auto;
  color: var(--color-burgundy);
  transition: var(--transition-smooth);
}

.navbar-nav .nav-item .nav-link span {
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.navbar-nav .nav-item .nav-link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: 2px;
}
/* 
.navbar-nav .nav-item .nav-link:hover::after,
.navbar-nav .nav-item .nav-link.active::after {
    width: 70%;
} */

.navbar-nav .nav-item .nav-link:hover {
  color: var(--color-burgundy);
}

.navbar-nav .nav-item .nav-link:hover .nav-icon {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: scale(1.05);
}

.navbar-nav .nav-item .nav-link:hover .nav-icon i {
  transform: scale(1.05);
}

.navbar-nav .nav-item .nav-link.active {
  color: var(--color-burgundy);
  font-weight: 600;
}
.nav-link:hover .nav-icon i {
  color: white !important;
}

.navbar-nav .nav-item .nav-link.active .nav-icon {
  /* background: var(--gradient-secondary); */
  color: var(--color-white);
}

/* Regular nav-link for backward compatibility */
.navbar-nav .nav-link:not(.nav-item .nav-link) {
  color: var(--color-text-primary);
  font-weight: 500;
  font-family: var(--font-primary);
  position: relative;
  padding: 0.75rem 1.25rem;
  margin: 0 0.25rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  letter-spacing: 0.3px;
  text-decoration: none;
}

.navbar-nav .nav-link:not(.nav-item .nav-link)::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
  border-radius: 2px;
}

.navbar-nav .nav-link:not(.nav-item .nav-link):hover::after,
.navbar-nav .nav-link:not(.nav-item .nav-link).active::after {
  width: 60%;
}

.navbar-nav .nav-link:not(.nav-item .nav-link):hover {
  color: var(--color-burgundy);
}

.navbar-nav .nav-link:not(.nav-item .nav-link).active {
  color: var(--color-burgundy);
  font-weight: 600;
}

.navbar-nav .nav-link:hover {
  color: var(--color-burgundy);
  transform: translateY(-2px);
}

.navbar-nav .nav-link.active {
  color: var(--color-burgundy);
  font-weight: 600;
}

/* ========== PROFESSIONAL TOP BAR ========== */
.top-bar {
  background: var(--gradient-secondary);
  color: var(--color-white);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-primary);
  letter-spacing: 0.02em;
  backdrop-filter: blur(10px);
}

.top-bar a {
  color: var(--color-white);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.top-bar a:hover {
  color: var(--color-rose-gold);
  text-decoration: none;
  transform: translateY(-1px);
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-left span {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar-left span:hover {
  background: rgba(224, 180, 178, 0.15);
  color: var(--color-rose-gold);
}

.top-bar-left i {
  color: var(--color-rose-gold);
  margin-right: 0.5rem;
  font-size: 0.8rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.top-bar-right ul {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
}

.top-bar-right .list-inline-item a {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
}

.top-bar-right .list-inline-item a:hover {
  background: rgba(224, 180, 178, 0.15);
  transform: translateY(-1px);
  color: var(--color-rose-gold);
}

.top-bar-right .list-inline-item i {
  color: var(--color-rose-gold);
  font-size: 0.8rem;
  margin-right: 0.4rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.top-bar-right .dropdown-toggle {
  border: none;
  background: none;
  color: var(--color-white);
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  letter-spacing: 0.01em;
  font-family: var(--font-primary);
}

.top-bar-right .dropdown-toggle:hover {
  color: var(--color-rose-gold);
  background: rgba(224, 180, 178, 0.15);
  transform: translateY(-1px);
}

.top-bar-right .dropdown-toggle::after {
  margin-left: 0.5rem;
  border-top-color: var(--color-rose-gold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.top-bar-right .dropdown-toggle[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.top-bar-right .dropdown-toggle i {
  color: var(--color-rose-gold);
  margin-right: 0.4rem;
  font-size: 0.8rem;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.top-bar-right .dropdown-menu {
  background: var(--color-white);
  border: 1px solid rgba(224, 180, 178, 0.2);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
  padding: 0.5rem 0;
  min-width: 140px;
}

.top-bar-right .dropdown-item {
  color: var(--color-text-primary);
  padding: 0.6rem 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  display: block;
}

.top-bar-right .dropdown-item:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: translateX(2px);
}

/* ========== MOBILE HEADER LAYOUT ========== */

/* Mobile Header Row - Logo and Icons in Same Row */
.mobile-header-row {
  padding: 0.5rem 0;
  min-height: 60px;
}

/* Mobile Logo Styling */
.mobile-logo .navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.mobile-logo .navbar-brand img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.certification-logo {
  transition: box-shadow 0.2s;
}
.certification-logo img {
  transition: border-color 0.2s, box-shadow 0.2s;
}
.certification-logo:hover img,
.certification-logo:focus-within img {
  border-color: #8d3845;
  box-shadow: 0 0 0 3px #5d3625;
}

.offer-box-shadow {
  box-shadow: var(--bs-box-shadow-sm) !important;
}
.offer-bg-color {
  background-color: #b44d940a;
}

/* Main Offer Box */
.featured-offer {
  padding: 2rem !important;

  overflow: hidden;
}

/* Headings and Paragraphs */
.offer-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;

  text-align: left;
}
.offer-content .section-subtitle {
  font-size: 1rem;
  margin-bottom: 1.2rem;
  text-align: left;
}

.btn-check:checked + .btn {
  background-color: none !important;
  border: none !important;
}
/* Mobile Header Icons Container */
.mobile-header-icons {
  gap: 0.5rem;
}

/* Mobile Icon Buttons - Font Awesome Support */
.mobile-icon-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold) 0%,
    var(--color-amber) 100%
  );
  color: var(--color-white);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(224, 180, 178, 0.25);
  font-family: "Font Awesome 5 Free", var(--font-primary);
  text-decoration: none;
  font-weight: 900;
}

.mobile-icon-btn i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color-white);
  font-size: 0.9rem;
  margin: auto;
}

.mobile-icon-btn:hover,
.mobile-icon-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(224, 180, 178, 0.35);
  background: linear-gradient(
    135deg,
    var(--color-amber) 0%,
    var(--color-burgundy) 100%
  );
  color: var(--color-white);
}

.mobile-icon-btn:hover i,
.mobile-icon-btn:focus i {
  color: var(--color-white);
}

.mobile-icon-btn:active {
  transform: translateY(0);
}

/* Mobile Badge - Perfectly Round */
.mobile-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-burgundy);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--font-primary);
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 6px rgba(200, 86, 112, 0.3);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 8px;
  background: var(--color-midnight);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1030;
}

.menu-line {
  width: 20px;
  height: 2px;
  background: var(--color-white);
  border-radius: 1px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle:hover {
  background: var(--color-purple);
  transform: scale(1.05);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ========== DESKTOP HEADER LAYOUT ========== */

/* Desktop Logo Styling */
.desktop-logo .navbar-brand {
  padding: 0;
  margin-right: 2rem;
  display: flex;
  align-items: center;
}
.footer .desktop-logo {
  margin-left: 60px;
}

.desktop-logo .navbar-brand img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop Navigation */
.desktop-navigation .navbar-nav {
  gap: 0;
}

.desktop-navigation .nav-item .nav-link {
  color: var(--color-text-primary);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-primary);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.desktop-navigation .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.desktop-navigation .nav-item .nav-link:hover::before,
.desktop-navigation .nav-item .nav-link.active::before {
  width: 80%;
}

.desktop-navigation .nav-item .nav-link:hover,
.desktop-navigation .nav-item .nav-link.active {
  color: var(--color-burgundy);
  background: linear-gradient(
    135deg,
    rgba(224, 180, 178, 0.1) 0%,
    rgba(233, 152, 86, 0.1) 100%
  );
  transform: translateY(-1px);
  text-decoration: none;
}

.desktop-navigation .nav-icon {
  font-size: 0.875rem;
  color: var(--color-rose-gold);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-navigation .nav-item .nav-link:hover .nav-icon,
.desktop-navigation .nav-item .nav-link.active .nav-icon {
  color: var(--color-burgundy);
  transform: scale(1.1);
}

/* Desktop Header Icons */
.desktop-header-icons {
  gap: 0.75rem;
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
}

.desktop-icon-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(224, 180, 178, 0.15) 0%,
    rgba(233, 152, 86, 0.15) 100%
  );
  color: var(--color-burgundy);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(224, 180, 178, 0.25);
  font-family: "Font Awesome 5 Free", var(--font-primary);
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(224, 180, 178, 0.15);
  font-weight: 900;
}

.desktop-icon-btn i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin: auto;
  color: var(--color-burgundy);
  font-size: 1rem;
}

.desktop-icon-btn:hover,
.desktop-icon-btn:focus {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 180, 178, 0.3);
  border-color: transparent;
  text-decoration: none;
}

.desktop-icon-btn:hover i,
.desktop-icon-btn:focus i {
  color: var(--color-white);
}

.desktop-icon-btn:active {
  transform: translateY(0);
  color: white;
}

/* Desktop Badge - Perfectly Round */
.desktop-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-burgundy);
  color: var(--color-white);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--font-primary);
  border: 2px solid var(--color-white);
  box-shadow: 0 2px 6px rgba(200, 86, 112, 0.3);
}

/* Desktop User Dropdown */
.desktop-user-dropdown {
  display: flex;
  align-items: center;
}

.desktop-user-dropdown .desktop-icon-btn {
  background: linear-gradient(
    135deg,
    var(--color-burgundy) 0%,
    var(--color-plum) 100%
  );
  color: var(--color-white);
  border-color: var(--color-burgundy);
}

.desktop-user-dropdown .desktop-icon-btn i {
  color: white;
}

.desktop-user-dropdown .desktop-icon-btn:hover {
  background: linear-gradient(
    135deg,
    var(--color-plum) 0%,
    var(--color-purple) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(98, 35, 71, 0.4);
}

.desktop-user-dropdown .user-avatar-btn {
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: var(--gradient-secondary);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(98, 35, 71, 0.3);
  border: 2px solid rgba(224, 180, 178, 0.3);
}

.desktop-user-dropdown .user-avatar-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(98, 35, 71, 0.4);
  border-color: var(--color-rose-gold);
}

.desktop-user-dropdown .user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: var(--font-secondary);
}

/* ========== LEGACY HEADER ICONS (FALLBACK) ========== */

.header-icons {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header-icon,
.btn-icon {
  background: none;
  border: none;
  color: var(--color-text-primary);
  font-size: 1.1rem;
  padding: 0.75rem;
  border-radius: 50%;
  position: relative;
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  text-decoration: none;
}

.header-icon:hover,
.btn-icon:hover {
  background: var(--gradient-overlay);
  color: var(--color-burgundy);
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
}

.header-icon:focus,
.btn-icon:focus {
  outline: 2px solid var(--color-rose-gold);
  outline-offset: 2px;
}

.header-icon .badge,
.btn-icon .badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--gradient-secondary);
  color: var(--color-white);
  font-size: 0.7rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
  box-shadow: var(--shadow-sm);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
    box-shadow: var(--shadow-glow);
  }
  100% {
    transform: scale(1);
  }
}

/* ========== ORDER CONFIRMATION ANIMATIONS ========== */
.floating-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.success-ripple {
  position: absolute;
  border: 4px solid var(--color-rose-gold);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  top: 0;
  left: 0;
  animation: ripple 1.5s cubic-bezier(0.165, 0.84, 0.44, 1) infinite;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

.svg-circle-animation {
  animation: drawCircle 1.5s ease-out forwards;
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
}

.svg-check-animation {
  animation: drawCheck 0.8s ease-out 1s forwards;
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
}

@keyframes drawCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes drawCheck {
  to {
    stroke-dashoffset: 0;
  }
}

.product-img-zoom {
  transition: transform 0.3s ease-out;
}

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

.hover-lift-sm:hover {
  transform: translateY(-2px);
}

.product-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  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);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.pulse-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(var(--color-rose-gold-rgb), 0.2);
  position: relative;
  animation: pulse 2s infinite;
}

.pulse-circle::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: rgba(var(--color-rose-gold-rgb), 0.2);
  animation: pulse-outer 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.5;
  }
  50% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.5;
  }
}

@keyframes pulse-outer {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

.transition-all {
  transition: all 0.3s ease-in-out;
}

/* ========== PROFESSIONAL USER DROPDOWN ========== */
.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-dropdown .nav-link {
  padding: 0.75rem;
  border-radius: 50%;
  transition: var(--transition-smooth);
  color: var(--color-text-primary);
  text-decoration: none;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.user-dropdown .nav-link:hover {
  background: var(--gradient-overlay);
  color: var(--color-burgundy);
}

.user-avatar-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition-smooth);
  border-radius: 50%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-avatar-btn:focus {
  outline: 2px solid var(--color-rose-gold);
  outline-offset: 2px;
}

.user-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
}

.user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1000;
  min-width: 280px;
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition-smooth);
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 0.5rem;
}

.user-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid var(--color-white);
}

.dropdown-header {
  padding: 1.25rem 1.25rem 1rem;
  border-bottom: 1px solid var(--color-light-gray);
}

.user-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.user-avatar-large {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
}

.user-details {
  flex: 1;
}

.user-name {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  font-family: var(--font-primary);
}

.user-email {
  color: var(--color-text-light);
  font-size: 0.85rem;
  margin-top: 0.25rem;
}

.dropdown-body {
  padding: 0.5rem 0;
}

.dropdown-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu-list li {
  margin: 0;
}

.dropdown-menu-list .dropdown-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0.75rem 1.25rem;
  color: var(--color-text-primary);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  font-family: var(--font-tertiary);
  font-size: 0.9rem;
}

.dropdown-menu-list .dropdown-item:hover {
  background: var(--gradient-overlay);
  color: var(--color-burgundy);
}

.dropdown-menu-list .dropdown-item i {
  width: 18px;
  text-align: center;
  margin-right: 0.75rem;
  color: var(--color-text-light);
  transition: var(--transition-smooth);
}

.dropdown-menu-list .dropdown-item:hover i {
  color: var(--color-burgundy);
}

.dropdown-menu-list .dropdown-item .badge {
  margin-left: auto;
  background: var(--gradient-secondary);
  color: var(--color-white);
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
}

.dropdown-menu-list .dropdown-item.text-danger {
  color: #dc3545;
}

.dropdown-menu-list .dropdown-item.text-danger:hover {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.dropdown-divider {
  height: 1px;
  background: var(--color-light-gray);
  margin: 0.5rem 0;
  border: none;
}

.user-dropdown .user-account button {
  background: none;
  border: none;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition-smooth);
  color: var(--color-text-primary);
}

.user-dropdown .user-account button:hover {
  background: var(--gradient-overlay);
  transform: scale(1.05);
}

/* ========== MOBILE TOGGLE ========== */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  background: var(--gradient-overlay);
}

.navbar-toggler:hover {
  background: var(--gradient-primary);
  transform: scale(1.05);
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--color-rose-gold);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23622347' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5rem;
  height: 1.5rem;
}

/* ========== PROFESSIONAL SEARCH OVERLAY ========== */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 24, 54, 0.9);
  backdrop-filter: blur(20px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5vh 2rem 2rem;
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-modal-container {
  background: var(--color-white);
  border-radius: var(--border-radius-xl);
  padding: 2.5rem;
  width: 100%;
  max-width: 650px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transform: translateY(-30px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(224, 180, 178, 0.2);
}

.search-overlay.active .search-modal-container {
  transform: translateY(0) scale(1);
}

.btn-close-search-modal {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: transparent;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--color-text-light);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.page-item .page-link {
  background-color: rgba(81, 36, 81, 0.67);
  color: var(--color-white);
  cursor: pointer !important;
}

.btn-close-search-modal:hover {
  background: var(--gradient-overlay);
  color: var(--color-burgundy);
  transform: scale(1.1);
}

.search-form-modal {
  margin-bottom: 2rem;
}

.search-form-modal .input-group {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--color-light-gray);
  transition: var(--transition-smooth);
}

.search-form-modal .input-group:focus-within {
  border-color: var(--color-rose-gold);
  box-shadow: 0 0 0 3px rgba(224, 180, 178, 0.1);
}

.search-form-modal input {
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
  font-family: var(--font-tertiary);
  background: transparent;
  color: var(--color-text-primary);
}

.search-form-modal input:focus {
  outline: none;
  box-shadow: none;
}

.search-form-modal input::placeholder {
  color: var(--color-text-light);
  font-style: italic;
}

.btn-search-modal {
  background: var(--gradient-primary);
  color: var(--color-white);
  border: none;
  padding: 1.25rem 2rem;
  font-size: 1.1rem;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.btn-search-modal:hover {
  background: var(--gradient-secondary);
  transform: scale(1.02);
}

.search-meta-row {
  max-height: 300px;
  overflow-y: auto;
}

.search-section-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font-primary);
}

.search-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.search-pills:last-child {
  margin-bottom: 0;
}

.pill {
  background: var(--gradient-overlay);
  border: 1px solid var(--color-light-gray);
  border-radius: var(--border-radius-lg);
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  color: var(--color-text-primary);
  transition: var(--transition-smooth);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: var(--font-tertiary);
}

.pill:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.pill img {
  border-radius: 3px;
}

/* Search Products Modal */
.search-products-modal,
.recent-searches-modal,
.popular-categories-modal {
  margin-bottom: 1.5rem;
}

.search-products-modal:last-child,
.recent-searches-modal:last-child,
.popular-categories-modal:last-child {
  margin-bottom: 0;
}

/* ========== SIDEBAR STYLES ========== */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 24, 54, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 380px;
  height: 100vh;
  background: var(--color-white);
  box-shadow: var(--shadow-xl);
  transition: var(--transition-smooth);
  z-index: 1600;
  overflow-y: auto;
  border-left: 3px solid var(--color-rose-gold);
}

.sidebar.active {
  right: 0;
}

.main-nav-sidebar {
  right: -100%;
  left: auto;
}

.main-nav-sidebar.active {
  right: 0;
}

.sidebar-header {
  background: var(--gradient-dark);
  color: var(--color-white);
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.sidebar-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(224, 180, 178, 0.1) 0%,
    transparent 70%
  );
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.sidebar-header h5 {
  margin: 0;
  font-weight: 600;
  font-family: var(--font-secondary);
  font-size: 1.3rem;
  color: var(--color-white);
}

.btn-close {
  background: none;
  border: none;

  color: var(--color-white);
  font-size: 1.3rem;
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition-smooth);
  position: absolute;
  top: 1.4rem;
  /* border: 1px solid var(--color-light-gray); */
  right: 1.5rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}
.btn-close:focus {
  outline: none;
  box-shadow: none;
}

.sidebar-body {
  padding: 1.5rem;
}

.sidebar-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--color-light-gray);
  background: var(--color-cream);
}

/* ========== CART SIDEBAR SPECIFIC ========== */
.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-bottom: 1px solid var(--color-light-gray);
  transition: var(--transition-smooth);
}

.cart-item:hover {
  background: var(--color-cream);
  transform: translateX(5px);
}

.cart-item-image {
  width: 60px;
  height: 60px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
}

.cart-item-title {
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: var(--color-text-primary);
}

.cart-item-price {
  color: var(--color-burgundy);
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-remove {
  background: none;
  border: none;
  color: var(--color-text-light);
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition-smooth);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-remove:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
  transform: scale(1.1);
}

.cart-subtotal {
  display: flex;
  justify-content: between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--gradient-overlay);
  border-radius: var(--border-radius-md);
}

.empty-cart-content {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-cart-content i {
  font-size: 4rem;
  color: var(--color-rose-gold);
  margin-bottom: 1rem;
  opacity: 0.7;
}

.empty-cart-content p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

/* ========== WISHLIST SIDEBAR SPECIFIC ========== */
.wishlist-sidebar {
  width: 420px;
}

.wishlist-sidebar-header {
  background: var(--gradient-secondary);
  color: var(--color-white);
  padding: 2rem 1.5rem;
  position: relative;
}

.wishlist-header-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.wishlist-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.wishlist-header-text h5 {
  margin: 0;
  font-family: var(--font-secondary);
  font-size: 1.3rem;
}

.wishlist-count-badge {
  font-size: 0.9rem;
  opacity: 0.8;
}

.wishlist-header-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.view-mode-toggle {
  display: flex;
  gap: 0.5rem;
}

.view-mode-btn {
  background: var(--gradient-primary-light);
  border: 2px solid var(--color-rose-gold);
  color: var(--color-burgundy);
  padding: 0.6rem;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(224, 180, 178, 0.3);
  font-family: var(--font-primary);
}

.view-mode-btn i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--color-rose-gold);
}

.view-mode-btn.active,
.view-mode-btn:hover {
    background: var(--gradient-primary);
    color: var(--color-white);
    /* border-color: var(--color-burgundy); */
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(224, 180, 178, 0.3);
}

.view-mode-btn.active i,
.view-mode-btn:hover i {
  color: var(--color-white);
}

.wishlist-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: var(--color-white);
  padding: 0.5rem;
  border-radius: 50%;
  transition: var(--transition-smooth);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.empty-wishlist-content {
  text-align: center;
  padding: 4rem 2rem;
}

.empty-wishlist-icon i {
  font-size: 5rem;
  color: var(--color-rose-gold);
  margin-bottom: 1.5rem;
  opacity: 0.6;
}

.empty-wishlist-content h6 {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.empty-wishlist-content p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.wishlist-sidebar-footer {
  background: var(--color-cream);
  border-top: 1px solid var(--color-rose-gold);
}

.wishlist-summary {
  margin-bottom: 1rem;
}

.wishlist-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--gradient-overlay);
  border-radius: var(--border-radius-md);
}

.total-items {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
}

.total-value {
  font-weight: 600;
  color: var(--color-burgundy);
}

.wishlist-footer-actions {
  display: flex;
  gap: 1rem;
}

/* ========== WISHLIST ITEM VIEWS DETAILED STYLING ========== */
.wishlist-items-container {
  padding: 1rem;
  max-height: calc(100vh - 300px);
  overflow-y: auto;
}

/* Compact Grid View */
.wishlist-compact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
}

.wishlist-compact-item {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
  animation: fadeInUp 0.3s ease-out forwards;
  opacity: 0;
}

.wishlist-compact-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-rose-gold);
}

.compact-item-image {
  width: 100%;
  height: 80px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  margin-bottom: 0.75rem;
  position: relative;
}

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

.wishlist-compact-item:hover .compact-item-image img {
  transform: scale(1.1);
}

.compact-item-info {
  text-align: center;
}

.compact-item-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.compact-item-price {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-burgundy);
}

.compact-item-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  justify-content: center;
}

.compact-action-btn {
  background: var(--gradient-primary-light);
  border: 2px solid var(--color-rose-gold);
  color: var(--color-burgundy);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 2px 8px rgba(224, 180, 178, 0.2);
}

.compact-action-btn i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.65rem;
}

.compact-action-btn.add-to-cart {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: var(--color-burgundy);
}

.compact-action-btn.add-to-cart i {
  color: var(--color-white);
}

.compact-action-btn.remove {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.3);
}

.compact-action-btn.remove i {
  color: #dc3545;
}

.compact-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(224, 180, 178, 0.3);
}

.compact-action-btn.add-to-cart:hover {
  background: var(--gradient-secondary);
  color: var(--color-white);
  border-color: var(--color-plum);
}

.compact-action-btn.remove:hover {
  background: #dc3545;
  color: var(--color-white);
  border-color: #dc3545;
}

.compact-action-btn.remove:hover i {
  color: var(--color-white);
}

/* List View */
.wishlist-list-view {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.wishlist-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  animation: slideInFromRight 0.3s ease-out forwards;
  opacity: 0;
}

.wishlist-list-item:hover {
  transform: translateX(5px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-rose-gold);
  background: var(--gradient-overlay);
}

.list-item-image {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

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

.wishlist-list-item:hover .list-item-image img {
  transform: scale(1.1);
}
.wishlist-list-stock i {
  color: var(--color-burgundy) !important;
}
.list-item-content {
  flex: 1;
  min-width: 0;
}
.my-wishlist h2 {
  color: var(--color-text-secondary) !important;
}

.list-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
  font-family: var(--font-secondary);
}

.list-item-description {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.list-item-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-burgundy);
  margin-bottom: 0.75rem;
}

.list-item-actions {
  display: flex;
  gap: 0.75rem;
}

.list-action-btn {
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.list-action-btn i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.8rem;
}

.list-action-btn.primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: var(--color-burgundy);
}

.list-action-btn.primary i {
  color: var(--color-white);
}

.list-action-btn.secondary {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.3);
}

.list-action-btn.secondary i {
  color: #dc3545;
}

.list-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.list-action-btn.primary:hover {
  background: var(--gradient-secondary);
  border-color: var(--color-plum);
}

.list-action-btn.secondary:hover {
  background: #dc3545;
  color: var(--color-white);
  border-color: #dc3545;
}

.list-action-btn.secondary:hover i {
  color: var(--color-white);
}

/* Grid View */
.wishlist-grid-view {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.wishlist-grid-item {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: relative;
  border: 2px solid transparent;
  animation: scaleIn 0.3s ease-out forwards;
  opacity: 0;
}

.wishlist-grid-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-rose-gold);
}

.grid-item-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--gradient-secondary);
  color: var(--color-white);
  padding: 0.25rem 0.5rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.7rem;
  font-weight: 600;
  z-index: 2;
}

.grid-item-image {
  width: 100%;
  height: 150px;
  position: relative;
  overflow: hidden;
}

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

.wishlist-grid-item:hover .grid-item-image img {
  transform: scale(1.1);
}

.grid-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(26, 24, 54, 0.3),
    rgba(165, 64, 85, 0.2)
  );
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-grid-item:hover .grid-item-overlay {
  opacity: 1;
}

.quick-action-btn {
  background: var(--color-white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0.25rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  color: var(--color-text-primary);
}

.quick-action-btn:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.grid-item-details {
  padding: 1rem;
}

.grid-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-secondary);
  line-height: 1.3;
}

.grid-item-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-burgundy);
  margin-bottom: 0.75rem;
}

.grid-item-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
}

.star {
  color: var(--color-amber);
  font-size: 0.8rem;
}

.rating-text {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-left: 0.25rem;
}

.grid-item-actions {
  display: flex;
  gap: 0.5rem;
}

.grid-action-btn {
  flex: 1;
  padding: 0.45rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.grid-action-btn i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.7rem;
}

.grid-action-btn.add-to-cart {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: var(--color-burgundy);
}

.grid-action-btn.add-to-cart i {
  color: var(--color-white);
}

.grid-action-btn.remove {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.3);
}

.grid-action-btn.remove i {
  color: #dc3545;
}

.grid-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.grid-action-btn.add-to-cart:hover {
  background: var(--gradient-secondary);
  border-color: var(--color-plum);
}

.grid-action-btn.remove:hover {
  background: #dc3545;
  color: var(--color-white);
  border-color: #dc3545;
}

.grid-action-btn.remove:hover i {
  color: var(--color-white);
}

/* Cart Sidebar Styling */
/* Wishlist Loading State */
.wishlist-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 10;
}

.wishlist-spinner {
  text-align: center;
}

.spinner-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.wishlist-spinner p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* ========== ENHANCED CART SIDEBAR DETAILS ========== */
.cart-sidebar {
  width: 400px;
}

.cart-items {
  max-height: calc(100vh - 400px);
  overflow-y: auto;
  padding: 0 1rem;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid var(--color-light-gray);
  transition: var(--transition-smooth);
  position: relative;
}

.cart-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-smooth);
}

.cart-item:hover {
  background: var(--color-cream);
  transform: translateX(5px);
}

.cart-item:hover::before {
  opacity: 1;
}

.cart-item-image {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  flex-shrink: 0;
}

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

.cart-item:hover .cart-item-image img {
  transform: scale(1.05);
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--color-text-primary);
  font-family: var(--font-secondary);
  line-height: 1.3;
}

.cart-item-variant {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  color: var(--color-burgundy);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.quantity-btn {
  background: var(--gradient-primary-light);
  border: 2px solid var(--color-rose-gold);
  color: var(--color-burgundy);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.85rem;
  font-weight: 700;
  font-family: var(--font-primary);
  box-shadow: 0 2px 6px rgba(224, 180, 178, 0.2);
}

.quantity-btn:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: var(--color-burgundy);
  transform: scale(1.1);
  box-shadow: 0 3px 10px rgba(200, 86, 112, 0.3);
}

.quantity-input {
  width: 40px;
  text-align: center;
  border: 1px solid var(--color-rose-gold);
  border-radius: var(--border-radius-sm);
  padding: 0.25rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.cart-item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.item-savings {
  color: var(--color-amber);
  font-weight: 500;
}

.btn-remove {
  background: rgba(220, 53, 69, 0.1);
  border: 2px solid rgba(220, 53, 69, 0.3);
  color: #dc3545;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  font-family: var(--font-primary);
  box-shadow: 0 2px 6px rgba(220, 53, 69, 0.2);
}

.btn-remove i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.8rem;
  color: #dc3545;
}

.btn-remove:hover {
  background: #dc3545;
  color: var(--color-white);
  border-color: #dc3545;
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
}

.btn-remove:hover i {
  color: var(--color-white);
}

.btn-remove:hover::before {
  width: 100%;
  height: 100%;
}

.btn-remove:hover {
  color: var(--color-white);
  transform: scale(1.1) rotate(90deg);
}

.cart-summary {
  padding: 1.5rem;
  background: var(--color-cream);
  border-top: 2px solid var(--color-rose-gold);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  padding: 1rem;
  background: var(--gradient-overlay);
  border-radius: var(--border-radius-md);
}

.cart-tax {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  padding: 0 1rem;
}

.cart-shipping {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  padding: 0 1rem;
}

.free-shipping {
  color: var(--color-amber);
  font-weight: 500;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-text-primary);
  padding: 1rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  border-radius: var(--border-radius-md);
  margin-bottom: 1.5rem;
}

.cart-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cart-buttons .btn {
  justify-content: center;
  font-weight: 600;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-primary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cart-buttons .btn i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.9rem;
}

.cart-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.cart-buttons .btn-outline-primary {
  background: transparent;
  color: var(--color-burgundy);
  border-color: var(--color-burgundy);
}

.cart-buttons .btn-outline-primary:hover {
  background: var(--color-burgundy);
  color: var(--color-white);
}

.cart-buttons .btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: var(--color-burgundy);
}

.cart-buttons .btn-primary:hover {
  background: var(--gradient-secondary);
  border-color: var(--color-plum);
}

.continue-shopping {
  text-align: center;
  margin-top: 1rem;
}

.continue-shopping a {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.continue-shopping a:hover {
  color: var(--color-burgundy);
}

/* ========== ENHANCED SEARCH MODAL ========== */
.search-form-modal {
  margin-bottom: 2rem;
}

.search-form-modal .input-group {
  position: relative;
}

.search-form-modal input {
  width: 100%;
  border: 2px solid var(--color-rose-gold);
  border-radius: var(--border-radius-lg);
  padding: 1rem 3rem 1rem 1.5rem;
  font-size: 1.1rem;
  font-family: var(--font-tertiary);
  background: var(--color-white);
  transition: var(--transition-smooth);
}

.search-form-modal input:focus {
  outline: none;
  border-color: var(--color-burgundy);
  box-shadow: 0 0 0 3px rgba(165, 64, 85, 0.1);
}

.search-submit-btn {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gradient-primary);
  border: none;
  color: var(--color-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.search-submit-btn:hover {
  background: var(--gradient-secondary);
  transform: translateY(-50%) scale(1.05);
}

.search-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}

.search-products-modal {
  background: var(--color-cream);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
}

.search-products-modal h6 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
}

.search-product-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  margin-bottom: 0.5rem;
}

.search-product-item:hover {
  background: var(--color-white);
  transform: translateX(3px);
}

.search-product-image {
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.search-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-product-info {
  flex: 1;
}

.search-product-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
}

.search-product-price {
  font-size: 0.8rem;
  color: var(--color-burgundy);
  font-weight: 600;
}

.recent-searches-modal {
  background: var(--color-light-gray);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
}

.recent-searches-modal h6 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
}

.recent-search-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  margin-bottom: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.recent-search-item:hover {
  background: var(--color-white);
  color: var(--color-text-primary);
}

.recent-search-item i {
  color: var(--color-rose-gold);
}

.popular-categories-modal {
  background: var(--gradient-overlay);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
}

.popular-categories-modal h6 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-family: var(--font-secondary);
}

.category-tag {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-text-primary);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-lg);
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0.25rem;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}

.category-tag:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

/* ========== MOBILE MENU ENHANCEMENTS ========== */
.main-nav-sidebar .navbar-nav {
  padding: 1rem 0;
}

.main-nav-sidebar .nav-item {
  margin-bottom: 0.5rem;
}

.main-nav-sidebar .nav-link {
  color: var(--color-text-primary);
  font-weight: 500;
  font-family: var(--font-primary);
  padding: 0.875rem 1.5rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 1rem;
}

.main-nav-sidebar .nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-smooth);
}

.main-nav-sidebar .nav-link:hover::before,
.main-nav-sidebar .nav-link.active::before {
  opacity: 1;
}

.main-nav-sidebar .nav-link:hover,
.main-nav-sidebar .nav-link.active {
  background: var(--gradient-overlay);
  color: var(--color-burgundy);
  transform: translateX(5px);
}

.main-nav-sidebar .nav-link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.mobile-menu-contact {
  background: var(--color-cream);
  border-radius: var(--border-radius-md);
  padding: 1.5rem;
  margin: 1rem;
}

.mobile-menu-contact p {
  margin-bottom: 0.75rem;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu-contact i {
  color: var(--color-rose-gold);
  width: 16px;
}

.mobile-menu-actions {
  padding: 0 1rem;
}

.mobile-menu-actions .btn {
  justify-content: center;
  font-weight: 600;
}

/* ========== MOBILE BOTTOM NAVIGATION ========== */
.mobile-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  backdrop-filter: blur(20px);
  border-top: 2px solid var(--color-rose-gold);
  z-index: 1000;
  padding: 0.75rem 0;
  box-shadow: 0 -4px 20px rgba(26, 24, 54, 0.1);
}

.mobile-bottom-nav .nav-items {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
}

.nav-item {
  text-align: center;
}
.nav-item i {
  font-size: 1rem !important;
}
.mobile-bottom-nav .nav-item {
  flex: 1;
  text-align: center;
}

.mobile-bottom-nav .nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: var(--color-text-primary);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.5rem;
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
  position: relative;
  gap: 0.25rem;
}

.mobile-bottom-nav .nav-link i {
  font-size: 1.2rem;
  transition: var(--transition-smooth);
}

.mobile-bottom-nav .nav-link:hover,
.mobile-bottom-nav .nav-link.active {
  color: var(--color-burgundy);
  background: var(--gradient-overlay);
  transform: translateY(-2px);
}

.mobile-bottom-nav .nav-link:hover i,
.mobile-bottom-nav .nav-link.active i {
  transform: scale(1.1);
}

.mobile-bottom-nav .home-circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  margin-bottom: 0.25rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.mobile-bottom-nav .home-link:hover .home-circle {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.mobile-bottom-nav .badge {
  position: absolute;
  top: 0;
  right: 25%;
  background: var(--gradient-secondary);
  color: var(--color-white);
  font-size: 0.6rem;
  font-weight: 600;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
}

/* ========== FOOTER ENHANCED STYLING ========== */
.footer {
  background: linear-gradient(
    135deg,
    var(--color-midnight) 0%,
    var(--color-plum) 50%,
    var(--color-purple) 100%
  );
  color: var(--color-white);
  position: relative;
  overflow: hidden;

  box-shadow: 0 -10px 30px rgba(107, 61, 122, 0.3);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.02)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="20" cy="80" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.5;
  pointer-events: none;
}

/* Footer Top Wave */
/* .footer::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z" fill="white"/></svg>') no-repeat;
    background-size: cover;
    z-index: 1;
} */

.footer .container {
  position: relative;
  z-index: 2;
}

/* Brand Section Enhanced */
.footer h5 {
  color: var(--color-white);
  font-weight: 700;
  font-family: var(--font-secondary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
}

.footer h5 i {
  color: var(--color-rose-gold);
  margin-right: 0.5rem;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.8;
  }
}

.footer h5::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
  animation: shimmerGlow 3s ease-in-out infinite;
}

@keyframes shimmerGlow {
  0%,
  100% {
    opacity: 1;
    transform: scaleX(1);
    box-shadow: 0 0 10px rgba(224, 180, 178, 0.5);
  }
  50% {
    opacity: 0.7;
    transform: scaleX(1.1);
    box-shadow: 0 0 20px rgba(224, 180, 178, 0.8);
  }
}

.footer h6 {
  color: var(--color-white);
  font-weight: 600;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.footer h6 i {
  color: var(--color-rose-gold);
  margin-right: 0.5rem;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.footer h6:hover i {
  color: var(--color-amber);
  transform: scale(1.1);
}

.footer h6::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-rose-gold);
  border-radius: 1px;
  transition: var(--transition-smooth);
}

.footer h6:hover::before {
  width: 50px;
  background: var(--color-amber);
  box-shadow: 0 0 10px rgba(233, 152, 86, 0.6);
}

.footer-credits a {
  color: var(--color-rose-gold);
  text-decoration: none;
}
.footer-policies a {
  color: var(--color-rose-gold);
  text-decoration: none;
}

.footer-bottom {
  font-size: 15px;
}

.footer-copyright p {
  font-size: 13px !important;
}

.footer p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-family: var(--font-tertiary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  max-width: 280px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 0.75rem;
  position: relative;
  padding-left: 0;
  transition: var(--transition-smooth);
}

.footer ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-family: var(--font-tertiary);
  font-weight: 400;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.footer ul li a i {
  color: var(--color-rose-gold);
  font-size: 0.7rem;
  margin-right: 0.5rem;
  transition: var(--transition-smooth);
}

.footer ul li a:hover {
  color: var(--color-white);
  transform: translateX(5px);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.footer ul li a:hover i {
  color: var(--color-amber);
  transform: scale(1.2);
}

/* Contact Info Enhanced */
.footer .contact ul li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1rem;
  font-family: var(--font-tertiary);
  font-size: 0.9rem;
  padding: 0.5rem 0;
  transition: var(--transition-smooth);
  gap: 0.75rem;
}

.footer .contact ul li i {
  color: var(--color-rose-gold);
  width: 20px;
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.footer .contact ul li:hover {
  color: var(--color-white);
  transform: translateX(5px);
}

.footer .contact ul li:hover i {
  color: var(--color-amber);
  transform: scale(1.1);
}

/* Payment Methods Styling */
.payment-methods h6 {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.payment-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.payment-icons i {
  font-size: 1.35rem;
  color: var(--color-rose-gold);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.payment-icons i:hover {
  color: var(--color-amber);
  transform: scale(1.2);
}

/* Footer Reviews Carousel */
.footer-reviews-carousel {
  margin-top: 1.5rem;
}

.footer-testimonials.owl-carousel .owl-item {
  padding: 0.5rem;
}

.underline {
  max-width: 80px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border-radius: 2px;
}

.footer-review-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: var(--border-radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: var(--transition-smooth);
}

.footer-review-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.review-stars {
  margin-bottom: 0.5rem;
}

.review-stars i {
  color: var(--color-amber);
  font-size: 0.8rem;
  margin: 0 1px;
}

.review-text {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.reviewer {
  font-size: 0.7rem;
  color: var(--color-rose-gold);
  font-weight: 500;
}

/* Social Links Professional Enhancement */
.footer .social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  font-size: 1.1rem;
  backdrop-filter: blur(10px);
  text-decoration: none;
}

.footer .social-links a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--gradient-primary);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.footer .social-links a:hover::before {
  width: 100%;
  height: 100%;
}

.footer .social-links a:hover {
  transform: translateY(-3px) scale(1.1);
  border-color: var(--color-rose-gold);
  box-shadow: 0 8px 25px rgba(224, 180, 178, 0.4);
  color: var(--color-white);
}

/* Footer Divider Elegant */
.footer hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 20%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.3) 80%,
    transparent 100%
  );
  margin: 3rem 0 2rem 0;
  position: relative;
}

.footer hr::before {
  content: "◊";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-midnight);
  color: var(--color-rose-gold);
  padding: 0.5rem;
  font-size: 1.2rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Footer Bottom Enhanced */
.footer-end {
  padding-top: 1.5rem;
  font-family: var(--font-tertiary);
  margin-top: 1.5rem;
}

.footer-end p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin: 0;
  display: flex;
  align-items: center;
}

.footer-end p i {
  color: var(--color-rose-gold);
  margin-right: 0.5rem;
}

.footer-mid {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-tertiary);
  font-size: 0.85rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-mid i {
  color: var(--color-rose-gold);
  margin-right: 0.5rem;
}

.footer-mid a {
  color: var(--color-rose-gold);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.footer-mid a:hover {
  color: var(--color-amber);
  text-shadow: 0 0 10px rgba(233, 152, 86, 0.6);
}

.footer-right a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-family: var(--font-tertiary);
  font-size: 0.85rem;
  margin-left: 1.5rem;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
}

.footer-right a i {
  margin-right: 0.5rem;
  color: var(--color-rose-gold);
}

.footer-right a:hover {
  color: var(--color-white);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.footer-right a:hover i {
  color: var(--color-amber);
}

/* ========== CAROUSEL ENHANCEMENTS ========== */

/* Owl Carousel Custom Styling */
.owl-carousel .owl-nav {
  margin-top: 2rem;
  text-align: center;
}

.owl-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 2px solid var(--color-rose-gold);
  color: var(--color-white);
  margin: 0 0.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(200, 86, 112, 0.3);
}

.owl-carousel .owl-nav button:hover {
  background: var(--gradient-accent);
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 8px 25px rgba(200, 86, 112, 0.4);
  border-color: var(--color-amber);
}

.owl-carousel .owl-dots {
  text-align: center;
  margin-top: 1.5rem;
}

.owl-carousel .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(200, 86, 112, 0.3);
  margin: 0 0.3rem;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.owl-carousel .owl-dot.active {
  background: var(--color-rose-gold);
  border-color: var(--color-amber);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(224, 180, 178, 0.6);
}

/* Slick Carousel Custom Styling */
.slick-dots {
  bottom: -50px;
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.slick-dots li {
  margin: 0;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(200, 86, 112, 0.3);
  border: 2px solid transparent;
  transition: var(--transition-smooth);
  font-size: 0;
}

.slick-dots li.slick-active button {
  background: var(--color-rose-gold);
  border-color: var(--color-amber);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(224, 180, 178, 0.6);
}

.slick-prev,
.slick-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 2px solid var(--color-rose-gold);
  color: var(--color-white);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(200, 86, 112, 0.3);
}

.slick-prev:hover,
.slick-next:hover {
  background: var(--gradient-accent);
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(200, 86, 112, 0.4);
  border-color: var(--color-amber);
}

.slick-prev {
  left: 20px;
}

.slick-next {
  right: 20px;
}

/* Small Category Slider Enhanced */
.small-category-slider {
  padding: 4rem 0;
  background: linear-gradient(135deg, #fafafa 0%, #f8f9fa 50%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.small-category-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="category-pattern" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1" fill="rgba(200,86,112,0.05)"/><path d="M0 30h60M30 0v60" stroke="rgba(224,180,178,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23category-pattern)"/></svg>');
  opacity: 0.6;
  pointer-events: none;
}

.category-slider-swiper {
  position: relative;
  z-index: 2;
}

.small-category-item {
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--border-radius-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(224, 180, 178, 0.2);
  backdrop-filter: blur(10px);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.small-category-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.small-category-item:hover::before {
  transform: scaleX(1);
}

.small-category-item:hover {
  background: rgba(255, 255, 255, 1);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(200, 86, 112, 0.15);
  border-color: var(--color-rose-gold);
}

.small-category-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 25px rgba(200, 86, 112, 0.3);
}

.small-category-item:hover .small-category-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(200, 86, 112, 0.4);
}

.small-category-icon i {
  font-size: 1.5rem;

  color: var(--color-white);
}

.small-category-item h5 {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  transition: var(--transition-smooth);
}

.small-category-item:hover h5 {
  color: var(--color-burgundy);
}

.small-category-item p {
  font-family: var(--font-tertiary);
  color: var(--color-text-secondary);
  font-size: 0.85rem;
  margin: 0;
  transition: var(--transition-smooth);
}

.small-category-item:hover p {
  color: var(--color-text-primary);
}

/* Featured Products Carousel Enhanced */
.featured-swiper-container {
  position: relative;
  padding: 2rem 0;
}

.featured-swiper {
  overflow: visible;
}

.featured-swiper .swiper-slide {
  opacity: 0.7;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}

.featured-swiper .swiper-button-next,
.featured-swiper .swiper-button-prev {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: var(--gradient-primary);
  border: 2px solid var(--color-rose-gold);
  color: var(--color-white);
  margin-top: -27.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(200, 86, 112, 0.3);
}

.featured-swiper .swiper-button-next:hover,
.featured-swiper .swiper-button-prev:hover {
  background: var(--gradient-accent);
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(200, 86, 112, 0.4);
  border-color: var(--color-amber);
}

.featured-swiper .swiper-button-next::after,
.featured-swiper .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: 900;
}

/* Brand Carousel Styling */
.brand-carousel {
  padding: 3rem 0;
  background: rgba(255, 255, 255, 0.5);
}

.brand-carousel .owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.brand-item {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(224, 180, 178, 0.2);
  box-shadow: 0 4px 15px rgba(200, 86, 112, 0.1);
}

.brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(200, 86, 112, 0.2);
  border-color: var(--color-rose-gold);
}

.brand-item img {
  max-height: 60px;
  width: auto;
  opacity: 0.7;
  transition: var(--transition-smooth);
  filter: grayscale(100%);
}

.brand-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

/* Hero Carousel Enhanced */
.hero-section .hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 10;
}

.hero-section .indicator {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section .indicator.active {
  background: var(--color-rose-gold);
  border-color: var(--color-white);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(224, 180, 178, 0.6);
}

.hero-section .hero-nav button {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  font-size: 1.2rem;
}

.hero-section .prev-slide {
  left: 30px;
}

.hero-section .next-slide {
  right: 30px;
}

.hero-section .hero-nav button:hover {
  background: var(--gradient-primary);
  border-color: var(--color-rose-gold);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(200, 86, 112, 0.4);
}

/* Mobile Responsive for Carousels */
@media (max-width: 768px) {
  .owl-carousel .owl-nav button,
  .slick-prev,
  .slick-next,
  .featured-swiper .swiper-button-next,
  .featured-swiper .swiper-button-prev,
  .hero-section .hero-nav button {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }

  .small-category-item {
    padding: 1.5rem 1rem;
  }

  .small-category-icon {
    width: 50px;
    height: 50px;
  }

  .small-category-icon i {
    font-size: 1.2rem;
  }

  .hero-section .prev-slide {
    left: 15px;
  }

  .hero-section .next-slide {
    right: 15px;
  }

  .hero-section .hero-indicators {
    bottom: 20px;
  }

  .hero-section .indicator {
    width: 12px;
    height: 12px;
  }
}

/* ========== HERO SECTION STYLING ========== */
.hero-section {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.hero-slide {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  animation: fadeInScale 1.2s ease-out;
}

.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(26, 24, 54, 0.4),
    rgba(98, 35, 71, 0.3),
    rgba(165, 64, 85, 0.2)
  );
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(1.1);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--color-white);
}

.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.hero-nav button {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.hero-nav button:hover {
  background: var(--gradient-primary);
  border-color: var(--color-rose-gold);
  transform: scale(1.1);
}

.prev-slide {
  left: 2rem;
}

.next-slide {
  right: 2rem;
}

.hero-indicators {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  z-index: 3;
}

.hero-indicators .indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.hero-indicators .indicator.active,
.hero-indicators .indicator:hover {
  background: var(--color-rose-gold);
  transform: scale(1.3);
}

/* ========== PREMIUM CATEGORY SHOWCASE SECTION ========== */
.premium-category-showcase {
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

/* Sophisticated Background Effects */
.category-showcase-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
}

.element {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  animation: elementFloat 12s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  left: 5%;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    45deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  animation-delay: 0s;
}

.element-2 {
  top: 60%;
  right: 10%;
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--color-purple), var(--color-plum));
  animation-delay: 4s;
}

.element-3 {
  bottom: 20%;
  left: 15%;
  width: 100px;
  height: 100px;
  background: linear-gradient(
    45deg,
    var(--color-burgundy),
    var(--color-rose-gold)
  );
  animation-delay: 8s;
}

.element-4 {
  top: 30%;
  left: 50%;
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, var(--color-amber), var(--color-purple));
  animation-delay: 2s;
}

@keyframes elementFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1) rotate(0deg);
    opacity: 0.05;
  }
  33% {
    transform: translateY(-30px) scale(1.1) rotate(120deg);
    opacity: 0.1;
  }
  66% {
    transform: translateY(20px) scale(0.9) rotate(240deg);
    opacity: 0.08;
  }
}

.gradient-mesh {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.mesh-layer {
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(218, 165, 32, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 192, 203, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 80%,
      rgba(72, 61, 139, 0.06) 0%,
      transparent 50%
    );
}

/* Elegant Section Header */
.premium-section-header {
  position: relative;
  z-index: 2;
}

.premium-badge-modern {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  color: white;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(218, 165, 32, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: badgeGlowRotate 4s linear infinite;
}

@keyframes badgeGlowRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.premium-title {
  font-size: 3.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.title-accent {
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber),
    var(--color-purple)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  background-size: 200% 200%;
  animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.premium-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-rose-gold),
    transparent
  );
  max-width: 120px;
}

.divider-center {
  margin: 0 1.5rem;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(218, 165, 32, 0.3);
}
.divider-center i {
  margin: auto;
}
.premium-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-secondary);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  font-weight: 400;
}

/* Premium Category Grid */
.premium-category-grid {
  position: relative;
  z-index: 2;
}

.premium-category-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  height: 100%;
  min-height: 320px;
  outline: none;
}

.premium-category-card:hover,
.premium-category-card:focus {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.premium-category-card:focus {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 2px var(--color-rose-gold);
}

/* Card Background & Effects */
.card-bg-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.gradient-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-category-card:hover .gradient-bg {
  opacity: 1;
}

.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 25% 25%,
      rgba(218, 165, 32, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 75% 75%,
      rgba(255, 192, 203, 0.08) 0%,
      transparent 50%
    );
  opacity: 0.7;
}

.shine-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.premium-category-card:hover .shine-effect {
  transform: translateX(100%);
}

/* Category Visual Container */
.category-visual-container {
  position: relative;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.category-icon-display {
  position: relative;
}

.icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon {
  font-size: 2.5rem;
  color: #c85670 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
}

.premium-category-card:hover .category-icon {
  transform: scale(1.1);
  color: #c85670 !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.icon-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(
    --gradient-primary,
    linear-gradient(135deg, var(--color-rose-gold) 0%, var(--color-purple) 100%)
  );
  border-radius: 50%;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.premium-category-card:hover .icon-background {
  background: linear-gradient(
    135deg,
    var(--color-purple) 0%,
    var(--color-rose-gold) 100%
  );
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.icon-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(
    --gradient-primary,
    linear-gradient(135deg, var(--color-rose-gold), var(--color-purple))
  );
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  filter: blur(10px);
}

.premium-category-card:hover .icon-glow {
  opacity: 0.5;
  animation: pulseGlow 2s infinite;
}

/* Status Indicators */
.category-status {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 4;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.status-badge.featured {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: white;
  box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}
.order-header p {
  color: rgb(112, 111, 111);
}
/* Category Information */
.category-info-container {
  position: relative;
  padding: 1.5rem;
  z-index: 2;
  height: calc(100% - 150px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.flex-grow-1 p {
  color: rgb(145, 145, 145);
}

.category-content {
  flex-grow: 1;
}

.category-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
  line-height: 1.3;
}

.category-description {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

/* Category Metadata */
.category-metadata {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.meta .metadata-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem 0.6rem;
  background: rgba(218, 165, 32, 0.1);
  color: var(--color-rose-gold);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.metadata-item.trending {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
}

.metadata-item i {
  font-size: 0.65rem;
  margin: auto;
}

/* Action Area */
.category-action-area {
  margin-top: auto;
}

.action-button {
  width: 100%;
  padding: 0.8rem;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  text-align: center;
}

.action-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.action-text {
  position: relative;
  z-index: 2;
}

.action-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.action-button:hover .action-icon {
  transform: translateX(4px);
}

.button-ripple {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.action-button:hover .button-ripple {
  left: 100%;
}

/* Interactive Hover Effects */
.hover-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.hover-glow {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border-radius: 23px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
  filter: blur(8px);
}

.premium-category-card:hover .hover-glow {
  opacity: 0.4;
}

.border-animation {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(
      135deg,
      var(--color-rose-gold),
      var(--color-amber)
    )
    border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.premium-category-card:hover .border-animation {
  opacity: 1;
}

/* Load More Button */
.load-more-categories-btn {
  padding: 1rem 2.5rem;
  background: linear-gradient(
    135deg,
    var(--color-midnight),
    var(--color-purple)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(72, 61, 139, 0.3);
  outline: none;
}

.load-more-categories-btn:hover,
.load-more-categories-btn:focus {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(72, 61, 139, 0.4);
}

.load-more-categories-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.btn-glow-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.load-more-categories-btn:hover .btn-glow-effect {
  left: 100%;
}

/* Category Statistics Dashboard */
.category-stats-dashboard {
  position: relative;
  z-index: 2;
}

.stats-container {
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  overflow: hidden;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(218, 165, 32, 0.3);
  transition: all 0.3s ease;
}
.stat-icon i {
  margin: auto;
}

.stat-card:hover .stat-icon {
  transform: scale(1.1);
}

.stat-content {
  position: relative;
  z-index: 2;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-weight: 500;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .premium-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 1200px) {
  .premium-category-card {
    min-height: 300px;
  }

  .category-visual-container {
    height: 130px;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .category-icon {
    font-size: 2.2rem;
  }
}

@media (max-width: 992px) {
  .premium-title {
    font-size: 2.4rem;
  }

  .premium-subtitle {
    font-size: 1.1rem;
  }

  .premium-category-card {
    min-height: 280px;
  }

  .category-visual-container {
    height: 120px;
  }

  .stats-container {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .premium-category-showcase {
    padding: 3rem 0;
  }

  .premium-title {
    font-size: 2rem;
  }

  .premium-subtitle {
    font-size: 1rem;
  }

  .premium-category-card {
    min-height: 260px;
    border-radius: 16px;
  }

  .category-visual-container {
    height: 100px;
  }

  .icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .category-icon {
    font-size: 1.8rem;
  }

  .category-info-container {
    padding: 1rem;
  }

  .category-title {
    font-size: 1.2rem;
  }

  .stats-container {
    padding: 1rem;
  }

  .stat-card {
    padding: 1rem 0.5rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }
}

@media (max-width: 576px) {
  .premium-title {
    font-size: 1.7rem;
  }

  .premium-subtitle {
    font-size: 0.95rem;
  }

  .premium-category-card {
    min-height: 240px;
  }

  .category-visual-container {
    height: 80px;
  }

  .icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .category-icon {
    font-size: 1.5rem;
  }

  .load-more-categories-btn {
    padding: 0.8rem 2rem;
    font-size: 0.85rem;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .stat-number {
    font-size: 1.4rem;
  }
}

/* ========== FEATURED PRODUCTS SECTION ========== */
.featured-products-section {
  background: linear-gradient(
    135deg,
    var(--color-bg-light) 0%,
    var(--color-bg-secondary) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Background Elements */
.featured-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-sparkles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.sparkle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.6;
  animation: sparkleFloat 6s ease-in-out infinite;
}

.sparkle-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.sparkle-2 {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.sparkle-3 {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes sparkleFloat {
  0%,
  100% {
    transform: translateY(0px) scale(0.8);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-20px) scale(1.2);
    opacity: 1;
  }
}

.gradient-overlay-featured {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(224, 180, 178, 0.1) 0%,
    transparent 50%
  );
}

/* Featured Products Grid */
.featured-products-grid {
  position: relative;
  z-index: 2;
}

.featured-product-card {
  background: var(--color-bg-primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  border: 1px solid rgba(224, 180, 178, 0.1);
}

.featured-product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--color-rose-gold);
}

/* Product Image Container */
.product-image-container {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-bg-light) 0%,
    var(--color-bg-secondary) 100%
  );
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.featured-product-card:hover .product-image {
  transform: scale(1.1);
}

/* Product Badges */
.product-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-badges .badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.badge-new {
  background: linear-gradient(135deg, var(--color-purple), var(--color-plum));
  color: white;
}

.badge-sale {
  background: linear-gradient(135deg, #ff6b6b, #ff8787);
  color: white;
}

.badge-featured {
  background: linear-gradient(135deg, var(--color-amber), #ffd93d);
  color: var(--color-text-primary);
}

/* Product Overlay Actions */
.product-overlay-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 8px;
  /* opacity: 0; */
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-overlay-actions i {
  color: white !important;
}
.featured-product-card:hover .product-overlay-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-overlay-actions .quick-view-btn{
  background-color: var(--color-burgundy) !important;
}



.offer-content-horizontal {
  min-height: 60vh;
  display: flex;
  align-items: center;
}


.timer-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timer-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: white;
 
}

.timer-number {
  font-size: 1.5rem;
  line-height: 1;
}

.timer-label {
  font-size: 0.8rem;
  color: #333 !important;
}



@media (max-width: 768px) {
  .timer-circle {
    width: 60px;
    height: 60px;
  }
  
  .timer-number {
    font-size: 1.2rem;
  }
  
  .timer-separator {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .offer-content-horizontal {
    min-height: 450px;
  }
  
  .timer-circle {
    width: 50px;
    height: 50px;
  }
  
  .timer-number {
    font-size: 1rem;
  }
  
  .timer-separator {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }
}

.action-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-primary);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.action-btn:hover {
  background: var(--color-rose-gold);
  color: white;
  transform: scale(1.1);
}

.action-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Image Hover Effects */
.image-hover-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.featured-product-card:hover .shine-effect {
  left: 100%;
}

/* Product Information */
.product-info {
  padding: 20px;
}

.product-header {
  margin-bottom: 12px;
}

.product-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 6px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

.product-desc {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  overflow: hidden;
}

/* Product Rating */
.product-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.stars {
  display: flex;
  gap: 2px;
  color: rgb(235, 235, 25);
  font-size: 20px;
}

.star-icon {
  color: var(--color-amber);
  font-size: 14px;
}

.rating-count {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

/* Product Price */
.product-price {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.current-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-rose-gold);
}

.original-price {
  font-size: 1rem;
  color: var(--color-text-secondary);
  text-decoration: line-through;
}

/* Add to Cart Button */
.add-to-cart-btn {
  width: 100%;
  padding: 12px 16px;
  background: var(--gradient-primary);
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.add-to-cart-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 180, 178, 0.4);
}

.add-to-cart-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background: var(--color-text-secondary);
}

.btn-glow-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.add-to-cart-btn:hover:not(:disabled) .btn-glow-effect {
  left: 100%;
}

/* View All Featured Products Button */
.view-all-featured-btn {
  padding: 16px 32px;
  background: transparent;
  border: 2px solid var(--color-rose-gold);
  border-radius: 50px;
  color: var(--color-rose-gold);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.view-all-featured-btn:hover {
  background: var(--color-rose-gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 180, 178, 0.4);
}

.btn-shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.view-all-featured-btn:hover .btn-shine-effect {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .product-image-container {
    height: 260px;
  }

  .product-name {
    font-size: 1rem;
  }

  .current-price {
    font-size: 1.1rem;
  }
}

@media (max-width: 992px) {
  .product-image-container {
    height: 240px;
  }

  .product-info {
    padding: 16px;
  }

  .sparkle {
    display: none;
  }
}

@media (max-width: 768px) {
  .product-image-container {
    height: 220px;
  }

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

  .action-btn {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .featured-product-card:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 576px) {
  .product-image-container {
    height: 200px;
  }

  .product-info {
    padding: 12px;
  }

  .product-name {
    font-size: 0.95rem;
  }

  .current-price {
    font-size: 1rem;
  }

  .add-to-cart-btn {
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  .view-all-featured-btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

/* ========== MODERN CATEGORIES SECTION ========== */
.modern-categories-section {
  position: relative;
  background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 50%, #ffffff 100%);
  overflow: hidden;
}

/* Background Decorations */
.category-bg-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-gems {
  position: absolute;
  width: 100%;
  height: 100%;
}

.gem {
  position: absolute;
  width: 60px;
  height: 60px;
  background: linear-gradient(
    45deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border-radius: 50% 30% 50% 30%;
  opacity: 0.1;
  animation: gemFloat 8s ease-in-out infinite;
}

.gem-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.gem-2 {
  top: 20%;
  right: 15%;
  animation-delay: 2s;
}

.gem-3 {
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes gemFloat {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
    opacity: 0.2;
  }
}

/* Section Header Modern */
.section-header-modern {
  position: relative;
  z-index: 2;
}

.modern-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  color: white;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(218, 165, 32, 0.3);
}

.badge-shimmer {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmerMove 3s ease-in-out infinite;
}

@keyframes shimmerMove {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.modern-title {
  font-size: 3rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--color-text-primary);
  margin: 0;
  line-height: 1.2;
}

.title-highlight {
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.title-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}

.underline-dot {
  width: 8px;
  height: 8px;
  background: var(--color-rose-gold);
  border-radius: 50%;
  margin: 0 1rem;
}

.underline-line {
  width: 80px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-rose-gold),
    transparent
  );
}

.modern-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Modern Categories Grid */
.modern-categories-grid {
  position: relative;
  z-index: 2;
}

.modern-category-card {
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 24px;
  padding: 0;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.modern-category-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.15);
}

/* Card Background Effects */
.card-bg-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.texture-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 50%,
      rgba(218, 165, 32, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(255, 192, 203, 0.05) 0%,
      transparent 50%
    );
}

/* Category Visual */
.category-visual {
  position: relative;
  height: 200px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
}

.image-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

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

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.overlay-content {
  text-align: center;
}

.category-icon-modern {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.category-icon-modern i {
  font-size: 1.3rem;
  color: var(--color-amber);
  text-align: center;
  margin-top: 1rem;
}

/* Category Badges */
.category-badges {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trend-badge,
.new-badge {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trend-badge {
  background: linear-gradient(135deg, #ff6b6b, #ff8e53);
  color: white;
}

.new-badge {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  color: white;
}

/* Category Info */
.category-info {
  position: relative;
  padding: 1.5rem;
  z-index: 2;
  height: calc(100% - 200px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-header {
  margin-bottom: 1rem;
}

.category-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.category-desc {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Category Statistics */
.category-stats-modern {
  margin-bottom: 1rem;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  background: rgba(218, 165, 32, 0.1);
  color: var(--color-rose-gold);
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.price-pill {
  background: rgba(76, 175, 80, 0.1);
  color: #4caf50;
}

.stat-pill i {
  font-size: 0.7rem;
}

/* CTA Button */
.category-cta-modern {
  margin-top: auto;
}

.explore-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.explore-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-icon {
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.explore-btn:hover .btn-icon {
  transform: translateX(4px);
}

.btn-ripple {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.5s ease;
}

.explore-btn:hover .btn-ripple {
  left: 100%;
}

/* Interactive Elements */
.card-interactions {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.hover-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border-radius: 26px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.modern-category-card:hover .hover-glow {
  opacity: 0.3;
}

.corner-decorations {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-rose-gold);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.corner-tl {
  top: 1rem;
  left: 1rem;
  border-right: none;
  border-bottom: none;
  border-radius: 8px 0 0 0;
}

.corner-tr {
  top: 1rem;
  right: 1rem;
  border-left: none;
  border-bottom: none;
  border-radius: 0 8px 0 0;
}

.corner-bl {
  bottom: 1rem;
  left: 1rem;
  border-right: none;
  border-top: none;
  border-radius: 0 0 0 8px;
}

.corner-br {
  bottom: 1rem;
  right: 1rem;
  border-left: none;
  border-top: none;
  border-radius: 0 0 8px 0;
}

.modern-category-card:hover .corner {
  opacity: 0.6;
}

/* View All Categories Button */
.view-all-categories-btn {
  padding: 1rem;
  background: linear-gradient(
    135deg,
    var(--color-midnight),
    var(--color-purple)
  );
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(72, 61, 139, 0.3);
}

.view-all-categories-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(72, 61, 139, 0.4);
}

.btn-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
}

.category-count {
  margin-left: 0.5rem;
  opacity: 0.8;
  font-weight: 400;
}

.btn-shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.view-all-categories-btn:hover .btn-shine-effect {
  left: 100%;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .modern-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 1200px) {
  .modern-category-card {
    min-height: 380px;
  }

  .category-visual {
    height: 180px;
  }
}

@media (max-width: 992px) {
  .modern-title {
    font-size: 2.2rem;
  }

  .modern-subtitle {
    font-size: 1.1rem;
  }

  .modern-category-card {
    min-height: 360px;
  }

  .category-visual {
    height: 160px;
  }
}

@media (max-width: 768px) {
  .modern-categories-section {
    padding: 3rem 0;
  }

  .modern-title {
    font-size: 1.8rem;
  }

  .modern-subtitle {
    font-size: 1rem;
  }

  .modern-category-card {
    min-height: 340px;
    border-radius: 16px;
  }

  .category-visual {
    height: 140px;
    border-radius: 16px 16px 0 0;
  }

  .category-info {
    padding: 1rem;
  }

  .category-name {
    font-size: 1.25rem;
  }
}

@media (max-width: 576px) {
  .modern-title {
    font-size: 1.5rem;
  }

  .modern-subtitle {
    font-size: 0.95rem;
  }

  .modern-category-card {
    min-height: 320px;
  }

  .category-visual {
    height: 120px;
  }

  .view-all-categories-btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* ========== CATEGORY SECTIONS ========== */
.small-category-slider {
  position: relative;
  padding: 5rem 0;
  background: var(--color-cream);
  overflow: hidden;
}

.category-decorative {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-overlay);
  opacity: 0.1;
}

.category-decorative-1 {
  width: 200px;
  height: 200px;
  top: -100px;
  left: -100px;
}

.category-decorative-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -150px;
}

.section-title {
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-title h4 {
  font-family: var(--font-secondary);
  font-size: 2.5rem;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.small-category-item {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 2px solid transparent;
}

.small-category-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-rose-gold);
  background: var(--gradient-overlay);
}

.category-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: relative;
  border: 2px solid transparent;
}

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

/* ========== PRODUCT CARDS ========== */
.product-card {
  background: var(--color-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: relative;
  border: 2px solid transparent;
}

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

.product-image {
  position: relative;
  overflow: hidden;
  /* aspect-ratio: 1; */
}

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

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

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(26, 24, 54, 0.3),
    rgba(165, 64, 85, 0.2)
  );
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

/* ========== FEATURED SECTION ========== */
.featured-section {
  padding: 5rem 0;
  background: var(--gradient-light);
}

.featured-swiper-container {
  position: relative;
}

.swiper-button-next,
.swiper-button-prev {
  background: var(--gradient-secondary);
  color: var(--color-white) !important;
  width: 35px !important;
  height: 35px !important;
  border-radius: 50%;
  transition: var(--transition-smooth);
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 1rem !important;
}
.swiper {
  position: relative !important;
  overflow: visible !important;
}

.swiper-button-prev {
  left: -20px !important;
}

.swiper-button-next {
  right: -20px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--gradient-primary);
  transform: scale(1.1);
  color: var(--color-dark-gray) !important;
}

.swiper-pagination-bullet {
  background: var(--color-rose-gold);
  opacity: 0.3;
  transition: var(--transition-smooth);
}

.swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.3);
}

/* ========== TRUST SECTION ENHANCED ========== */
.trust-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 50%, #fafafa 100%);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><pattern id="trust-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(200,86,112,0.05)"/><path d="M0 20h40M20 0v40" stroke="rgba(224,180,178,0.03)" stroke-width="1"/></pattern></defs><rect width="200" height="200" fill="url(%23trust-pattern)"/></svg>');
  opacity: 0.7;
  pointer-events: none;
}

.trust-section .container {
  position: relative;
  z-index: 2;
}

.trust-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--border-radius-xl);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(224, 180, 178, 0.1);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.trust-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-item:hover::before {
  transform: scaleX(1);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(200, 86, 112, 0.15);
  border-color: rgba(224, 180, 178, 0.2);
}

.trust-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 1.5rem;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: var(--color-white);
  box-shadow: 0 10px 30px rgba(200, 86, 112, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.trust-icon i {
  color: var(--color-light-gray) !important;
  margin: auto;
}

.trust-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translate(-50%, -50%);
}

.trust-item:hover .trust-icon::before {
  width: 100%;
  height: 100%;
}

.trust-item:hover .trust-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(200, 86, 112, 0.4);
}

.trust-item h4 {
  font-family: var(--font-secondary);
  color: var(--color-text-primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.trust-item:hover h4 {
  color: var(--color-burgundy);
}

.trust-item p {
  font-family: var(--font-tertiary);
  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
  transition: var(--transition-smooth);
}

.trust-item:hover p {
  color: var(--color-text-primary);
}

/* ========== OFFER BANNER SECTION ENHANCED ========== */
.offer-banner-section {
    background: linear-gradient(135deg, 
        var(--color-midnight) 0%,
        var(--color-plum) 50%,
        var(--color-purple) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    height: 60vh;
    color: var(--color-white);
}

.offer-decorative {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.offer-decorative-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.offer-decorative-2 {
  width: 400px;
  height: 400px;
  bottom: -200px;
  right: -200px;
  animation-delay: 3s;
}

.offer-content {
  text-align: start;
  position: relative;
  z-index: 2;
}

.offer-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 0.85rem 1.8rem;
  border-radius: var(--border-radius-xl);
  font-weight: 600;
  font-family: var(--font-primary);
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px rgba(200, 86, 112, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.offer-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shimmer 2s infinite;
}

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

.offer-content h3 {
  font-family: var(--font-secondary);
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.offer-highlight {
  color: var(--color-rose-gold);
  font-weight: 800;
  text-shadow: 0 0 20px rgba(224, 180, 178, 0.5);
}

.offer-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.offer-btn {
  padding: 1.2rem 2.5rem;
  font-weight: 600;
  font-family: var(--font-primary);
  border-radius: var(--border-radius-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.offer-btn-primary {
  background: var(--gradient-accent);
  border: 2px solid var(--color-rose-gold);
  color: var(--color-white);
}

.offer-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(224, 180, 178, 0.4);
  border-color: var(--color-amber);
}

.offer-timer {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.timer-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.8rem 1.6rem;
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(15px);
    min-width: 110px;
    border: 1px solid rgba(192, 111, 111, 0.2);
    transition: var(--transition-smooth);
}
.timer-item .timer-circle{
    border-radius: 50% !important;
   
}

.timer-item:hover {
  background: rgba(255, 255, 255, 0.096);
  transform: translateY(-2px);
}

.timer-number {
    display: block;
   
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-purple);
    font-family: var(--font-secondary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.timer-label {
  font-size: 0.9rem;

  font-family: var(--font-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.5rem;
}

/* Mobile Responsive for Enhanced Sections */
@media (max-width: 768px) {
  .trust-section {
    padding: 4rem 0;
  }

  .trust-item {
    padding: 2rem 1rem;
    margin-bottom: 2rem;
  }

  .trust-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .offer-banner-section {
    padding: 4rem 0;
  }

  .offer-content h3 {
    font-size: 2.4rem;
  }

  .offer-buttons {
    flex-direction: column;
    align-items: center;
  }

  .offer-btn {
    width: 80%;
    max-width: 300px;
  }

  .offer-timer {
    gap: 1rem;
  }

  .timer-item {
    min-width: 90px;
    padding: 1.5rem 1rem;
  }

  .timer-number {
    font-size: 1.8rem;
  }
}

/* ========== NEWSLETTER SECTION ENHANCED ========== */
.newsletter-section {
  background: linear-gradient(135deg, var(--color-purple) 50%) var(--color-plum)
      50%,
    var(--color-midnight) 0%;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="newsletter-pattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.05)"/><path d="M0 25h50M25 0v50" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23newsletter-pattern)"/></svg>');
  opacity: 0.6;
  pointer-events: none;
}

.newsletter-section .container {
  position: relative;
  z-index: 2;
}

.newsletter-section h3 {
  font-family: var(--font-secondary);
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.newsletter-section h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.newsletter-section p {
  font-family: var(--font-tertiary);
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
}

.newsletter-form {
  margin-top: 2rem;
}

.newsletter-form .input-group {
  position: relative;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid transparent;
  color: var(--color-midnight);
  padding: 1.2rem 1.5rem;
  font-family: var(--font-tertiary);
  font-size: 1rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-form input::placeholder {
  color: rgba(74, 72, 104, 0.6);
  font-weight: 400;
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 1);
  border-color: var(--color-rose-gold);
  box-shadow: 0 0 0 3px rgba(224, 180, 178, 0.3);
  transform: translateY(-1px);
}

.newsletter-form .btn {
  background: var(--gradient-primary);
  border: none;
  color: var(--color-white);
  padding: 1.2rem 2rem;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.newsletter-form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.6s ease-in-out;
}

.newsletter-form .btn:hover::before {
  left: 100%;
}

.newsletter-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 86, 112, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .newsletter-section {
    padding: 4rem 0;
  }

  .newsletter-section h3 {
    font-size: 2rem;
    text-align: center;
  }

  .newsletter-section h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .newsletter-section p {
    text-align: center;
    font-size: 1rem;
  }

  .newsletter-form .input-group {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form .btn {
    width: 100%;
    border-radius: var(--border-radius-lg);
  }

  .newsletter-form .btn {
    margin-top: 1rem;
  }
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.4rem;
  }
  h3 {
    font-size: 2rem;
  }
}

@media (max-width: 992px) {
  :root {
    --header-height: 70px;
  }

  .hero-slide {
    min-height: 80vh;
  }

  .offer-content h3 {
    font-size: 2.5rem;
  }

  .hero-nav button {
    width: 50px;
    height: 50px;
  }

  .sidebar {
    width: 320px;
  }

  .wishlist-sidebar {
    width: 350px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.8rem;
  }

  .hero-slide {
    min-height: 70vh;
  }

  .sidebar {
    width: 280px;
  }

  .wishlist-sidebar {
    width: 300px;
  }

  .offer-content h3 {
    font-size: 2rem;
  }

  .offer-timer {
    gap: 1rem;
  }

  .timer-item {
    padding: 1rem;
    min-width: 80px;
  }

  .timer-number {
    font-size: 1.5rem;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-end > div {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .sidebar {
    width: 100vw;
  }

  .wishlist-sidebar {
    width: 100vw;
  }

  .search-modal-container {
    margin: 1rem;
    width: calc(100% - 2rem);
    padding: 2rem;
  }

  .offer-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-nav {
    display: none;
  }
}

/* ========== LOADING ANIMATIONS ========== */
@keyframes shimmerLoading {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.loading {
  background: linear-gradient(
    90deg,
    var(--color-light-gray) 25%,
    var(--color-white) 50%,
    var(--color-light-gray) 75%
  );
  background-size: 200% 100%;
  animation: shimmerLoading 1.5s infinite;
  border-radius: var(--border-radius-md);
}

.loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  backdrop-filter: blur(5px);
}

.spinner-border {
  border-color: var(--color-rose-gold);
  border-right-color: transparent;
}

/* ========== UTILITY CLASSES ========== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.price-tag {
  background: var(--gradient-secondary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-xl);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  display: inline-flex;
  align-items: center;
}

.price-tag:hover {
  background: var(--gradient-primary);
  transform: scale(1.05);
}

.charity-badge {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 0.5rem 1.5rem;
  border-radius: var(--border-radius-xl);
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

/* ========== ANIMATION KEYFRAMES ========== */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========== RESPONSIVE HEADER IMPROVEMENTS ========== */
@media (max-width: 992px) {
  .navbar-nav .nav-item .nav-link {
    padding: 0.75rem 1rem;
    flex-direction: row;
    gap: 0.5rem;
  }

  .navbar-nav .nav-item .nav-link .nav-icon {
    width: 24px;
    height: 24px;
  }

  .navbar-nav .nav-item .nav-link span {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .top-bar {
    font-size: 0.8rem;
    padding: 0.5rem 0;
  }

  .top-bar-left {
    gap: 1rem;
  }

  .top-bar-left span {
    padding: 0.25rem;
  }

  .header-icon,
  .btn-icon {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }

  .user-dropdown-menu {
    min-width: 260px;
    right: -1rem;
  }

  .search-modal-container {
    padding: 2rem 1.5rem;
    margin: 0 1rem;
    max-width: none;
  }

  .search-form-modal input {
    padding: 1rem;
    font-size: 1rem;
  }

  .btn-search-modal {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .search-modal-container {
    padding: 1.5rem 1rem;
  }

  .search-section-title {
    font-size: 0.8rem;
  }

  .pill {
    font-size: 0.8rem;
    padding: 0.4rem 0.75rem;
  }

  .user-dropdown-menu {
    min-width: 240px;
    right: -0.5rem;
  }
}

/* ========== FOCUS STATES FOR ACCESSIBILITY ========== */
*:focus {
  outline: 2px solid var(--color-rose-gold);
  outline-offset: 2px;
}

button:focus,
.btn:focus {
  box-shadow: 0 0 0 3px rgba(224, 180, 178, 0.3);
}

input:focus,
textarea:focus {
  border-color: var(--color-burgundy);
  box-shadow: 0 0 0 3px rgba(165, 64, 85, 0.1);
}

/* ========== PRINT STYLES ========== */
@media print {
  .header,
  .footer,
  .mobile-bottom-nav,
  .sidebar,
  .search-overlay {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: black;
    background: white;
  }
}

/* ========== TOOLTIPS & NOTIFICATIONS ========== */
.tooltip {
  position: absolute;
  z-index: 1070;
  background: var(--color-midnight);
  color: var(--color-white);
  padding: 0.5rem 0.75rem;
  border-radius: var(--border-radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-10px);
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-md);
  font-family: var(--font-tertiary);
  letter-spacing: 0.3px;
}

.tooltip.show {
  opacity: 1;
  transform: translateY(0);
}

.tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--color-midnight);
}

.tooltip.bottom::after {
  top: -8px;
  border-top-color: transparent;
  border-bottom-color: var(--color-midnight);
}

.notifications-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 9999;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.notification {
  background: var(--color-white);
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-left: 4px solid var(--color-rose-gold);
  opacity: 0;
  transform: translateX(100%);
  transition: var(--transition-smooth);
  font-family: var(--font-tertiary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.notification.show {
  opacity: 1;
  transform: translateX(0);
}

.notification-success {
  border-left-color: #10b981;
}

.notification-error {
  border-left-color: #ef4444;
}

.notification-warning {
  border-left-color: #f59e0b;
}

.notification-info {
  border-left-color: var(--color-amber);
}

.notification i {
  font-size: 1.1rem;
  color: var(--color-burgundy);
}

.notification-success i {
  color: #10b981;
}

.notification-error i {
  color: #ef4444;
}

.notification-warning i {
  color: #f59e0b;
}

.notification button {
  background: none;
  border: none;
  color: var(--color-text-light);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 0;
  margin-left: auto;
  transition: var(--transition-smooth);
}

.notification button:hover {
  color: var(--color-text-primary);
}

/* ========== HIGH CONTRAST MODE ========== */
@media (prefers-contrast: high) {
  :root {
    --color-text-primary: #000000;
    --color-text-secondary: #000000;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
  }
}

/* ========== RESPONSIVE HEADER DESIGN ========== */

/* Small Mobile Devices */
@media (max-width: 480px) {
  .mobile-header-icons {
    gap: 0.25rem;
  }

  .mobile-icon-btn {
    width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }

  .mobile-logo .navbar-brand img {
    height: 45px;
  }

  .mobile-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .menu-line {
    width: 18px;
  }
}

/* Tablet Portrait */
@media (min-width: 481px) and (max-width: 767px) {
  .mobile-header-icons {
    gap: 0.5rem;
  }

  .mobile-icon-btn {
    width: 44px;
    height: 44px;
  }

  .mobile-logo .navbar-brand img {
    height: 55px;
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .desktop-logo .navbar-brand img {
    height: 80px;
  }

  .desktop-navigation .nav-item .nav-link {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
  }

  .desktop-icon-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .mobile-icon-btn,
  .desktop-icon-btn {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .main-header {
    background: rgba(26, 24, 54, 0.95);
    border-bottom-color: rgba(224, 180, 178, 0.2);
  }

  .desktop-icon-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: rgba(224, 180, 178, 0.3);
  }
}

/* Print Styles */
@media print {
  .main-header {
    display: none;
  }
}

/* ========== PROFESSIONAL ICON REPLACEMENTS ========== */

/* 
Replace unprofessional icons in HTML:
- fa-eye → fa-external-link-alt (for quick view)
- fa-eye → fa-search-plus (for product details)
- fa-eye → fa-arrow-right (for view/explore)
- fa-eye → fa-info-circle (for product info)
*/

/* Quick View/External Link Styling */
.quick-view-btn,
.grid-quick-view,
.compact-item-overlay .fa-external-link-alt,
.compact-item-overlay .fa-search-plus {
  /* background: var(--gradient-primary-light); */
  color: var(--color-burgundy);
  background: var(--color-amber) !important;
  border: 1px solid var(--color-rose-gold);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-size: 0.65rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

.quick-view-btn:hover,
.grid-quick-view:hover,
.compact-item-overlay .fa-external-link-alt:hover,
.compact-item-overlay .fa-search-plus:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: var(--color-burgundy);
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(200, 86, 112, 0.3);
}

/* Professional Icon Alternative Classes */
.icon-view-details {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}

.icon-view-details::before {
  content: "\f35d"; /* fa-external-link-alt */
}

.icon-quick-view::before {
  content: "\f00e"; /* fa-search-plus */
}

.icon-explore::before {
  content: "\f061"; /* fa-arrow-right */
}

.icon-product-info::before {
  content: "\f05a"; /* fa-info-circle */
}

/* ========== ENHANCED BUTTON SYSTEM FOR CART & WISHLIST ========== */

/* Quick Action Buttons for Overlays - Smaller Sizes */
.compact-quick-action,
.list-btn-primary,
.list-btn-secondary,
.grid-btn-primary,
.grid-btn-secondary {
  font-family: var(--font-primary);
  font-weight: 600;
  border-radius: 6px;
  padding: 0.4rem 0.75rem;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
}

.compact-quick-action i,
.list-btn-primary i,
.list-btn-secondary i,
.grid-btn-primary i,
.grid-btn-secondary i {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 0.8rem;
}

/* Primary Action Buttons (Add to Cart) */
.compact-quick-action:not(.remove),
.list-btn-primary,
.grid-btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: var(--color-burgundy);
}

.compact-quick-action:not(.remove) i,
.list-btn-primary i,
.grid-btn-primary i {
  color: var(--color-white);
}

.compact-quick-action:not(.remove):hover,
.list-btn-primary:hover,
.grid-btn-primary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(200, 86, 112, 0.3);
  border-color: var(--color-plum);
}

/* Secondary Action Buttons (Remove) */
.compact-quick-action.remove,
.list-btn-secondary,
.grid-btn-secondary {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.3);
}

.compact-quick-action.remove i,
.list-btn-secondary i,
.grid-btn-secondary i {
  color: #dc3545;
}

.compact-quick-action.remove:hover,
.list-btn-secondary:hover,
.grid-btn-secondary:hover {
  background: #dc3545;
  color: var(--color-white);
  border-color: #dc3545;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(220, 53, 69, 0.3);
}

.compact-quick-action.remove:hover i,
.list-btn-secondary:hover i,
.grid-btn-secondary:hover i {
  color: var(--color-white);
}

/* Compact Quick Actions for Overlay - Smaller Size */
.compact-quick-action {
  width: 26px;
  height: 26px;
  padding: 0;
  border-radius: 50%;
  font-size: 0.65rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
}

/* Utility Button Classes */
.btn-add-cart {
  background: var(--gradient-primary) !important;
  color: var(--color-white) !important;
  cursor: pointer;
  border-color: var(--color-burgundy) !important;
  padding: 5px 0px !important;
}
.btn-quick-view {
  padding: 5px 0px !important;
}

.btn-add-cart:hover {
  background: var(--gradient-secondary) !important;
  border-color: var(--color-plum) !important;
}

.btn-remove-item {
  background: rgba(220, 53, 69, 0.1) !important;
  color: #dc3545 !important;
  border-color: rgba(220, 53, 69, 0.3) !important;
}

.btn-remove-item:hover {
  background: #dc3545 !important;
  color: var(--color-white) !important;
  border-color: #dc3545 !important;
}

/* PROFESSIONAL BUTTON SYSTEM ========== */
.btn {
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(224, 180, 178, 0.3);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: var(--color-burgundy);
}

.btn-primary:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(165, 64, 85, 0.3);
  color: var(--color-white);
}

.btn-secondary {
  background: var(--gradient-primary-light);
  color: var(--color-burgundy);
  border-color: var(--color-rose-gold);
}

.btn-secondary:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(224, 180, 178, 0.3);
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-burgundy);
  border-color: var(--color-burgundy);
}

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(165, 64, 85, 0.2);
}

.btn-lg {
  padding: 0.5rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 10px;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  border-radius: 6px;
}

/* ========== PROFESSIONAL FORM CONTROLS ========== */
.form-control,
.form-select {
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-primary);
  background-color: var(--color-white);
  /* border: 2px solid var(--color-rose-gold-light) !; */
  box-shadow: 0 0 0 2px rgba(165, 64, 85, 0.15);

  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
}

.form-control:focus,
.form-select:focus {
  /* border-color: var(--color-burgundy); */
  border: none !important;
  box-shadow: 0 0 0 2px rgba(165, 64, 85, 0.15);
  background-color: var(--color-white);
  transform: translateY(-1px);
  outline: none;
}

.form-control::placeholder {
  color: var(--color-text-secondary);
  font-weight: 400;
  font-size: 0.9rem;
}

.form-label {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-text {
  font-family: var(--font-primary);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  margin-top: 0.25rem;
  line-height: 1.4;
}

/* ========== PROFESSIONAL CARD SYSTEM ========== */
.card {
  background: var(--color-white);
  border: 1px solid rgba(224, 180, 178, 0.2);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--color-rose-gold);
}

.card-header {
  background: var(--gradient-primary-light);
  border-bottom: 1px solid rgba(224, 180, 178, 0.2);
  padding: 1.25rem 1.5rem;
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--color-burgundy);
}

.card-body {
  padding: 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(184, 134, 11, 0.1),
    rgba(255, 193, 7, 0.1)
  );
}

.card-title {
  font-family: var(--font-display);
  font-size: 16px !important;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.card-text {
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* ========== ALERT SYSTEM ========== */
.alert {
  font-family: var(--font-primary);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
}

.alert-success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  border-color: #badbcc;
  color: #155724;
}

.alert-warning {
  background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
  border-color: #ffeaa7;
  color: #856404;
}

.alert-danger {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  border-color: #f5c6cb;
  color: #721c24;
}

.alert-info {
  background: var(--gradient-primary-light);
  border-color: var(--color-rose-gold-light);
  color: var(--color-burgundy);
}

/* ========== PROFESSIONAL BADGES WITH ROUND BACKGROUNDS ========== */
.badge {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.4rem 0.35rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-transform: uppercase;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Count badges - perfectly round */
.badge-count,
.nav-icon .badge,
.header-icon .badge,
.btn-icon .badge {
  font-family: var(--font-primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: var(--color-burgundy);
  color: var(--color-white);
  position: absolute;
  top: -2px;
  right: -2px;
  box-shadow: 0 2px 6px rgba(200, 86, 112, 0.3);
  border: 2px solid var(--color-white);
}

.badge-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding-top: 10px;
}

.badge-secondary {
  background: var(--color-rose-gold);
  color: var(--color-burgundy);
  padding-top: 10px;
}

.badge-success {
    background: var(--color-burgundy) !important;
    color: var(--color-white);
}

.badge-warning {
  /* background: linear-gradient(135deg, #ffc107 0%, #fd7e14 100%); */
  background-color: var(--color-burgundy);
  color: var(--color-white);
  padding-top: 10px;
}

.badge-danger {
  background: linear-gradient(135deg, #dc3545 0%, #e74c3c 100%);
  color: var(--color-white);
}

/* ========== FONT AWESOME ICON STYLING ========== */
.fa,
.fas,
.far,
.fal,
.fab {
  font-family: "Font Awesome 5 Free" !important;
  font-weight: 900;
  color: var(--color-black);
}

.blog-btn {
  background: linear-gradient(
    135deg,
    var(--color-midnight),
    var(--color-purple)
  ) !important;
  color: white !important;
  border: none !important;

  box-shadow: 0 8px 32px rgba(72, 61, 139, 0.3);
}

/* Icon color variations */
.icon-primary {
  color: var(--color-burgundy) !important;
}

.icon-secondary {
  color: var(--color-rose-gold) !important;
}

.icon-accent {
  color: var(--color-amber) !important;
}

.icon-light {
  color: var(--color-white) !important;
}

/* Icon sizes */
.icon-xs {
  font-size: 0.75rem;
}

.icon-sm {
  font-size: 0.875rem;
}

.icon-md {
  font-size: 1rem;
}

.icon-lg {
  font-size: 1.25rem;
}

.icon-xl {
  font-size: 1.5rem;
}

/* ========== UTILITY CLASSES ========== */
.text-gradient {
  background: var(--gradient-primary);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.shadow-primary {
  box-shadow: 0 4px 20px rgba(165, 64, 85, 0.15);
}

.shadow-rose {
  box-shadow: 0 4px 20px rgba(224, 180, 178, 0.2);
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.border-gradient {
  border: 2px solid transparent;
  background: linear-gradient(var(--color-white), var(--color-white))
      padding-box,
    var(--gradient-primary) border-box;
}

/* Animation Classes */
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

.animate-slide-up {
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.8s ease-out forwards;
}

.animate-scale-in {
  transform: scale(0.9);
  opacity: 0;
  animation: scaleIn 0.6s ease-out forwards;
}

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

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

@keyframes scaleIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ========== CONTACT PAGE STYLES - PROFESSIONAL & OPTIMIZED ========== */

/* Contact Hero Section */
.contact {
  padding: 80px 0 0;

  position: relative;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;

  pointer-events: none;
}

/* Contact Cards */
.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  width: 80%;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.contact-card:hover::before {
  transform: scaleX(1);
}
.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.3);
}

.contact-icon i {
  font-size: 2rem;
  color: white;
}

.contact-icon::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 2px solid rgba(184, 134, 11, 0.2);
  animation: contactPulse 2s infinite;
}

@keyframes contactPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 0;
  }
}

.contact-content h4 {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.contact-details p {
  margin-bottom: 0.5rem;

  color: var(--color-text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.nav-link {
  padding: 12px 15px;
}

.contact-details strong {
  color: var(--color-text-primary);
}

.phone-number,
.email-address {
  font-weight: 500;
  /* color: var(--color-rose-gold) !important; */
}

.contact-hours {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-hours i {
  color: var(--color-amber);
  margin-right: 0.5rem;
}

.contact-btn {
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  color: white;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
  color: white;
  text-decoration: none;
}

/* Contact Form */
.contact-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-form-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 10% 90%,
      rgba(184, 134, 11, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 10%,
      rgba(120, 119, 198, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

/* Enhanced Form Elements */
.jewelry-input,
.jewelry-select,
.jewelry-textarea {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  font-size: 1rem;
  background: #ffffff;
  color: var(--color-text-primary);
}

.jewelry-input:focus,
.jewelry-select:focus,
.jewelry-textarea:focus {
  outline: none;
  border-color: var(--color-rose-gold);
  box-shadow: 0 0 0 3px rgba(184, 134, 11, 0.1);
  transform: translateY(-2px);
}

.jewelry-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

/* Custom Checkboxes - Enhanced */
.custom-checkbox {
  margin-bottom: 1rem;
  position: relative;
}

.custom-checkbox .form-check-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* Also remove focus style from the label if needed */
.form-check-input:focus {
  outline: none;
  box-shadow: none;
  border: 1px solid var(--color-burgundy);
}

.form-check-input:checked {
  background-color: var(--color-burgundy);
  border-color: var(--color-burgundy);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--gradient-primary); /* or solid var(--color-burgundy) */
  outline: none;
  cursor: pointer;
  box-shadow: none;
}

/* Chrome / Safari / Edge - Track */
input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  background: var(--gradient-primary);
  border-radius: 3px;
  box-shadow: none;
}

/* Chrome / Safari / Edge - Thumb */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--color-burgundy);
  cursor: pointer;
  margin-top: -5px; /* Align thumb vertically */
  box-shadow: none;
  border: none;
}

/* Remove focus glow completely */
input[type="range"]:focus {
  outline: none;
  box-shadow: none;
}

.custom-checkbox .form-check-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 0.95rem;

  line-height: 1.5;
  color: var(--color-text-secondary);
  user-select: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  margin-right: 12px;
  margin-top: 2px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background: #ffffff;
}

.custom-checkbox .form-check-input:checked + .form-check-label .checkmark {
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border-color: var(--color-rose-gold);
}

.custom-checkbox
  .form-check-input:checked
  + .form-check-label
  .checkmark::after {
  content: "\2713";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.checkbox-text a {
  color: var(--color-rose-gold);
  text-decoration: none;
  transition: text-decoration 0.2s ease;
}

.checkbox-text a:hover {
  text-decoration: underline;
}

/* Submit Button - Enhanced */
.submit-btn {
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(184, 134, 11, 0.3);
  cursor: pointer;
}

.submit-btn:hover:not(:disabled) {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(184, 134, 11, 0.4);
}

.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Store Hours & Map */
.store-hours-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.store-hours-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
}

.hours-item {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background-color 0.2s ease;
}

.hours-item:last-child {
  border-bottom: none;
}
.hours-item:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.day {
  font-weight: 500;
  color: var(--color-text-primary);
}

.time {
  color: var(--color-rose-gold);
  font-weight: 600;
}

/* Map Container */
.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  height: 400px;
  background: #f8f9fa;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.map-container:hover iframe {
  filter: grayscale(0%);
}

/* Enhanced FAQ Accordion */
.accordion-item {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px !important;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
  background: var(--gradient-primary) !important;
  color: var(--color-white) !important;
  border: none;
  padding: 1.5rem;

  font-weight: 500;
  font-size: 1.1rem;
  border-radius: 12px !important;
  box-shadow: none;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  background: var(--gradient-secondary) !important;
  box-shadow: none !important;
  color: var(--color-white);
}
.accordion-button:not(.collapsed)::after {
  background-image: none !important;
}

.accordion-button::after {
  background-image: none;
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--color-rose-gold);
  transition: transform 0.3s ease;
  font-size: 1rem;
}
.accordion-button:hover {
  background: var(--gradient-primary) !important;
  color: var(--color-white) !important;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 1.5rem;
  background: #ffffff;
  color: var(--color-text-secondary);
  line-height: 1.6;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 20% 80%,
      rgba(184, 134, 11, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(120, 119, 198, 0.1) 0%,
      transparent 50%
    );
  pointer-events: none;
}

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

/* Form Validation - Enhanced */
.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}

.is-valid {
  border-color: #198754 !important;
  box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.15) !important;
}

.invalid-feedback,
.valid-feedback {
  font-size: 0.875rem;
  margin-top: 0.25rem;
  font-weight: 500;
}

.invalid-feedback {
  color: #dc3545;
}
.valid-feedback {
  color: #198754;
}

/* Responsive Optimizations */
@media (max-width: 768px) {
  .contact {
    padding: 60px 0 30px;
  }
  .contact-form-wrapper {
    padding: 2rem;
  }
  .contact-card {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  .submit-btn {
    width: 100%;
    padding: 15px 20px;
  }
  .map-container {
    height: 300px;
  }
  .contact-icon {
    width: 60px;
    height: 60px;
  }
  .contact-icon i {
    font-size: 1.5rem;
  }

  .swiper {
    position: relative !important;
    overflow: hidden !important;
  }

  .swiper-button-prev {
    left: 0px !important;
  }

  .swiper-button-next {
    right: 0px !important;
  }
  
}

@media (max-width: 576px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  .contact-card {
    padding: 1.5rem;
  }
  .map-container {
    height: 250px;
  }
  .accordion-button {
    padding: 1rem;
  }
  .accordion-body {
    padding: 1rem;
  }
}

/* Performance Optimizations */
.contact-page {
  will-change: scroll-position;
  -webkit-overflow-scrolling: touch;
}

.contact-card,
.contact-form-wrapper,
.store-hours-card,
.map-container {
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* ========== PREMIUM BRAND STORY SECTION ========== */
.premium-brand-story {
  background: linear-gradient(
    135deg,
    #f8f9fa 0%,
    #e9ecef 25%,
    #f8f9fa 50%,
    #ffffff 75%,
    #f8f9fa 100%
  );
  position: relative;
  overflow: hidden;
}

/* Sophisticated Background Elements */
.brand-story-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.geometric-patterns {
  position: absolute;
  width: 100%;
  height: 100%;
}

.pattern {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    45deg,
    rgba(184, 134, 11, 0.03),
    rgba(255, 193, 7, 0.02)
  );
}

.pattern-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: -5%;
  animation: patternFloat1 15s ease-in-out infinite;
}

.pattern-2 {
  width: 200px;
  height: 200px;
  bottom: 20%;
  left: -8%;
  animation: patternFloat2 12s ease-in-out infinite reverse;
}

.pattern-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: patternFloat3 18s ease-in-out infinite;
}

@keyframes patternFloat1 {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(120deg);
  }
  66% {
    transform: translateY(15px) rotate(240deg);
  }
}

@keyframes patternFloat2 {
  0%,
  100% {
    transform: translateX(0px) scale(1);
  }
  50% {
    transform: translateX(30px) scale(1.1);
  }
}

@keyframes patternFloat3 {
  0%,
  100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
  }
}

.gradient-overlay-story {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(184, 134, 11, 0.01) 0%,
    transparent 70%
  );
}

.floating-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: linear-gradient(
    45deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border-radius: 50%;
  opacity: 0.4;
}

.particle-1 {
  top: 20%;
  left: 15%;
  animation: particleFloat 8s ease-in-out infinite;
}

.particle-2 {
  top: 60%;
  right: 20%;
  animation: particleFloat 10s ease-in-out infinite reverse;
}

.particle-3 {
  bottom: 30%;
  left: 25%;
  animation: particleFloat 12s ease-in-out infinite;
}

.particle-4 {
  top: 40%;
  right: 30%;
  animation: particleFloat 9s ease-in-out infinite reverse;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-30px) scale(1.2);
    opacity: 0.8;
  }
}

/* Brand Content Wrapper */
.brand-content-wrapper {
  position: relative;
  z-index: 2;
}

/* Brand Heritage Badge */
.brand-heritage-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: linear-gradient(
    135deg,
    rgba(184, 134, 11, 0.1),
    rgba(255, 193, 7, 0.1)
  );
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-rose-gold);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.badge-glow-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(184, 134, 11, 0.3),
    transparent
  );
  animation: badgeGlow 3s ease-in-out infinite;
}

.badge-sparkle {
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  background: var(--color-rose-gold);
  border-radius: 50%;
  animation: sparkle 2s ease-in-out infinite;
}

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

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.3);
  }
}

/* Brand Story Title */
.brand-story-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  position: relative;
}

.title-accent-luxury {
  background: linear-gradient(
    135deg,
    var(--color-rose-gold) 0%,
    var(--color-amber) 50%,
    var(--color-rose-gold) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.year-highlight {
  color: var(--color-rose-gold);
  font-weight: 800;
  position: relative;
}

.year-highlight::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border-radius: 2px;
  opacity: 0.6;
}

/* Brand Story Description */
.brand-story-description {
  margin-bottom: 2.5rem;
}

.lead-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.supporting-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

/* Brand Values Grid */
.brand-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(184, 134, 11, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.value-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.15);
  border-color: rgba(184, 134, 11, 0.3);
}

.value-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  color: white;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-left: 45px;
}
.value-icon i {
  margin: auto;
}
.value-content h6 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-primary);
  /* margin-bottom: 0.25rem; */
}

.value-content span {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

/* Action Buttons */
.brand-action-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-discover-story,
.btn-view-collections {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

.btn-discover-story {
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  color: white;
  box-shadow: 0 4px 15px rgba(184, 134, 11, 0.3);
}

.btn-discover-story:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.4);
  color: white;
}

.btn-view-collections {
  background: transparent;
  color: var(--color-rose-gold);
  border: 2px solid var(--color-rose-gold);
}

.btn-view-collections:hover {
  background: var(--color-rose-gold);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

.btn-shimmer,
.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: all 0.5s ease;
}

.btn-discover-story:hover .btn-shimmer,
.btn-view-collections:hover .btn-glow {
  left: 100%;
}

/* Brand Visual Container */
.brand-visual-container {
  position: relative;
  z-index: 2;
}

.brand-main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(184, 134, 11, 0.1),
    rgba(255, 193, 7, 0.1)
  );
  padding: 8px;
}

.brand-hero-img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  object-fit: cover;
  transition: all 0.5s ease;
}

.brand-main-image:hover .brand-hero-img {
  transform: scale(1.02);
}

.image-overlay-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  border-radius: 20px;
}

.shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: all 0.8s ease;
}

.brand-main-image:hover .shine-effect {
  left: 100%;
}

.gradient-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-radius: 20px;
  background: linear-gradient(
      135deg,
      var(--color-rose-gold),
      var(--color-amber)
    )
    border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.brand-main-image:hover .gradient-border {
  opacity: 1;
}

/* Floating Achievement Cards */
.floating-achievements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.achievement-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-width: 160px;
}

.achievement-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(184, 134, 11, 0.2);
}

.card-1 {
  top: 15%;
  right: -20px;
  animation: cardFloat1 6s ease-in-out infinite;
}

.card-2 {
  top: 45%;
  left: -25px;
  animation: cardFloat2 7s ease-in-out infinite;
}

.card-3 {
  bottom: 20%;
  right: -15px;
  animation: cardFloat3 8s ease-in-out infinite;
}

@keyframes cardFloat1 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes cardFloat2 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(12px);
  }
}

@keyframes cardFloat3 {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.achievement-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border-radius: 10px;
  color: white;
  font-size: 1rem;
  flex-shrink: 0;
}

.achievement-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: 0.25rem;
  line-height: 1;
}

.achievement-label {
  font-size: 0.8rem;
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.2;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(184, 134, 11, 0.1),
    rgba(255, 193, 7, 0.1)
  );
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.achievement-card:hover .card-glow {
  opacity: 1;
}

/* Premium Quality Badges */
.quality-badges {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.quality-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(184, 134, 11, 0.2);
  border-radius: 25px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-primary);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.quality-badge:hover {
  transform: translateY(-2px);
  border-color: var(--color-rose-gold);
  box-shadow: 0 6px 20px rgba(184, 134, 11, 0.2);
}

.badge-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--color-rose-gold),
    var(--color-amber)
  );
  border-radius: 50%;
  color: white;
  font-size: 0.7rem;
  flex-shrink: 0;
}
.badge-icon i {
  margin: auto;
  color: white !important;
}

.badge-pulse {
  position: absolute;
  top: 50%;
  left: 8px;
  width: 20px;
  height: 20px;
  background: var(--color-rose-gold);
  border-radius: 50%;
  opacity: 0.3;
  transform: translateY(-50%);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50%) scale(1.2);
    opacity: 0.1;
  }
  100% {
    transform: translateY(-50%) scale(1);
    opacity: 0.3;
  }
}

/* Decorative Elements */
.brand-decorative-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.deco-element {
  position: absolute;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(184, 134, 11, 0.1);
  border-radius: 50%;
}

.deco-1 {
  top: 5%;
  left: 5%;
  animation: decoRotate 20s linear infinite;
}

.deco-2 {
  bottom: 10%;
  right: 8%;
  animation: decoRotate 15s linear infinite reverse;
}

.deco-3 {
  top: 60%;
  right: 15%;
  width: 60px;
  height: 60px;
  animation: decoRotate 25s linear infinite;
}

@keyframes decoRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .achievement-card {
    min-width: 140px;
    padding: 0.8rem 1rem;
  }

  .achievement-number {
    font-size: 1.3rem;
  }

  .card-1 {
    right: -15px;
  }
  .card-2 {
    left: -20px;
  }
  .card-3 {
    right: -10px;
  }
}

@media (max-width: 992px) {
  .brand-story-title {
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
  }

  .brand-values-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .brand-action-buttons {
    justify-content: center;
  }

  .floating-achievements {
    position: static;
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .achievement-card {
    position: static;
    animation: none;
    margin: 0;
  }

  .quality-badges {
    position: static;
    transform: none;
    margin-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .brand-heritage-badge {
    padding: 10px 20px;
    font-size: 0.8rem;
  }

  .lead-text {
    font-size: 1.1rem;
  }

  .brand-action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-discover-story,
  .btn-view-collections {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .achievement-card {
    min-width: 120px;
    padding: 0.7rem 0.9rem;
  }

  .achievement-number {
    font-size: 1.2rem;
  }

  .achievement-label {
    font-size: 0.75rem;
  }

  .quality-badges {
    gap: 0.5rem;
  }

  .quality-badge {
    padding: 0.6rem 0.8rem;
    font-size: 0.75rem;
  }
}

@media (max-width: 576px) {
  .premium-brand-story {
    padding: 3rem 0;
  }

  .brand-story-title {
    margin-bottom: 1.5rem;
  }

  .brand-story-description {
    margin-bottom: 2rem;
  }

  .brand-values-grid {
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .value-item {
    padding: 0.8rem;
    gap: 0.8rem;
  }

  .value-icon {
    width: 40px;
    height: 40px;
    font-size: 0.5rem;
  }

  .floating-achievements {
    flex-direction: column;
    align-items: center;
  }

  .achievement-card {
    max-width: 200px;
  }
}

/* ========== REDESIGNED PAYMENT PARTNERS SECTION ========== */
.payment-partners-section {
  background: var(--gradient-light);
  overflow: hidden;
  position: relative;
}

.payment-partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(224, 180, 178, 0.05),
    rgba(233, 152, 86, 0.05)
  );
  pointer-events: none;
}

.payment-partners-section .container {
  position: relative;
  z-index: 2;
}

.payment-partners-section .section-badge {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
  border: none;
  box-shadow: 0 4px 15px rgba(224, 180, 178, 0.3);
}

.payment-partners-section .section-title {
  color: var(--color-text-primary);
  margin-bottom: 16px;
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.payment-partners-section .section-subtitle {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Payment Methods Grid */
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.payment-method {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(224, 180, 178, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(224, 180, 178, 0.1);
}

.payment-method::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.payment-method:hover::before {
  opacity: 0.08;
}

.payment-method:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(224, 180, 178, 0.2);
  border-color: var(--color-rose-gold);
}

.payment-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-light-gray);
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.payment-method:hover .payment-logo {
  background: rgba(224, 180, 178, 0.1);
}

.payment-logo img {
  max-width: 50px;
  max-height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.payment-method:hover .payment-logo img {
  transform: scale(1.1);
}

.payment-info {
  position: relative;
  z-index: 2;
}

.payment-info h6 {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
}

.payment-type {
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-weight: 400;
}

/* Security Features */
.security-features {
  text-align: center;
}

.security-item {
  padding: 1.5rem;
  border-radius: 16px;
  background: var(--color-white);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border: 1px solid rgba(224, 180, 178, 0.1);
}

.security-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(224, 180, 178, 0.15);
  border-color: var(--color-rose-gold);
}

.security-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.security-icon i {
  margin: auto;
}

.security-item:hover .security-icon {
  background: var(--gradient-secondary);
  transform: scale(1.1);
}

.security-item h6 {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
}

.security-item p {
  color: var(--color-text-light);
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.4;
}

/* ========== REDESIGNED NEWSLETTER SECTION ========== */
.newsletter-section {
  background: linear-gradient(
    173deg,
    var(--color-midnight) 35%,
    var(--color-plum) 101%,
    var(--color-purple) 27%
  );
  color: var(--color-white);
  overflow: hidden;
  position: relative;
}

.newsletter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="newsletter-pattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1.5" fill="rgba(255,255,255,0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23newsletter-pattern)"/></svg>');
  opacity: 0.7;
  pointer-events: none;
}

.newsletter-section .container {
  position: relative;
  z-index: 2;
}

.newsletter-content {
  padding-right: 2rem;
}

.newsletter-header {
  margin-bottom: 2rem;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: var(
    --gradient-primary,
    linear-gradient(135deg, var(--color-rose-gold) 0%, var(--color-purple) 100%)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  color: var(--color-white);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.newsletter-icon:hover {
  background: linear-gradient(
    135deg,
    var(--color-purple) 0%,
    var(--color-rose-gold) 100%
  );
  transform: scale(1.05);
}

.newsletter-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.newsletter-description {
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: "Poppins", sans-serif;
}

.newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  opacity: 0.95;
}

.benefit-item i {
  color: var(--color-amber);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Newsletter Form */

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h5 {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
  font-family: "Playfair Display", serif;
}

.form-header p {
  color: var(--color-text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
  font-family: "Poppins", sans-serif;
}

.newsletter-form .input-group {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.newsletter-form .input-group:focus-within {
  border-color: var(--color-rose-gold);
  box-shadow: 0 8px 25px rgba(224, 180, 178, 0.2);
}

.newsletter-form .form-control {
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  background: var(--color-light-gray);
  color: var(--color-text-primary);
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

.newsletter-form .form-control:focus {
  box-shadow: none;
  background: var(--color-white);
  outline: none;
}

.newsletter-form .form-control::placeholder {
  color: var(--color-text-light);
  opacity: 0.8;
}

.newsletter-form .btn {
  border: none;
  padding: 1rem 2rem;
  background: var(--gradient-primary);
  color: var(--color-white);
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

.newsletter-form .btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.newsletter-form .btn:hover::before {
  left: 100%;
}

.newsletter-form .btn:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 86, 112, 0.3);
}

.form-footer {
  text-align: center;
  margin-bottom: 1.5rem;
}

.privacy-text {
  color: var(--color-text-light);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: "Poppins", sans-serif;
}

.privacy-text i {
  color: var(--color-rose-gold);
}

.social-proof {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(224, 180, 178, 0.2);
}

.social-cards {
  background: var(--color-cream);
}

.proof-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  font-size: 1.2rem;
  color: var(--color-text-primary);
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.stat-item span {
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-family: "Poppins", sans-serif;
}

/* Responsive Design */
@media (max-width: 992px) {
  .payment-methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .newsletter-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .newsletter-title {
    font-size: 2rem;
  }

  .payment-partners-section .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .payment-methods-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .payment-method {
    padding: 1.5rem;
  }

  .newsletter-form-container {
    padding: 2rem;
  }

  .newsletter-title {
    font-size: 1.8rem;
    text-align: center;
  }

  .newsletter-benefits {
    text-align: center;
  }

  .benefit-item {
    justify-content: center;
  }

  .proof-stats {
    gap: 1rem;
  }

  .payment-partners-section .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .newsletter-form .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .newsletter-form .form-control {
    padding: 0.8rem 1rem;
  }

  .newsletter-form .input-group {
    flex-direction: column;
    border-radius: 16px;
  }

  .newsletter-form .form-control,
  .newsletter-form .btn {
    border-radius: 16px;
  }

  .newsletter-form .btn {
    margin-top: 1rem;
  }

  .security-features .row {
    gap: 1rem;
  }

  .security-item {
    padding: 1rem;
  }

  .newsletter-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .newsletter-title {
    font-size: 1.6rem;
  }

  .payment-partners-section .section-title {
    font-size: 1.6rem;
  }
}

/* ========== BRAND PARTNERS SECTION ========== */
.brand-partners-section {
  background: none !important;
  overflow: hidden;
  position: relative;
}

.brand-partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(135deg, rgba(224, 180, 178, 0.03), rgba(233, 152, 86, 0.03)); */
  pointer-events: none;
}

.brand-partners-section .container {
  position: relative;
  z-index: 2;
}

.brand-partners-section .section-badge {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
  border: none;
  box-shadow: 0 4px 15px rgba(224, 180, 178, 0.3);
}

.brand-partners-section .section-title {
  color: var(--color-text-primary);
  margin-bottom: 16px;
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.brand-partners-section .section-subtitle {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Brand Carousel Container */
.brand-carousel-container {
  position: relative;
  margin-top: 2rem;
}

.brand-swiper {
  padding: 2rem 0;
  overflow: visible;
}

.brand-swiper .swiper-wrapper {
  align-items: center;
}

.brand-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}

/* Brand Card */
.brand-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(224, 180, 178, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(224, 180, 178, 0.1);
  max-width: 250px;
  width: 100%;
}

.brand-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.brand-card:hover::before {
  opacity: 0.05;
}

.brand-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(224, 180, 178, 0.2);
  border-color: var(--color-rose-gold);
}

/* Brand Logo Container */
.brand-logo-container {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: none;
}

.brand-card:hover .brand-logo-container {
  background: transparent;
  transform: scale(1.05);
}

.brand-logo {
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
  transition: transform 0.3s ease;
  z-index: 3;
  position: relative;
  border-radius: 50%;
}

.brand-card:hover .brand-logo {
  transform: scale(1.1);
}

.logo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.brand-card:hover .logo-overlay {
  opacity: 0.1;
}

/* Brand Info */
.brand-info {
  position: relative;
  z-index: 2;
}

.brand-name {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  font-family: "Poppins", sans-serif;
}

.brand-type {
  color: var(--color-text-light);
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.8;
}

/* Brand Navigation */
.brand-nav-btn {
  width: 50px;
  height: 50px;
  background: var(--color-white);
  border-radius: 50%;
  border: 1px solid rgba(224, 180, 178, 0.2);
  color: var(--color-text-primary);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(224, 180, 178, 0.1);
  top: 50%;
  transform: translateY(-50%);
}

.brand-nav-btn:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: var(--color-rose-gold);
  transform: translateY(-50%) scale(1.1);
}

.brand-nav-btn::after {
  font-size: 1rem;
  font-weight: 600;
}

.swiper-button-next.brand-nav-btn {
  right: -25px;
}

.swiper-button-prev.brand-nav-btn {
  left: -25px;
}

/* Brand Pagination */
.brand-pagination {
  position: relative;
  margin-top: 2rem;
}

.brand-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(224, 180, 178, 0.3);
  border-radius: 50%;
  transition: all 0.3s ease;
  margin: 0 6px;
}

.brand-pagination .swiper-pagination-bullet-active {
  background: var(--gradient-primary);
  transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 992px) {
  .brand-partners-section .section-title {
    font-size: 2rem;
  }

  .brand-card {
    padding: 1.5rem;
    max-width: 200px;
  }

  .brand-logo-container {
    width: 80px;
    height: 80px;
  }

  .brand-logo {
    max-width: 60px;
    max-height: 60px;
  }

  .brand-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .swiper-button-next.brand-nav-btn {
    right: -20px;
  }

  .swiper-button-prev.brand-nav-btn {
    left: -20px;
  }
}

@media (max-width: 768px) {
  .brand-partners-section .section-title {
    font-size: 1.8rem;
  }

  .brand-card {
    padding: 1rem;
    max-width: 180px;
  }

  .brand-logo-container {
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }

  .brand-logo {
    max-width: 50px;
    max-height: 50px;
  }

  .brand-name {
    font-size: 1rem;
  }

  .brand-type {
    font-size: 0.8rem;
  }

  .brand-nav-btn {
    display: none;
  }
}

@media (max-width: 576px) {
  .brand-partners-section .section-title {
    font-size: 1.6rem;
  }

  .brand-card {
    padding: 0.8rem;
    max-width: 150px;
  }

  .brand-logo-container {
    width: 60px;
    height: 60px;
    margin-bottom: 0.8rem;
  }

  .brand-logo {
    max-width: 40px;
    max-height: 40px;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-type {
    font-size: 0.75rem;
  }

  .brand-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
  }
}

/* ========== CATEGORIES SHOWCASE SECTION ========== */
.categories-showcase-section {
  background: linear-gradient(
    135deg,
    rgba(248, 249, 250, 0.9) 0%,
    rgba(255, 255, 255, 0.95) 50%,
    rgba(248, 249, 250, 0.9) 100%
  );
  overflow: hidden;
  position: relative;
}

.categories-showcase-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.categories-showcase-section .container {
  position: relative;
  z-index: 2;
}

.categories-showcase-section .section-badge {
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
  border: none;
  box-shadow: 0 4px 15px rgba(224, 180, 178, 0.3);
}

.categories-showcase-section .section-title {
  color: var(--color-text-primary);
  margin-bottom: 16px;
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.categories-showcase-section .section-subtitle {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Categories Grid */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.category-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(224, 180, 178, 0.1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(224, 180, 178, 0.1);
}

.category-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.category-card:hover::before {
  opacity: 0.05;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(224, 180, 178, 0.2);
  border-color: var(--color-rose-gold);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white) !;
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.category-card:hover .category-icon {
  background: var(--gradient-secondary);
  transform: scale(1.1);
}

.category-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.category-content h5 {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
}

.category-content p {
  color: var(--color-text-light);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.4;
}

.category-arrow {
  width: 40px;
  height: 40px;
  background: rgba(224, 180, 178, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-rose-gold);
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.category-card:hover .category-arrow {
  background: var(--color-rose-gold);
  color: var(--color-white);
  transform: translateX(5px);
}

/* ========== TRUST & EXCELLENCE SECTION ========== */
.trust-excellence-section {
  background: var(--color-white);
  overflow: hidden;
  position: relative;
}

.trust-excellence-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(200, 86, 112, 0.03),
    rgba(138, 77, 104, 0.03)
  );
  pointer-events: none;
}

.trust-excellence-section .container {
  position: relative;
  z-index: 2;
}

.trust-excellence-section .section-badge {
  background: linear-gradient(
    135deg,
    var(--color-rose-gold) 0%,
    var(--color-amber) 100%
  );
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
  border: none;
  box-shadow: 0 4px 15px rgba(200, 86, 112, 0.3);
}

.trust-excellence-section .section-title {
  color: var(--color-text-primary);
  margin-bottom: 16px;
  font-size: 2.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 700;
}

.trust-excellence-section .section-subtitle {
  color: var(--color-text-secondary);
  font-size: 1.1rem;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Trust Features Grid */
.trust-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.trust-feature {
  background: var(--color-light-gray);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(200, 86, 112, 0.1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(200, 86, 112, 0.1);
}

.trust-feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.trust-feature:hover::before {
  opacity: 0.05;
}

.trust-feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(200, 86, 112, 0.2);
  border-color: var(--color-burgundy);
  background: var(--color-white);
}

.trust-feature .trust-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 2rem;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.trust-feature:hover .trust-icon {
  background: var(--gradient-primary);
  transform: scale(1.1);
}

.trust-content {
  position: relative;
  z-index: 2;
}

.trust-content h4 {
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-family: "Playfair Display", serif;
}

.trust-content p {
  color: var(--color-dark-grey);
  margin-bottom: 1.3rem;
  line-height: 1.4;
  text-align: justify;

  font-size: 0.95rem;
}

.trust-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trust-points li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-dark-grey);
  font-size: 0.9rem;
}

.trust-points li i {
  color: var(--color-burgundy);
  font-size: 0.8rem;
}

/* Responsive Design */
@media (max-width: 992px) {
  .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .trust-features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .categories-showcase-section .section-title,
  .trust-excellence-section .section-title {
    font-size: 2rem;
  }

  .category-card {
    padding: 1.5rem;
  }

  .trust-feature {
    padding: 2rem;
  }

  .trust-feature .trust-icon {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }
}

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

  .trust-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .categories-showcase-section .section-title,
  .trust-excellence-section .section-title {
    font-size: 1.8rem;
  }

  .category-card {
    padding: 1.5rem;
    flex-direction: column;
    text-align: center;
  }

  .category-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .category-arrow {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .trust-feature {
    padding: 1.5rem;
  }

  .trust-feature .trust-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .trust-content h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .categories-showcase-section .section-title,
  .trust-excellence-section .section-title {
    font-size: 1.6rem;
  }

  .category-card {
    padding: 1rem;
  }

  .category-content h5 {
    font-size: 1.1rem;
  }

  .category-content p {
    font-size: 0.9rem;
  }

  .trust-feature {
    padding: 1.2rem;
  }

  .trust-content h4 {
    font-size: 1.1rem;
  }

  .trust-content p {
    font-size: 0.9rem;
  }

  .trust-points li {
    font-size: 0.85rem;
  }
}

/* Product Detail Section Background */
.product-detail-bg {
  background: var(--gradient-light);
  min-height: 100vh;
}

/* Card Styling */
.product-detail-card {
  border-radius: var(--border-radius-lg);
  background: var(--color-white);
}

/* Main Product Image */
/* .product-main-img-style {
  box-shadow: var(--shadow-lg);
  max-height: 420px;
  min-height: 320px;
  object-fit: contain;
  background: var(--color-light-gray);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
} */

/* Product Thumbnails */
.product-thumb-style {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border: 2px solid var(--color-rose-gold);
  cursor: pointer;
  transition: box-shadow 0.3s, border 0.3s;
  box-shadow: var(--shadow-sm);
}

/* Product Label Title */
.product-label-title {
  letter-spacing: 1px;
}

/* Product Title Main */
.product-title-main {
  color: var(--color-burgundy);
  font-size: 2.3rem;
}

/* Product Title Description */
.product-title-desc {
  font-size: 0.89rem !important;
  font-weight: 400;
}

/* Badges */
.badge-new {
  font-size: 0.9rem;
  padding: 3px 18px;
  border-radius: 12px;
  background: var(--rose-gold-light);
  color: var(--rose-gold-dark);
  font-weight: 600;
  min-width: 70px;
  height: 28px;
  letter-spacing: 0.5px;
}
.badge-new-icon {
  color: var(--rose-gold-dark);
}
.badge-bestseller {
  font-size: 0.9rem;
  padding: 3px 18px;
  border-radius: 12px;
  background: var(--blush-light);
  color: #d9534f;
  font-weight: 600;
  min-width: 90px;
  height: 28px;
  letter-spacing: 0.5px;
}
.badge-bestseller-icon {
  color: #d9534f;
}
.badge-sale {
  background: var(--color-burgundy);
  color: var(--color-white);
  font-weight: 600;
  border-radius: 10px;
  padding: 2px 12px;
}

/* Star Icon */
.star-icon {
  color: var(--color-amber);
}

/* Product Price */
.product-price-main {
  color: var(--color-amber);
  font-size: 1.7rem;
}
.product-price-original {
  text-decoration: line-through;
}

/* Product Description Short */
.product-desc-short {
  color: var(--color-text-secondary);
}

/* Chain Length Select */
.chain-length-select {
  border-radius: 8px;
  border: 1px solid var(--color-light-gray);
  padding: 4px 12px;
}

/* Quantity Input */
.product-qty-input {
  width: 70px;
  border-radius: 8px;
  border: 1px solid var(--color-light-gray);
}

/* Add to Cart Button */
.btn-add-cart {
  min-width: 0;
  animation-duration: 1.2s;
}

/* Wishlist Button */
.btn-wishlist {
  min-width: 0;
  animation-duration: 1.2s;
}

/* Tabs */
.product-tabs {
  border-bottom: 2px solid var(--color-light-gray);
}
.product-tab-btn {
  border: none;
  background: none;
  font-size: 1.1rem;
  padding: 0.7rem 2.2rem;
  transition: color 0.3s;
}

.product-tab-btn:hover {
  background-color: var(--gradient-light);
  color: var(--color-burgundy);
}

.product-tab-btn.active {
  background-color: var(--color-burgundy) !important;
  color: #fff !important;
  box-shadow: var(--shadow-sm);
}

.tab-underline {
  bottom: -2px;
  left: 50%;
  width: 60%;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
  animation: titleUnderline 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tab Content */
.product-detail-tab-content {
  border-radius: var(--border-radius-md);
  background: var(--color-white);
}

/* Review Avatar */
.review-avatar-style {
  width: 40px;
  height: 40px;
}

/* Load More Reviews Button */
.btn-load-more-reviews {
  min-width: 0;
  animation-duration: 1.2s;
}

/* Related Products Section */
.related-products-bg {
  background: var(--gradient-secondary);
}
.related-products-title {
  font-size: 2rem;
}
.related-products .section-title i {
  color: var(--color-white);
}

/* ========== CUSTOM LANGUAGE SELECTOR ========== */
.language-selector {
  position: relative;
  display: inline-block;
}

.language-toggle-btn {
  background: none;
  border: none;
  color: inherit;
  padding: 0;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.language-toggle-btn:focus {
  outline: none;
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background: white;
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  margin-top: 8px;
  overflow: hidden;
}

.language-dropdown.active {
  display: block;
  animation: fadeIn 0.2s ease-in-out;
}

.language-header {
  padding: 8px 16px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 12px;
  color: #666;
  font-weight: 500;
  background-color: #f9f9f9;
}

.language-options {
  padding: 4px 0;
}

.language-option {
  width: 100%;
  text-align: left;
  padding: 8px 16px;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: background-color 0.2s;
}

.language-option:hover {
  background-color: #f5f5f5;
}

.language-option.selected {
  background-color: #f0f7ff;
  color: #0d6efd;
}

.language-option i {
  width: 16px;
}

/* Fix for RTL languages */
[dir="rtl"] .language-dropdown {
  right: auto;
  left: 0;
}

[dir="rtl"] .language-option {
  text-align: right;
}

/* ========== SWIPER CAROUSELS STYLES ========== */

/* Swiper General Styles */
.swiper {
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Brand Carousel Specific Styles */
.brand-carousel-container {
  position: relative;
  padding: 15px 0;
}

.brand-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.brand-logo-container {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 15px;
}

.brand-logo {
  max-width: 90%;
  max-height: 80px;
  object-fit: contain;
}

.brand-info {
  text-align: center;
}

.brand-name {
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

.brand-type {
  font-size: 12px;
  color: #888;
}

.brand-pagination {
  margin-top: 25px;
}

/* Categories Carousel Specific Styles */
.categories-carousel-container {
  position: relative;
  padding: 15px 0;
}

.categories-swiper {
  padding-bottom: 40px; /* Space for pagination */
}

.categories-swiper .swiper-slide {
  height: auto;
}

/* Optimize spacing for 6 items per row */
@media (min-width: 1280px) {
  .categories-swiper .swiper-slide {
    width: calc(16.666% - 12.5px) !important;
  }

  .categories-swiper .category-card {
    padding: 15px 10px;
  }

  .categories-swiper .category-content h5 {
    font-size: 15px;
    margin-bottom: 5px;
  }

  .categories-swiper .category-content p {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .categories-swiper .category-icon {
    margin-bottom: 10px;
    transform: scale(0.9);
  }
}

.category-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  height: 100%;
  min-height: 90px;
  margin: 0 1px;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.category-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9e9e9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.category-icon i {
  font-size: 18px;
  color: #7b2cbf;
  margin: auto;
  transition: all 0.3s ease;
}

.category-content {
  flex: 1;
  text-align: center;
  margin-bottom: 8px;
}

.category-content h5 {
  font-weight: 600;
  margin-bottom: 3px;
  font-size: 14px;
  color: #333;
}

.category-content p {
  font-size: 12px;
  color: #888;
  margin-bottom: 0;
}

.category-arrow {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 50%;
  background: rgba(123, 44, 191, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: all 0.3s ease;
}

.category-arrow i {
  font-size: 12px;
  color: #7b2cbf;
}

.categories-pagination {
  margin-top: 20px;
}

/* User Profile Styles have been moved to the main style.css file */

.section-title {
  font-size: 1.5rem;
  margin: 0;
  /* background-image: linear-gradient(45deg, #8e44ad, #3498db); */
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

/* Empty State Styling */
.empty-state-container {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #f8f9fa;
  border-radius: 8px;
  border: 1px dashed rgba(138, 77, 104, 0.3);
}

.empty-state-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #8a4d68;
  opacity: 0.6;
}

.empty-state-title {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #495057;
}

.empty-state-description {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.btn-action {
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Action button enhancements */
.action-btn {
  padding: 0.6rem 1rem;
  border-radius: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  border: none;
  letter-spacing: 0.02em;
  margin: 0;
}

.action-btn i {
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}

.action-btn:hover i {
  transform: translateY(-1px);
}

/* Cart button with rose gold theme */
.action-btn.cart {
  background: linear-gradient(135deg, #e0b4b2, #c85670);
  color: white;
}

.action-btn.cart:hover {
  background: linear-gradient(135deg, #d8a8a6, #b94d65);
  box-shadow: 0 4px 12px rgba(224, 180, 178, 0.3);
  transform: translateY(-2px);
}

.action-btn.cart i {
  color: rgba(255, 255, 255, 0.9);
}

/* View button with plum/purple theme */
.action-btn.view {
  background: linear-gradient(135deg, #8a4d68, #6b3d7a);
  color: white;
}

.action-btn.view:hover {
  background: linear-gradient(135deg, #7a4258, #5c326a);
  box-shadow: 0 4px 12px rgba(138, 77, 104, 0.3);
  transform: translateY(-2px);
}

.action-btn.view i {
  color: rgba(255, 255, 255, 0.9);
}

/* Remove button with light style */
.action-btn.remove {
  background: #f8f8f8;
  color: #c85670;
  border: 1px solid rgba(200, 86, 112, 0.15);
}

.action-btn.remove:hover {
  background: #fff9f7;
  color: #b94d65;
  box-shadow: 0 4px 12px rgba(200, 86, 112, 0.15);
  transform: translateY(-2px);
}

.action-btn.remove i {
  color: #c85670;
}

.action-btn.remove:hover i {
  color: #b94d65;
}

/* Icon-only action buttons */
.action-btn.icon-only {
  width: 32px; /* Reduced from 36px */
  height: 32px; /* Reduced from 36px */
  padding: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0b4b2, #c85670);
  color: white;
}

.action-btn.icon-only:hover {
  box-shadow: 0 4px 12px rgba(224, 180, 178, 0.3);
  transform: translateY(-2px) scale(1.05);
}

.action-btn.icon-only.remove {
  background: #f8f8f8;
  border: 1px solid rgba(200, 86, 112, 0.15);
}

.action-btn.icon-only.remove i {
  color: #c85670;
}

.action-btn.icon-only.remove:hover {
  background: #fff9f7;
  box-shadow: 0 4px 12px rgba(200, 86, 112, 0.15);
}

/* Enhanced View Mode Toggle Buttons */
.view-mode-controls {
  display: flex;
  align-items: center;
  gap: 0.6rem; /* Reduced from 0.75rem */
}

.view-mode-label {
  color: #8a4d68; /* Plum */
  font-weight: 500;
  font-size: 0.85rem; /* Reduced from 0.9rem */
  margin: 0;
}

.view-mode-toggle {
  display: flex;
  padding: 3px;
}

.toggle-btn {
  background: none;
  border: none;
  width: 32px; /* Reduced from 36px */
  height: 32px; /* Reduced from 36px */
  border-radius: 5px; /* Reduced from 6px */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  transition: all 0.2s ease;
  position: relative;
  overflow: hidden;
}

.toggle-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(142, 68, 173, 0.08);
  border-radius: 5px;
  transform: scale(0);
  transition: transform 0.2s ease;
}

.toggle-btn:hover {
  color: #8e44ad;
}

.toggle-btn:hover:before {
  transform: scale(1);
}

.toggle-btn.active {
  background-color: white;
  color: #8e44ad;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08); /* Lighter shadow */
}

.toggle-btn i {
  font-size: 0.9rem; /* Reduced from 1rem */
  position: relative;
  z-index: 1;
}

/* Enhanced colored icons for toggle buttons */
.toggle-btn[title="Grid View"] i {
  color: #5e35b1; /* Purple */
}

.toggle-btn[title="List View"] i {
  color: #0277bd; /* Blue */
}

.toggle-btn[title="Compact View"] i {
  color: #00897b; /* Teal */
}

.toggle-btn[title="Grid View"].active i {
  color: #4527a0; /* Darker Purple */
  text-shadow: 0 0 3px rgba(94, 53, 177, 0.3);
}

.toggle-btn[title="List View"].active i {
  color: #01579b; /* Darker Blue */
  text-shadow: 0 0 3px rgba(2, 119, 189, 0.3);
}

.toggle-btn[title="Compact View"].active i {
  color: #00695c; /* Darker Teal */
  text-shadow: 0 0 3px rgba(0, 137, 123, 0.3);
}

/* Add colored icons for other buttons and elements */
.wishlist-badge i {
  color: #e91e63; /* Pink */
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.wishlist-rating i {
  color: #ffc107; /* Amber */
}

.wishlist-list-stock i {
  color: #4caf50; /* Green */
}

.btn-icon.edit i {
  color: #2196f3; /* Blue */
}

.btn-icon.delete i {
  color: #f44336; /* Red */
}

.btn-icon.default i {
  color: #ff9800; /* Orange */
}

.empty-state-icon i {
  background: linear-gradient(45deg, #9c27b0, #673ab7);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Enhanced Grid View */
.wishlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.wishlist-grid-item {
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(224, 180, 178, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.wishlist-grid-item:hover {
  transform: translateY(-3px); /* Reduced from -5px */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(224, 180, 178, 0.3);
}

.wishlist-image {
  position: relative;
  height: 180px; /* Reduced from 200px */
  overflow: hidden;
}

.wishlist-details {
  padding: 0.75rem; /* Reduced from 1rem */
  flex: 1;
  display: flex;
  flex-direction: column;
}

.wishlist-title {
  margin-bottom: 0.4rem; /* Reduced from 0.5rem */
  font-weight: 500;
  color: #4a4868; /* Midnight */
  font-size: 0.95rem; /* Reduced font size */
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wishlist-price {
  font-weight: 600;
  color: #c85670; /* Burgundy */
  margin-bottom: 0.4rem; /* Reduced from 0.5rem */
  font-size: 1rem; /* Reduced from 1.1rem */
}

.wishlist-rating {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.4rem; /* Reduced from 0.5rem */
}

.wishlist-actions {
  padding: 0 0.75rem 0.75rem; /* Reduced from 0 1rem 1rem */
  display: flex;
  flex-direction: column;
  gap: 0.4rem; /* Reduced from 0.5rem */
}

.wishlist-actions .action-btn.cart {
  width: 100%;
  margin-bottom: 0.2rem; /* Reduced from 0.25rem */
}

.wishlist-actions .action-btn-group {
  display: flex;
  gap: 0.4rem; /* Reduced from 0.5rem */
}

/* Refining the wishlist list action buttons */
.wishlist-list-actions {
  display: flex;
}

.wishlist-list-actions .action-btn {
  font-size: 0.85rem;
  padding: 0.6rem 1rem;
  width: 100%;
}

.wishlist-list-actions .action-btn.cart {
  margin-bottom: 0.5rem;
  width: 100%;
}

.wishlist-list-actions .action-btn-group {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  align-items: center;
}

.wishlist-list-actions .action-btn.view {
  flex: 1;
  width: 100%;
}

.wishlist-list-actions .action-btn.icon-only {
  width: 36px;
  height: 36px;
  min-width: 36px;
  padding: 0;
}

/* Enhanced Wishlist Compact View Styles */
.wishlist-compact {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.wishlist-compact-item {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(224, 180, 178, 0.1);
}

.wishlist-compact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(224, 180, 178, 0.3);
}

.wishlist-compact-image {
  position: relative;
  height: 140px;
  
  overflow: hidden;
}
.compact-image-container .compact-image{
  width: 350px;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}



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

.wishlist-compact-item:hover .wishlist-compact-image img {
  transform: scale(1.05);
}

/* Compact card wrapper */
.wishlist-card.compact-card {
  width: 100% !important;
  max-width: 220px !important;
  margin: 10px auto !important;
}

/* Card container */
.compact-card .card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}

/* Image container */
.compact-image-container {
  position: relative !important;
  width: 100% !important;
  padding-top: 100% !important;
  overflow: hidden !important;
}

/* Image */
.compact-image {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  cursor: pointer !important;
}

/* Show overlay on hover */
.compact-image-container:hover .compact-overlay {
  opacity: 1 !important;
}

/* Price section */
.compact-price {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

/* Current price */
.current-price {
  font-weight: 600 !important;
  font-size: 0.85rem !important;
}


.wishlist-compact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 0;
}
 .list-image-container {
    position: relative !important;
    width: 100% !important;
    padding-top: 100% !important;
    overflow: hidden !important;
  }

  .wishlist-item-image {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    cursor: pointer !important;
  }

  .list-card .card-body {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    height: 100% !important;
  }

  .list-card .row.g-0 {
    align-items: stretch !important;
  }
.wishlist-compact-item:hover .wishlist-compact-overlay {
  opacity: 1;
}

.wishlist-compact-btn {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.8) translateY(10px);
  opacity: 0;
  padding: 0;
  margin: 0 2px;
}

.wishlist-compact-item:hover .wishlist-compact-btn {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.wishlist-compact-btn:nth-child(1) {
  transition-delay: 0s;
}

.wishlist-compact-btn:nth-child(2) {
  transition-delay: 0.05s;
}

.wishlist-compact-btn:nth-child(3) {
  transition-delay: 0.1s;
}

.wishlist-compact-btn:hover {
  transform: translateY(-2px) scale(1.1);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.wishlist-compact-btn i {
  font-size: 0.8rem;
}

.wishlist-compact-btn:nth-child(1) i {
  color: #c85670; /* Shopping bag icon */
}

.wishlist-compact-btn:nth-child(2) i {
  color: #6b3d7a; /* Eye icon */
}

.wishlist-compact-btn.remove i {
  color: #dc3545; /* Trash icon */
}

.wishlist-compact-info {
  padding: 0.6rem;
}

.wishlist-compact-info h6 {
  margin: 0 0 0.3rem;
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #4a4868;
}

.wishlist-compact-price {
  font-weight: 600;
  color: #c85670;
  font-size: 0.85rem;
  display: block;
  margin-bottom: 0.3rem;
}

.wishlist-compact-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: 0.75rem;
}

.wishlist-compact-rating i {
  color: #ffc107;
}

/* Responsive adjustments for compact view */
@media (max-width: 767px) {
  .wishlist-compact {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 0.75rem;
  }

  .wishlist-compact-image {
    height: 120px;
  }

  .wishlist-compact-btn {
    width: 28px;
    height: 28px;
  }

  .wishlist-compact-info {
    padding: 0.5rem;
  }
}

@media (max-width: 480px) {
  .wishlist-compact {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 0.5rem;
  }

  .wishlist-compact-image {
    height: 100px;
  }

  .wishlist-compact-overlay {
    gap: 0.3rem;
  }

  .wishlist-compact-btn {
    width: 24px;
    height: 24px;
  }

  .wishlist-compact-btn i {
    font-size: 0.7rem;
  }

  .wishlist-compact-info h6 {
    font-size: 0.75rem;
  }

  .wishlist-compact-price {
    font-size: 0.75rem;
  }

  .wishlist-compact-rating {
    font-size: 0.7rem;
  }
}

/* Wishlist List View */
.wishlist-list {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* Reduced from 1.5rem for tighter spacing */
}

.wishlist-list-item {
  display: flex;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: 1px solid rgba(224, 180, 178, 0.1);
  max-height: auto; /* Set a max height for compactness */
}

.wishlist-list-item:hover {
  transform: translateY(-3px); /* Reduced from -5px for subtle animation */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  border-color: rgba(224, 180, 178, 0.3);
}

.wishlist-list-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, #e0b4b2, #c85670, #8a4d68);
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.wishlist-list-item:hover::after {
  transform: translateY(0);
}

.wishlist-list-image {
  width: 140px; /* Reduced from previous size */
  min-width: 220px;
  height: auto; /* Fixed height for consistency */
  overflow: hidden;
  position: relative;
}

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

.wishlist-list-item:hover .wishlist-list-image img {
  transform: scale(1.05);
}

/* Enhanced Wishlist Item Overlay Effects */
.wishlist-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(2px);
}
.wishlist-overlay:hover {
  opacity: 1;
}

.wishlist-quick-btn {
  background-color: white;
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(10px);
  opacity: 1;
  cursor: pointer;
}

.wishlist-grid-item:hover .wishlist-quick-btn {
  transform: translateY(0);
  opacity: 1;
}

.wishlist-quick-btn:nth-child(2) {
  transition-delay: 0.05s;
}

.wishlist-quick-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}

.wishlist-quick-btn:nth-child(1) i {
  color: #3498db; /* Theme Blue for View */
}

.wishlist-quick-btn:nth-child(2) i {
  color: #8e44ad; /* Theme Purple for Add to Cart */
}

.wishlist-grid-item:hover .wishlist-overlay {
  opacity: 1;
}

.wishlist-details {
  padding: 1rem;
}

.wishlist-title {
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #8e44ad;
  color: #4a4868; /* Midnight */
}

.wishlist-price {
  font-weight: 600;
  color: #e91e63;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  color: #c85670; /* Burgundy */
}

.wishlist-rating {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin-bottom: 0.5rem;
}

.wishlist-rating i {
  color: #ffc107;
  font-size: 0.8rem;
}

.wishlist-rating span {
  color: #6c757d;
  font-size: 0.8rem;
  margin-left: 0.3rem;
}

.wishlist-actions {
  display: flex;
  flex-direction: column;
  padding: 0 1rem 1rem;
  gap: 0.5rem;
}

.wishlist-actions .action-btn.cart {
  width: 100%;
  margin-bottom: 0.25rem;
}

.wishlist-btn {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
  flex: 1;
}

.btn-primary {
  background-color: #8e44ad;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #7d3c98;
  transform: translateY(-2px);
}

.wishlist-btn-remove {
  background-color: #f8f9fa;
  color: #dc3545;
  border: none;
  padding: 0.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.wishlist-btn-remove:hover {
  background-color: #fee2e2;
}

/* Enhanced Address Section Styling */
.address-section {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Address Grid Layout */
.address-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

/* Address Card Styling */
.address-grid-item {
  position: relative;
}

.address-card {
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom right, #ffffff, #f8f9fa);
}

.address-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
  border-color: rgba(138, 77, 104, 0.2);
}

.address-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, #e0b4b2, #8a4d68);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.address-card:hover::before {
  transform: scaleX(1);
}

.address-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

/* Address Header Styling */
.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.address-badge {
  display: inline-flex;
  align-items: center;
  background-color: #f8f9fa;
  padding: 0.4rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #6c757d;
}

.address-badge.default {
  background: linear-gradient(135deg, #e0b4b2, #c85670);
  color: white;
}

.address-badge i {
  margin-right: 0.4rem;
  font-size: 0.9rem;
}

.address-default-label {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 0.1rem 0.5rem;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  white-space: nowrap;
}

.address-date {
  font-size: 0.75rem;
  color: #adb5bd;
}

/* Address Details Styling */
.address-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.address-line {
  font-weight: 500;
  color: #495057;
}

.address-location {
  color: #6c757d;
  font-size: 0.9rem;
}

.address-pin {
  color: #8a4d68;
  font-size: 0.85rem;
}

.address-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #6c757d;
  font-size: 0.85rem;
}

.address-contact i {
  color: #c85670;
}

.address-instruction {
  background-color: rgba(240, 173, 78, 0.1);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: #856404;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.address-instruction i {
  color: #f0ad4e;
  margin-top: 0.2rem;
}

/* Address Actions Styling */
.address-actions {
  display: flex;
  gap: 0.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.address-actions .btn-icon {
  background-color: var(--color-burgundy) !important;
}

.btn-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;

  /* background-color: #f8f9fa; */
}

.btn-icon:hover {
  transform: translateY(-2px);
}

.btn-icon.edit {
  color: var(--color-amber) !important;
}

.btn-icon.edit:hover {
  background-color: var(--color-burgundy) !important;
  box-shadow: 0 3px 8px rgba(33, 150, 243, 0.2);
}

.btn-icon.delete {
  color: var(--color-red) !important;
}

.btn-icon.delete:hover {
  background-color: #f8d7da;
  box-shadow: 0 3px 8px rgba(220, 53, 69, 0.2);
}

.btn-icon.default {
  color: #ffc107 !important;
}

.btn-icon.default:hover {
  background-color: #fff3cd !important;
  box-shadow: 0 3px 8px rgba(255, 193, 7, 0.2);
}

/* Add Address Button Styling */
.action-button-container {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.btn-action {
  padding: 0.6rem 1.5rem;
  border-radius: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #8a4d68, #6b3d7a);
  color: white;
  border: none;
}

.btn-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(138, 77, 104, 0.3);
}

/* Address Form Styling */
.form-container {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.5rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.form-title {
  font-size: 1.25rem;
  margin: 0;
  color: #8a4d68;
  display: flex;
  align-items: center;
}

.form-subtitle {
  font-size: 0.8rem;
  background: rgba(138, 77, 104, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.75rem;
  color: #8a4d68;
  font-weight: normal;
}

/* Map Container Styling */
.map-container {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-title {
  padding: 1rem;
  margin: 0;
  font-size: 1rem;
  color: #495057;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  background-color: #f8f9fa;
}

.map-search-row {
  display: flex;
  padding: 1rem;
  background-color: #f8f9fa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.map-search-input {
  flex: 1;
}

.map-search-hint {
  margin-left: 1rem;
  display: flex;
  align-items: center;
  color: #6c757d;
}

.address-map {
  height: 300px;
  width: 100%;
}

.map-loading-alert {
  padding: 1rem;
  background-color: #fff3cd;
  color: #856404;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-coordinates-status {
  padding: 0.75rem 1rem;
  background-color: #f8f9fa;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.85rem;
}

.coordinates-selected {
  color: #28a745;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.coordinates-missing {
  color: #6c757d;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Form Elements Styling */
.address-form {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
  flex: 1;
}

.form-group.half {
  flex: 0 0 calc(50% - 0.5rem);
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #495057;
  font-size: 0.9rem;
}

.required {
  color: #dc3545;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid #ced4da;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: #8a4d68;
  outline: none;
  box-shadow: 0 0 0 3px rgba(138, 77, 104, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 60px;
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-input {
  width: 18px;
  height: 18px;
}

.checkbox-label {
  font-size: 0.9rem;
  color: #495057;
}

.form-error {
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.form-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.form-message {
  padding: 0.75rem;
  border-radius: 6px;
  margin-top: 1rem;
  font-size: 0.85rem;
}

.form-message.info {
  background-color: #cff4fc;
  color: #055160;
}

.form-message.warning {
  background-color: #fff3cd;
  color: #856404;
}

.form-message.note {
  background-color: #e2e3e5;
  color: #41464b;
}

/* Enhanced Profile Section with Clean Design and Visible Icons */
.account-section.section-card[class*="profile"] {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  position: relative;
  margin-top: 20px;
  border: none;
}

.account-section.section-card[class*="profile"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #e0b4b2, #8a4d68);
}

.account-section.section-card[class*="profile"] .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.account-section.section-card[class*="profile"] .section-title {
  font-size: 1.5rem;
  margin: 0;
  color: #333;
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
}

.account-section.section-card[class*="profile"] .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 24px;
  background: #8a4d68;
  border-radius: 3px;
}

/* Edit Profile Button */
.edit-profile-btn {
  background: #8a4d68;
  color: white;
  border: none;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(138, 77, 104, 0.2);
}

.edit-profile-btn:hover {
  background: #754059;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(138, 77, 104, 0.3);
  color: white;
}

.edit-profile-btn i {
  font-size: 0.9rem;
}

/* Profile Form Styling */
.profile-form {
  padding: 1.75rem 2rem;
  background: #ffffff;
}

/* Input Field Styling with Visible Icons */
.profile-form .form-row {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.profile-form .form-group {
  flex: 1;
  margin-bottom: 0;
  position: relative;
}

.profile-form .form-group.half {
  flex: 0 0 calc(50% - 0.625rem);
}

.profile-form .form-label {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #444;
  font-size: 0.9rem;
}

.profile-form .form-label i {
  color: #8a4d68;
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

/* Ensure font-awesome icons are visible */
.profile-form .form-label .fas,
.profile-form .form-error .fas,
.profile-message .fas,
.account-section.section-card[class*="profile"] .section-title .fas,
.edit-profile-btn .fas,
.profile-form .form-actions button .fas {
  display: inline-block;
  width: auto;
  height: auto;
  font-size: inherit;
  color: inherit;
}

.profile-form .form-label:hover i {
  color: #ff6b6b;
}

/* Remove the previous CSS icon declarations since we're using HTML icons now */
.profile-form .form-label::before {
  content: none;
}

/* Clean up the label styling now that we're using actual icon elements */
.profile-form .form-label {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #444;
  font-size: 0.9rem;
}

/* Style the form inputs without left padding since icons are now in the labels */
.profile-form .form-input,
.profile-form .form-select {
  padding: 0.75rem 1rem;
}

/* Style the buttons with their icons */
.btn.edit-profile-btn i {
  font-size: 0.9rem;
  margin-right: 0.3rem;
}

.profile-form .form-actions button i {
  font-size: 1rem;
  margin-right: 0.5rem;
}

/* Additional styling for section title icon */
.account-section.section-card[class*="profile"] .section-title i {
  margin-left: 0.5rem;
  color: #8a4d68;
  font-size: 1.2rem;
}

/* Error message styling with icon */
.profile-form .form-error {
  display: flex;
  align-items: center;
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

.profile-form .form-error i {
  margin-right: 0.4rem;
  font-size: 0.9rem;
}

/* Clean styling for message banners */
.profile-message {
  display: flex;
  align-items: center;
}

.profile-message i {
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.profile-message.success i {
  color: #4caf50;
}

.profile-message.error i {
  color: #f44336;
}

/* Loading Spinner */
.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top: 2px solid #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-right: 0.5rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .profile-form .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .profile-form .form-group.half {
    flex: 1 0 100%;
  }

  .account-section.section-card[class*="profile"] .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

  .profile-form {
    padding: 1.5rem;
  }

  .profile-form .form-actions {
    flex-direction: column;
    gap: 1rem;
  }

  .edit-profile-btn {
    width: 100%;
    justify-content: center;
  }

  .profile-message {
    margin: 0 1.5rem 1.5rem;
    padding: 1rem;
  }
}

/* Security Section Styling */
.security-form {
  padding: 1.75rem 2rem;
  background: #ffffff;
  position: relative;
  border-radius: 0 0 16px 16px;
}

.security-form .form-label {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #495057;
  font-size: 0.9rem;
}

.security-form .form-label i {
  color: #8a4d68;
  font-size: 1.1rem;
  margin-right: 0.5rem;
}

.password-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-group .form-input {
  width: 100%;
  padding-right: 40px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #8a4d68;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.password-toggle:hover {
  opacity: 1;
  color: #6b3d7a;
}

/* Password Strength Info Box */
.password-strength-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: rgba(138, 77, 104, 0.05);
  padding: 1.25rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid #8a4d68;
}

.lock-icon {
  background-color: #8a4d68;
  color: white;
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(138, 77, 104, 0.3);
}

.strength-text h5 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  color: #495057;
}

.password-tips {
  list-style: none;
  padding: 0;
  margin: 0;
}

.password-tips li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.3rem;
  color: #6c757d;
  font-size: 0.85rem;
}

.password-tips li i {
  color: #4caf50;
}

/* Security Submit Button */
.security-submit {
  background: linear-gradient(135deg, #8a4d68, #6b3d7a);
  border: none;
  box-shadow: 0 4px 10px rgba(138, 77, 104, 0.3);
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.security-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(138, 77, 104, 0.4);
  background: linear-gradient(135deg, #7a4258, #5c326a);
}

.security-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Security Message Styling */
.security-message {
  margin: 0 2rem 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  border-left: 4px solid;
}

.security-message::before {
  font-family: "bootstrap-icons";
  margin-right: 0.75rem;
  font-size: 1.25rem;
}

.security-message.success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-left-color: #4caf50;
}

.security-message.success i {
  color: #4caf50;
}

.security-message.error {
  background-color: #ffebee;
  color: #c62828;
  border-left-color: #f44336;
}

.security-message.error i {
  color: #f44336;
}

/* Security Note */
.security-note {
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  background-color: #fff8e1;
  border-left: 4px solid #ffc107;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.security-note i {
  color: #ffc107;
  font-size: 1.1rem;
  margin-top: 0.1rem;
}

.security-note p {
  margin: 0;
  font-size: 0.85rem;
  color: #795548;
}

/* Error Message Styling with Icon */
.security-form .form-error {
  display: flex;
  align-items: center;
  color: #dc3545;
  font-size: 0.8rem;
  margin-top: 0.4rem;
}

.security-form .form-error i {
  margin-right: 0.4rem;
  font-size: 0.9rem;
  color: #dc3545;
}

/* Responsive Styling */
@media (max-width: 767px) {
  .security-form {
    padding: 1.5rem;
  }

  .security-form .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .security-form .form-group.half {
    flex: 1 0 100%;
  }

  .security-message {
    margin: 0 1.5rem 1.5rem;
  }

  .password-strength-info {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
  }

  .lock-icon {
    margin-bottom: 0.5rem;
  }
}

/* Checkout Progress Bar & Steps */
.step-icon-size {
  width: 38px;
  height: 38px;
}
.step-icon i {
  margin: auto;
}
.step-label {
  font-size: 1rem;
}
.checkout-progress-bar {
  height: 2px;
  background: var(--color-rose-gold);
  opacity: 0.2;
}

/* Section Titles */
.section-title-sm {
  font-size: 1.1rem !important;
}

/* Form Check Label */
.form-check-label-sm {
  font-size: 0.95rem;
}

/* Shipping Price */
.shipping-price {
  font-size: 1rem;
}

/* Place Order Button */
.place-order-btn {
  font-size: 1rem;
}

/* Order Summary Sticky */
.order-summary-sticky {
  top: 100px;
  z-index: 10;
}

/* Order Item */
.order-item-gap {
  gap: 0.5rem;
}
.order-item-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}
.order-item-title {
  font-size: 0.95rem;
}
.order-item-price {
  font-size: 1rem;
}

/* Promo Apply Button */
.promo-apply-btn {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

/* Order Totals */
.order-totals-label {
  font-size: 0.95rem;
}
.order-totals-value {
  font-size: 0.95rem;
}
.order-totals-value#totalAmount {
  font-size: 1.05rem;
}

/* Security Badges */
.security-badges-row {
  gap: 0.5rem;
}
.security-badges-label {
  font-size: 0.95rem;
}

/* Return Policy */
.return-policy-label {
  font-size: 0.95rem;
}

/* Trust Section */
.trust-title {
  font-size: 0.98rem;
}
.trust-desc {
  font-size: 0.92rem;
  color: gray !important;
}

/* Responsive Tweaks */
@media (max-width: 575.98px) {
  .order-summary-sticky {
    top: 60px;
  }
  .order-item-img {
    width: 32px;
    height: 32px;
  }
  .section-title-sm {
    font-size: 1rem !important;
  }
  .order-totals-label,
  .order-totals-value {
    font-size: 0.92rem;
  }
  .trust-title {
    font-size: 0.95rem;
  }
  .trust-desc {
    font-size: 0.9rem;
  }
}

.payment-options .form-check {
  width: 92%;
}

.payment-options .form-check-last {
  width: 100%;
}

.shipping-options .form-check {
  width: 100%;
}

.coupon-step-circle {
  width: 38px;
  height: 38px;
}

/* About Page: Moved inline styles from about.html */
.about-story-img-container {
  max-width: 70%;
  --bs-gutter-x: 1rem;
}
.about-main-img {
  margin-bottom: -1rem;
  max-width: 100%;
}
.about-side-img {
  margin-bottom: -4.5rem;
  margin-right: -4.5rem;
  max-width: 30%;
}
.about-certification-logo {
  min-height: 90px;
}
.about-certification-img {
  max-height: 60px;
}
.about-team-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.about-stat-icon-span {
  width: 56px;
  height: 56px;
}

.blog-section-bg {
  background: var(--gradient-pearl);
  min-height: 100vh;
}
.blog-featured-img {
  object-fit: cover;
  min-height: 220px;
}
.blog-author-img {
  width: 32px;
  height: 32px;
}
.blog-readmore-btn {
  overflow: hidden;
  min-width: 120px;
}
.blog-post-img {
  height: 180px;
  object-fit: cover;
}
.blog-author-placeholder {
  width: 26px;
  height: 26px;
}
/* Home Page: Moved all inline styles from home.html */
.categories-swiper-padding {
  padding: 5px 0;
}
.showcase-shadow {
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.08));
}
.showcase-main-height {
  height: 450px;
}
.gradient-overlay-story {
  background: linear-gradient(
    135deg,
    rgba(138, 77, 104, 0.05) 0%,
    rgba(200, 86, 112, 0.07) 100%
  );
}
.brand-story-row-padding {
  padding: 1.5rem 0;
}
.value-icon-burgundy {
  width: 70px;
  height: 70px;
  box-shadow: 0 5px 15px rgba(139, 77, 105, 0.15);
  border: 1px solid rgba(139, 77, 105, 0.2);
  transform: translateY(-5px);
}
.value-title-burgundy {
  color: #8a4d68;
}
.value-underline-burgundy {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #8a4d68, transparent);
}
.value-icon-amber {
  width: 70px;
  height: 70px;
  box-shadow: 0 5px 15px rgba(206, 147, 61, 0.15);
  border: 1px solid rgba(206, 147, 61, 0.2);
  transform: translateY(-5px);
}
.value-title-amber {
  color: #ce933d;
}
.value-underline-amber {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ce933d, transparent);
}
.value-icon-rose-gold {
  width: 70px;
  height: 70px;
  box-shadow: 0 5px 15px rgba(200, 86, 112, 0.15);
  border: 1px solid rgba(200, 86, 112, 0.2);
  transform: translateY(-5px);
}
.value-title-rose-gold {
  color: #c85670;
}
.value-underline-rose-gold {
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #c85670, transparent);
}
.brand-visual-transform {
  transform: translateY(-15px);
}
.brand-hero-img-cover {
  object-fit: cover;
  height: 480px;
}
.shine-effect-bg {
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.2) 50%,
    transparent 100%
  );
}
.gradient-border-radius {
  border-radius: 1.5rem;
}
.floating-achievements-z {
  z-index: 2;
}
.card-glow-bg {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 70%
  );
}
.quality-badges-bottom {
  bottom: 0;
}
.badge-pulse-bg {
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 255, 255, 0.8) 0%,
    transparent 70%
  );
}
.home-bottom-curve {
  height: 70px;
  overflow: hidden;
}
.home-bottom-curve-bg {
  height: 70px;
  background-color: #fff;
  border-radius: 100% 100% 0 0;
  bottom: -35px;
  left: 0;
}

/* Custom classes for removed inline styles from home.html */
.category-card-custom {
  transform: scale(0.95);
  height: 50px;
  border-radius: 25px;
}
.z-2 {
  z-index: 2;
}
.circle-40 {
  width: 40px;
  height: 40px;
}
.gradient-craftsmanship {
  background: linear-gradient(
    45deg,
    rgba(138, 77, 104, 0.1) 0%,
    rgba(200, 86, 112, 0.05) 100%
  );
}
.z-1 {
  z-index: 1;
}
.btn-custom-small {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  transform: scale(0.85);
}
.circle-45 {
  width: 45px;
  height: 45px;
}
.btn-custom-large {
  padding: 0.8rem 2rem;
  font-size: 0.95rem;
  transform: scale(1);
}
.premium-brand-story-custom {
  border-radius: 2rem;
  /* margin: 3rem 0; */
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.product-image-container-custom {
  height: 280px;
}
.object-fit-cover {
  object-fit: cover;
}
.bottom-curve-custom {
  height: 30px;
  z-index: 1;
}
.bottom-curve-inner-custom {
  height: 30px;
  bottom: -15px;
}
/* Custom classes for removed inline styles from order-confirmation.html */
.rounded-circle-56 {
  width: 56px;
  height: 56px;
}
.rounded-circle-40 {
  width: 40px;
  height: 40px;
}
.rounded-circle-32 {
  width: 32px;
  height: 32px;
}
.max-width-500 {
  max-width: 500px;
}
.transform-origin-center {
  transform-origin: center;
}
.progress-height-8 {
  height: 8px;
}
.width-120 {
  width: 120px;
}
.max-height-120 {
  max-height: 120px;
}
.font-size-085 {
  font-size: 0.85rem;
}
.max-height-200 {
  max-height: 200px;
  object-fit: contain;
}
/* Custom classes for removed inline styles from products.html */
.product-card-minheight {
  min-height: 320px;
  max-height: none;
}
.card-img-maxheight-160 {
  max-height: 160px;
  object-fit: cover;
}
.card-img-maxheight-260 {
  max-height: 260px;
  object-fit: cover;
}
.modal-thumb-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  cursor: pointer;
  transition: box-shadow 0.2s;
}
.cursor-pointer {
  cursor: pointer;
}

.social-card-sm {
  max-width: 220px;
  min-width: 160px;
  width: 100%;
  padding: 0 !important;
  margin: 0 auto;
}
.social-card-sm .card-body {
  padding: 1rem 0.5rem !important;
}
.social-card-sm h5 {
  font-size: 1.05rem;
}
.social-card-sm p,
.social-card-sm .badge {
  font-size: 0.85rem !important;
}
.social-card-sm .btn {
  font-size: 0.9rem !important;
  padding: 0.3rem 1.2rem !important;
}

/* Custom classes for removed inline styles from social.html */
.badge-social-followers {
  background-color: var(--rose-gold, #e6b8a2) !important;
  color: #fff !important;
  font-size: 0.85rem;
  letter-spacing: 0.1px;
  line-height: 0.3rem;
}
.btn-social-follow {
  background-color: var(--rose-gold, #e6b8a2) !important;
  color: #fff !important;
}
.rounded-circle-25 {
  width: 2.5rem;
  height: 2.5rem;
}
.aspect-ratio-1-1 {
  aspect-ratio: 1/1;
  min-height: 120px;
}
.img-cover-100 {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.social-title {
  font-size: 2rem;
  letter-spacing: 0.5px;
}
.social-desc {
  font-size: 1.15rem;
}
.badge-social-tag {
  background-color: var(--rose-gold, #e6b8a2) !important;
  font-size: 1rem;
}
.btn-social-lg {
  background-color: var(--rose-gold, #e6b8a2) !important;
  font-size: 1rem;
}

.product-overlay-actions .delete{
     background-color: var(--color-burgundy) !important;

}

/* Center the contact info cards row and its content */
.contact-info .row.g-0 {
  justify-content: center;
  align-items: center;

  display: flex;
}

.contact-info .contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 90%;
  text-align: center;
}

.contact-info .contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem auto;
  font-size: 2rem;
}

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

.contact-info .contact-actions {
  display: flex;
  justify-content: center;
  width: 100%;
}
.progress-bar {
  background-color: #ff540759 !important;
}

/* Order Confirmation Gift Section Styles */

.order-gift-img-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f8f8;
}
.order-gift-img {
  width: 100%;
  height: 300px;
  object-fit: cover;

  box-shadow: 0 2px 16px rgba(200, 86, 112, 0.08);
}

.order-gift-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: linear-gradient(135deg, #e0b4b2 0%, #e99856 100%);
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 18px rgba(224, 180, 178, 0.18);
}
.order-gift-content-col {
  min-height: 260px;
}
.order-gift-title {
  font-size: 1.7rem;
  color: #c85670;
}
.order-gift-desc {
  font-size: 1.05rem;
}
.order-gift-share {
  margin-top: 0.5rem;
}

.order-gift-share-btns {
  display: flex;
  gap: 0.5rem;
}
.order-gift-share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  text-decoration: none;
  font-size: 1.25rem;
  box-shadow: 0 2px 8px rgba(200, 86, 112, 0.1);
  border: 2px solid #e0b4b2;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
}
.order-gift-share-btn.whatsapp {
  color: #25d366;
  border-color: #25d36633;
}
.order-gift-share-btn.instagram {
  color: #e4405f;
  border-color: #e4405f33;
}
.order-gift-share-btn.facebook {
  color: #1877f3;
  border-color: #1877f333;
}
.order-gift-share-btn:hover,
.order-gift-share-btn:focus {
  background: #e0b4b2;
  color: #fff;
  border-color: #e99856;
  box-shadow: 0 4px 18px rgba(224, 180, 178, 0.18);
}
@media (max-width: 991px) {
  .order-gift-img {
    height: 220px;
  }
  .order-gift-img-wrapper {
    min-height: 180px;
  }
  .order-gift-content-col {
    min-height: 180px;
  }
}
@media (max-width: 767px) {
  .order-gift-section {
    border-radius: 1rem;
  }
  .order-gift-img {
    height: 160px;
  }
  .order-gift-img-wrapper {
    min-height: 120px;
  }
  .order-gift-content-col {
    min-height: 120px;
    padding: 1.2rem !important;
  }
  .order-gift-title {
    font-size: 1.1rem;
  }
}
/* You May Also Like (Order Suggest) Section */

.order-suggest-img-wrapper {
  position: relative;
  width: 100%;
  height: 200px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}
.order-suggest-img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  transition: transform 0.2s;
}
.order-suggest-card:hover .order-suggest-img {
  transform: scale(1.07) rotate(-2deg);
}
.order-suggest-overlay-icons {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 2;
}
.order-suggest-btn {
  background: var(--color-burgundy);
  /* border: 2px solid #e0b4b2; */
  border: none;
  color: #c85670;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 2px 8px rgba(200, 86, 112, 0.1);
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s,
    transform 0.2s;
  margin: 0 2px;
}

.modal-header h5 {
  font-size: 1.3rem;
}
.order-suggest-btn:hover,
.order-suggest-btn:focus {
  background: var(--color-rose-gold);
  color: #fff;
  border-color: #e99856;
  box-shadow: 0 4px 18px rgba(224, 180, 178, 0.18);
  transform: scale(1.12);
}
.order-suggest-title {
  font-size: 1rem;
  color: #4a4868;
  margin-bottom: 0.2rem;
}
.order-suggest-price {
  font-size: 0.98rem;
  color: #c85670;
}
@media (max-width: 991px) {
  .order-suggest-img-wrapper {
    height: 110px;
  }
  .order-suggest-card {
    min-height: 170px;
  }
}
@media (max-width: 767px) {
  .order-suggest-section {
    border-radius: 0.7rem;
  }
  .order-suggest-img-wrapper {
    height: 90px;
  }
  .order-suggest-card {
    min-height: 120px;
    border-radius: 0.7rem;
  }
  .order-suggest-title {
    font-size: 0.95rem;
  }
  .order-suggest-price {
    font-size: 0.92rem;
  }
}
