/* LEVERHUT Customer Site Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-white: #FFFFFF;
  --color-bg-pink: #FDEFF5;
  --color-light-rose: #F7D7E6;
  --color-baby-pink: #F48FB1;
  --color-hot-pink: #F05A93;
  --color-peach: #FFE8DF;
  --color-lavender: #F3E9FF;
  --color-text-black: #1F1F1F;
  --color-text-muted: #6F6F6F;
  --color-border: #E9E3EA;
  --color-glass-white: rgba(255, 255, 255, 0.55);
  --color-glass-pink: rgba(244, 143, 177, 0.12);
  --color-glow-pink: rgba(240, 90, 147, 0.15);
  
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  --transition-slow: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-medium: all 0.25s ease;
  
  --shadow-subtle: 0 8px 32px 0 rgba(31, 38, 135, 0.04);
  --shadow-medium: 0 12px 36px 0 rgba(240, 90, 147, 0.08);
  --shadow-premium: 0 20px 50px rgba(244, 143, 177, 0.15);
  --border-radius-lg: 24px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-white);
  color: var(--color-text-black);
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(at 10% 20%, rgba(253, 239, 245, 0.6) 0px, transparent 50%),
    radial-gradient(at 90% 10%, rgba(243, 233, 255, 0.5) 0px, transparent 50%),
    radial-gradient(at 50% 90%, rgba(255, 232, 223, 0.4) 0px, transparent 50%);
  background-attachment: fixed;
}

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

button, input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: var(--color-light-rose);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-baby-pink);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(0deg); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 10px rgba(240, 90, 147, 0.1); }
  50% { box-shadow: 0 0 25px rgba(240, 90, 147, 0.25); }
  100% { box-shadow: 0 0 10px rgba(240, 90, 147, 0.1); }
}

@keyframes slowGlow {
  0% { transform: scale(1) translate(0px, 0px); opacity: 0.6; }
  33% { transform: scale(1.1) translate(15px, -10px); opacity: 0.85; }
  66% { transform: scale(0.95) translate(-10px, 10px); opacity: 0.55; }
  100% { transform: scale(1) translate(0px, 0px); opacity: 0.6; }
}

@keyframes pedestalGlow {
  0% { filter: drop-shadow(0 4px 10px rgba(244, 143, 177, 0.1)); }
  50% { filter: drop-shadow(0 8px 20px rgba(244, 143, 177, 0.35)); }
  100% { filter: drop-shadow(0 4px 10px rgba(244, 143, 177, 0.1)); }
}

@keyframes walkAcrossScreen {
  0% { left: -240px; }
  100% { left: 100%; }
}

@keyframes walkGaitBob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-7px); }
}

@keyframes swingLegFront {
  0%, 100% { transform: rotate(-22deg); }
  50% { transform: rotate(22deg); }
}

@keyframes swingLegBack {
  0%, 100% { transform: rotate(22deg); }
  50% { transform: rotate(-22deg); }
}

@keyframes swingArmFront {
  0%, 100% { transform: rotate(18deg); }
  50% { transform: rotate(-12deg); }
}

@keyframes swingArmBack {
  0%, 100% { transform: rotate(-12deg); }
  50% { transform: rotate(18deg); }
}

@keyframes hairBlow {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(5deg) skewX(-2deg); }
}

@keyframes beltSway {
  0%, 100% { transform: rotate(-4deg) skewY(-2deg); }
  50% { transform: rotate(12deg) skewY(2deg); }
}

@keyframes fallAndGetUp {
  0% { transform: rotate(0deg) translateY(0) translateX(0); }
  15% { transform: rotate(82deg) translateY(20px) translateX(-25px); }
  75% { transform: rotate(82deg) translateY(20px) translateX(-25px); }
  90% { transform: rotate(15deg) translateY(5px) translateX(-5px); }
  100% { transform: rotate(0deg) translateY(0) translateX(0); }
}

.fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.slide-up {
  animation: slideUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* Glassmorphism Cards & Panels */
.glass-panel {
  background: var(--color-glass-white);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-subtle);
  border-radius: var(--border-radius-lg);
}

.glass-card {
  background: var(--color-glass-white);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-subtle);
  border-radius: var(--border-radius-md);
  transition: var(--transition-slow);
}

.glass-card:hover {
  border-color: var(--color-baby-pink);
  box-shadow: var(--shadow-medium), 0 0 15px var(--color-glow-pink);
  transform: translateY(-4px);
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.03em;
}

/* Navigation Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-medium);
}

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

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

/* Logo Stylized to match image exactly */
.logo-container {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 78px;
  mix-blend-mode: multiply;
  display: block;
  transition: var(--transition-medium);
}

header.scrolled .header-container {
  padding: 6px 24px;
}

header.scrolled .logo-img {
  height: 58px;
}

nav {
  display: flex;
  gap: 32px;
}

nav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-black);
  position: relative;
  padding: 4px 0;
  transition: var(--transition-medium);
}

nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--color-hot-pink);
  transition: var(--transition-medium);
  transform: translateX(-50%);
}

nav a:hover {
  color: var(--color-hot-pink);
}

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

.header-utilities {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icon {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-black);
  position: relative;
  transition: var(--transition-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.header-icon:hover {
  background: var(--color-glass-pink);
  color: var(--color-hot-pink);
}

.cart-badge {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--color-hot-pink);
  color: white;
  font-size: 9px;
  font-family: var(--font-sans);
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 5px rgba(240, 90, 147, 0.4);
}

/* Main Area Layout */
main {
  min-height: calc(100vh - 80px);
  padding-top: 80px; /* offset header */
}

/* Footer styling */
footer {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid var(--color-border);
  padding: 60px 24px 30px;
  margin-top: 80px;
}

.footer-content {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: var(--color-text-muted);
  margin-top: 16px;
  font-size: 14px;
  max-width: 300px;
}

.footer-title {
  font-size: 15px;
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--color-text-muted);
  transition: var(--transition-medium);
}

.footer-links a:hover {
  color: var(--color-hot-pink);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-medium);
  color: var(--color-text-muted);
}

.social-icon:hover {
  border-color: var(--color-baby-pink);
  background: var(--color-glass-pink);
  color: var(--color-hot-pink);
  transform: translateY(-2px);
}

.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Primary Button Styling */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--color-baby-pink), var(--color-hot-pink));
  color: white;
  border: none;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(240, 90, 147, 0.3);
  transition: var(--transition-medium);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 20px rgba(240, 90, 147, 0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-glass-white);
  border: 1px solid var(--color-light-rose);
  color: var(--color-text-black);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-medium);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: var(--color-glass-pink);
  border-color: var(--color-baby-pink);
  color: var(--color-hot-pink);
  transform: translateY(-2px);
}

/* Tab Controls for Homepage */
.tab-btn {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--color-text-muted);
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 16px;
  position: relative;
  transition: var(--transition-medium);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--color-hot-pink);
  transition: var(--transition-medium);
  transform: translateX(-50%);
}

.tab-btn:hover {
  color: var(--color-text-black);
}

.tab-btn.active {
  color: var(--color-text-black);
}

