:root {
  --primary-color: #EE434E;
  --primary-dark: #D32F3A;
  --secondary-color: #111827;
  --accent-color: #10B981;
  --bg-light: #F9FAFB;
  --border-color: #E5E7EB;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #1F2937;
  background-color: #FFFFFF;
}

h1, h2, h3, h4, .font-heading {
  font-family: 'Jost', 'Poppins', sans-serif;
}

/* Swatch Styling */
.color-swatch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border: 1.5px solid #D1D5DB;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #FFFFFF;
  user-select: none;
}

.color-swatch-btn:hover {
  border-color: #111827;
}

.color-swatch-btn.active {
  border-color: #111827;
  background-color: #111827;
  color: #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.swatch-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
  border: 1px solid rgba(0,0,0,0.15);
}

/* Size Buttons */
.size-btn {
  padding: 8px 16px;
  border: 1.5px solid #D1D5DB;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #FFFFFF;
  user-select: none;
}

.size-btn:hover {
  border-color: #111827;
}

.size-btn.active {
  border-color: #111827;
  background-color: #111827;
  color: #FFFFFF;
}

/* Gallery Thumbnails */
.gallery-thumb {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.gallery-thumb:hover {
  opacity: 0.85;
}

.gallery-thumb.active {
  border-color: #EE434E;
  box-shadow: 0 2px 8px rgba(238, 67, 78, 0.25);
}

/* Urgency Pulse */
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981;
  border-radius: 50%;
  display: inline-block;
  animation: pulse-animation 1.5s infinite;
}

@keyframes pulse-animation {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* Sticky Bottom Order Bar */
.sticky-order-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  border-top: 1px solid #E5E7EB;
  padding: 10px 16px;
  z-index: 50;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.sticky-order-bar.visible {
  transform: translateY(0);
}

/* TikTok Responsive Container */
.tiktok-embed-card {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background-color: #25D366;
  color: #FFFFFF;
  border-radius: 50px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 40;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

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

/* Custom Scrollbars */
.custom-scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.custom-scroll::-webkit-scrollbar-track {
  background: #F3F4F6;
}
.custom-scroll::-webkit-scrollbar-thumb {
  background: #D1D5DB;
  border-radius: 3px;
}
