/* ===== VH Magnet – Custom Styles ===== */

/* ---------- CSS Variables / Design Tokens ---------- */
:root {
  --clr-bg: #FFFFFF;
  --clr-bg-alt: #F8FAFC;
  --clr-surface: #FFFFFF;
  --clr-border: #E2E8F0;
  --clr-text: #1A1A1A;
  --clr-text-muted: #64748B;
  --clr-primary: #1F4E9E;
  --clr-secondary: #E6392F;
  --clr-accent: #E6392F;
  --clr-success: #25d366;
  --clr-whatsapp: #25d366;
  --gradient-brand: #1F4E9E;
  --gradient-hero: #FAFAFA;
  --shadow-glow: 0 10px 40px -10px rgba(31, 78, 158, 0.2);
  --radius: 0;
  --radius-sm: 0;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #1F4E9E;
}

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

a:hover {
  color: var(--clr-secondary);
}

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

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ---------- Glassmorphism Card ---------- */
.glass-card {
  background: var(--clr-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: none;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(230, 57, 47, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(230, 57, 47, 0.55);
  color: #fff;
}

.btn-whatsapp {
  background: var(--clr-whatsapp);
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

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

.btn-outline {
  background: transparent;
  border: 2px solid var(--clr-accent);
  color: var(--clr-accent);
}

.btn-outline:hover {
  background: var(--clr-accent);
  color: var(--clr-bg);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: background var(--transition), padding var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--clr-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo span {
  color: var(--clr-accent);
}

.nav-logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--clr-text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-accent);
  transition: width var(--transition);
}

.nav-links a.btn::after {
  display: none;
}

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

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

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--clr-text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    max-width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    border-left: 1px solid rgba(31, 78, 158, 0.25);
    box-shadow: -8px 0 32px rgba(31, 78, 158, 0.1),
      inset 0 0 80px rgba(255, 255, 255, 0.05);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    color: var(--clr-text);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.3);
  }

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

/* ---------- Hero Section ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero-bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 8s ease-in-out infinite;
}

.hero-bg-orb--1 {
  width: 500px;
  height: 500px;
  background: var(--clr-primary);
  top: -10%;
  left: -10%;
}

.hero-bg-orb--2 {
  width: 400px;
  height: 400px;
  background: var(--clr-secondary);
  bottom: -15%;
  right: -5%;
  animation-delay: 3s;
}

.hero-bg-orb--3 {
  width: 250px;
  height: 250px;
  background: var(--clr-accent);
  top: 40%;
  right: 20%;
  animation-delay: 5s;
}

@keyframes float {

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

  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  background: rgba(230, 212, 55, 0.15);
  border: 1px solid rgba(230, 212, 55, 0.3);
  font-size: 0.85rem;
  color: var(--clr-accent);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  margin-bottom: 1.25rem;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Featured Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 850px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.product-card-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius) var(--radius) 0 0;
}

.product-card-body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.product-card-body p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  flex: 1;
}

.product-card-price {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--clr-accent);
  margin-bottom: 1rem;
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  text-align: center;
}

.step-card {
  padding: 2rem 1.5rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-primary);
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  padding: 2rem;
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--clr-text-muted);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Section Headings ---------- */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--clr-text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ---------- About Page ---------- */
.about-hero {
  padding: 8rem 0 4rem;
  background: var(--gradient-hero);
  text-align: center;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.about-hero p {
  color: var(--clr-text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.1rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.value-card {
  padding: 2rem;
  text-align: center;
}

.value-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(31, 78, 158, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--clr-text-muted);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
}

.trust-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

/* ---------- Product Detail Page ---------- */
.product-detail {
  padding: 7rem 0 4rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.product-detail-img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: contain;
  background: #fff;
  aspect-ratio: 1;
}

.product-detail-info h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.product-detail-info .description {
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* Size Selector */
.option-group {
  margin-bottom: 1.75rem;
}

.option-label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  color: var(--clr-text);
}

.size-options {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.size-btn {
  padding: 0.6rem 1.25rem;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--clr-text-muted);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
}

.size-btn:hover {
  border-color: var(--clr-accent);
  color: var(--clr-text);
}

.size-btn.active {
  border-color: var(--clr-primary);
  background: rgba(230, 57, 47, 0.15);
  color: var(--clr-text);
  box-shadow: 0 0 12px rgba(230, 57, 47, 0.25);
}

/* Quantity Stepper */
.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 2px solid var(--clr-border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.qty-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--clr-text);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--transition);
}

.qty-btn:hover {
  background: rgba(230, 57, 47, 0.15);
}

.qty-value {
  width: 56px;
  text-align: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  background: transparent;
  color: var(--clr-text);
  -moz-appearance: textfield;
  appearance: textfield;
}

.qty-value::-webkit-inner-spin-button,
.qty-value::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

/* Image Upload */
.upload-area {
  border: 2px dashed var(--clr-border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.upload-area:hover,
.upload-area.dragover {
  border-color: var(--clr-accent);
  background: rgba(230, 57, 47, 0.06);
}

.upload-area input[type="file"] {
  display: none;
}

/* ---------- Photo Editor Modal ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: var(--clr-surface);
  width: 100%;
  max-width: 500px;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  /* Ensure it fits on mobile */
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: var(--clr-text);
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--clr-text-muted);
}

.modal-body {
  flex: 1;
  position: relative;
  background: #000;
  min-height: 300px;
  /* Minimum height for cropper */
  overflow: hidden;
}

/* Cropper Container overrides */
.cropper-container {
  width: 100%;
  height: 100%;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--clr-surface);
}