.tab-btn.active::after {
  width: 70%;
}

/* Home Page Specifics */

/* Hero Banner & Slider */
.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-content-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 40px;
}

.hero-text {
  max-width: 550px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s;
}

.hero-slide.active .hero-text {
  opacity: 1;
  transform: translateY(0);
}

.hero-moving-text-wrapper {
  position: absolute;
  right: 170px;
  bottom: 40px;
  width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  pointer-events: auto;
  z-index: 10;
}

.hero-moving-text-wrapper .hero-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-hot-pink);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero-moving-text-wrapper .hero-title {
  font-family: var(--font-serif);
  font-size: 50px;
  line-height: 1.15;
  color: var(--color-text-black);
  margin-bottom: 16px;
  font-weight: 300;
}

.hero-moving-text-wrapper .hero-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 24px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 440px;
}

.hero-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-hot-pink);
  font-weight: 600;
  margin-bottom: 16px;
  display: inline-block;
}

.hero-title {
  font-size: 56px;
  line-height: 1.15;
  color: var(--color-text-black);
  margin-bottom: 24px;
}

.hero-desc {
  font-size: 16px;
  color: var(--color-text-muted);
  margin-bottom: 36px;
  font-weight: 300;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s;
}

.hero-slide.active .hero-visual {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.hero-pedestal {
  position: absolute;
  bottom: -40px;
  width: 320px;
  z-index: 1;
  animation: pedestalGlow 6s ease-in-out infinite;
}

.hero-bag-img {
  max-height: 380px;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.06));
  animation: float 5s ease-in-out infinite;
}

/* Background soft light rings */
.hero-glow-ring {
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 239, 245, 0.8) 0%, rgba(243, 233, 255, 0.4) 50%, transparent 70%);
  z-index: 0;
  filter: blur(20px);
  animation: slowGlow 15s ease-in-out infinite;
}

/* Slider indicators */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(31, 31, 31, 0.2);
  cursor: pointer;
  transition: var(--transition-medium);
}

.slider-dot.active {
  background: var(--color-hot-pink);
  transform: scale(1.3);
  width: 16px;
  border-radius: 4px;
}

/* Runway walking woman animation styling */
.runway-line {
  position: absolute;
  bottom: 80px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-hot-pink), transparent);
  opacity: 0.6;
  z-index: 5;
}

.walking-container {
  position: absolute;
  bottom: 80px;
  left: -240px;
  z-index: 6;
  animation: walkAcrossScreen 20s linear infinite;
  pointer-events: none;
}

/* Animated CSS vector character walking styling */
.walking-character {
  width: 140px;
  height: 380px;
  position: relative;
  transform: scaleX(-1); /* Orient walking direction left-to-right */
  transform-origin: bottom center;
  pointer-events: auto;
  cursor: pointer;
}

.walking-container.paused-movement {
  animation-play-state: paused !important;
}

.walking-character.falling .character-body {
  animation: fallAndGetUp 2s ease-in-out forwards;
  animation-play-state: running !important;
  transform-origin: bottom center;
}

.walking-character.falling .leg-front,
.walking-character.falling .leg-back,
.walking-character.falling .arm-front,
.walking-character.falling .arm-back,
.walking-character.falling .hair,
.walking-character.falling .torso::after {
  animation-play-state: paused !important;
}

.character-body {
  position: relative;
  width: 100%;
  height: 100%;
  animation: walkGaitBob 0.8s ease-in-out infinite;
}

/* Head & Hair */
.walking-character .head {
  position: absolute;
  top: 20px;
  left: 55px;
  width: 40px;
  height: 46px;
  border-radius: 50% / 55% 55% 45% 45%;
  background: #FFE8DF; /* Skin tone */
  z-index: 10;
}

/* Cat-eye Sunglasses */
.walking-character .head::after {
  content: '';
  position: absolute;
  top: 15px;
  left: 15px;
  width: 24px;
  height: 12px;
  background: #1a1a1a;
  border-radius: 2px 10px 2px 8px;
  transform: rotate(-4deg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Lips */
.walking-character .head::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 28px;
  width: 8px;
  height: 3px;
  background: #e91e63;
  border-radius: 2px 2px 4px 4px;
}

/* Hair */
.walking-character .hair {
  position: absolute;
  top: 10px;
  left: 60px;
  width: 50px;
  height: 100px;
  background: #111;
  border-radius: 20px 20px 20px 40px;
  z-index: 11;
  transform-origin: top left;
  animation: hairBlow 0.8s ease-in-out infinite;
}

.walking-character .hair::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 20px;
  width: 45px;
  height: 90px;
  background: #111;
  border-radius: 0 40px 10px 40px;
  transform: rotate(15deg);
  transform-origin: top center;
  z-index: 10;
}

/* Torso - Double Breasted Trench Coat */
.walking-character .torso {
  position: absolute;
  top: 66px;
  left: 50px;
  width: 50px;
  height: 140px;
  background: linear-gradient(to bottom, #e88fa9 0%, #e06d8c 100%);
  border-radius: 12px 12px 6px 6px;
  z-index: 8;
  transform: skewX(-4deg);
  box-shadow: inset 4px 0 0 rgba(255,255,255,0.2);
}

/* Neck */
.walking-character .torso::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 17px;
  width: 14px;
  height: 22px;
  background: #FFE8DF;
  border-radius: 0 0 4px 4px;
}

/* Swaying Belt Sash */
.walking-character .torso::after {
  content: '';
  position: absolute;
  top: 65px;
  left: 30px;
  width: 12px;
  height: 50px;
  background: #b8466f;
  border-radius: 4px;
  transform-origin: top center;
  animation: beltSway 0.8s ease-in-out infinite;
  z-index: 12;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Legs - Trousers/Leggings */
.walking-character .leg-front,
.walking-character .leg-back {
  position: absolute;
  top: 200px;
  width: 8px;
  height: 175px;
  background: #111;
  border-radius: 4px;
  transform-origin: top center;
}

.walking-character .leg-front {
  left: 58px;
  z-index: 7;
  animation: swingLegFront 0.8s ease-in-out infinite;
}

.walking-character .leg-back {
  left: 78px;
  z-index: 6;
  animation: swingLegBack 0.8s ease-in-out infinite;
}

/* High-Heeled Boot/Shoe */
.walking-character .foot {
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 26px;
  height: 10px;
  background: #111;
}

/* Pointed Toe */
.walking-character .foot::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -10px;
  width: 14px;
  height: 7px;
  background: #111;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

/* Stiletto Heel */
.walking-character .foot::after {
  content: '';
  position: absolute;
  bottom: -10px;
  right: 0;
  width: 3px;
  height: 12px;
  background: #111;
}

/* Arms */
.walking-character .arm-back {
  position: absolute;
  top: 72px;
  left: 52px;
  width: 8px;
  height: 110px;
  background: #f48fb1; /* Baby pink sleeve */
  border-radius: 4px;
  transform-origin: top center;
  z-index: 5;
  animation: swingArmBack 0.8s ease-in-out infinite;
}

/* Bent front arm */
.walking-character .arm-front {
  position: absolute;
  top: 72px;
  left: 80px;
  width: 8px;
  height: 60px;
  background: #f48fb1;
  border-radius: 4px;
  transform-origin: top center;
  z-index: 9;
  animation: swingArmFront 0.8s ease-in-out infinite;
}

/* Bent Forearm */
.walking-character .arm-front::before {
  content: '';
  position: absolute;
  bottom: -35px;
  left: -20px;
  width: 8px;
  height: 50px;
  background: #f48fb1;
  border-radius: 4px;
  transform: rotate(55deg);
  transform-origin: top right;
}

/* Hand */
.walking-character .arm-front::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -22px;
  width: 10px;
  height: 10px;
  background: #FFE8DF;
  border-radius: 50%;
}

