/* PASSANS Custom CSS */

/* ===== STABILIZE LAYOUT WHEN SCROLLBAR APPEARS/DISAPPEARS ===== */
html {
  scrollbar-gutter: stable;
}

/* ===== MOBILE HEADER OPTIMIZATION ===== */
/* Reduce padding on mobile for better UX */
@media (max-width: 768px) {
  #main-header nav {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }
}

/* ===== COLOR PALETTE REDUCTION: Only Marron (Cuir), White, Black ===== */
/* Replace all beige colors with white or black for cleaner design */

/* Hero CTA Button Hover Effect */
.hero-subtitle a[href="/products.html"]:hover {
  background-color: #ffffff !important;
  color: #1a1a1a !important;
}

/* Carousel Controls Button Colors */
#prevBtn,
#nextBtn {
  border-color: #1a1a1a !important;
  color: #1a1a1a !important;
}

#prevBtn:hover,
#nextBtn:hover {
  background-color: #1a1a1a !important;
  color: #ffffff !important;
}

#prevBtn:disabled,
#nextBtn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Background colors */
.bg-beige {
  background-color: #ffffff !important;
}

/* Border colors */
.border-beige {
  border-color: #1E1E1E !important;
}

/* Text colors */
.text-beige {
  color: #1E1E1E !important;
}

/* Hover backgrounds */
.hover\:bg-beige:hover {
  background-color: #f5f5f5 !important;
}

/* Override gray-50 backgrounds to white */
.bg-gray-50 {
  background-color: #ffffff !important;
}

/* Add spacing after breadcrumb to prevent content overlap with fixed breadcrumb */
#breadcrumb-container + * {
  margin-top: 2rem !important;
}

/* Responsive touch targets */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
select,
textarea {
  min-height: 2.75rem; /* 44px minimum for touch */
}

@media (max-width: 640px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="password"],
  input[type="number"],
  select,
  textarea {
    min-height: 3rem; /* 48px on mobile for comfortable touch */
    font-size: 16px; /* Prevent zoom on iOS */
  }

  /* Exclude checkboxes and radio buttons from min-height requirement */
  input[type="checkbox"],
  input[type="radio"] {
    min-height: auto !important;
  }

  /* Profile form compact sizing on mobile */
  #profileEditForm input[type="text"],
  #profileEditForm input[type="email"],
  #profileEditForm input[type="tel"],
  #profileEditForm input[type="date"] {
    min-height: auto !important;
  }

  button {
    min-height: 2.75rem; /* 44px buttons */
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation d'entrée */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #7A4A2E;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #5a3a1e;
}

