/**
 * Pro Plus Gym - Product Page (matches screenshot: Hawaiian Chicken layout)
 * Dark background and white text like home page.
 */

body.ppg-product-page-body {
  background: #07060b;
  color: #FFFFFF;
}

/* Product page: header main padding override */
body.ppg-product-page-body .ppg-header__main {
  background: #070707;
  padding: 20px 24px 0px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.ppg-product-page {
  padding: 100px 24px 60px;
  background: #0d0d0d !important;
  min-height: 100vh;
  color: #FFFFFF;
}

.ppg-product-page__wrap {
  max-width: 1200px;
  padding-top: 144px !important;
  margin: 0 auto;
}

.ppg-product-page .ppg-product-page__wrap {
    padding-top: 64px !important;
}
.ppg-product-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
  text-decoration: none;
  background: #520975;
  border-radius: 10px;
  border: 1px solid rgba(82, 9, 117, 0.5);
  box-shadow: 0 4px 14px rgba(82, 9, 117, 0.25);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.ppg-product-page__back:hover {
  background: #6b0d9e;
  color: #fff !important;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(82, 9, 117, 0.35);
}

/* Two-column product block: image left, details right */
.ppg-product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 40px;
}

.ppg-product-detail__left {
  position: sticky;
  top: 100px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  visibility: visible;
  justify-self: start;
}

.ppg-product-detail__img-wrap {
  aspect-ratio: 1;
  width: 100%;
  max-width: 100%;
  min-height: 200px;
  overflow: hidden;
  visibility: visible;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  box-sizing: border-box;
}

.ppg-product-detail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: middle;
}

.ppg-product-detail__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.ppg-product-detail__title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.ppg-product-detail__price {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #a36aff;
}

.ppg-product-detail__desc {
  margin: 0;
  font-size: 15px;
  color: rgba(243, 242, 247, 0.85);
  line-height: 1.6;
}

/* Macro blocks: light gray box, value + label (uppercase) */
.ppg-product-detail__nutrition {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.ppg-product-detail__nutrition-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 16px;
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  min-width: 0;
}

.ppg-product-detail__nutrition-val {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.ppg-product-detail__nutrition-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(243, 242, 247, 0.72);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Quantity + Add to Cart (same row) */
.ppg-product-detail__actions {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.ppg-product-detail__add-form--row,
.ppg-product-detail__actions .ppg-product-detail__add-form--row {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.ppg-product-detail__add-form--row .ppg-product-detail__add-btn {
  flex: 0 1 auto;
  width: auto;
}

.ppg-product-detail__variation-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px 16px;
  width: 100%;
}

.ppg-product-detail__variation-qty-list {
  display: grid;
  gap: 14px;
  width: 100%;
}

.ppg-product-detail__variation-qty-title {
  font-size: 14px;
  font-weight: 600;
  color: rgba(243, 242, 247, 0.9);
}

.ppg-product-detail__variation-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.ppg-product-detail__variation-qty-row.has-quantity,
.ppg-product-detail__variation-qty-row.is-active {
  border-color: rgba(163, 106, 255, 0.55);
  background: rgba(163, 106, 255, 0.08);
}

.ppg-product-detail__variation-qty-meta {
  display: flex;
  align-items: center;
}

.ppg-product-detail__variation-qty-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.ppg-product-detail__qty--variation {
  flex-shrink: 0;
}

.ppg-product-detail__variation-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ppg-product-detail__variation-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(243, 242, 247, 0.72);
}

.ppg-product-detail__variation-select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: #1A1A1A;
  color: #FFFFFF;
  font-size: 14px;
}

.ppg-product-detail__variation-status {
  margin: 0;
  align-self: end;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(243, 242, 247, 0.72);
}

.ppg-product-detail__variation-status.is-error {
  color: #ff8f8f;
}

.ppg-product-detail__variation-status.is-success {
  color: #8fe4a8;
}

.ppg-product-detail__variation-status.is-muted {
  color: rgba(243, 242, 247, 0.72);
}

.ppg-product-detail__delivery-date-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ppg-product-detail__delivery-select {
  width: 100%;
  min-width: 280px;
  height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(163, 106, 255, 0.85);
  border-radius: 0;
  background: #1A1A1A;
  color: #FFFFFF;
  font-size: 14px;
}

.ppg-product-detail__qty-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ppg-product-detail__qty-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(243, 242, 247, 0.72);
}

.ppg-product-detail__qty {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #1A1A1A;
  width: fit-content;
}

.ppg-product-detail__qty .ppg-qty__btn {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  background: #1A1A1A;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppg-product-detail__qty .ppg-qty__btn:last-of-type {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.ppg-product-detail__qty .ppg-qty__input {
  width: 48px;
  height: 40px;
  padding: 0 !important;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  background: #1A1A1A;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  font-size: 15px;
}