/* Luxury Handbag */
.walking-character .handbag-carried {
  position: absolute;
  bottom: -50px;
  left: -40px;
  width: 38px;
  height: 30px;
  background: #F7D7E6;
  border: 2px solid #F05A93;
  border-radius: 6px;
  z-index: 12;
  box-shadow: 0 4px 8px rgba(240, 90, 147, 0.15);
}

/* Bag Strap */
.walking-character .handbag-carried::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 8px;
  width: 18px;
  height: 18px;
  border: 1.5px solid #F05A93;
  border-bottom: none;
  border-radius: 50% 50% 0 0;
}

/* Gold buckle latch */
.walking-character .handbag-carried::after {
  content: '';
  position: absolute;
  top: 6px;
  left: 12px;
  width: 10px;
  height: 6px;
  background: #FFD700;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Benefits Section */
.benefits-section {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 24px;
}

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

.benefit-card {
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-bg-pink);
  color: var(--color-hot-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(240, 90, 147, 0.08);
}

.benefit-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text-black);
}

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

/* Featured Products Section */
.featured-section {
  max-width: 1300px;
  margin: 80px auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-title {
  font-size: 40px;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--color-text-muted);
  letter-spacing: 0.05em;
  max-width: 500px;
  margin: 0 auto;
}

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

/* Product Card */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.product-img-wrapper {
  position: relative;
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(253, 239, 245, 0.4) 100%);
  border-radius: var(--border-radius-md) var(--border-radius-md) 0 0;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--color-border);
}

.product-img {
  max-height: 200px;
  transition: var(--transition-slow);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.05));
}

.product-card:hover .product-img {
  transform: scale(1.08) translateY(-5px);
  filter: drop-shadow(0 15px 24px rgba(240, 90, 147, 0.12));
}

.wishlist-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-muted);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: var(--transition-medium);
  z-index: 5;
}

.wishlist-btn:hover {
  transform: scale(1.1);
  color: var(--color-hot-pink);
}

.wishlist-btn.active {
  color: var(--color-hot-pink);
  fill: var(--color-hot-pink);
}

.product-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-name {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--color-text-black);
}

.product-price {
  font-size: 16px;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--color-hot-pink);
  margin-bottom: 20px;
}

.product-card-actions {
  margin-top: auto;
}

.btn-card-view {
  width: 100%;
  padding: 12px;
  font-size: 12px;
}

/* Shop Page UI */
.shop-hero {
  padding: 60px 24px 30px;
  text-align: center;
  background: linear-gradient(to bottom, var(--color-bg-pink) 0%, transparent 100%);
  margin-bottom: 40px;
}

.shop-controls {
  max-width: 1300px;
  margin: 0 auto 32px;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shop-count {
  font-size: 14px;
  color: var(--color-text-muted);
}

.shop-sort select {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--color-border);
  background: white;
  color: var(--color-text-black);
  cursor: pointer;
  font-size: 13px;
  transition: var(--transition-medium);
}

.shop-sort select:hover {
  border-color: var(--color-baby-pink);
}

/* Product Details Page */
.product-details-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.breadcrumbs {
  max-width: 1200px;
  margin: 20px auto 0;
  padding: 0 24px;
  font-size: 13px;
  color: var(--color-text-muted);
}

.breadcrumbs a:hover {
  color: var(--color-hot-pink);
}

.breadcrumbs span {
  margin: 0 8px;
}

.product-details-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.main-image-display {
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(253, 239, 245, 0.4) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.main-image-display img {
  max-height: 380px;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.06));
  transition: transform 0.5s ease;
}

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

.variant-thumbnails {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.thumbnail-selector {
  width: 70px;
  height: 70px;
  border-radius: var(--border-radius-sm);
  border: 2px solid transparent;
  background: var(--color-bg-pink);
  padding: 4px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-medium);
  display: flex;
  align-items: center;
  justify-content: center;
}

.thumbnail-selector img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumbnail-selector:hover {
  border-color: var(--color-light-rose);
}

.thumbnail-selector.active {
  border-color: var(--color-hot-pink);
}

.variant-check-icon {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--color-hot-pink);
  color: white;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.thumbnail-selector.active .variant-check-icon {
  display: flex;
}

/* Product Info Right Column */
.product-details-info {
  display: flex;
  flex-direction: column;
}

.details-title {
  font-size: 44px;
  margin-bottom: 12px;
}

.details-price {
  font-size: 24px;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--color-hot-pink);
  margin-bottom: 24px;
}

.details-desc {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
  line-height: 1.7;
}

.details-specs {
  list-style: none;
  margin-bottom: 36px;
}

.details-specs li {
  font-size: 14px;
  color: var(--color-text-black);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.details-specs li::before {
  content: "•";
  color: var(--color-hot-pink);
  font-size: 20px;
}

.purchase-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  border-top: 1px solid var(--color-border);
  margin-bottom: 30px;
}

.qty-variant-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.details-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-black);
  margin-bottom: 8px;
}

.qty-picker {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  padding: 6px 12px;
  background: white;
  width: 120px;
  justify-content: space-between;
}

.qty-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-black);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.qty-btn:hover {
  color: var(--color-hot-pink);
}

.qty-val {
  font-weight: 600;
  font-size: 14px;
}

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

.cod-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--color-text-muted);
  justify-content: center;
  margin-top: 12px;
}

.product-reviews-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
}

/* Reviews List Section */
.product-reviews-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px 24px 0;
  border-top: 1px solid var(--color-border);
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.review-item {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.review-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.review-author {
  font-weight: 600;
  font-size: 14px;
}

.review-stars {
  color: #FFB800;
}

.review-date {
  font-size: 12px;
  color: var(--color-text-muted);
}

.review-comment {
  font-size: 14px;
  color: var(--color-text-black);
  line-height: 1.6;
}

/* Review Form Styling */
.write-review-form {
  padding: 24px;
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  background: white;
  color: var(--color-text-black);
  font-size: 14px;
  transition: var(--transition-medium);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--color-baby-pink);
  box-shadow: 0 0 8px var(--color-glow-pink);
}

/* Cart Page */
.cart-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1.1fr;
  gap: 40px;
}

