/** Shopify CDN: Minification failed

Line 20:13 Unexpected "{"
Line 20:22 Expected ":"
Line 20:29 Unexpected "{"
Line 21:13 Unexpected "{"
Line 21:22 Expected ":"
Line 22:13 Unexpected "{"
Line 22:22 Expected ":"
Line 23:13 Unexpected "{"
Line 23:22 Expected ":"
Line 26:13 Unexpected "{"
... and 64 more hidden warnings

**/


/* CSS from section stylesheet tags */
/* ============ Product Grid (final mobile fix + cart CTA) ============ */
#arcategory-{{ section.id }} { padding: 20px 12px; }
#arcategory-{{ section.id }} .arcategory-inner { max-width: 1200px; margin: 0 auto; }
#arcategory-{{ section.id }} .arcategory-title { font-size: 26px; margin: 0 0 8px; color: #0b173d; font-weight:700; text-align:center; }
#arcategory-{{ section.id }} .arcategory-subtitle { color:#6b7280; margin-bottom:14px; text-align:center; }

/* Grid Layout */
#arcategory-{{ section.id }} .arcategory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 1024px) {
  #arcategory-{{ section.id }} .arcategory-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Product Card */
#arcategory-{{ section.id }} .arproduct-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 4px 12px rgba(11,23,61,0.04);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
#arcategory-{{ section.id }} .arproduct-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(11,23,61,0.08);
}

/* Product Image */
#arcategory-{{ section.id }} .arproduct-media {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  height: 280px;
  overflow: hidden;
}
#arcategory-{{ section.id }} .arproduct-media img {
  width: auto;
  max-width: 100%;
  max-height: 270px;
  object-fit: contain;
}

/* Body */
#arcategory-{{ section.id }} .arproduct-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #eef6f4;
  padding: 16px 14px 14px;
  flex-grow: 1;
}
#arcategory-{{ section.id }} .arproduct-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: flex-start;
}

/* Title */
#arcategory-{{ section.id }} .arproduct-title {
  font-size: 15px;
  font-weight: 700;
  color: #0b173d;
  line-height: 1.4;
  margin: 0 0 6px;
  min-height: 44px;
}
#arcategory-{{ section.id }} .arproduct-title a { text-decoration: none; color: inherit; }

/* Judge.me Rating */
#arcategory-{{ section.id }} .jdgm-widget.jdgm-preview-badge {
  margin-bottom: 8px;
  min-height: 20px;
  font-size: 12px; /* small and bold as requested */
  font-weight: 700;
  color: #0b173d;
}

/* Price */
#arcategory-{{ section.id }} .arproduct-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
  color: #000000;
  font-weight: 800;
  font-size: 18px;
}
#arcategory-{{ section.id }} .price--sale,
#arcategory-{{ section.id }} .price--normal {
  color: #000000;
  font-weight: 800;
  font-size: 18px;
}
#arcategory-{{ section.id }} .price--compare {
  color: #6b7280;
  text-decoration: line-through;
  font-size: 14px;
  font-weight: 500;
}

#arcategory-{{ section.id }} .ar-badge {
  background: #0e4c3f; /* replaced orange with green badge for consistency */
  color: #fff;
  font-size: 10px;
  padding: 4px 6px;
  border-radius: 12px;
  font-weight: 600;
}

/* CTA Button — cart icon + full-width label */
#arcategory-{{ section.id }} .arproduct-cta {
  margin-top: 10px;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* overall button container */
#arcategory-{{ section.id }} .ar-buy {
  display: inline-flex;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
  border-radius: 10px;
  overflow: hidden;
  box-sizing: border-box;
  align-items: stretch;
  box-shadow: 0 6px 18px rgba(9,20,11,0.06);
}

/* left dark square containing the cart icon */
#arcategory-{{ section.id }} .ar-buy .buy-left {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #232323;   /* dark left block */
  color: #fff;
  width: 66px;           /* fixed square width */
  min-width: 66px;
  height: 48px;
}

/* svg inside uses currentColor */
#arcategory-{{ section.id }} .ar-buy .cart-svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  opacity: 0.98;
  display: block;
}

/* right green label */
#arcategory-{{ section.id }} .ar-buy .buy-right {
  background: #0e4c3f;   /* main green */
  color: #fff;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  padding: 12px 10px;
  font-size: 15px;
  letter-spacing: 0.4px;
}

/* hover states */
#arcategory-{{ section.id }} .ar-buy:hover .buy-right {
  background: #0c3e33;
}
#arcategory-{{ section.id }} .ar-buy:hover .buy-left {
  background: #1b1b1b;
}

/* Mobile: 2 columns + fix image spacing */
@media (max-width: 600px) {
  #arcategory-{{ section.id }} { padding: 12px; }
  #arcategory-{{ section.id }} .arcategory-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  /* Remove empty space above/below image */
  #arcategory-{{ section.id }} .arproduct-media {
    height: auto;
    padding: 0;
  }
  #arcategory-{{ section.id }} .arproduct-media img {
    max-height: 180px;
    width: 100%;
    object-fit: contain;
    margin: 0 auto;
    display: block;
  }

  #arcategory-{{ section.id }} .arproduct-title {
    font-size: 14px;
    font-weight: 700;
  }
  #arcategory-{{ section.id }} .price--sale {
    font-size: 16px;
  }

  /* Button adjustments */
  #arcategory-{{ section.id }} .ar-buy .buy-left { width: 54px; min-width:54px; height:44px; }
  #arcategory-{{ section.id }} .ar-buy .cart-svg { width:18px; height:18px; }
  #arcategory-{{ section.id }} .ar-buy .buy-right { padding:10px 8px; font-size:14px; }
}