/* Custom Wepink Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --wepink-pink: #FF007F;
  --wepink-hot-pink: #E60072;
  --wepink-light-pink: #FFF0F6;
  --wepink-gold: #D4AF37;
  --wepink-dark: #1F1F1F;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #222222;
  background-color: #FFFFFF;
  -webkit-tap-highlight-color: transparent;
}

/* Wepink Custom Font Styles */
.font-wepink-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.font-serif-luxury {
  font-family: 'Playfair Display', serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #FF007F;
  border-radius: 4px;
}

/* Top Notification Banner Ticker */
.top-ticker {
  background-color: #FF007F;
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.3;
}

/* Badge Dourado Circular 'Best Sellers' */
.gold-badge {
  background: radial-gradient(circle, #DEB887 0%, #C5A059 50%, #9E7B35 100%);
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(197, 160, 89, 0.35);
}

/* Hero Carousel Backgrounds */
.hero-gradient-perfumaria {
  background: linear-gradient(135deg, #FFB6DB 0%, #FF85C4 45%, #FF4D9D 100%);
}

.sparkle-star {
  position: absolute;
  pointer-events: none;
  animation: pulse-glow 2.5s infinite ease-in-out;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15) rotate(15deg); }
}

/* Rounded Price Callout on Hero */
.hero-price-bubble {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 9999px;
  box-shadow: 0 10px 25px rgba(230, 0, 114, 0.18);
  backdrop-filter: blur(8px);
}

/* Pink Button Glowing Hover */
.btn-wepink {
  background-color: #FF007F;
  color: #FFFFFF;
  font-weight: 700;
  transition: all 0.2s ease;
}
.btn-wepink:hover {
  background-color: #E60072;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(255, 0, 127, 0.35);
}
.btn-wepink:active {
  transform: scale(0.98);
}

/* Pink Outline Button */
.btn-wepink-outline {
  border: 1.5px solid #FF007F;
  color: #FF007F;
  background-color: #FFFFFF;
  font-weight: 700;
  transition: all 0.2s ease;
}
.btn-wepink-outline:hover {
  background-color: #FFF0F6;
}

/* Horizontal Scroll Container without scrollbar */
.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Pink Section Header */
.section-title-pink {
  color: #FF007F;
  font-weight: 800;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
}

/* Cart Drawer Animation */
.cart-drawer-backdrop {
  transition: opacity 0.3s ease;
}
.cart-drawer-panel {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Destaque do mês Section Box */
.destaque-pink-box {
  background-color: #FF007F;
  color: #FFFFFF;
}