.cart-table-wrapper {
  overflow-x: auto;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-table th {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--color-border);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.cart-table td {
  padding: 24px 16px;
  border-bottom: 1px solid var(--color-border);
  vertical-align: middle;
}

.cart-product-cell {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cart-product-img {
  width: 70px;
  height: 70px;
  background: var(--color-bg-pink);
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.cart-product-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cart-product-name {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.cart-product-variant {
  font-size: 12px;
  color: var(--color-text-muted);
}

.cart-remove-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text-muted);
  transition: var(--transition-medium);
}

.cart-remove-btn:hover {
  color: var(--color-hot-pink);
}

/* Cart Summary */
.summary-panel {
  padding: 30px;
  height: fit-content;
}

.summary-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 14px;
}

.summary-row.total-row {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-hot-pink);
}

.btn-checkout {
  width: 100%;
  margin-top: 24px;
}

/* Checkout Page */
.checkout-container {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
}

.checkout-form-panel {
  padding: 36px;
}

.checkout-title {
  font-size: 24px;
  margin-bottom: 24px;
}

.payment-method-box {
  background: var(--color-bg-pink);
  border: 1px solid var(--color-light-rose);
  padding: 20px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.payment-icon-wrapper {
  color: var(--color-hot-pink);
}

.payment-details h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
}

.payment-details p {
  font-size: 12px;
  color: var(--color-text-muted);
}

/* Order Success Page */
.success-container {
  max-width: 600px;
  margin: 80px auto;
  padding: 48px;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(240, 90, 147, 0.1);
  color: var(--color-hot-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.success-title {
  font-size: 36px;
  margin-bottom: 12px;
}

.success-message {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 30px;
}

.order-id-box {
  background: var(--color-bg-pink);
  border: 1px dashed var(--color-baby-pink);
  padding: 16px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  color: var(--color-text-black);
}

.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* About Page */
.about-hero {
  padding: 80px 24px;
  text-align: center;
  background: linear-gradient(185deg, var(--color-bg-pink) 0%, transparent 80%);
}

.about-title {
  font-size: 56px;
  margin-bottom: 16px;
}

.about-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 24px;
}

.about-story-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-img-box {
  background: radial-gradient(circle, rgba(255,255,255,0.95) 0%, rgba(253, 239, 245, 0.45) 100%);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-img-box img {
  max-width: 100%;
  max-height: 280px;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.06));
}

.trust-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
  border-top: 1px solid var(--color-border);
  padding-top: 60px;
}

.trust-point {
  text-align: center;
}

.trust-point h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.trust-point p {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* Contact Page */
.contact-container {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
}

.contact-info-panel {
  padding: 40px;
}

.contact-info-panel h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

.contact-info-panel p {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 40px;
}

.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  gap: 16px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-bg-pink);
  color: var(--color-hot-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-text h4 {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-text p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
}

.contact-form-panel {
  padding: 40px;
}

/* Floating AI Chat CSS */
@keyframes chatFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.ai-chat-trigger {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-baby-pink), var(--color-hot-pink));
  color: white;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(240, 90, 147, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  animation: chatFloat 3s ease-in-out infinite;
}

.ai-chat-trigger:hover {
  transform: scale(1.1) rotate(5deg) !important;
  box-shadow: 0 12px 30px rgba(240, 90, 147, 0.5);
}

.ai-chat-trigger.panel-active {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(0.8) translateY(20px);
}

.ai-chat-panel {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 360px;
  height: 500px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow: hidden;
}

.ai-chat-panel.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  visibility: visible;
}

.ai-chat-header {
  background: linear-gradient(135deg, var(--color-baby-pink), var(--color-hot-pink));
  color: white;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ai-chat-brand-info {
  display: flex;
  flex-direction: column;
}

.ai-chat-title {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
}

.ai-chat-status {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
  opacity: 0.9;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: #00E676;
  border-radius: 50%;
  display: inline-block;
}

.ai-chat-close {
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  opacity: 0.8;
  transition: var(--transition-medium);
}

.ai-chat-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

.ai-chat-messages {
  flex-grow: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255, 255, 255, 0.7);
}

.chat-message {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: var(--border-radius-md);
  font-size: 13px;
  line-height: 1.5;
  animation: fadeIn 0.3s ease;
}

.chat-message.bot {
  background: white;
  align-self: flex-start;
  border-bottom-left-radius: 4px;
  color: var(--color-text-black);
  border: 1px solid var(--color-border);
}

.chat-message.user {
  background: var(--color-hot-pink);
  color: white;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}

/* Chat suggestions styling */
.chat-suggestions {
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-height: 130px;
  overflow-y: auto;
}

.chat-suggestion-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

.chat-suggestions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.suggestion-chip {
  font-size: 11px;
  background: white;
  border: 1px solid var(--color-light-rose);
  padding: 6px 10px;
  border-radius: 20px;
  cursor: pointer;
  color: var(--color-text-black);
  transition: var(--transition-medium);
}

.suggestion-chip:hover {
  background: var(--color-glass-pink);
  border-color: var(--color-baby-pink);
  color: var(--color-hot-pink);
}

.ai-chat-input-wrapper {
  display: flex;
  padding: 12px;
  background: white;
  border-top: 1px solid var(--color-border);
}

.ai-chat-input-wrapper input {
  flex-grow: 1;
  border: none;
  padding: 8px 12px;
  font-size: 13px;
  color: var(--color-text-black);
}

.ai-chat-send {
  background: transparent;
  border: none;
  color: var(--color-hot-pink);
  cursor: pointer;
  padding: 0 8px;
  transition: var(--transition-medium);
}

.ai-chat-send:hover {
  transform: scale(1.1);
}

/* Link inside chat bot message */
.chat-message.bot a {
  color: var(--color-hot-pink);
  text-decoration: underline;
  font-weight: 600;
}

/* Responsive details */
@media (max-width: 900px) {
  .hero-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 40px;
  }
  
  .hero-text {
    max-width: 100%;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-details-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cart-container, .checkout-container, .contact-container {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  nav {
    display: none; /* simple mobile hide for code complexity, keep utility icons */
  }
}

/* Bottom Featured Section Styles */
.bottom-featured-section {
  padding: 60px 24px 60px;
  background: transparent;
  max-width: 1300px;
  margin: 0 auto;
}

.bottom-featured-container {
  width: 100%;
}

.bottom-featured-title {
  font-family: var(--font-serif);
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-text-black);
  position: relative;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.bottom-featured-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-hot-pink);
}

/* Delivery Runway Section Styles */
.delivery-runway-section {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  margin-top: 40px;
  background: transparent;
}

.delivery-road-line {
  position: absolute;
  bottom: 35px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--color-light-rose) 20%, var(--color-light-rose) 80%, transparent 95%);
  opacity: 0.8;
}

.delivery-truck-container {
  position: absolute;
  bottom: 35px;
  left: -200px;
  width: 180px;
  height: 100px;
  z-index: 5;
  animation: driveAcross 18s linear infinite;
}

.delivery-truck-container.paused-drive {
  animation-play-state: paused !important;
}

.delivery-truck {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  animation: truckBob 0.6s ease-in-out infinite;
}

.delivery-truck-container.paused-drive .delivery-truck {
  animation-play-state: paused !important;
}

