/* Divi Fashions v2 Bold & Vibrant Design System */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

/* ========================
   CSS CUSTOM PROPERTIES
   ======================== */
:root {
  /* Primary Colors */
  --color-primary: #FF2D7B;
  --color-primary-light: #FF6B9D;
  --color-primary-dark: #E91E63;
  --color-purple: #9333EA;
  --color-purple-light: #A855F7;
  --color-orange: #F97316;
  --color-teal: #14B8A6;
  
  /* Neutrals */
  --color-gray-50: #F8FAFC;
  --color-gray-100: #F1F5F9;
  --color-gray-200: #E2E8F0;
  --color-gray-300: #CBD5E1;
  --color-gray-400: #94A3B8;
  --color-gray-500: #64748B;
  --color-gray-600: #475569;
  --color-gray-700: #334155;
  --color-gray-800: #1E293B;
  --color-gray-900: #0F172A;
  
  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Spacing */
  --radius-sm: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 250ms ease;
  --transition-slow: 350ms ease;
}

/* ========================
   BASE STYLES
   ======================== */
body {
  font-family: var(--font-body);
  color: var(--color-gray-800);
  background: var(--color-gray-50);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .heading {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

/* ========================
   GRADIENTS
   ======================== */
.gradient-pink {
  background: linear-gradient(135deg, #FF2D7B 0%, #FF6B9D 100%);
}

.gradient-pink-purple {
  background: linear-gradient(135deg, #FF2D7B 0%, #9333EA 100%);
}

.gradient-pink-orange {
  background: linear-gradient(135deg, #FF2D7B 0%, #F97316 100%);
}

.gradient-purple {
  background: linear-gradient(135deg, #9333EA 0%, #6366F1 100%);
}

.gradient-teal {
  background: linear-gradient(135deg, #14B8A6 0%, #06B6D4 100%);
}

.gradient-amber {
  background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
}

/* Text Gradients */
.text-gradient-pink {
  background: linear-gradient(135deg, #FF2D7B 0%, #9333EA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================
   SHADOWS
   ======================== */
.shadow-pink {
  box-shadow: 0 10px 40px -10px rgba(255, 45, 123, 0.25);
}

.shadow-pink-lg {
  box-shadow: 0 20px 60px -15px rgba(255, 45, 123, 0.3);
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.shadow-md {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* ========================
   BUTTONS
   ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.btn-primary {
  background: linear-gradient(135deg, #FF2D7B 0%, #FF6B9D 100%);
  color: white;
  box-shadow: 0 10px 40px -10px rgba(255, 45, 123, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px -15px rgba(255, 45, 123, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--color-gray-700);
  border: 2px solid var(--color-gray-200);
}

.btn-secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(255, 45, 123, 0.05);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
  border-radius: var(--radius-2xl);
}

/* ========================
   CARDS
   ======================== */
.card {
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.card:hover {
  box-shadow: 0 10px 40px -10px rgba(255, 45, 123, 0.15);
}

.card-product:hover {
  transform: translateY(-4px);
}

/* ========================
   BADGES & CHIPS
   ======================== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 9999px;
}

.badge-primary {
  background: linear-gradient(135deg, #FF2D7B 0%, #FF6B9D 100%);
  color: white;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  font-size: 0.6875rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================
   INPUTS
   ======================== */
.input {
  width: 100%;
  padding: 0.875rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--color-gray-800);
  background: white;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-lg);
  transition: all var(--transition-fast);
}

.input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(255, 45, 123, 0.1);
}

.input::placeholder {
  color: var(--color-gray-400);
}

/* ========================
   NAVIGATION
   ======================== */
.nav-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-gray-100);
}

.nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-lg);
  color: var(--color-gray-700);
  transition: all var(--transition-fast);
}

.nav-icon:hover {
  background: rgba(255, 45, 123, 0.05);
  color: var(--color-primary);
}

.nav-icon .badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 1.25rem;
  height: 1.25rem;
  padding: 0 4px;
  font-size: 0.6875rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FF2D7B 0%, #9333EA 100%);
  color: white;
  border-radius: 9999px;
}

/* ========================
   PRODUCT CARDS
   ======================== */
.product-card {
  position: relative;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-normal);
}

.product-card:hover {
  box-shadow: 0 10px 40px -10px rgba(255, 45, 123, 0.15);
}

.product-image {
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  background: linear-gradient(to top, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
  transform: translateY(100%);
  transition: transform var(--transition-normal);
}

.product-card:hover .quick-add {
  transform: translateY(0);
}

.discount-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #FF2D7B 0%, #FF6B9D 100%);
  color: white;
  border-radius: var(--radius-md);
}

.wishlist-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.9);
  border-radius: 50%;
  transition: all var(--transition-fast);
}

.wishlist-btn:hover {
  background: white;
  color: var(--color-primary);
}

/* ========================
   PRICE STYLES
   ======================== */
.price-current {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-gray-900);
}

.price-original {
  font-size: 0.875rem;
  color: var(--color-gray-400);
  text-decoration: line-through;
}

.price-savings {
  font-size: 0.75rem;
  font-weight: 600;
  color: #10B981;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
  position: relative;
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #FF2D7B 0%, #9333EA 100%);
  border-radius: var(--radius-2xl);
  overflow: hidden;
}

.hero-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  filter: blur(3rem);
}

/* ========================
   SECTIONS
   ======================== */
.section-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gray-900);
}

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

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

.animate-fade-in {
  animation: fadeIn var(--transition-normal) ease forwards;
}

.animate-slide-up {
  animation: slideUp var(--transition-slow) ease forwards;
}

/* ========================
   UTILITIES
   ======================== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}