/* Add to Cart: prominent wide button with cart icon */
.ppg-product-detail__add-btn {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  width: 100%;
  height: 52px;
  padding: 0 28px 0 52px;
  font-size: 15px;
  font-weight: 900 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px !important;
  border: 1px solid #520975 !important;
  background: #520975 !important;
  color: #fff !important;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  border-radius: 4px;
  transition: box-shadow 0.2s ease;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.ppg-product-detail__add-btn::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}

.ppg-product-detail__add-btn:hover {
  background: #520975 !important;
  box-shadow: none;
}

.ppg-product-detail__add-btn:hover::before {
  opacity: 1;
}

.ppg-product-detail__add-btn:active {
  transform: translateY(0) scale(0.99);
}

.ppg-product-detail__add-btn:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

/* Feature list with purple checkmarks */
.ppg-product-detail__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ppg-product-detail__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(243, 242, 247, 0.9);
  line-height: 1.5;
}

.ppg-product-detail__feature-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23a36aff'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Key Ingredients */
.ppg-product-detail__key-ingredients {
  margin-top: 8px;
}

.ppg-product-detail__key-ingredients-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

.ppg-key-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
}

.ppg-key-ingredients__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.ppg-key-ingredients__img-wrap {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.ppg-key-ingredients__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ppg-key-ingredients__name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(243, 242, 247, 0.9);
  text-align: center;
  max-width: 90px;
}

/* Full-width tabbed section */
.ppg-product-tabs {
  width: 100%;
  background: #1A1A1A;
  border: 1px solid rgb(255 255 255 / 54%) !important;
  border-radius: 12px;
  overflow: hidden;
}

.ppg-product-tabs__nav {
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: #1A1A1A;
  padding: 0;
  gap: 0;
}

.ppg-product-tabs__tab {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(243, 242, 247, 0.72);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  margin-bottom: -1px;
}

.ppg-product-tabs__tab:hover {
  color: #FFFFFF;
}

.ppg-product-tabs__tab.ppg-product-tabs__tab--active {
  color: #FFFFFF;
  background: #1A1A1A;
  border-bottom-color: #a36aff;
}

.ppg-product-tabs__content {
  padding: 0;
}

.ppg-product-tabs__pane {
  display: none;
  padding: 24px 23px;
}

.ppg-product-tabs__pane.ppg-product-tabs__pane--active {
  display: block;
}

.ppg-product-tabs__pane-inner {
  max-width: 100%;
}

.ppg-product-tabs__pane p {
  margin: 0 0 12px;
  font-size: 14px;
  color: rgba(243, 242, 247, 0.85);
  line-height: 1.6;
}

.ppg-product-tabs__pane p:last-child {
  margin-bottom: 0;
}

.ppg-product-nutrition-facts {
  display: grid;
  gap: 16px;
  margin-bottom: 14px;
}

.ppg-product-nutrition-facts__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.ppg-product-nutrition-facts__card {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    #111111;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ppg-product-nutrition-facts__card.is-active {
  border-color: rgba(163, 106, 255, 0.7);
  box-shadow: 0 16px 36px rgba(82, 9, 117, 0.22);
  transform: translateY(-1px);
}

.ppg-product-nutrition-facts__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ppg-product-nutrition-facts__card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.ppg-product-nutrition-facts__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ppg-product-nutrition-facts__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.ppg-product-nutrition-facts__portion {
  font-size: 14px;
  font-weight: 600;
  color: #c7a7ff;
}

.ppg-product-nutrition-facts__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.ppg-product-nutrition-facts__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.ppg-product-nutrition-facts__row span {
  color: rgba(243, 242, 247, 0.75);
}

.ppg-product-nutrition-facts__row strong {
  color: #fff;
  font-weight: 700;
}

.ppg-product-tabs__description {
  margin: 0;
  font-size: 14px;
  color: rgba(243, 242, 247, 0.85);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .ppg-product-page {
    padding: 88px 16px 40px;
  }

  .ppg-product-detail {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .ppg-product-detail__left {
    position: static;
  }

  .ppg-product-detail__img-wrap {
    aspect-ratio: 4/3;
  }

  .ppg-product-detail__title {
    font-size: 22px;
  }

  .ppg-product-detail__nutrition {
    gap: 10px 12px;
  }

  .ppg-product-detail__nutrition-item {
    padding: 10px 14px;
  }

  .ppg-product-detail__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .ppg-product-detail__add-btn {
    min-width: 0;
    max-width: none;
    width: 100%;
    height: 48px;
    font-size: 14px;
    padding: 0 24px 0 48px;
  }

  .ppg-product-detail__add-btn::before {
    left: 18px;
    width: 20px;
    height: 20px;
  }

  .ppg-key-ingredients {
    gap: 16px 24px;
  }

  .ppg-key-ingredients__img-wrap {
    width: 64px;
    height: 64px;
  }

  .ppg-product-tabs__nav {
    flex-wrap: wrap;
  }

  .ppg-product-tabs__tab {
    padding: 12px 16px;
    font-size: 13px;
  }

  .ppg-product-tabs__pane {
    padding: 20px 23px;
  }
}

@media (max-width: 480px) {
  .ppg-product-page {
    padding: 80px 12px 32px;
  }
  .ppg-product-detail__title {
    font-size: 20px;
  }
  .ppg-product-detail__nutrition-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
  }
  .ppg-product-detail__actions {
    gap: 12px;
  }
  .ppg-product-tabs__tab {
    padding: 10px 12px;
    font-size: 12px;
  }
  .ppg-product-tabs__pane {
    padding: 16px;
  }

  .ppg-product-nutrition-facts__grid {
    grid-template-columns: 1fr;
  }

  .ppg-product-nutrition-facts__cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .ppg-product-detail__variation-qty-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Products grid (listing page) - scoped so home/global .ppg-product-card styles do not override */
.ppg-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

/* Each card is a grid item; card layout = image left | content right */
.ppg-products-grid .ppg-product-card {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  min-height: 0;
  background: #1A1A1A;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: none;
}

.ppg-products-grid .ppg-product-card__img-wrap {
  position: relative;
  aspect-ratio: 1;
  height: 100%;
  min-width: 0;
  overflow: hidden;
  background: #1A1A1A;
}

.ppg-products-grid .ppg-product-card__img-link {
  display: block;
  width: 100%;
  height: 100%;
}

.ppg-products-grid .ppg-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  vertical-align: middle;
}