.truck-body-wrapper {
  display: flex;
  align-items: flex-end;
  height: 70px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.truck-trunk {
  width: 110px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-baby-pink), var(--color-hot-pink));
  border-radius: 10px 0 0 10px;
  position: relative;
  box-shadow: inset -4px -4px 0 rgba(0,0,0,0.1);
}

.truck-cabin {
  width: 60px;
  height: 58px;
  background: var(--color-text-black);
  border-radius: 0 24px 8px 0;
  position: relative;
  box-shadow: inset 4px -4px 0 rgba(0,0,0,0.2);
}

.truck-cabin::before {
  content: '';
  position: absolute;
  bottom: 12px;
  left: -3px;
  width: 6px;
  height: 16px;
  background: var(--color-white);
  border-radius: 3px;
}

.truck-window {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 26px;
  height: 20px;
  background: var(--color-light-rose);
  border-radius: 0 14px 0 0;
}

.truck-wheel {
  position: absolute;
  bottom: 0;
  width: 32px;
  height: 32px;
  background: #1F1F1F;
  border: 5px solid var(--color-light-rose);
  border-radius: 50%;
  z-index: 10;
  animation: spinWheel 0.6s linear infinite;
}

.delivery-truck-container.paused-drive .truck-wheel {
  animation-play-state: paused !important;
}

.wheel-back {
  left: 22px;
}

.wheel-front {
  right: 26px;
}

/* Bags in Trunk */
.bags-stack {
  position: absolute;
  top: -26px;
  left: 10px;
  width: calc(100% - 20px);
  height: 26px;
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  pointer-events: none;
}

.trunk-bag {
  width: 24px;
  height: 24px;
  position: relative;
  border-radius: 5px 5px 3px 3px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transform-origin: bottom center;
}

.trunk-bag::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 9px;
  border: 2.5px solid currentColor;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
}

.bag-1 {
  background: var(--color-peach);
  color: var(--color-hot-pink);
  transform: rotate(-5deg);
}

.bag-2 {
  background: var(--color-baby-pink);
  color: var(--color-white);
  transform: rotate(5deg) translateY(2px);
}

.bag-3 {
  background: var(--color-text-black);
  color: var(--color-peach);
  transform: rotate(-10deg);
}

/* Animations Keyframes */
@keyframes driveAcross {
  0% { left: -200px; }
  100% { left: 100%; }
}

@keyframes truckBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

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

