/** Shopify CDN: Minification failed

Line 14:13 Expected identifier but found whitespace
Line 14:15 Unexpected "{"
Line 14:24 Expected ":"
Line 31:8 Expected identifier but found whitespace
Line 31:10 Unexpected "{"
Line 31:19 Expected ":"

**/
/* START_SECTION:custom-premium-product-grid (INDEX:12) */
.custom-premium-grid {
  padding: 60px 20px;
  background: {{ section.settings.bg_color }};
}

.custom-premium-grid .container {
  max-width: 1400px;
  margin: auto;
}

.custom-grid-header {
  text-align: center;
  margin-bottom: 50px;
}

.custom-grid-header h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: {{ section.settings.heading_color }};
}

.custom-grid-header p {
  color: #777;
  font-size: 16px;
}
.custom-product-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 30px;
  width: 100%;
}

.custom-product-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    border: 1px solid #d9d9d9;
}

.custom-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.custom-product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.custom-product-image {
  width: 100%;
  display: block;
  transition: transform 0.6s ease;
    max-height: 450px;
    height: 450px;
    width: 100%;
    margin: auto;
    object-fit: cover;
    object-position: center center;
}
.custom-product-card:hover .custom-product-image {
  transform: scale(1.08);
}

.custom-second-image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.custom-product-card:hover .custom-second-image {
  opacity: 1;
}

.custom-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background: #ff3d57;
  color: white;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.custom-product-info {
  padding: 16px;
}

.custom-product-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0px 0 7px;
    min-height: 50px;
}

.custom-product-title a {
    text-decoration: none;
    color: #111;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.custom-product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.custom-price {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.custom-compare-price {
  color: #999;
  text-decoration: line-through;
}

.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  text-decoration: none;
  background: linear-gradient(135deg,#111,#444);
  color: white;
  font-weight: 600;
  transition: 0.3s ease;
}

.custom-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.custom-icons {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}

.custom-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

.custom-icon-btn:hover {
  background: #111;
  color: white;
}

.custom-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-pagination .pagination {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-pagination .pagination__item {
  min-width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 14px;

  background: white;
  border: 1px solid #e5e5e5;

  color: #111;
  text-decoration: none;

  font-size: 16px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.custom-pagination .pagination__item:hover {
  background: #111;
  color: white;
  transform: translateY(-3px);
}

.custom-pagination .pagination__item--current {
  background: #111;
  color: white;
  border-color: #111;
}

.custom-pagination svg {
  width: 16px;
  height: 16px;
}


@media screen and (max-width: 990px) {
  .custom-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media screen and (max-width: 768px) {
  .custom-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px;
  }
}

@media screen and (max-width: 480px) {
  .custom-product-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
  }
}
/* END_SECTION:custom-premium-product-grid */
