.hidden {
  display: none;
}

.bg-red-500 {
  background: red;
}

.oag-widget {
  display: flex;
  gap: 20px;
  width: 100%;
  text-transform: uppercase;
}

.oag-filter-section {
  width: 380px;
}

.oag-products-section {
  width: calc(100% - 380px);
}

.oag-sort-wrapper {
  width: 275px;
}
.oag-pagination-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.oag-sort-pagination-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.oag-product-grid,
.oag-loader-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.oag-product-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
}

.oag-product-card-image-wrap {
  aspect-ratio: 1/1;
  background: #f4f4f4;
  margin-bottom: 10px;
  position: relative;
}

.oag-product-card-details {
  padding: 15px;
}

.oag-product-card-details__title {
  font-family: Poppins;
  font-size: 18px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: black !important;
  text-transform: none !important;
  min-height: 48px;
}

.oag-product-card-details__price {
  color: #08a652;
  font-size: 32px;
  font-weight: 600;
}

.oag-product-card-details__action {
  display: flex;
  gap: 10px;
}

.oag-product-card-details__action__qty {
  width: 80px !important;
}

.oag-product-card-details__action__atc {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  width: calc(100% - 80px) !important;

  color: white !important;
  background: #c60c29 !important;
  padding: 0px !important;
  border-radius: 4px !important;
}

.oag-product-card-details__action__atc:disabled {
  opacity: 0.7 !important;
  pointer-events: none !important;
}

/* plugin mobile, tab and desktop */
/* MOBILE STYLES */

@media (max-width: 480px) {
  .oag-filter-section {
    display: none;
  }

  .oag-products-section {
    width: 100%;
  }

  .oag-sort-pagination-wrapper {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    gap: 10px;
  }
  .oag-product-grid,
  .oag-loader-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
}
