/* Diseño completamente nuevo con rosa y blanco, sensual y elegante */

/* ============================================
   VARIABLES - Rosa y Blanco Elegante
   ============================================ */
:root {
  --primary-pink: #ffb6c1;
  --rose-elegant: #ffc0cb;
  --deep-rose: #ff69b4;
  --soft-white: #ffffff;
  --off-white: #fff5f7;
  --pearl: #f8f8ff;
  --charcoal: #2c2c2c;
  --soft-gray: #e5e5e5;
  --gold-accent: #d4af7a;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   CATEGORY FILTERS
   ============================================ */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 80px; /* queda debajo del navbar fijo */
  z-index: 1050;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  margin: 0 auto 1rem auto;
}

.category-btn {
  padding: 0.6rem 1.3rem;
  border: 2px solid var(--rose-elegant);
  background-color: transparent;
  color: var(--deep-rose);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.category-btn:hover {
  background-color: var(--rose-elegant);
  color: var(--soft-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.category-btn.active {
  background-color: var(--deep-rose);
  color: var(--soft-white);
  border-color: var(--deep-rose);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

/* Animación fade-in para los productos */
.fade-in {
  animation: fadeInUp 0.5s ease-out;
}

@media (max-width: 768px) {
  .category-filters {
    gap: 0.5rem;
  }

  .category-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--charcoal);
  background-color: var(--soft-white);
  line-height: 1.7;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.5px;
}

a {
  transition: var(--transition);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ============================================
   NAVBAR - Minimalista y Elegante
   ============================================ */
.navbar {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.2rem 0;
  box-shadow: 0 2px 20px rgba(255, 182, 193, 0.08);
  transition: var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(255, 182, 193, 0.15);
}

/* Mejorando el diseño del logo con un wrapper elegante */
.logo-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 105, 180, 0.2), rgba(255, 182, 193, 0.3));
  border-radius: 50%;
  animation: pulse-logo 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse-logo {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.15);
    opacity: 0.4;
  }
}

.logo-img {
  height: 55px;
  width: 55px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.navbar-brand:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.5);
}

.brand-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--deep-rose), var(--primary-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.navbar-brand:hover .brand-text {
  letter-spacing: 1px;
}

.navbar-nav .nav-link {
  color: var(--charcoal);
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  position: relative;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background: linear-gradient(90deg, var(--deep-rose), var(--primary-pink));
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--deep-rose);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 70%;
}

.navbar-toggler {
  border: 2px solid var(--primary-pink);
  padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 182, 193, 0.25);
}

/* ============================================
   HERO SECTION - Limpio y Sofisticado
   ============================================ */
/* Agregando estilos para el hero con imagen de fondo */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--off-white) 0%, var(--soft-white) 50%, #fff0f5 100%);
  padding: 120px 0 80px;
  position: relative;
}

/* Reduciendo la opacidad del overlay para que se vea mejor la imagen de fondo */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.65) 0%,
    rgba(255, 245, 247, 0.55) 50%,
    rgba(255, 240, 245, 0.5) 100%
  );
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 2rem 0;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--deep-rose), var(--primary-pink), var(--rose-elegant));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-style: italic;
}

.hero-description {
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--deep-rose), var(--primary-pink));
  border: none;
  color: white;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 105, 180, 0.4);
  background: linear-gradient(135deg, var(--primary-pink), var(--deep-rose));
}

.btn-outline-primary {
  border: 2px solid var(--deep-rose);
  color: var(--deep-rose);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--deep-rose);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 105, 180, 0.3);
}

.hero-image-container {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-decoration {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 192, 203, 0.3));
  border-radius: 50%;
  filter: blur(60px);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

/* ============================================
   SECTIONS - Espaciado y Etiquetas
   ============================================ */
.section-label {
  display: inline-block;
  color: var(--deep-rose);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--charcoal);
  margin-bottom: 1rem;
  font-weight: 700;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #666;
  margin-bottom: 1rem;
}

.brands-text {
  font-size: 0.9rem;
  color: #999;
  font-style: italic;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background-color: var(--soft-white);
}

.about-image-wrapper img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.about-section .lead {
  font-size: 1.2rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #555;
}

.feature-item i {
  color: var(--deep-rose);
  font-size: 1.2rem;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  border: 1px solid rgba(255, 182, 193, 0.1);
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.15);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 192, 203, 0.3));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.feature-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--deep-rose);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: #666;
  margin-bottom: 0;
}

/* ============================================
   CATALOG SECTION - Tarjetas Grandes
   ============================================ */
