/* Base styles and design system */
html {
  scroll-behavior: smooth;
}

:root {
  /* Warm berry theme colors */
  --background: hsl(355, 30%, 97%);
  --foreground: hsl(340, 25%, 15%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(340, 25%, 15%);

  /* Rich berry red primary */
  --primary: hsl(348, 76%, 47%);
  --primary-foreground: hsl(0, 0%, 98%);
  --primary-glow: hsl(348, 65%, 60%);

  /* Soft rose secondary */
  --secondary: hsl(345, 30%, 85%);
  --secondary-foreground: hsl(340, 25%, 25%);

  /* Muted berry tones */
  --muted: hsl(350, 25%, 92%);
  --muted-foreground: hsl(340, 15%, 45%);

  /* Warm accent */
  --accent: hsl(355, 40%, 88%);
  --accent-foreground: hsl(340, 25%, 25%);

  --destructive: hsl(0, 84.2%, 60.2%);
  --destructive-foreground: hsl(0, 0%, 98%);

  --border: hsl(345, 20%, 87%);
  --input: hsl(345, 20%, 87%);
  --ring: hsl(348, 76%, 47%);

  /* Custom berry colors */
  --berry-red: hsl(348, 76%, 47%);
  --berry-dark: hsl(340, 65%, 35%);
  --berry-light: hsl(345, 50%, 75%);
  --berry-pale: hsl(350, 40%, 90%);
  --golden: hsl(43, 89%, 70%);

  /* Gradients */
  --gradient-berry: linear-gradient(
    135deg,
    hsl(348, 76%, 47%),
    hsl(340, 65%, 35%)
  );
  --gradient-warm: linear-gradient(
    180deg,
    hsl(355, 30%, 97%),
    hsl(350, 25%, 92%)
  );
  --gradient-hero: linear-gradient(
    135deg,
    hsl(348, 76%, 47%) 0%,
    hsl(345, 70%, 55%) 50%,
    hsl(340, 65%, 35%) 100%
  );

  /* Shadows */
  --shadow-berry: 0 10px 30px -10px hsl(348, 76%, 47%, 0.3);
  --shadow-warm: 0 4px 20px hsl(340, 25%, 15%, 0.1);
  --shadow-glow: 0 0 40px hsl(348, 65%, 60%, 0.4);

  /* Animations */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);

  --radius: 0.75rem;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Typography */
.font-script {
  font-family: "Great Vibes", cursive;
}

.font-kaushan {
  font-family: "Kaushan Script", cursive;
}

.font-poppins {
  font-family: "Poppins", sans-serif;
}

/* Header */
.header {
  background: var(--gradient-berry);
  box-shadow: var(--shadow-warm);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: "Great Vibes", cursive;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-foreground);
  margin: 0;
}

.nav {
  display: none;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }
}

.nav-link {
  background: none;
  border: none;
  color: var(--primary-foreground);
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  transition: var(--transition-smooth);
  text-decoration: underline;
  text-decoration-color: transparent;
}