/* Falling bag animations */
.delivery-truck.falling-bags .bag-1 {
  animation: dropBag1 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.delivery-truck.falling-bags .bag-2 {
  animation: dropBag2 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.delivery-truck.falling-bags .bag-3 {
  animation: dropBag3 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes dropBag1 {
  0% { transform: translateY(0) translateX(0) rotate(-5deg); opacity: 1; }
  15% { transform: translateY(45px) translateX(-15px) rotate(30deg); }
  30% { transform: translateY(126px) translateX(-30px) rotate(80deg); }
  80% { transform: translateY(126px) translateX(-30px) rotate(80deg); opacity: 1; }
  90% { transform: translateY(45px) translateX(-15px) rotate(30deg); opacity: 0.8; }
  100% { transform: translateY(0) translateX(0) rotate(-5deg); opacity: 1; }
}

@keyframes dropBag2 {
  0% { transform: translateY(0) translateX(0) rotate(5deg); opacity: 1; }
  18% { transform: translateY(40px) translateX(-30px) rotate(-30deg); }
  35% { transform: translateY(124px) translateX(-60px) rotate(-75deg); }
  80% { transform: translateY(124px) translateX(-60px) rotate(-75deg); opacity: 1; }
  90% { transform: translateY(40px) translateX(-30px) rotate(-30deg); opacity: 0.8; }
  100% { transform: translateY(0) translateX(0) rotate(5deg); opacity: 1; }
}

@keyframes dropBag3 {
  0% { transform: translateY(0) translateX(0) rotate(-10deg); opacity: 1; }
  20% { transform: translateY(35px) translateX(-45px) rotate(45deg); }
  40% { transform: translateY(128px) translateX(-90px) rotate(90deg); }
  80% { transform: translateY(128px) translateX(-90px) rotate(90deg); opacity: 1; }
  90% { transform: translateY(35px) translateX(-45px) rotate(45deg); opacity: 0.8; }
  100% { transform: translateY(0) translateX(0) rotate(-10deg); opacity: 1; }
}

/* Cat Runway Header Animation Styles */
.checkout-hero {
  padding: 0 !important;
  height: 220px !important;
  min-height: 220px !important;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px !important;
}

.cat-runway {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 220px;
  overflow: hidden;
  pointer-events: none;
}

.cat-road-line {
  position: absolute;
  bottom: 60px;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(240, 90, 147, 0.4);
}

.cat-container {
  position: absolute;
  bottom: 60px;
  left: -250px;
  width: 135px;
  height: 100px;
  cursor: pointer;
  pointer-events: auto;
  z-index: 5;
  animation: catWalkAcross 14s linear infinite;
}

.cat-container.paused-walk {
  animation-play-state: paused !important;
}

.cat-body-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  transform: scale(1.25);
  transform-origin: bottom center;
}

.cat-torso {
  position: absolute;
  bottom: 22px;
  left: 30px;
  width: 70px;
  height: 44px;
  background: var(--color-text-black);
  border-radius: 18px 24px 24px 18px;
  box-shadow: inset -4px -4px 0 rgba(255,255,255,0.05);
  transition: transform 0.3s ease;
}

.cat-head {
  position: absolute;
  bottom: 40px;
  left: 80px;
  width: 42px;
  height: 42px;
  background: var(--color-text-black);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.cat-ear {
  position: absolute;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 16px solid var(--color-text-black);
}

.ear-left {
  top: -11px;
  left: 4px;
  transform: rotate(-15deg);
}

.ear-right {
  top: -11px;
  right: 4px;
  transform: rotate(15deg);
}

.cat-eye {
  position: absolute;
  top: 15px;
  width: 6px;
  height: 6px;
  background: var(--color-white);
  border-radius: 50%;
}

.eye-left {
  left: 10px;
}

.eye-right {
  right: 12px;
}

.cat-tail {
  position: absolute;
  bottom: 40px;
  left: 6px;
  width: 38px;
  height: 26px;
  border: 6px solid var(--color-text-black);
  border-left: none;
  border-bottom: none;
  border-radius: 0 24px 24px 0;
  transform-origin: bottom left;
  animation: tailWag 1s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.cat-legs {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 22px;
}

.cat-leg {
  position: absolute;
  bottom: 0;
  width: 7px;
  height: 22px;
  background: var(--color-text-black);
  border-radius: 4px;
  transform-origin: top center;
}

.leg-fl {
  left: 82px;
  animation: swingLeg 0.4s ease-in-out infinite alternate;
}

.leg-fr {
  left: 94px;
  animation: swingLeg 0.4s ease-in-out infinite alternate-reverse;
}

.leg-bl {
  left: 36px;
  animation: swingLeg 0.4s ease-in-out infinite alternate-reverse;
}

.leg-br {
  left: 48px;
  animation: swingLeg 0.4s ease-in-out infinite alternate;
}

/* Moving Text Label below the line */
.cat-text-label {
  position: absolute;
  bottom: -44px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--color-text-black);
  white-space: nowrap;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(255,255,255,0.8);
}

/* Animations Keyframes */
@keyframes catWalkAcross {
  0% { left: -250px; }
  100% { left: 100%; }
}

@keyframes tailWag {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(25deg); }
}

@keyframes swingLeg {
  0% { transform: rotate(-25deg); }
  100% { transform: rotate(25deg); }
}

/* Sitting State Overrides */
.cat-container.sitting .cat-leg {
  animation-play-state: paused !important;
  height: 8px !important;
  bottom: 0 !important;
}

.cat-container.sitting .cat-torso {
  transform: translateY(12px) rotate(15deg);
  transform-origin: bottom right;
}

.cat-container.sitting .cat-head {
  animation: sitHeadNod 0.4s ease-in-out infinite alternate !important;
  transform-origin: center bottom;
}

.cat-container.sitting .cat-tail {
  animation-play-state: paused !important;
  transform: rotate(-30deg) translateY(6px);
}

/* Scratching Front Leg Override */
.cat-container.sitting .leg-fl {
  animation: scratchHead 0.2s ease-in-out infinite !important;
  height: 22px !important;
  transform-origin: top center;
  z-index: 15;
}

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

@keyframes sitHeadNod {
  0% { transform: translateY(6px) rotate(-8deg); }
  100% { transform: translateY(4px) rotate(8deg); }
}

@media (max-width: 600px) {
  .footer-title {
    font-size: 11px !important;
    letter-spacing: 0.08em;
    line-height: 1.4;
    margin-bottom: 12px;
  }

  .product-details-info {
    align-items: center;
    text-align: center;
  }

  .details-title {
    font-size: 24px !important;
    line-height: 1.25;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }

  .details-price {
    text-align: center;
    margin-bottom: 16px;
  }

  .details-desc {
    text-align: center;
    margin-bottom: 20px;
    padding: 0 10px;
  }

  .details-specs {
    width: 100%;
    padding: 0;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .details-specs li {
    justify-content: center;
    text-align: center;
  }

  .purchase-section {
    padding: 16px !important;
    margin-bottom: 20px;
    width: 100%;
    align-items: center;
  }

  .qty-variant-row {
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px;
    text-align: center;
    width: 100%;
  }

  .qty-picker {
    margin: 0 auto;
  }

  .details-actions-row {
    grid-template-columns: 1fr !important;
    gap: 10px;
    width: 100%;
  }

  .variant-thumbnails {
    justify-content: center;
  }

  .product-details-gallery .details-label {
    text-align: center;
  }

  .product-reviews-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .hero-slider {
    height: 240px;
    margin-bottom: 20px;
  }
  
  .runway-line {
    bottom: 20px;
  }
  
  @keyframes walkAcrossScreenMobile {
    0% { left: -100px; }
    100% { left: 100%; }
  }

  .walking-container {
    bottom: 20px;
    animation: walkAcrossScreenMobile 12s linear infinite !important;
  }
  
  .walking-character {
    transform: scale(0.55) scaleX(-1);
  }

  .hero-moving-text-wrapper {
    right: 120px !important;
    bottom: 20px !important;
    width: 200px !important;
  }
  .hero-moving-text-wrapper .hero-label {
    font-size: 10px !important;
    margin-bottom: 4px !important;
  }
  .hero-moving-text-wrapper .hero-title {
    font-size: 22px !important;
    margin-bottom: 6px !important;
  }
  .hero-moving-text-wrapper .hero-desc {
    display: none !important;
  }
  .hero-moving-text-wrapper .btn-primary {
    padding: 8px 16px !important;
    font-size: 10px !important;
  }

  /* Ensure falling animation duration remains 2s */
  .walking-character.falling .character-body {
    animation-duration: 2s !important;
  }

  .slider-dots {
    bottom: 8px;
  }
  
  .hero-content-wrapper {
    padding-top: 10px;
    grid-template-columns: 1fr;
  }
  
  .hero-text {
    display: none !important;
  }
  
  .hero-visual {
    margin-top: 0;
  }
  
  .hero-pedestal {
    width: 240px;
    bottom: -20px;
  }
  
  .hero-bag-img {
    max-height: 260px;
  }
  
  .benefits-section {
    display: none !important;
  }
  
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    justify-content: center;
    padding: 0 4px;
  }
  
  .product-img-wrapper {
    height: 180px;
  }
  
  .product-img {
    max-height: 120px;
  }
  
  .product-info {
    padding: 12px;
    text-align: center;
    align-items: center;
  }
  
  .product-name {
    font-size: 15px;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    width: 100%;
  }
  
  .product-price {
    font-size: 14px;
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
  }
  
  .btn-card-view {
    padding: 8px;
    font-size: 11px;
  }
  
  .wishlist-btn {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
  }
  
  .wishlist-btn svg {
    width: 14px !important;
    height: 14px !important;
  }
  
  .tab-btn {
    font-size: 22px;
    padding: 2px 8px;
  }
  
  .footer-content {
    display: none !important;
  }
  
  .about-story-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .trust-points-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .success-container {
    padding: 24px;
  }
  
  .success-actions {
    flex-direction: column;
  }

  /* Mobile Product Details Gallery Centering & Fitting */
  .breadcrumbs {
    text-align: center !important;
    padding: 0 16px !important;
    margin: 15px auto 0 !important;
  }

  .product-details-container {
    padding: 0 16px !important;
    gap: 30px !important;
    max-width: 100% !important;
    overflow-x: hidden;
  }

  .main-image-display {
    height: 320px !important;
    border-radius: var(--border-radius-md) !important;
    width: 100% !important;
    margin: 0 auto;
  }

  .main-image-display img {
    max-height: 260px !important;
    max-width: 90% !important;
    object-fit: contain;
  }

  .write-review-form {
    padding: 20px !important;
  }

  .footer-contact p {
    word-break: break-all;
    overflow-wrap: anywhere;
  }

  /* Global mobile page fit overrides */
  body, html {
    overflow-x: hidden;
    max-width: 100vw;
  }

  main {
    padding: 80px 12px 0 !important;
    overflow-x: hidden;
  }

  /* Shop page mobile centering */
  .shop-controls {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
    padding: 0 16px !important;
  }

  /* Cart and Checkout mobile compacting */
  .cart-container, .checkout-container {
    padding: 0 8px !important;
    gap: 24px !important;
    max-width: 100% !important;
  }

  .summary-panel, .checkout-form-panel {
    padding: 20px !important;
  }

  /* About page mobile centering */
  .about-hero {
    padding: 40px 16px !important;
  }

  .about-title {
    font-size: 32px !important;
    margin-bottom: 12px !important;
    text-align: center !important;
  }

  .about-content {
    padding: 0 16px !important;
  }

  .about-text {
    text-align: center !important;
  }

  .about-text h2 {
    font-size: 24px !important;
    text-align: center !important;
  }

  .about-img-box {
    padding: 20px !important;
    margin: 0 auto !important;
    max-width: 100% !important;
  }

  .about-img-box img {
    max-height: 220px !important;
  }

  /* Contact page mobile centering */
  .contact-info-panel {
    padding: 20px !important;
    text-align: center !important;
  }

  .contact-info-panel h2 {
    font-size: 24px !important;
    text-align: center !important;
  }

  .contact-info-panel p {
    margin-bottom: 24px !important;
  }

  .contact-item {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
  }

  .contact-item-icon {
    width: 56px !important;
    height: 56px !important;
    margin-bottom: 8px !important;
  }

  .contact-item-icon svg {
    width: 26px !important;
    height: 26px !important;
  }

  .contact-form-panel {
    padding: 20px !important;
  }

  /* Mobile AI Chat Panel Fitting */
  .ai-chat-panel {
    right: 12px !important;
    left: 12px !important;
    width: auto !important;
    max-width: none !important;
    bottom: 90px !important;
    height: calc(100vh - 180px) !important;
    max-height: 480px !important;
    border-radius: var(--border-radius-md) !important;
    box-shadow: var(--shadow-premium) !important;
  }

  .ai-chat-trigger {
    right: 16px !important;
    bottom: 20px !important;
  }

  /* Mobile Delivery Runway Styles */
  .delivery-runway-section {
    height: 90px;
    margin-top: 20px;
  }
  
  .delivery-road-line {
    bottom: 20px;
  }
  
  .delivery-truck-container {
    bottom: 20px;
    transform: scale(0.55);
    transform-origin: bottom left;
    animation-duration: 8s !important;
  }

  /* Mobile Bottom Featured Section Overrides */
  .bottom-featured-section {
    padding: 40px 16px 40px;
  }

  .bottom-featured-title {
    font-size: 24px !important;
    margin-bottom: 24px;
  }

  /* Mobile Cat Runway Overrides */
  .checkout-hero {
    height: 140px !important;
    min-height: 140px !important;
    margin-bottom: 15px !important;
  }
  .cat-runway {
    height: 140px !important;
  }
  .cat-road-line {
    bottom: 40px !important;
  }
  .cat-container {
    bottom: 40px !important;
    animation-duration: 6s !important;
    transform: scale(0.65) !important;
    transform-origin: bottom left !important;
  }
}

/* Flying Bug Styles */
.flying-bug {
  position: absolute;
  width: 22px;
  height: 22px;
  z-index: 99999;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.bug-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.bug-body {
  position: absolute;
  top: 3px;
  left: 5px;
  width: 12px;
  height: 16px;
  background: repeating-linear-gradient(
    0deg,
    #ffc107,
    #ffc107 3px,
    #212121 3px,
    #212121 6px
  );
  border-radius: 50% 50% 40% 40%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

/* Head */
.bug-body::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 2px;
  width: 8px;
  height: 6px;
  background: #212121;
  border-radius: 50% 50% 30% 30%;
}

/* Wings wrapper */
.bug-wings {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.wing {
  position: absolute;
  top: 4px;
  width: 10px;
  height: 14px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(200, 200, 200, 0.3);
  border-radius: 50%;
  transform-origin: center bottom;
}

.wing-left {
  left: -2px;
  transform: rotate(-30deg);
  animation: flapLeft 0.05s linear infinite alternate;
}

.wing-right {
  right: -2px;
  transform: rotate(30deg);
  animation: flapRight 0.05s linear infinite alternate;
}

@keyframes flapLeft {
  0% { transform: rotate(-30deg) rotateY(0deg); }
  100% { transform: rotate(-15deg) rotateY(75deg); }
}

@keyframes flapRight {
  0% { transform: rotate(30deg) rotateY(0deg); }
  100% { transform: rotate(15deg) rotateY(-75deg); }
}

/* Sitting State Overrides */
.flying-bug.sitting {
  position: absolute;
  top: -8px;
  right: -8px;
  left: auto;
  bottom: auto;
  transform: scale(0.95) rotate(-15deg) !important;
  animation: bugWiggle 3s ease-in-out infinite alternate !important;
  pointer-events: auto; /* allow clicking it */
  cursor: pointer;
}

.flying-bug.sitting .wing-left {
  animation: none !important;
  transform: rotate(-10deg) scaleX(0.7);
}

.flying-bug.sitting .wing-right {
  animation: none !important;
  transform: rotate(10deg) scaleX(0.7);
}

@keyframes bugWiggle {
  0%, 100% { transform: scale(0.95) rotate(-15deg) translateY(0); }
  50% { transform: scale(0.95) rotate(-10deg) translateY(-1px); }
}

/* Fishing Dock Animation Section */
.fishing-section {
  position: relative;
  width: 100%;
  height: 165px;
  overflow: visible;
  margin-top: 20px;
  background: transparent;
}

.fishing-water {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 5%, #1a1a1a 20%, #1a1a1a 80%, transparent 95%);
  opacity: 0.5;
  z-index: 2;
}

.water-wave {
  display: none !important;
}

@keyframes waveMotion {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fishing-boat-container {
  position: absolute;
  bottom: 20px;
  left: -300px;
  width: 180px;
  height: 65px;
  z-index: 3;
  transform: scale(2.2);
  transform-origin: bottom center;
  animation: boatSailAcross 16s linear infinite;
}

@keyframes boatSailAcross {
  0% {
    left: -300px;
  }
  100% {
    left: 100%;
  }
}

.boat-hull {
  position: absolute;
  bottom: 0;
  left: 10px;
  width: 160px;
  height: 30px;
  background: linear-gradient(135deg, #8D6E63, #5D4037);
  border-radius: 0 0 25px 25px;
  border-top: 3px solid #3E2723;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  z-index: 4;
}

/* Boat Boy */
.boat-boy {
  position: absolute;
  bottom: 12px; /* sits inside the hull */
  left: 32px;
  width: 30px;
  height: 50px;
  z-index: 3;
}

.boy-body {
  position: absolute;
  bottom: 0;
  left: 6px;
  width: 18px;
  height: 26px;
  background: #2b4c7e; /* Navy/Slate Blue Shirt */
  border-radius: 6px 6px 3px 3px;
  box-shadow: inset 2px 0 0 rgba(255,255,255,0.1);
}

.boy-head {
  position: absolute;
  bottom: 24px; /* relative to boy container bottom, sits right on body */
  left: 8px;
  width: 14px;
  height: 14px;
  background: #FFE8DF; /* Skin tone */
  border-radius: 50%;
}

.boy-cap {
  position: absolute;
  top: -4px;
  left: -2px;
  width: 18px;
  height: 6px;
  background: #212121; /* Charcoal cap */
  border-radius: 3px 3px 0 0;
}

.boy-cap::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -5px; /* Cap brim pointing forward */
  width: 7px;
  height: 2px;
  background: #212121;
  border-radius: 2px;
}

.boy-arm {
  position: absolute;
  top: 6px;
  left: 10px;
  width: 14px;
  height: 5px;
  background: #2b4c7e;
  border-radius: 3px;
  transform-origin: left center;
  transform: rotate(15deg);
}

/* Boat Girl */
.boat-girl {
  position: absolute;
  bottom: 12px; /* sits inside the hull */
  right: 32px;
  width: 30px;
  height: 50px;
  z-index: 3;
}

.girl-body {
  position: absolute;
  bottom: 0;
  left: 6px;
  width: 18px;
  height: 26px;
  background: var(--color-hot-pink); /* LEVERHUT Signature Pink Dress */
  border-radius: 6px 6px 3px 3px;
  box-shadow: inset 2px 0 0 rgba(255,255,255,0.1);
}

.girl-head {
  position: absolute;
  bottom: 24px; /* relative to girl container bottom, sits right on body */
  left: 8px;
  width: 14px;
  height: 14px;
  background: #FFE8DF; /* Skin tone */
  border-radius: 50%;
}

.girl-hair {
  position: absolute;
  top: -3px;
  left: -2px;
  width: 18px;
  height: 20px;
  background: #212121; /* Charcoal hair */
  border-radius: 9px 9px 4px 4px;
  z-index: -1;
}

.girl-hair::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 4px;
  width: 10px;
  height: 6px;
  background: #212121;
  border-radius: 3px;
}

.girl-arm {
  position: absolute;
  top: 6px;
  left: 6px;
  width: 14px;
  height: 5px;
  background: var(--color-hot-pink);
  border-radius: 3px;
  transform-origin: right center;
  transform: rotate(-15deg);
}

/* Girl's Handbag */
.girl-bag {
  position: absolute;
  left: -8px;
  top: -2px;
  width: 13px;
  height: 11px;
  background: #FFFFFF; /* Elegant white handbag */
  border: 1.5px solid var(--color-hot-pink); /* Pink piping */
  border-radius: 2.5px;
  z-index: 5;
}

.girl-bag::before {
  content: '';
  position: absolute;
  bottom: 9px;
  left: 1.5px;
  width: 7px;
  height: 6px;
  border: 1.5px solid var(--color-hot-pink); /* Matching pink handle/strap */
  border-bottom: none;
  border-radius: 4px 4px 0 0;
}

@media (max-width: 600px) {
  .fishing-section {
    height: 120px;
    margin-top: 10px;
  }
  .fishing-water {
    height: 1px;
    bottom: 15px;
  }
  .fishing-boat-container {
    bottom: 15px;
    transform: scale(1.3);
    transform-origin: bottom center;
  }
}

/* Glassmorphism Modern Notifications */
.glass-notification-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 10, 18, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.glass-notification-overlay.active {
  opacity: 1;
}
.glass-notification-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  padding: 32px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  transform: scale(0.9) translateY(12px);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--color-text-black, #1F1F1F);
}
.glass-notification-overlay.active .glass-notification-card {
  transform: scale(1) translateY(0);
}
.glass-notification-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(240, 90, 147, 0.12), rgba(240, 90, 147, 0.22));
  border: 1px solid rgba(240, 90, 147, 0.25);
  color: var(--color-hot-pink, #F05A93);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.glass-notification-title {
  font-family: var(--font-serif, sans-serif);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text-black, #1F1F1F);
  letter-spacing: -0.015em;
}
.glass-notification-message {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--color-text-muted, #6F6F6F);
  margin-bottom: 24px;
}
.glass-notification-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.glass-notification-btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}
.glass-notification-btn.primary {
  background: linear-gradient(135deg, var(--color-hot-pink, #F05A93), #d83d76);
  color: white;
  box-shadow: 0 4px 15px rgba(240, 90, 147, 0.3);
}
.glass-notification-btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(240, 90, 147, 0.4);
}
.glass-notification-btn.secondary {
  background: rgba(30, 24, 32, 0.08);
  color: var(--color-text-black, #1F1F1F);
  border: 1px solid rgba(30, 24, 32, 0.1);
}
.glass-notification-btn.secondary:hover {
  background: rgba(30, 24, 32, 0.12);
}

/* Testimonials Testimonial Section */
.testimonials-section {
  padding: 80px 24px;
  max-width: 1300px;
  margin: 40px auto 0;
  text-align: center;
}

.testimonials-container {
  width: 100%;
}

.testimonials-title {
  font-size: 36px;
  margin-bottom: 48px;
  position: relative;
  display: inline-block;
  font-family: var(--font-serif);
  color: var(--color-text-black);
}

.testimonials-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: var(--color-hot-pink);
}

.testimonials-title.lifting {
  animation: textSwingToBasket 2.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  pointer-events: none;
}

@keyframes textSwingToBasket {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  10% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  30% {
    transform: translate(var(--swing-mid-x), var(--swing-mid-y)) scale(0.85) rotate(-10deg);
    opacity: 1;
  }
  50% {
    transform: translate(var(--swing-basket-x), var(--swing-basket-y)) scale(0.65) rotate(10deg);
    opacity: 1;
  }
  65% {
    transform: translate(var(--swing-basket-x), var(--swing-basket-y-drop)) scale(0.4) rotate(15deg);
    opacity: 0;
  }
  75% {
    transform: translate(var(--swing-basket-x), var(--swing-basket-y-drop)) scale(0.4) rotate(15deg);
    opacity: 0;
  }
  90% {
    transform: translate(0, 30px) scale(0.95);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
}

.testimonials-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 24px;
  margin-top: 20px;
  padding-bottom: 16px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.testimonials-grid::-webkit-scrollbar {
  height: 6px;
}
.testimonials-grid::-webkit-scrollbar-track {
  background: rgba(240, 90, 147, 0.05);
  border-radius: 10px;
}
.testimonials-grid::-webkit-scrollbar-thumb {
  background: rgba(240, 90, 147, 0.25);
  border-radius: 10px;
}
.testimonials-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(240, 90, 147, 0.45);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    gap: 16px;
  }
}

.testimonial-card {
  flex: 0 0 calc(25% - 18px);
  min-width: 250px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  transition: var(--transition-slow);
}

@media (max-width: 1024px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 8px);
    min-width: 200px;
  }
}

.testimonial-avatar-wrapper {
  position: relative;
  margin-bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.testimonial-avatar {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  object-fit: cover;
  border: 2px solid var(--color-light-rose);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.testimonial-avatar-placeholder {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-peach), var(--color-light-rose));
  color: var(--color-hot-pink);
  font-weight: 700;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-white);
  box-shadow: 0 6px 16px rgba(240, 90, 147, 0.15);
}

.testimonial-stars {
  margin-bottom: 16px;
  color: #FFB800;
  font-size: 14px;
}

.testimonial-comment {
  font-size: 14.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-black);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .testimonials-grid {
    gap: 12px;
  }

  .testimonial-card {
    flex: 0 0 calc(50% - 6px);
    min-width: 140px;
    padding: 16px 8px;
    border-radius: 16px;
  }

  .testimonial-avatar-placeholder {
    font-size: 22px;
  }

  .testimonials-section {
    padding: 40px 10px;
  }

  .testimonial-avatar-wrapper {
    margin-bottom: 12px;
  }

  .testimonial-stars {
    font-size: 10px;
    margin-bottom: 8px;
  }

  .testimonial-comment {
    font-size: 11.5px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .testimonial-name {
    font-size: 11px;
  }
}