.catalog-section {
  background: linear-gradient(180deg, #fff0f5 0%, var(--soft-white) 100%);
}

.product-card-new {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(255, 182, 193, 0.1);
}

.product-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.product-image-new {
  position: relative;
  height: 350px;
  background: linear-gradient(135deg, #fff5f7, #fff0f5);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-new img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Cambiado de 'cover' a 'contain' para que la imagen se vea completa sin cortarse */
  transition: var(--transition);
}

.product-card-new:hover .product-image-new img {
  transform: scale(1.05);
}

/* Haciendo el badge más pequeño y reposicionándolo arriba a la izquierda */
.promo-badge-new {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(135deg, #ff1493, #ff69b4);
  color: white;
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.4);
  z-index: 2;
}

.product-content-new {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-name-new {
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}

.product-price-new {
  font-size: 2rem;
  color: var(--deep-rose);
  font-weight: 800;
  margin-bottom: 1rem;
  font-family: "Playfair Display", serif;
}

.product-description-new {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-whatsapp-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp-new:hover {
  background: linear-gradient(135deg, #128c7e, #25d366);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
  color: white;
}

.btn-whatsapp-new i {
  font-size: 1.4rem;
}

/* Media query para mobile: Ajustar altura para que se adapte mejor y evitar cortes */
@media (max-width: 767px) {
  .product-image-new {
    height: 250px; /* Reducir altura en mobile para mejor proporción */
  }
}

/* ============================================
   INFO SECTION
   ============================================ */
.info-section {
  background-color: var(--soft-white);
}

.info-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  text-align: center;
  border: 1px solid rgba(255, 182, 193, 0.1);
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.15);
}

.info-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(255, 182, 193, 0.2), rgba(255, 192, 203, 0.3));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.info-icon-wrapper i {
  font-size: 2.5rem;
  color: var(--deep-rose);
}

.info-card:hover .info-icon-wrapper {
  transform: scale(1.1);
}

.info-card h4 {
  font-size: 1.3rem;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.info-card p {
  color: #666;
  margin-bottom: 0;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
  background: linear-gradient(180deg, #fff0f5 0%, var(--soft-white) 100%);
}

.contact-card-new {
  display: block;
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  text-align: center;
  text-decoration: none;
  border: 1px solid rgba(255, 182, 193, 0.1);
}

.contact-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(255, 105, 180, 0.2);
}

.contact-icon-new {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--deep-rose), var(--primary-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}

.contact-icon-new i {
  font-size: 2.5rem;
  color: white;
}

.contact-card-new:hover .contact-icon-new {
  transform: scale(1.15) rotate(10deg);
}

.contact-card-new h4 {
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.contact-card-new p {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.contact-link {
  color: var(--deep-rose);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: linear-gradient(180deg, var(--charcoal) 0%, #1a1a1a 100%);
  color: #ccc;
}

.footer-logo {
  height: 60px;
  width: 60px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary-pink);
}

/* Agregando estilos para mejorar legibilidad del footer */
.footer-heading {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-text {
  color: #d1d1d1;
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-divider {
  border-color: rgba(255, 182, 193, 0.2);
  opacity: 1;
}

.footer h5 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 182, 193, 0.1);
  color: var(--primary-pink);
  font-size: 1.2rem;
  transition: var(--transition);
  border: 1px solid rgba(255, 182, 193, 0.2);
}

.social-link:hover {
  background: linear-gradient(135deg, var(--deep-rose), var(--primary-pink));
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 105, 180, 0.3);
}

.footer-links {
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #d1d1d1;
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--primary-pink);
  padding-left: 5px;
}

.developer-link {
  color: var(--primary-pink);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.developer-link:hover {
  color: var(--deep-rose);
  text-decoration: underline;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.btn-back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--deep-rose), var(--primary-pink));
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  box-shadow: 0 8px 25px rgba(255, 105, 180, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.btn-back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(255, 105, 180, 0.6);
}

/* ============================================
   SCROLLBAR
   ============================================ */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--deep-rose), var(--primary-pink));
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--primary-pink), var(--deep-rose));
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
  background-color: var(--primary-pink);
  color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
  .hero-buttons {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image-container {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .product-card-new .row {
    flex-direction: column;
  }

  .product-image-new {
    height: 300px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .btn-back-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.98);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 576px) {
  .logo-wrapper {
    width: 50px;
    height: 50px;
  }

  .logo-img {
    height: 45px;
    width: 45px;
  }

  .brand-text {
    font-size: 1.2rem;
  }

  .product-name-new {
    font-size: 1.5rem;
  }

  .product-price-new {
    font-size: 1.7rem;
  }

  /* Ajustando tamaño del badge en móvil */
  .promo-badge-new {
    font-size: 0.55rem;
    padding: 3px 8px;
  }
}

/* ============================================
   SMOOTH SCROLL
   ============================================ */
html {
  scroll-behavior: smooth;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   CATEGORY FILTERS
   ============================================ */
.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  position: sticky;
  top: 80px; /* queda debajo del navbar fijo */
  z-index: 1050;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  margin: 0 auto 1rem auto;
}

.category-btn {
  padding: 0.6rem 1.3rem;
  border: 2px solid var(--rose-elegant);
  background-color: transparent;
  color: var(--deep-rose);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 25px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.category-btn:hover {
  background-color: var(--rose-elegant);
  color: var(--soft-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 105, 180, 0.3);
}

.category-btn.active {
  background-color: var(--deep-rose);
  color: var(--soft-white);
  border-color: var(--deep-rose);
  box-shadow: 0 6px 20px rgba(255, 105, 180, 0.4);
}

/* Animación fade-in para los productos */
.fade-in {
  animation: fadeInUp 0.5s ease-out;
}

@media (max-width: 768px) {
  .category-filters {
    gap: 0.5rem;
  }

  .category-btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
  }
}





/* Tarjetas sin stock */
.product-card-new.out-of-stock {
    opacity: 0.5;
    filter: grayscale(100%);
    pointer-events: none;
    user-select: none;
}

.stock-badge-new {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #6c757d;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 10;
    letter-spacing: 0.05em;
}