.nav-link:hover {
  color: var(--berry-pale);
  text-decoration-color: var(--berry-pale);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone {
  display: none;
  color: var(--primary-foreground);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .phone {
    display: block;
  }
}

.cart-btn {
  background: var(--primary-foreground);
  color: var(--primary);
  border: none;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  position: relative;
  transition: var(--transition-smooth);
}

.cart-btn:hover {
  background: var(--berry-pale);
}

.cart-count {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  background: var(--golden);
  color: var(--berry-dark);
  border-radius: 50%;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Hero Section */

.hero {
  position: relative;
  height: 100vh; /* ocupa toda la pantalla */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-image: url("/public/portada.jpg"); /* 📸 tu foto aquí /public/fondo_frase.jpg */
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(
    0,
    0,
    0,
    0.35
  ); /* oscurece un poco para que el texto se lea mejor */
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("/lovable-uploads/be1c2b53-9016-422e-9e76-82b71ff511b1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    hsl(340, 65%, 35%, 0.8),
    hsl(340, 65%, 35%, 0.6),
    hsl(340, 65%, 35%, 0.4)
  );
}

.hero-content {
  position: relative;
  z-index: 1; /* asegura que el texto quede arriba */
  max-width: 800px;
}

.hero-title {
  font-family: "Great Vibes", cursive;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: bold;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: hsl(0, 0%, 98%, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-decoration {
  position: absolute;
  top: 5rem;
  left: 2.5rem;
  width: 5rem;
  height: 5rem;
  background: hsl(348, 65%, 60%, 0.3);
  border-radius: 50%;
  filter: blur(1rem);
  animation: pulse 2s infinite;
}

.hero-decoration:nth-child(2) {
  bottom: 5rem;
  right: 2.5rem;
  left: auto;
  top: auto;
  width: 8rem;
  height: 8rem;
  background: hsl(43, 89%, 70%, 0.3);
  animation-delay: 1s;
}

/* Buttons */
.btn {
  border: none;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.125rem;
  cursor: pointer;
  transition: var(--transition-bounce);
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: var(--primary-foreground);
  color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: var(--berry-pale);
  box-shadow: var(--shadow-berry);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-foreground);
  border: 2px solid var(--primary-foreground);
}

.btn-secondary:hover {
  background: var(--primary-foreground);
  color: var(--primary);
}

/* Products Section */
.products-section {
  padding: 4rem 0;
  background: var(--background);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-family: "Great Vibes", cursive;
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 48rem;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  /* Para móviles, muestra 1 o 2 columnas si caben */
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .product-grid {
    /* Para tablets y escritorios pequeños, muestra 2 columnas */
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .product-grid {
    /* Para escritorios grandes, muestra 3 columnas */
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition-smooth);
  cursor: pointer;
  box-shadow: var(--shadow-warm);
  padding: 1rem;      /* Más espacio interno */
  max-width: 450px;      /* Más ancho, como la imagen */
  margin: 0 auto;
}

.product-card:hover {
  box-shadow: var(--shadow-berry);
  transform: translateY(-4px);
}

.product-image-container {
  position: relative;
  overflow: hidden;
}

.product-image {
  width: 100%;
  aspect-ratio: 1 / 1; /* Mantiene el formato cuadrado */
  object-fit: cover; /* Recorta para llenar el cuadrado sin deformar */
  border-radius: 0.75rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.product-image:hover {
  transform: scale(1.05);
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #c0392b;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  z-index: 2;
}

.product-content {
  padding: 1rem;
}

.product-name {
  font-family: "Kaushan Script", cursive;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.product-description {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.product-price {
  font-family: "Kaushan Script", cursive;
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
}

.product-category {
  background: var(--berry-pale);
  color: var(--muted-foreground);
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-size: 0.75rem;
}

.product-add-btn {
  width: 100%;
  background: var(--gradient-berry);
  color: var(--primary-foreground);
  border: none;
  padding: 0.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.product-add-btn:hover {
  box-shadow: var(--shadow-berry);
  transform: translateY(-2px);
}

/* Features */
.features {
  text-align: center;
  margin-top: 3rem;
}

.features-header {
  background: var(--berry-pale);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 64rem;
  margin: 0 auto 2rem;
}

.features-header h3 {
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.feature {
  text-align: center;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  background: var(--gradient-berry);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.5rem;
}

.feature h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Location Section */
.location-section {
  padding: 4rem 0;
  background: var(--gradient-warm);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.location-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-warm);
  overflow: hidden;
}

.location-card-header {
  background: var(--gradient-berry);
  color: var(--primary-foreground);
  padding: 1.5rem;
}

.location-card-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0;
}

.location-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 0.75rem;
}

.contact-icon {
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.contact-item h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: var(--muted-foreground);
  line-height: 1.4;
}

.location-info {
  position: relative;
}

.location-highlight {
  background: var(--berry-pale);
  border: 1px solid var(--berry-light);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.location-icon {
  width: 6rem;
  height: 6rem;
  background: var(--gradient-berry);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 3rem;
}

.location-highlight h3 {
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 1rem;
}

.location-highlight p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.location-features {
  background: hsl(348, 76%, 47%, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
}

.location-features p {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.875rem;
  margin: 0.25rem 0;
}

/* Footer */
.footer {
  background: var(--berry-dark);
  color: var(--primary-foreground);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.footer-title {
  font-family: "Great Vibes", cursive;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer-text {
  color: var(--berry-pale);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Footer Social Links */
.social-links {
  margin-top: 1rem;
  display: flex;
  gap: 1.25rem; /* Space between icons */
}

.social-links a {
  color: var(--white); /* Change to your desired color variable */
  font-size: 1.5rem;
  transition: transform 0.3s ease-in-out;
}

.social-links a:hover {
  transform: scale(1.1); /* Slightly enlarge icon on hover */
  color: var(--primary-color); /* Change to a hover color */
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item-footer {
  color: var(--berry-pale);
  font-size: 0.875rem;
}

.product-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.product-list li {
  color: var(--berry-pale);
  font-size: 0.875rem;
}

.footer-bottom {
  border-top: 1px solid var(--berry-light);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--berry-pale);
  font-size: 0.875rem;
  margin: 0.25rem 0;
}

/* Modals */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: hsl(340, 65%, 35%, 0.5);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.show {
  display: flex;
}

.modal-content {
  background: var(--card);
  border-radius: var(--radius);
  max-width: 32rem;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: var(--shadow-berry);
}

.modal-header {
  background: var(--gradient-berry);
  color: var(--primary-foreground);
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  font-family: "Kaushan Script", cursive;
  font-size: 1.5rem;
  margin: 0;
}

.close-btn {
  background: none;
  border: none;
  color: var(--primary-foreground);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.close-btn:hover {
  background: hsl(0, 0%, 100%, 0.2);
}

.modal-body {
  padding: 1.5rem;
  max-height: 60vh;
  overflow-y: auto;
}

.modal-image {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-warm);
}

.modal-category {
  background: var(--berry-red);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 1rem;
}

.modal-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.modal-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--berry-pale);
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.modal-price span:first-child {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.modal-price span:last-child {
  font-family: "Kaushan Script", cursive;
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
}

.modal-details {
  background: hsl(355, 40%, 88%, 0.5);
  padding: 1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}

.modal-details h4 {
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.modal-details ul {
  list-style: none;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.modal-details li {
  margin: 0.25rem 0;
}

.modal-btn {
  width: 100%;
  font-size: 1.125rem;
  padding: 1.5rem;
  background: var(--gradient-berry);
  color: var(--primary-foreground);
}

.modal-btn:hover {
  box-shadow: var(--shadow-berry);
}

/* Cart */
.cart-items {
  margin-bottom: 1.5rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #fff;
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.cart-item-img {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

.cart-item-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cart-item-name {
    font-weight: 600;
    font-size: 1.1rem;
    color: #c0392b;
}

.cart-item-unit-price {
    font-size: 0.95rem;
    color: #888;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.2rem;
}

.cart-qty-btn {
    background: #f5d0d0;
    color: #c0392b;
    border: none;
    border-radius: 6px;
    padding: 0.3rem 0.7rem;
    font-size: 1rem;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.2s;
}

.cart-qty-btn:hover {
    background: #c0392b;
    color: #fff;
}

.cart-item-qty-value {
    font-size: 1rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.cart-item-total-price {
    font-weight: bold;
    font-size: 1.1rem;
    color: #c0392b;
    margin-left: 1rem;
}

.cart-remove-btn {
    background: transparent;
    border: none;
    color: #c0392b;
    font-size: 1.3rem;
    cursor: pointer;
    margin-left: 1rem;
}

.cart-total-label {
    font-size: 1.3rem;
    font-weight: bold;
    color: #6e1a1a;
    margin-bottom: 0.5rem;
}

.cart-total-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c0392b;
    background: #f5d0d0;
    border-radius: 12px;
    padding: 0.5rem 1rem;
    margin-bottom: 1rem;
}

.remove-btn:hover {
  background: hsl(0, 84.2%, 60.2%, 0.1);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--berry-pale);
  border-radius: var(--radius);
}

.cart-total-price {
  color: var(--primary);
  font-family: "Kaushan Script", cursive;
  font-size: 1.5rem;
}

.cart-actions {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cart-actions .btn {
  flex: 1;
  padding: 1.25rem 0;
  font-size: 1.25rem;
  border-radius: 1rem;
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(200,57,43,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.cart-actions .btn-primary {
  background: var(--gradient-berry);
  color: var(--primary-foreground);
  border: none;
}

.cart-actions .btn-primary:hover {
  background: var(--berry-dark);
  color: #fff;
  box-shadow: var(--shadow-berry);
}

.cart-actions .btn-secondary {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--berry-pale);
}

.cart-actions .btn-secondary:hover {
  background: var(--berry-pale);
  color: var(--berry-dark);
}

.cart-empty {
  text-align: center;
  padding: 2rem;
  color: var(--muted-foreground);
}

.cart-empty-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

/* Toast */
.toast {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--gradient-berry);
  color: var(--primary-foreground);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-berry);
  transform: translateX(100%);
  transition: var(--transition-smooth);
  z-index: 200;
  font-weight: 500;
}

.toast.show {
  transform: translateX(0);
}

/* Animations */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .container {
    padding: 0 0.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .nav {
    display: none;
  }

  .header-right .phone {
    display: none;
  }

  .modal-content {
    margin: 1rem;
    max-width: calc(100vw - 2rem);
  }
}

/* Utility classes */
.hidden {
  display: none !important;
}

.show {
  display: block !important;
}

.flex {
  display: flex !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* Texto sobre la imagen */
.click-text {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: hsl(348, 76%, 47%);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 500;
  z-index: 2;
  border: none;
  cursor: pointer;
  opacity: 1;
  transition: var(--transition-smooth);
}

/* Mostrar texto al pasar el mouse */
.product-image-container:hover .click-text {
  opacity: 1;
}