.shape-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.shape-buttons {
  display: flex;
  gap: 0.5rem;
}

.control-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  min-width: 42px;
}

.ratio-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ratio-buttons {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.ratio-btn {
  padding: 0.35rem 0.7rem;
  border: 2px solid var(--clr-border);
  background: var(--clr-bg-alt);
  border-radius: 2rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  color: var(--clr-text-muted);
  transition: all 0.2s;
  white-space: nowrap;
}

.ratio-btn:hover {
  border-color: var(--clr-accent);
  color: var(--clr-primary);
}

.ratio-btn.active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(31, 78, 158, 0.3);
}

.shape-btn {
  width: 40px;
  height: 40px;
  border: 2px solid var(--clr-border);
  background: var(--clr-bg-alt);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--clr-text-muted);
  border-radius: 0.5rem;
}

.shape-btn:hover {
  border-color: var(--clr-accent);
  color: var(--clr-primary);
}

.shape-btn.active {
  background: var(--clr-primary);
  border-color: var(--clr-primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(31, 78, 158, 0.3);
}

.action-buttons {
  display: flex;
  gap: 1rem;
}

.btn-secondary {
  background: var(--clr-bg-alt);
  color: var(--clr-text);
  border: 1px solid var(--clr-border);
}

.btn-secondary:hover {
  background: var(--clr-border);
}


/* Masks for Cropper View Box */
.cropper-view-box {
  outline: 2px solid #fff;
  outline-color: rgba(255, 255, 255, 0.75);
}

.mask-circle .cropper-view-box {
  border-radius: 50%;
  outline: 0 !important;
  box-shadow: 0 0 0 100vw rgba(0, 0, 0, 0.5);
  /* Dim outside */
}

/* Heart Mask - using clip-path on the view-box */
.mask-heart .cropper-view-box {
  clip-path: path("M124.7 13.9c-29.9-29.3-78.5-29.3-108.4 0-29.9 29.3-29.9 76.8 0 106.1l97.6 95.8c6 5.9 15.6 5.9 21.6 0l97.6-95.8c29.9-29.3 29.9-76.8 0-106.1-30-29.3-78.5-29.3-108.4 0z");
  /* NOTE: standard fa-heart SVG path scaled or unified. 
     Cropper's view-box matches the crop box size. 
     We need a clip-path that fits a square 0..1 coordinate system or use an SVG mask. 
     clip-path: url(#heart-clip); is best if we can inject SVG.
     Let's try a responsive polygon approx or basic CSS shape for reliable rendering without extra SVG.
  */
  clip-path: polygon(50% 100%, 0 40%, 20% 0, 50% 30%, 80% 0, 100% 40%);
  /* Better Heart Path for CSS Clip Path (0-1 coords): */
  clip-path: path("M 0.5,1 C 0.5,1 0,0.7 0,0.3 A 0.25,0.25 0 0 1 0.5,0.15 A 0.25,0.25 0 0 1 1,0.3 C 1,0.7 0.5,1 0.5,1 Z");
  /* The above path is tricky. Let's use the standard SVG one in the JS injection or an image mask. */
  outline: 0 !important;
  box-shadow: none;
  /* box-shadow doesn't work well with clip-path on the same element */
}

/* To simulate the "dimmed" outside for shapes like heart/circle effectively, 
   we can also stick to using the cropper 'round' logic which just does radius.
   For heart, we simply enforce the crop result to be masked later, 
   BUT the user wants to see it. 
   We will rely on JS to inject the specific clip-path style based on aspect ratio.
*/


.upload-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.upload-area p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

.upload-area .upload-hint {
  font-size: 0.8rem;
  margin-top: 0.5rem;
  color: var(--clr-text-muted);
  opacity: 0.7;
}

.image-preview {
  margin-top: 1rem;
  display: none;
  position: relative;
}

.image-preview img {
  max-height: 180px;
  border-radius: var(--radius-sm);
  margin: 0 auto;
  border: 2px solid var(--clr-accent);
}

.image-preview .remove-img {
  position: absolute;
  top: -8px;
  right: calc(50% - 100px);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-secondary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

/* Price Display */
.price-display {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  margin: 1.5rem 0;
}

.price-display .currency {
  font-size: 1.2rem;
  vertical-align: super;
  color: var(--clr-text-muted);
}

/* Order Note */
.order-note {
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--clr-text-muted);
  margin-top: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.order-note svg {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--clr-bg-alt);
  border-top: 1px solid var(--clr-border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand .nav-logo {
  margin-bottom: 0.75rem;
}

.footer-brand p {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

.footer-col h4 {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: var(--clr-text);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--clr-text-muted);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--clr-accent);
}

.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: 1.5rem;
  text-align: center;
  color: var(--clr-text-muted);
  font-size: 0.85rem;
}

/* ---------- Scroll Animations ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--clr-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ---------- Toast Notification ---------- */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--clr-bg-alt);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-sm);
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  z-index: 10000;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

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

.toast.error {
  border-color: rgba(239, 68, 68, 0.5);
  color: #FCA5A5;
}

.toast.success {
  border-color: rgba(34, 197, 94, 0.5);
  color: #86EFAC;
}

/* ---------- Mobile Optimizations ---------- */
@media (max-width: 640px) {
  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .hero {
    padding: 5rem 0 3rem;
  }

  .product-detail {
    padding: 5rem 0 2rem;
  }

  .product-detail-grid {
    gap: 2rem;
  }

  .hero h1 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .product-grid {
    gap: 1rem;
  }

  .footer-grid {
    gap: 2rem;
  }
}