.ppg-products-grid .ppg-product-card__info-btn {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  background: #520975 !important;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s;
}

.ppg-products-grid .ppg-product-card__info-btn:hover {
  background: #520975 !important;
  color: #fff;
}

/* Override home page absolute positioning so content stays in flow inside each card */
.ppg-products-grid .ppg-product-card__content {
  position: static !important;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  min-width: 0;
  background: #0d0d0d !important;
  border-radius: 0;
  bottom: auto;
  left: auto;
  right: auto;
}
.footer-nav-widgets-wrapper {
  display: none !important;
}
.singular .entry-header {
  background-color: transparent;
  padding: 4rem 0;
  margin-top: 135px;
  padding: 0 !important;
}
.ppg-products-grid .ppg-product-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.3;
}

.page-id-27 .footer-nav-widgets-wrapper {
  display: none !important;
}
.ppg-products-grid .ppg-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.ppg-products-grid .ppg-product-card__title a:hover {
  color: #a36aff;
}

.ppg-products-grid .ppg-product-card__price {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #fff !important;
}

.ppg-products-grid .ppg-product-card__desc {
  margin: 0;
  font-size: 13px;
  color: rgba(243, 242, 247, 0.85);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ppg-products-grid .ppg-product-card__nutrition {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(243, 242, 247, 0.8);
}

.ppg-products-grid .ppg-product-card__nutrition-item {
  white-space: nowrap;
}

.ppg-products-grid .ppg-product-card__add-form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 8px;
}

.ppg-products-grid .ppg-product-card__qty {
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: #1A1A1A;
  width: fit-content;
}

.ppg-products-grid .ppg-product-card__qty .ppg-qty__btn {
  width: 36px;
  height: 36px;
  min-width: 36px;
  min-height: 36px;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  background: #1A1A1A;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ppg-products-grid .ppg-product-card__qty .ppg-qty__btn:last-of-type {
  border-right: none;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
}

.ppg-products-grid .ppg-product-card__qty .ppg-qty__input {
  width: 40px;
  height: 36px;
  padding: 0 !important;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.11);
  border-right: 1px solid rgba(255, 255, 255, 0.11);
  background: #1A1A1A;
  color: #FFFFFF;
  font-weight: 700;
  text-align: center;
  font-size: 14px;
}

.ppg-products-grid .ppg-product-card__add-btn {
  padding: 10px 18px 10px 38px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #fff !important;
  background: #520975;
  border: 1px solid #520975;
  border-radius: 4px;
  cursor: pointer;
  transition: box-shadow 0.2s;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.ppg-products-grid .ppg-product-card__add-btn::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='9' cy='21' r='1'/%3E%3Ccircle cx='20' cy='21' r='1'/%3E%3Cpath d='M1 1h4l2.68 13.39a2 2 0 0 0 2 1.61h9.72a2 2 0 0 0 2-1.61L23 6H6'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.ppg-products-grid .ppg-product-card__add-btn:hover {
  background: #520975;
  box-shadow: none;
}

.ppg-load-more-wrap {
  text-align: center;
  margin-top: 24px;
  margin-bottom: 40px;
}

.ppg-load-more-btn {
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: #520975;
  border: 1px solid #520975;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  transition: box-shadow 0.2s;
}

.ppg-load-more-btn:hover {
  background: #520975;
  box-shadow: none;
}

.ppg-load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 992px) {
  .ppg-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ppg-products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ppg-products-grid .ppg-product-card {
    grid-template-columns: 1fr;
  }

  .ppg-products-grid .ppg-product-card__img-wrap {
    aspect-ratio: 4/3;
  }
}
