:root {
  --color-primary: #0a0a0a;
  --color-secondary: #f8f5f0;
  --color-accent: #c19a6b;
  --color-light: #ffffff;
  --color-dark: #1a1a1a;
  --color-gray: #8a8a8a;
  --color-light-gray: #e5e5e5;
  --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--color-primary);
  background-color: var(--color-light);
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
  padding-top: 70px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* FIXES GLOBALES */
.container {
  max-width: 100%;
  overflow: hidden;
}

section,
.container,
.mobile-menu {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* HEADER FIXED - CORREGIDO */
.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  transition: var(--transition-smooth);
  padding: 0 1rem;
}

.header-sticky.scrolled {
  height: 60px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-logo {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
  position: relative;
  display: inline-block;
  color: var(--color-primary);
  text-decoration: none;
  white-space: nowrap;
}

.brand-logo::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background-color: var(--color-accent);
}

/* MOBILE MENU - CORREGIDO */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--color-light);
  z-index: 9999;
  transition: var(--transition-smooth);
  padding: 5rem 1.5rem 2rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* HERO SECTION - CORREGIDO */
.hero-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 70px);
  min-height: 500px;
  max-height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -70px;
  padding-top: 70px;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  z-index: 1;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

/* STATS SECTION - CORREGIDO */
.stats-container {
  width: 100%;
  background-color: var(--color-secondary);
  border-top: 1px solid var(--color-light-gray);
  border-bottom: 1px solid var(--color-light-gray);
  padding: 0.5rem 0;
}

.stats-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
}

.stat-item {
  text-align: center;
  padding: 1rem 0.5rem;
}

/* CATEGORÍAS - CORREGIDO */
.category-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 250px;
  margin-bottom: 1rem;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PRODUCTOS - CORREGIDO */
.product-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-bottom: 2rem;
}

.product-image-container {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}

