.product-card {
  width: 100%;
  /* Add any additional card styling here */
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
}

/* Cart delete button styling */
.cursor-pointer {
  cursor: pointer;
}

.icon-trash.remove:hover {
  color: #dc3545;
  transform: scale(1.1);
  transition: all 0.2s ease;
}

/* White icons in menu top navigation - only on homepage */
.homepage .nav-icon .nav-icon-item .icon {
  color: white !important;
}

.homepage .nav-icon .nav-icon-item {
  color: white !important;
}

/* Count box text should also be white on homepage */
.homepage .nav-icon .count-box {
  color: white !important;
}

/* Mobile menu icon (3 bars) - white on homepage */
.homepage .mobile-menu .icon {
  color: white !important;
}

/* When header has white background on scroll, make icons black */
.homepage .header-bg .nav-icon .nav-icon-item .icon {
  color: black !important;
}

.homepage .header-bg .nav-icon .nav-icon-item {
  color: black !important;
}

.homepage .header-bg .nav-icon .count-box {
  color: black !important;
}

/* Mobile menu icon - black when header has white background */
.homepage .header-bg .mobile-menu .icon {
  color: black !important;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.sizedImage {
  width: 240px;
  height: 260px;
  object-fit: cover;
}
.custom-card {
  width: 140px;
  height: 160px;
  position: relative;
  top: 50px;
}
.width250 {
  width: 250px !important;
}
.width350 {
  width: 350px !important;
  height: 300px !important;
  object-fit: contain !important;
}

.absolute[style*="display: none"] {
  display: none !important;
}
.absolute {
  transition: opacity 0.2s, transform 0.2s;
}

.active {
  color: var(--primary) !important;
}
.wg-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.wg-pagination ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.wg-pagination li {
  margin: 0 5px;
}

.wg-pagination .pagination-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wg-pagination .pagination-item:hover,
.wg-pagination li.active .pagination-item {
  background: #000;
  color: #fff;
}

.width350 {
  width: 350px !important;
  height: 300px !important;
}

.tf-mini-cart-bottom {
  position: relative;
  top: 6%;
}

.header-default .wrapper-header {
  padding-bottom: 20px;
}
