.sidra-products-section {
  --sidra-blue: #006ca8;
  --sidra-green: #087a28;
  --sidra-green-dark: #065f20;
  --sidra-red: #c0392b;
  --sidra-soft-blue: #e5f4fb;
  --sidra-image-bg: #eef1f3;
  --sidra-text: #12344a;
  --sidra-gray-500: #6b7a82;
  --sidra-font-heading: "Montserrat", Arial, sans-serif;
  --sidra-font-body: "Montserrat", Arial, sans-serif;
  width: 100%;
}

.sidra-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.sidra-products-eyebrow {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sidra-products-title {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 800;
}

.sidra-products-view-all {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border: 1.5px solid #dce4e8;
  border-radius: 9999px;
  background: #fff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  text-decoration: none;
  transition: border-color .2s ease, transform .2s ease;
}

.sidra-products-view-all:hover {
  border-color: var(--sidra-blue);
  transform: translateY(-1px);
}

.sidra-products-grid {
  display: grid;
  align-items: stretch;
}

.sidra-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #edf1f3;
  box-shadow: 0 1px 3px rgba(18, 52, 74, .06);
  transition: transform .25s ease, box-shadow .25s ease;
}

.sidra-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(18, 52, 74, .12);
}

.sidra-product-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  background: var(--sidra-image-bg);
  overflow: hidden;
}

.sidra-product-image {
  width: 100%;
  max-width: 210px;
  height: 210px;
  object-fit: contain;
  transition: transform .35s ease;
}

.sidra-product-card:hover .sidra-product-image {
  transform: scale(1.04);
}

.sidra-product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 11px;
  border-radius: 6px;
  font-family: var(--sidra-font-heading);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
}

.sidra-product-badge--featured {
  background: var(--sidra-blue);
}

.sidra-product-badge--sale {
  background: var(--sidra-red);
}

.sidra-product-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px 18px 20px;
}

.sidra-product-category {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 5px;
  background: var(--sidra-soft-blue);
  color: var(--sidra-blue);
  font-size: 12px;
  line-height: 1.2;
}

.sidra-product-category a {
  color: inherit;
}

.sidra-product-subtitle {
  margin-bottom: 6px;
  color: var(--sidra-gray-500);
  font-size: 12.5px;
  line-height: 1.3;
}

.sidra-product-title {
  margin: 0 0 10px;
  font-size: 16.5px;
  line-height: 1.3;
  font-weight: 700;
}

.sidra-product-title a {
  color: inherit;
  text-decoration: none;
}

.sidra-product-rating {
  margin-bottom: 10px;
}

.sidra-product-rating .star-rating {
  float: none;
  margin: 0;
}

.sidra-product-description {
  margin-bottom: 14px;
  color: #62727c;
  font-size: 14px;
  line-height: 1.6;
}

.sidra-product-price {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.2;
  font-weight: 800;
}

.sidra-product-price del {
  margin-left: 6px;
  color: #9aa7ad;
  font-size: .7em;
  font-weight: 500;
  opacity: 1;
}

.sidra-product-price ins {
  text-decoration: none;
}

.sidra-product-stock {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--sidra-green);
  font-size: 12.5px;
  font-weight: 600;
}

.sidra-product-stock__check {
  font-size: 12px;
}

.sidra-product-action {
  margin-top: auto;
}

.sidra-product-button {
  display: inline-flex !important;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px !important;
  border: none !important;
  border-radius: 9999px !important;
  color: #fff !important;
  font-family: var(--sidra-font-heading) !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center;
  text-decoration: none !important;
  transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.sidra-product-button:hover {
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(8, 122, 40, .22);
}

.sidra-cart-icon {
  font-size: 16px;
  line-height: 1;
}

.sidra-products-empty,
.sidra-products-notice {
  padding: 24px;
  border: 1px solid #d7e8f2;
  border-radius: 14px;
  background: #f7fbfd;
  color: var(--sidra-text);
}

@media (max-width: 767px) {
  .sidra-products-header {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .sidra-products-view-all {
    font-size: 13.5px;
    padding: 10px 18px;
  }

  .sidra-product-image-wrap {
    min-height: 190px;
  }

  .sidra-product-image {
    height: 190px;
  }

  .sidra-product-title {
    font-size: 15.5px;
  }

  .sidra-product-price {
    font-size: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sidra-product-card,
  .sidra-product-image,
  .sidra-product-button,
  .sidra-products-view-all {
    transition: none !important;
  }

  .sidra-product-card:hover,
  .sidra-product-card:hover .sidra-product-image,
  .sidra-product-button:hover,
  .sidra-products-view-all:hover {
    transform: none !important;
  }
}

.sidra-product-description,
.sidra-featured-products,
.sidra-featured-products *,
.sidra-featured-products button,
.sidra-featured-products input,
.sidra-featured-products select,
.sidra-featured-products textarea {
  font-family: var(--sidra-font-body);
}

.sidra-product-title a,
.sidra-featured-products__eyebrow,
.sidra-featured-products__heading,
.sidra-featured-products__product-title,
.sidra-featured-products__price,
.sidra-featured-products__button {
  font-family: var(--sidra-font-heading);
}