.product-image-primary,
.product-image-secondary {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ATELIER SECTION - CORREGIDO */
.atelier-section {
  width: 100%;
  padding: 2rem 1rem;
}

.atelier-overlay {
  background-color: var(--color-accent);
  color: white;
  padding: 1.5rem;
  margin-top: 1rem;
  width: 100%;
}

/* CONTACTO SECTION - CORREGIDO */
.contacto-section {
  width: 100%;
  padding: 2rem 1rem;
}

/* FOOTER - CORREGIDO */
footer {
  width: 100%;
  background-color: var(--color-primary);
  color: white;
  padding: 2rem 1rem;
}

.footer-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

/* WHATSAPP BUTTON - CORREGIDO */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

/* UTILIDADES */
.text-accent {
  color: var(--color-accent);
}

.border-accent {
  border-color: var(--color-accent);
}

.bg-accent {
  background-color: var(--color-accent);
}

.hover-accent:hover {
  color: var(--color-accent);
}

.bg-secondary {
  background-color: var(--color-secondary);
}

.whatsapp-button {
  background-color: #25d366;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: var(--transition-smooth);
}

.whatsapp-button:hover {
  background-color: #128c7e;
}

/* Estilos para desktop con imágenes completas */
@media (min-width: 768px) {
  .slides-container img {
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
  }

  .slides-container img:hover {
    transform: scale(1.01);
  }

  /* Efecto de aparición suave para imágenes */
  img[loading="lazy"] {
    opacity: 0;
    transform: scale(0.98);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }

  img[loading="lazy"].loaded {
    opacity: 1;
    transform: scale(1);
  }
}

/* MEDIA QUERIES - CORREGIDAS */
@media (min-width: 640px) {
  body {
    padding-top: 80px;
  }

  .header-sticky {
    height: 80px;
    padding: 0 2rem;
  }

  .header-sticky.scrolled {
    height: 70px;
  }

  .brand-logo {
    font-size: 1.1rem;
  }

  .hero-section {
    height: calc(100vh - 80px);
    min-height: 600px;
    margin-top: -80px;
    padding-top: 80px;
  }

  .hero-buttons {
    flex-direction: row;
    max-width: 500px;
  }

  .category-card {
    height: 300px;
  }

  .product-image-container {
    height: 300px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .stats-grid {
    padding: 0 2rem;
  }

  .category-card {
    height: 350px;
  }

  .product-image-container {
    height: 350px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .atelier-overlay {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 300px;
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .header-sticky {
    padding: 0 4rem;
  }

  .hero-section {
    max-height: 900px;
  }

  .category-card {
    height: 400px;
  }

  .product-image-container {
    height: 400px;
  }
}

/* ANIMACIONES - SIMPLIFICADAS PARA MÓVIL */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SCROLL FIX */
* {
  -webkit-tap-highlight-color: transparent;
}

/* PREVENIR DESBORDAMIENTOS */
.prevent-overflow {
  max-width: 100%;
  overflow: hidden;
}

/* Mejoras móvil para la sección de productos */
@media (max-width: 767px) {
  .slider-nav {
    opacity: 0.9 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .slides-container img {
    max-height: 70vh;
    min-height: 400px;
  }

  .talla-btn,
  .color-btn {
    padding: 0.75rem !important;
    font-size: 0.875rem !important;
  }
}

/* Efectos de interacción para botones de selección */
.talla-btn.bg-\[\#c19a6b\],
.color-btn.bg-\[\#c19a6b\] {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(193, 154, 107, 0.2);
}

.slider-nav {
  backdrop-filter: blur(4px);
}

.slider-nav:hover {
  transform: translateY(-50%) scale(1.1) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal de pantalla completa */
#fullscreenModal {
  backdrop-filter: blur(10px);
}

#fullscreenModal img {
  animation: zoomIn 0.3s ease-out;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Mejorar accesibilidad de focus */
button:focus {
  outline: 2px solid #c19a6b;
  outline-offset: 3px;
}

/* Efecto de pulso para indicar que es clickeable */
@keyframes pulse-subtle {
  0%,
  100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

.cursor-pointer .bg-black\/70 {
  animation: pulse-subtle 2s infinite;
}

/* Control del Carrito Lateral */
#cart-drawer.active {
  right: 0;
}

#cart-overlay.active {
  display: block;
}

.cart-item-remove {
  color: #ff4444;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- DISEÑO DEL CARRITO UNIFICADO --- */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 450px;
  height: 100%;
  background: #fff;
  z-index: 10001;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  transition: right 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.active {
  right: 0;
}

.cart-header {
  padding: 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
}

.cart-footer {
  padding: 24px;
  background: #fcfcfc;
  border-top: 1px solid #eee;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.summary-row.total {
  border-top: 1px solid #ddd;
  padding-top: 12px;
  margin-top: 12px;
  font-weight: 600;
  font-size: 1.1rem;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: none;
  backdrop-filter: blur(2px);
}

.cart-overlay.active {
  display: block;
}

.btn-primary {
  background: #000;
  color: #fff;
  padding: 16px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #c19a6b;
}

/* ============================================
   ESTILOS DEL CARRITO DE COMPRAS
   ============================================ */

:root {
  --color-primary: #0a0a0a;
  --color-secondary: #f8f5f0;
  --color-accent: #c19a6b;
  --color-light: #ffffff;
  --color-dark: #1a1a1a;
  --color-gray: #8a8a8a;
  --color-light-gray: #e5e5e5;
  --color-success: #10b981;
  --transition-smooth: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

/* Contenedor principal del carrito */
.cart-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: white;
  z-index: 10000;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .cart-drawer {
    width: 450px;
  }
}

.cart-drawer.active {
  right: 0;
}

/* Overlay del carrito */
.cart-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: none;
  backdrop-filter: blur(3px);
}

.cart-overlay.active {
  display: block;
}

/* Header del carrito */
.cart-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--color-light-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  background: white;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cart-header h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Items del carrito */
.cart-items {
  flex: 1;
  overflow-y: auto;
  min-height: 0;
  padding: 1.5rem;
  -webkit-overflow-scrolling: touch;
}

/* Item individual del carrito */
.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-light-gray);
  max-height: 150px;
  overflow: hidden;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.cart-item-info {
  font-size: 0.875rem;
  color: var(--color-gray);
  margin-bottom: 0.5rem;
}

.cart-item-price {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.125rem;
}

/* Acciones del item (cantidad y eliminar) */
.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  width: 100%;
}

.quantity-selector {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.quantity-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--color-light-gray);
  background: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  transition: var(--transition-smooth);
  border-radius: 4px;
}

.quantity-btn:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

.quantity-input {
  width: 40px;
  text-align: center;
  border: 1px solid var(--color-light-gray);
  padding: 0.25rem;
  border-radius: 4px;
  -moz-appearance: textfield;
  appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

.remove-item {
  background: #ef4444;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-smooth);
  min-height: 36px;
  box-shadow: 0 2px 4px rgba(239, 68, 68, 0.2);
}

.remove-item:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

.remove-item i {
  font-size: 0.875rem;
}

/* Footer del carrito */
.cart-footer {
  padding: 1.5rem;
  border-top: 2px solid var(--color-accent);
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  background: white;
  z-index: 10;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.cart-summary {
  margin-bottom: 1.5rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.summary-row.total {
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--color-light-gray);
}

.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-primary {
  background-color: var(--color-accent);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-smooth);
  min-height: 44px;
}

.btn-primary:hover {
  background-color: #b08a5a;
}

.btn-secondary {
  background-color: transparent;
  color: var(--color-primary);
  border: 1px solid var(--color-light-gray);
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: var(--transition-smooth);
  min-height: 44px;
}

.btn-secondary:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.cart-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--color-light-gray);
  font-size: 0.75rem;
  color: var(--color-gray);
}

/* Carrito vacío */
.empty-cart {
  text-align: center;
  padding: 3rem 0;
  color: var(--color-gray);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}

.empty-cart i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.empty-cart h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

/* Scrollbar personalizada */
.cart-items::-webkit-scrollbar {
  width: 6px;
}

.cart-items::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 3px;
}