/* Loading skeleton */
.skeleton {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Hover effects */
.product-card:hover {
  transform: translateY(-5px);
}

/* Image placeholder */
.image-placeholder {
  background: linear-gradient(135deg, #E6D8C3 0%, #f5f0e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7A4A2E;
  font-size: 2rem;
}

/* Truncate text */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Modal animations */
.modal-enter {
  animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Button transitions */
button {
  transition: all 0.3s ease;
}

button:active {
  transform: scale(0.98);
}

/* Form inputs */
input:focus,
select:focus,
textarea:focus {
  box-shadow: 0 0 0 3px rgba(122, 74, 46, 0.1);
}

/* Badge discount */
.badge-discount {
  background: linear-gradient(135deg, #7A4A2E 0%, #5a3a1e 100%);
}

/* Stars rating */
.stars {
  color: #FFB800;
}

.stars-empty {
  color: #ddd;
}

/* Responsive grid */
@media (max-width: 768px) {
  #cartModal > div {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Notification toast */
.notification-enter {
  animation: slideInRight 0.3s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(400px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Focus visible */
:focus-visible {
  outline: 2px solid #1a1a1a;
  outline-offset: 2px;
}

/* Accent colors */
.text-cuir { color: #1a1a1a; }
.bg-cuir { background-color: #1a1a1a; }
.border-cuir { border-color: #1a1a1a; }

.text-beige { color: #1a1a1a; }
.bg-beige { background-color: #f5f5f5; }
.border-beige { border-color: #e5e5e5; }

.text-noir { color: #1E1E1E; }
.bg-noir { background-color: #1E1E1E; }
.border-noir { border-color: #1E1E1E; }

/* Print styles */
@media print {
  .no-print {
    display: none !important;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* ✅ Modal System Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

.animate-fadeOut {
  animation: fadeOut 0.3s ease-out;
}

@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-slideUp {
  animation: slideUp 0.3s ease-out;
}

/* Modal System Colors */
.bg-cuir { background-color: #1a1a1a !important; }
.text-cuir { color: #1a1a1a !important; }
.border-cuir { border-color: #1a1a1a !important; }
.hover\:bg-cuir:hover { background-color: #1a1a1a !important; }

/* ======================== RESPONSIVE MEDIA QUERIES ======================== */

/* Breakpoints:
   Mobile: < 640px (sm)
   Tablet: 640px - 1024px (md)
   Desktop: > 1024px (lg)
*/

/* ============= EXTRA SMALL DEVICES (< 480px) ============= */
@media screen and (max-width: 479px) {
  /* Typography */
  h1 { font-size: 1.5rem !important; }
  h2 { font-size: 1.25rem !important; }
  h3 { font-size: 1.1rem !important; }
  h4 { font-size: 1rem !important; }
  body { font-size: 14px !important; }

  /* Padding/Margin */
  main, .container { padding: 1rem !important; }

  /* Grid layouts */
  .grid { grid-template-columns: 1fr !important; }

  /* Images */
  img { max-width: 100%; height: auto; }

  /* Buttons */
  button {
    min-width: auto !important;
    padding: 0.75rem 1rem !important;
    font-size: 14px !important;
  }

  /* Forms */
  input, select, textarea {
    font-size: 16px !important; /* Prevent zoom on focus */
    width: 100% !important;
  }

  /* Navigation */
  nav { padding: 0.75rem !important; }
  nav a { padding: 0.5rem !important; font-size: 14px !important; }

  /* Card layouts */
  .card, [class*="card"] {
    padding: 1rem !important;
    margin-bottom: 1rem !important;
  }

  /* Modal */
  .modal, [class*="modal"] {
    max-width: 95vw !important;
    margin: 1rem auto !important;
  }

  /* Tables */
  table { font-size: 12px !important; }
  th, td { padding: 0.5rem !important; }
}

/* ============= SMALL DEVICES (480px - 640px) ============= */
@media screen and (min-width: 480px) and (max-width: 640px) {
  /* Typography */
  h1 { font-size: 1.75rem !important; }
  h2 { font-size: 1.5rem !important; }
  h3 { font-size: 1.25rem !important; }

  /* Spacing */
  main { padding: 1.25rem !important; }
  section { padding: 1.5rem 1rem !important; }

  /* Grid adjustments */
  .grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; }
  .grid-cols-3, .grid-cols-4 { grid-template-columns: repeat(2, 1fr) !important; }

  /* Product cards */
  .product-card { margin-bottom: 1rem !important; }
}

/* ============= MOBILE DEVICES (640px - 768px) ============= */
@media screen and (min-width: 640px) and (max-width: 768px) {
  /* Typography adjustments for small tablets */
  h1 { font-size: 2rem !important; }
  h2 { font-size: 1.5rem !important; }

  /* Grid layouts */
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr) !important; }
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr) !important; }

  /* Sidebar layouts */
  .lg\:grid-cols-3 { grid-template-columns: 1fr !important; }
  .lg\:col-span-2 { grid-column: 1 !important; }
  .lg\:col-span-1 { grid-column: 1 !important; }

  /* Navigation */
  nav { flex-wrap: wrap !important; }

  /* Images in grids */
  .image-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ============= TABLET DEVICES (768px - 1024px) ============= */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  /* Typography */
  h1 { font-size: 2.25rem !important; }

  /* Grid layouts */
  .grid-cols-4 { grid-template-columns: repeat(3, 1fr) !important; }

  /* Sidebar layouts - Stack on tablet */
  .lg\:grid-cols-3 { grid-template-columns: 1fr !important; }

  /* Product gallery */
  .product-gallery { grid-template-columns: 1fr 1fr !important; }

  /* Navigation adjustments */
  .hidden.md\:flex { flex-wrap: wrap; }
}

/* ============= LARGE DEVICES (1024px - 1440px) ============= */
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  /* Containers */
  .max-w-7xl { padding: 0 2rem !important; }

  /* Grid optimization */
  .grid-cols-4 { grid-template-columns: repeat(3, 1fr) !important; gap: 1.5rem !important; }

  /* Spacing */
  section { padding: 3rem 2rem !important; }
}

/* ============= EXTRA LARGE DEVICES (> 1440px) ============= */
@media screen and (min-width: 1440px) {
  /* Containers */
  .container, main { max-width: 1400px; margin: 0 auto; }

  /* Generous spacing */
  section { padding: 4rem 3rem !important; }

  /* Optimal grid */
  .grid-cols-4 { grid-template-columns: repeat(4, 1fr) !important; gap: 2rem !important; }
}

/* ============= LANDSCAPE ORIENTATION ============= */
@media screen and (orientation: landscape) and (max-height: 600px) {
  /* Reduce vertical padding in landscape */
  nav, footer { padding: 0.5rem 1rem !important; }
  main { padding: 1rem !important; }

  /* Compact layouts */
  .min-h-screen { min-height: auto !important; }
  section { padding: 1rem !important; }
}

/* ============= PORTRAIT ORIENTATION ============= */
@media screen and (orientation: portrait) {
  body { width: 100%; overflow-x: hidden; }
}

/* ============= TOUCH DEVICES (Mobile & Tablets) ============= */
@media (hover: none) and (pointer: coarse) {
  /* Increase touch targets */
  button, a, .clickable {
    min-height: 44px !important;
    min-width: 44px !important;
    padding: 0.75rem 1rem !important;
  }

  /* Disable hover effects on touch */
  .product-card:hover { transform: none; }
  button:hover { transform: none; }

  /* Larger inputs for touch */
  input:not([type="checkbox"]):not([type="radio"]), select, textarea {
    min-height: 44px !important;
    font-size: 16px !important;
  }

  /* Profile form compact sizing on touch devices */
  #profileEditForm input:not([type="checkbox"]):not([type="radio"]),
  #profileEditForm select,
  #profileEditForm textarea {
    min-height: auto !important;
  }
}

/* ============= NON-TOUCH DEVICES (Desktop) ============= */
@media (hover: hover) and (pointer: fine) {
  /* Enable hover effects */
  button:hover { opacity: 0.9; transform: translateY(-2px); }
  a:hover { color: #1a1a1a; }

  /* Cursor changes */
  button { cursor: pointer; }
  .clickable { cursor: pointer; }
}

/* ============= FLEXBOX RESPONSIVE ============= */
@media screen and (max-width: 768px) {
  .flex-row { flex-direction: column; }
  .flex-row-reverse { flex-direction: column-reverse; }
  .gap-8 { gap: 0.5rem !important; }
  .gap-6 { gap: 0.75rem !important; }
}

/* ============= MODAL RESPONSIVE ============= */
@media screen and (max-width: 640px) {
  .modal, [class*="modal"] {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    margin: 0 !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
  }

  .modal-content {
    max-height: 80vh !important;
    overflow-y: auto !important;
  }
}

/* ============= NAVIGATION RESPONSIVE ============= */
@media screen and (max-width: 768px) {
  nav.sticky { position: relative !important; }
  .navbar-desktop { display: none !important; }
  .navbar-mobile { display: flex !important; }

  /* Mobile menu visibility managed by Tailwind 'hidden' class and JavaScript */
  [id*="desktopNav"] { display: none !important; }

  /* Breadcrumb must stay fixed and visible */
  nav[aria-label="Fil d'ariane"] { position: fixed !important; }
}

@media screen and (min-width: 768px) {
  /* Mobile menu hidden on desktop via md:hidden Tailwind class */
  [id*="desktopNav"] { display: flex !important; }
}

/* ============= SIDEBAR LAYOUTS ============= */
@media screen and (max-width: 1024px) {
  .sidebar { position: static !important; width: 100% !important; }
  .sticky { position: static !important; }
  .lg\:col-span-1.sticky { position: static !important; top: auto !important; }
  /* Exception: breadcrumb must stay sticky */
  nav[aria-label="Fil d'ariane"] { position: sticky !important; }
}

/* ============= TEXT OVERFLOW ============= */
@media screen and (max-width: 640px) {
  .truncate { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .line-clamp-1 { -webkit-line-clamp: 1; }
  .line-clamp-2 { -webkit-line-clamp: 2; }
}

/* ============= SPACING ADJUSTMENTS ============= */
@media screen and (max-width: 768px) {
  .px-8 { padding-left: 1rem !important; padding-right: 1rem !important; }
  .py-8 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
  .mx-auto { margin-left: auto !important; margin-right: auto !important; }
  .my-auto { margin-top: auto !important; margin-bottom: auto !important; }
}

/* ============= IMAGE RESPONSIVE ============= */
@media screen and (max-width: 768px) {
  img.w-full { width: 100% !important; }
  .image-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .object-cover { object-fit: cover; }
}

/* ============= FORM RESPONSIVE ============= */
@media screen and (max-width: 768px) {
  form { width: 100% !important; }
  .form-group { margin-bottom: 1.5rem !important; }
  input[type="text"],
  input[type="email"],
  input[type="password"],
  select,
  textarea {
    width: 100% !important;
    padding: 0.75rem !important;
    font-size: 16px !important;
  }

  /* Exclude checkboxes and radio buttons from form styling */
  input[type="checkbox"],
  input[type="radio"] {
    width: auto !important;
    padding: auto !important;
  }

  /* Profile form keeps its compact padding */
  #profileEditForm input[type="text"],
  #profileEditForm input[type="email"],
  #profileEditForm input[type="tel"],
  #profileEditForm input[type="date"],
  #profileEditForm select,
  #profileEditForm textarea {
    padding: auto !important;
  }

  label {
    display: block !important;
    margin-bottom: 0.5rem !important;
  }
}

/* ============= PRODUCT PAGE RESPONSIVE ============= */
@media screen and (max-width: 1024px) {
  .product-gallery { grid-template-columns: 1fr 1fr !important; }
  .product-details { grid-column: 1 / -1 !important; }
  .product-images { grid-row: 1; }
  .product-info { grid-row: 2; }
}

@media screen and (max-width: 768px) {
  .product-gallery { grid-template-columns: 1fr !important; }
  .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 0.5rem !important; }
}

/* ============= FOOTER RESPONSIVE ============= */
@media screen and (max-width: 768px) {
  footer { padding: 2rem 1rem !important; }
  footer > * { margin-bottom: 1.5rem !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
}

/* ============= HEADER RESPONSIVE ============= */
@media screen and (max-width: 768px) {
  header, nav { padding: 1rem !important; }
  .header-search { display: none !important; }
  .header-mobile-search { display: block !important; }
}

/* ============= BOUNCE ANIMATION ============= */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* ============= CATEGORY PRODUCTS GRID ============= */
#categoryProductsGrid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1rem !important;
  width: 100% !important;
  grid-auto-flow: row !important;
}

#categoryProductsGrid > * {
  grid-column: span 1 !important;
}

@media (min-width: 768px) {
  #categoryProductsGrid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}

@media (min-width: 1024px) {
  #categoryProductsGrid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 1.5rem !important;
  }
}

/* ============= COLLECTIONS GRID (NOS COLLECTIONS) ============= */
#collectionsGrid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1rem !important;
  width: 100% !important;
  grid-auto-flow: row !important;
}

#collectionsGrid > * {
  grid-column: span 1 !important;
}

@media (min-width: 768px) {
  #collectionsGrid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

/* ============= CAROUSEL TACTILE SCROLL ============= */
.carousel-container {
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.carousel-container::-webkit-scrollbar {
  display: none;
}

.carousel-wrapper {
  display: flex;
  scroll-snap-align: start;
  -webkit-user-select: none;
  user-select: none;
}

@media (max-width: 767px) {
  .carousel-wrapper > * {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* ============= RESPONSIVE DISPLAY CLASSES (LG: prefix) ============= */
/* These classes handle the sidebar visibility for products page */
@media (min-width: 1024px) {
  .lg\:flex {
    display: flex !important;
  }

  .lg\:hidden {
    display: none !important;
  }

  .lg\:px-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .lg\:flex-row {
    flex-direction: row !important;
  }
}

/* ============= HORIZONTAL SCROLL SECTIONS (AMAZON STYLE) ============= */
.category-scroll-row {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.category-scroll-row::-webkit-scrollbar {
  display: none;
}

/* Product cards for horizontal scroll */
.product-card-h {
  flex-shrink: 0;
  width: 160px;
  scroll-snap-align: start;
}

@media (min-width: 640px) {
  .product-card-h {
    width: 192px;
  }
}

@media (min-width: 1024px) {
  .product-card-h {
    width: 210px;
  }
}

.product-card-h:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ============= DRAWER FILTER ANIMATIONS ============= */
#filter-sidebar {
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

#filter-sidebar.drawer-open {
  transform: translateX(0) !important;
}

#filter-overlay {
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}

#filter-overlay.hidden {
  pointer-events: none;
}

/* ============= FILTER SECTIONS ============= */
.filter-section {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  max-height: 500px;
  opacity: 1;
}

.filter-section.hidden {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 !important;
}

.filter-toggle {
  user-select: none;
}

.filter-toggle .toggle-icon {
  transition: transform 0.3s ease;
}

.filter-section.hidden ~ .filter-toggle .toggle-icon {
  transform: rotate(-90deg);
}

/* ============= PRODUCT CARD TITLE RESPONSIVE ============= */
.product-card-h h3 {
  font-size: 8px !important;
  line-height: 1.1 !important;
}

@media (min-width: 640px) {
  .product-card-h h3 {
    font-size: 9px !important;
  }
}

@media (min-width: 768px) {
  .product-card-h h3 {
    font-size: 11px !important;
  }
}

/* ============= PRODUCT CARD ICON BUTTONS ============= */
.product-card-h a,
.product-card-h button:not(.add-to-cart-btn) {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  background: transparent !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
  --tw-ring-shadow: 0 0 #0000 !important;
}

.product-card-h a:focus,
.product-card-h button:not(.add-to-cart-btn):focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
  --tw-ring-shadow: 0 0 #0000 !important;
}

.product-card-h a:focus-visible,
.product-card-h button:not(.add-to-cart-btn):focus-visible {
  outline: none !important;
  box-shadow: none !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
  --tw-ring-shadow: 0 0 #0000 !important;
}

/* ============= REMOVE RING FROM WISHLIST & COMPARE DIVS ============= */
.product-card-h .wishlist-btn,
.product-card-h .compare-btn {
  outline: none !important;
  box-shadow: none !important;
  --tw-ring-offset-shadow: 0 0 #0000 !important;
  --tw-ring-shadow: 0 0 #0000 !important;
}

/* ============= REMOVE RING FROM ADD TO CART BUTTON ============= */
.product-card-h .add-to-cart-btn {
  --tw-ring-offset-shadow: 0 0 #0000 !important;
  --tw-ring-shadow: 0 0 #0000 !important;
}

.product-card-h .add-to-cart-btn:focus,
.product-card-h .add-to-cart-btn:focus-visible {
  --tw-ring-offset-shadow: 0 0 #0000 !important;
  --tw-ring-shadow: 0 0 #0000 !important;
  outline: none !important;
}
