/* Glow Theme - Beauty & Cosmetics */
/* Soft, feminine design for skincare and beauty brands */

@import url('https://fonts.googleapis.com/css2?family=Tenor+Sans&family=DM+Sans:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --primary: #EC4899;
  --primary-rgb: 236, 72, 153;
  --primary-dark: #DB2777;
  --hov-primary: #DB2777;
  --soft-primary: rgba(236, 72, 153, 0.1);
  --secondary: #BE185D;
  --accent: #F9A8D4;
  --success: #34D399;
  --warning: #FBBF24;
  --danger: #F87171;
  --light: #FDF2F8;
  --dark: #1F1F1F;
  --gray: #9CA3AF;
  --gray-light: #D1D5DB;
  --background: #FFFBFC;
  --card-bg: #FFFFFF;
  --border-color: #FBCFE8;
  --border-radius: 16px;
  --header-bg: #FFFFFF;
  --footer-bg: #1F1F1F;
  --font-primary: 'DM Sans', sans-serif;
  --font-heading: 'Tenor Sans', sans-serif;
  --font-accent: 'Cormorant Garamond', serif;
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
}

body {
  font-family: var(--font-primary);
  background: var(--background);
  color: var(--dark);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

/* Header */
.top-navbar, header, .header {
  background: var(--header-bg) !important;
  border-bottom: 1px solid rgba(236, 72, 153, 0.15);
}

.navbar-brand, .logo-text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--dark) !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.nav-link {
  font-weight: 500;
  color: var(--dark) !important;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* Buttons */
.btn-primary, .btn-landing-primary {
  background: var(--primary);
  border: none;
  border-radius: var(--radius-xl);
  font-weight: 600;
  padding: 0.875rem 2rem;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: var(--radius-xl);
}

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

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  border-radius: var(--radius-xl);
}

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

/* Cards */
.card, .product-card {
  background: var(--card-bg);
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(236, 72, 153, 0.08);
  transition: all 0.4s ease;
}

.card:hover, .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(236, 72, 153, 0.15);
}

.product-card .product-image {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.product-card img {
  transition: transform 0.5s ease;
}

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

.product-card .product-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.product-card .product-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.125rem;
}

/* Hero Section */
.hero-section, .banner-section {
  background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 50%, #FBCFE8 100%);
  position: relative;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23EC4899' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/svg%3E");
}

/* Categories */
.category-card {
  background: var(--card-bg);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid transparent;
}

.category-card:hover {
  border-color: var(--accent);
  background: #FDF2F8;
}

.category-card i {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

/* Footer */
footer, .footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}

footer h5, .footer h5, .footer-title {
  color: var(--accent);
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

footer a, .footer a {
  color: rgba(255,255,255,0.7);
}

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

/* Override primary background color for navbar */
.bg-primary {
  background-color: var(--primary) !important;
}

/* Badges */
.badge-primary, .badge.bg-primary {
  background: var(--primary) !important;
  border-radius: var(--radius-xl);
}

.badge-sale {
  background: var(--accent);
  color: var(--dark);
  font-weight: 600;
}

/* Forms */
.form-control {
  border: 1px solid #F9A8D4;
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.25rem;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.1);
}

/* Section styling */
.section-title {
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: var(--primary);
}

/* Accent backgrounds */
.accent-bg {
  background: linear-gradient(135deg, #FDF2F8 0%, #FCE7F3 100%);
}

/* Price styling */
.price-tag {
  font-family: var(--font-primary);
  font-weight: 600;
  color: var(--primary);
}

.old-price {
  color: var(--gray);
  text-decoration: line-through;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeIn 0.5s ease-out;
}
