/* ==========================================================================
   Pocket Pantry — Single Product Page Styles
   ========================================================================== */

/* ── BREADCRUMB ─────────────────────────────────────────────────────────── */
.pp-pdp-breadcrumb {
  background-color: var(--bgcreame, #fef9f3);
  border-bottom: 1px solid var(--border-cream, #f0e6d9);
  padding: 14px 0;
}

.pp-pdp-breadcrumb nav {
  font-size: 13px;
  color: var(--grey, #6b7280);
  font-family: var(--global-body-font-family);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.pp-pdp-breadcrumb nav a {
  color: var(--grey, #6b7280);
  text-decoration: none;
  transition: color 0.2s;
}

.pp-pdp-breadcrumb nav a:hover {
  color: var(--orange, #ff5733);
}

.pp-pdp-breadcrumb .sep {
  color: #c0b9b0;
  margin: 0 2px;
}

.pp-pdp-breadcrumb .current-crumb {
  color: var(--blue, #2c3e50);
  font-weight: 600;
}

/* ── MAIN PRODUCT SECTION ───────────────────────────────────────────────── */
.pp-pdp-main {
  background-color: var(--bgcreame, #fef9f3);
  padding: 48px 0 0;
  background-image:
    url("https://staging.pocketpantry.in/wp-content/uploads/2026/05/leaf-left.png"),
    url("https://staging.pocketpantry.in/wp-content/uploads/2026/05/leaf-right.png");
  background-position: left 80%, right 80%;
  background-repeat: no-repeat, no-repeat;
  background-size: 160px auto, 160px auto;
}

.pp-pdp-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

/* ── GALLERY COLUMN ─────────────────────────────────────────────────────── */
.pp-pdp-gallery {
  flex: 0 0 520px;
  max-width: 520px;
  display: flex;
  gap: 16px;
}

/* Thumbnails sidebar */
.pp-pdp-thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 72px;
  flex-shrink: 0;
}

.pp-pdp-thumb-nav {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: var(--grey, #6b7280);
  font-size: 14px;
  display: flex;
  justify-content: center;
  transition: color 0.2s;
}

.pp-pdp-thumb-nav:hover {
  color: var(--orange, #ff5733);
}

.pp-pdp-thumb-item {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.2s;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-pdp-thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pp-pdp-thumb-item.active,
.pp-pdp-thumb-item:hover {
  border-color: var(--orange, #ff5733);
  box-shadow: 0 2px 12px rgba(255,87,51,0.2);
}

/* Main image */
.pp-pdp-main-img-wrap {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  padding: 24px;
  position: relative;
}

.pp-pdp-main-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.pp-pdp-main-img-wrap:hover img {
  transform: scale(1.03);
}

/* ── INFO COLUMN ────────────────────────────────────────────────────────── */
.pp-pdp-info {
  flex: 1;
  min-width: 0;
  padding-bottom: 48px;
}

/* Badge row */
.pp-pdp-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pp-pdp-sale-badge {
  display: inline-block;
  background-color: var(--orange, #ff5733);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--global-font-family);
  letter-spacing: 0.3px;
}

.pp-pdp-new-badge {
  display: inline-block;
  background-color: var(--blue, #2c3e50);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  font-family: var(--global-font-family);
  letter-spacing: 0.3px;
}

/* Product title */
.pp-pdp-title {
  font-family: var(--global-heading-font, 'Poppins', sans-serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  color: var(--blue, #2c3e50);
  line-height: 1.15;
  margin: 0 0 12px;
  padding: 0;
}

/* Rating */
.pp-pdp-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
}

.pp-pdp-stars {
  display: inline-flex;
  gap: 3px;
  font-size: 14px;
  color: #f5a623;
}

.pp-pdp-rating-text {
  font-size: 13px;
  color: var(--grey, #6b7280);
  font-family: var(--global-body-font-family);
}

/* Price block */
.pp-pdp-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.pp-pdp-price-orig {
  font-size: 22px;
  color: #aaa;
  text-decoration: line-through;
  font-family: var(--global-body-font-family);
  font-weight: 500;
}

.pp-pdp-price-orig .woocommerce-Price-amount {
  font-size: 22px;
  color: #aaa;
  text-decoration: line-through;
}

.pp-pdp-price-sale {
  font-size: 34px;
  font-weight: 800;
  color: var(--orange, #ff5733);
  font-family: var(--global-body-font-family);
}

.pp-pdp-price-sale .woocommerce-Price-amount {
  font-size: 34px;
  font-weight: 800;
  color: var(--orange, #ff5733);
}

/* Short description */
.pp-pdp-short-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 26px;
  font-family: var(--global-body-font-family);
}

/* Quantity + Add to Cart */
.pp-pdp-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.pp-pdp-qty-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--border-skin, #fce3cb);
  border-radius: 50px;
  overflow: hidden;
  background: #fff;
}

.pp-pdp-qty-btn {
  width: 40px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: var(--blue, #2c3e50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  padding: 0;
  font-weight: 700;
  flex-shrink: 0;
}

.pp-pdp-qty-btn:hover {
  color: var(--orange, #ff5733);
}

.pp-pdp-qty-input {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--global-body-font-family);
  color: var(--blue, #2c3e50);
  outline: none;
  -moz-appearance: textfield;
}

.pp-pdp-qty-input::-webkit-inner-spin-button,
.pp-pdp-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}

.pp-pdp-atc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 30px;
  border-radius: 50px;
  background-color: var(--orange, #ff5733);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--global-body-font-family);
  border: 2px solid var(--orange, #ff5733);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  line-height: 1;
  flex: 1;
  max-width: 260px;
}

.pp-pdp-atc-btn:hover {
  background-color: var(--blue, #2c3e50);
  border-color: var(--blue, #2c3e50);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 87, 51, 0.3);
}

/* Wishlist link */
.pp-pdp-wishlist-row {
  margin-bottom: 20px;
}

.pp-pdp-wishlist-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--grey, #6b7280);
  font-size: 14px;
  font-family: var(--global-body-font-family);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  transition: color 0.2s;
  font-weight: 500;
}

.pp-pdp-wishlist-btn:hover,
.pp-pdp-wishlist-btn.pp-wishlisted {
  color: var(--orange, #ff5733);
}

.pp-pdp-wishlist-btn i {
  font-size: 16px;
}

/* Share row */
.pp-pdp-share-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 16px;
  border-top: 1px solid var(--border-cream, #f0e6d9);
}

.pp-pdp-share-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue, #2c3e50);
  font-family: var(--global-font-family);
}

.pp-pdp-share-links {
  display: flex;
  gap: 8px;
}

.pp-pdp-share-link {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--border-cream, #f0e6d9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--blue, #2c3e50);
  text-decoration: none;
  transition: all 0.2s;
}

.pp-pdp-share-link:hover {
  background-color: var(--orange, #ff5733);
  border-color: var(--orange, #ff5733);
  color: #fff;
  text-decoration: none;
}

/* ── USP STRIP ──────────────────────────────────────────────────────────── */
.pp-pdp-usp-strip {
  background: #fff;
  border-top: 1px solid var(--border-cream, #f0e6d9);
  border-bottom: 1px solid var(--border-cream, #f0e6d9);
  padding: 22px 0;
  margin-top: 0;
}

.pp-pdp-usp-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.pp-pdp-usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-family: var(--global-body-font-family);
  color: var(--blue, #2c3e50);
  font-weight: 600;
  white-space: nowrap;
}

.pp-pdp-usp-item i {
  font-size: 22px;
  color: var(--orange, #ff5733);
  flex-shrink: 0;
}

.pp-pdp-usp-item .usp-icon-svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.pp-pdp-usp-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue, #2c3e50);
  font-family: var(--global-font-family);
  line-height: 1.3;
}

.pp-pdp-usp-text span {
  font-size: 11px;
  color: var(--grey, #6b7280);
  font-family: var(--global-body-font-family);
  display: block;
  line-height: 1.3;
}

/* ── TABS SECTION ───────────────────────────────────────────────────────── */
.pp-pdp-tabs-section {
  background-color: var(--bgcreame, #fef9f3);
  padding: 50px 0 0;
}

.pp-pdp-tabs-nav {
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--border-cream, #f0e6d9);
  gap: 0;
  overflow-x: auto;
  flex-wrap: nowrap;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.pp-pdp-tabs-nav::-webkit-scrollbar {
  display: none;
}

.pp-pdp-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 20px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--global-font-family);
  color: var(--grey, #6b7280);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.pp-pdp-tab-btn i {
  font-size: 14px;
}

.pp-pdp-tab-btn:hover {
  color: var(--orange, #ff5733);
}

.pp-pdp-tab-btn.active {
  color: var(--orange, #ff5733);
  border-bottom-color: var(--orange, #ff5733);
}

.pp-pdp-tabs-content {
  padding: 40px 0 60px;
}

.pp-pdp-tab-panel {
  display: none;
  animation: ppFadeIn 0.3s ease;
}

.pp-pdp-tab-panel.active {
  display: block;
}

@keyframes ppFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── WHY CHOOSE POCKET PANTRY ───────────────────────────────────────────── */
.pp-pdp-why-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.pp-pdp-why-heading {
  font-family: var(--global-heading-font, 'Poppins', sans-serif);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 800;
  color: var(--orange, #ff5733);
  margin: 0 0 28px;
  padding: 0;
}

.pp-pdp-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 30px;
}

.pp-pdp-why-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pp-pdp-why-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 87, 51, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange, #ff5733);
  font-size: 16px;
}

.pp-pdp-why-text strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--blue, #2c3e50);
  font-family: var(--global-font-family);
  margin-bottom: 3px;
  line-height: 1.35;
}

.pp-pdp-why-text p {
  font-size: 12px;
  color: var(--grey, #6b7280);
  line-height: 1.55;
  margin: 0;
}

.pp-pdp-why-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.pp-pdp-why-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* ── DESCRIPTION TAB ────────────────────────────────────────────────────── */
.pp-pdp-desc-content {
  font-size: 15px;
  color: #444;
  line-height: 1.75;
  font-family: var(--global-body-font-family);
  max-width: 860px;
}

.pp-pdp-desc-content p { margin-bottom: 16px; }
.pp-pdp-desc-content ul { padding-left: 22px; margin-bottom: 16px; }
.pp-pdp-desc-content li { margin-bottom: 8px; }
.pp-pdp-desc-content h3,
.pp-pdp-desc-content h4 {
  color: var(--blue, #2c3e50);
  margin: 24px 0 12px;
  font-family: var(--global-heading-font);
}

/* ── ADDITIONAL INFO TAB ────────────────────────────────────────────────── */
.pp-pdp-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--global-body-font-family);
  font-size: 15px;
  max-width: 600px;
}

.pp-pdp-table th {
  text-align: left;
  padding: 12px 16px;
  background: rgba(255,87,51,0.05);
  font-weight: 700;
  color: var(--blue, #2c3e50);
  border-bottom: 1px solid var(--border-cream, #f0e6d9);
  width: 40%;
}

.pp-pdp-table td {
  padding: 12px 16px;
  color: #555;
  border-bottom: 1px solid var(--border-cream, #f0e6d9);
}

/* ── NUTRITION TAB ──────────────────────────────────────────────────────── */
.pp-pdp-nutrition-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 16px;
  max-width: 700px;
}

.pp-pdp-nutrition-card {
  background: #fff;
  border: 1.5px solid var(--border-cream, #f0e6d9);
  border-radius: 14px;
  padding: 16px 12px;
  text-align: center;
}

.pp-pdp-nutrition-value {
  font-size: 22px;
  font-weight: 800;
  color: var(--orange, #ff5733);
  font-family: var(--global-body-font-family);
  display: block;
  line-height: 1.2;
}

.pp-pdp-nutrition-label {
  font-size: 12px;
  color: var(--grey, #6b7280);
  font-family: var(--global-body-font-family);
  margin-top: 4px;
  display: block;
}

/* ── HOW TO PREPARE TAB ─────────────────────────────────────────────────── */
.pp-pdp-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 680px;
}

.pp-pdp-step {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.pp-pdp-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--orange, #ff5733);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--global-font-family);
}

.pp-pdp-step-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--blue, #2c3e50);
  font-family: var(--global-font-family);
  margin-bottom: 4px;
}

.pp-pdp-step-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0;
  font-family: var(--global-body-font-family);
}

/* ── RELATED PRODUCTS ───────────────────────────────────────────────────── */
.pp-pdp-related {
  background-color: var(--bgcreame, #fef9f3);
  padding: 60px 0 70px;
}

.pp-pdp-related-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
}

.pp-pdp-related-heading h2 {
  font-family: var(--global-heading-font, 'Poppins', sans-serif);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  color: var(--blue, #2c3e50);
  margin: 0;
  padding: 0;
}

.pp-pdp-related-line {
  width: 50px;
  height: 4px;
  background: var(--orange, #ff5733);
  border-radius: 4px;
  flex-shrink: 0;
}

/* Related product card (reuses shop card styles where possible) */
.pp-pdp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

/* ── REVIEWS SECTION ────────────────────────────────────────────────────── */
.pp-pdp-reviews-section {
  padding: 20px 0 0;
}

.pp-pdp-reviews-summary {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.pp-pdp-avg-score {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  min-width: 140px;
}

.pp-pdp-avg-num {
  font-size: 52px;
  font-weight: 800;
  color: var(--orange, #ff5733);
  font-family: var(--global-body-font-family);
  line-height: 1;
  display: block;
}

.pp-pdp-avg-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  font-size: 18px;
  color: #f5a623;
  margin: 8px 0 6px;
}

.pp-pdp-avg-count {
  font-size: 13px;
  color: var(--grey, #6b7280);
  font-family: var(--global-body-font-family);
}

.pp-pdp-rating-bars {
  flex: 1;
  min-width: 220px;
}

.pp-pdp-rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 13px;
  color: var(--blue, #2c3e50);
  font-family: var(--global-body-font-family);
}

.pp-pdp-rating-bar-track {
  flex: 1;
  height: 6px;
  background: #e9e5e0;
  border-radius: 6px;
  overflow: hidden;
}

.pp-pdp-rating-bar-fill {
  height: 100%;
  background: var(--orange, #ff5733);
  border-radius: 6px;
  transition: width 0.6s ease;
}

.pp-pdp-rating-bar-pct {
  width: 28px;
  text-align: right;
  font-size: 12px;
  color: var(--grey, #6b7280);
}

/* Individual review card */
.pp-pdp-review-card {
  background: #fff;
  border-radius: 16px;
  padding: 22px 24px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.pp-pdp-review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  flex-wrap: wrap;
  gap: 8px;
}

.pp-pdp-reviewer-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue, #2c3e50);
  font-family: var(--global-font-family);
}

.pp-pdp-review-meta {
  font-size: 12px;
  color: var(--grey, #6b7280);
  font-family: var(--global-body-font-family);
}

.pp-pdp-review-stars {
  color: #f5a623;
  font-size: 14px;
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}

.pp-pdp-review-text {
  font-size: 14px;
  color: #555;
  line-height: 1.65;
  font-family: var(--global-body-font-family);
  margin: 0;
}

/* WooCommerce review form override */
#respond.comment-respond {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.06);
  margin-top: 32px;
}

#respond .comment-reply-title {
  font-family: var(--global-heading-font) !important;
  font-size: 20px !important;
  color: var(--blue, #2c3e50) !important;
}

#respond input[type="text"],
#respond input[type="email"],
#respond textarea {
  border: 1.5px solid var(--border-cream, #f0e6d9);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  font-family: var(--global-body-font-family);
  transition: border-color 0.2s;
  width: 100%;
}

#respond input[type="text"]:focus,
#respond input[type="email"]:focus,
#respond textarea:focus {
  border-color: var(--orange, #ff5733);
  outline: none;
}

#respond .submit {
  background: var(--orange, #ff5733) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 11px 28px !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  cursor: pointer !important;
  transition: all 0.25s !important;
  font-family: var(--global-font-family) !important;
}

#respond .submit:hover {
  background: var(--blue, #2c3e50) !important;
}

/* ── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1199px) {
  .pp-pdp-gallery {
    flex: 0 0 440px;
    max-width: 440px;
  }
  .pp-pdp-inner {
    gap: 40px;
  }
}

@media (max-width: 991px) {
  .pp-pdp-inner {
    flex-direction: column;
    gap: 32px;
  }

  .pp-pdp-gallery {
    flex: none;
    max-width: 100%;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .pp-pdp-why-section {
    grid-template-columns: 1fr;
  }

  .pp-pdp-why-img {
    order: -1;
  }

  .pp-pdp-why-img img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .pp-pdp-main {
    padding-top: 28px;
  }

  .pp-pdp-gallery {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .pp-pdp-thumbs {
    flex-direction: row;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pp-pdp-thumb-item {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .pp-pdp-thumb-nav {
    display: none;
  }

  .pp-pdp-title {
    font-size: 26px;
  }

  .pp-pdp-price-sale {
    font-size: 28px;
  }

  .pp-pdp-atc-btn {
    max-width: 100%;
    flex: 1 1 100%;
  }

  .pp-pdp-actions {
    flex-wrap: wrap;
  }

  .pp-pdp-usp-strip .container {
    gap: 14px;
    justify-content: flex-start;
  }

  .pp-pdp-tab-btn {
    padding: 12px 14px;
    font-size: 12px;
  }

  .pp-pdp-why-grid {
    grid-template-columns: 1fr;
  }

  .pp-pdp-nutrition-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .pp-pdp-reviews-summary {
    flex-direction: column;
    gap: 24px;
  }

  .pp-pdp-avg-score {
    width: 100%;
  }
}