.cart-items::-webkit-scrollbar-thumb:hover {
  background: #b08a5a;
}

/* ============================================
   ESTILOS RESPONSIVOS PARA MÓVIL
   ============================================ */

@media (max-width: 640px) {
  .cart-drawer {
    width: 100%;
  }

  .cart-header {
    padding: 1rem;
  }

  .cart-header h2 {
    font-size: 1.25rem;
  }

  .cart-items {
    padding: 1rem;
    max-height: calc(100vh - 140px);
    min-height: 200px;
  }

  .cart-item {
    padding: 0.75rem 0;
    gap: 0.75rem;
    max-height: none;
  }

  .cart-item-image {
    width: 70px;
    height: 70px;
  }

  .cart-item-title {
    font-size: 1rem;
  }

  .cart-item-info {
    font-size: 0.8rem;
  }

  .cart-item-price {
    font-size: 0.9rem;
  }

  .cart-item-actions {
    margin-top: 0.5rem;
    flex-wrap: nowrap;
    gap: 0.5rem;
  }

  .quantity-selector {
    order: 1;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 0.25rem;
    border: 1px solid #e0e0e0;
  }

  .quantity-btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    border: 2px solid var(--color-accent) !important;
    background: white !important;
    color: var(--color-accent) !important;
    font-size: 1.2rem !important;
    border-radius: 6px;
  }

  .quantity-input {
    width: 50px !important;
    height: 36px !important;
    font-size: 1rem !important;
    font-weight: 600;
    border: 2px solid #e0e0e0 !important;
    border-radius: 6px;
  }

  .remove-item {
    order: 2;
    padding: 0.5rem 1rem !important;
    font-size: 0.875rem !important;
    flex-shrink: 0;
    min-height: 36px;
  }

  .cart-footer {
    padding: 1rem;
    height: 200px;
    overflow-y: auto;
  }

  .cart-summary {
    margin-bottom: 1rem;
  }

  .summary-row {
    font-size: 0.85rem;
  }

  .summary-row.total {
    font-size: 1rem;
  }

  .cart-actions {
    gap: 0.5rem;
  }

  .btn-secondary,
  .btn-primary {
    padding: 0.75rem;
    font-size: 0.875rem;
    width: 100%;
  }

  .cart-note {
    font-size: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
  }

  button {
    -webkit-tap-highlight-color: transparent;
  }

  button:active {
    transform: scale(0.98);
  }
}

/* Ocultar texto "Eliminar" en pantallas muy pequeñas */
@media (max-width: 380px) {
  .remove-text {
    display: none !important;
  }

  .remove-item {
    padding: 0.5rem !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
  }

  .remove-item i {
    margin-right: 0 !important;
    font-size: 1rem !important;
  }
}

/* Mostrar texto "Eliminar" en pantallas medianas */
@media (min-width: 381px) and (max-width: 640px) {
  .remove-text {
    display: inline !important;
    font-size: 0.875rem !important;
  }
}

/* ============================================
   ANIMACIONES
   ============================================ */

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cart-drawer.active {
  animation: slideIn 0.3s ease-out;
}

.cart-overlay.active {
  animation: fadeIn 0.3s ease-out;
}

/* ============================================
   CONTADOR DEL CARRITO (ícono)
   ============================================ */

#cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #ef4444 !important;
  color: white !important;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  z-index: 10;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

#cart-count {
  animation: pulse 2s infinite;
}

#cart-icon {
  position: relative !important;
}
