:root {
  --brand-red: #bc000d;
  --soft-pink: #fef6f3;
  --border-pink: #fdeeee;
}

/* Back to products link */
.pdp-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #888;
  text-decoration: none;
  margin-bottom: 14px;
  transition: color 0.2s ease;
}

.pdp-back-link:hover {
  color: var(--brand-red);
  text-decoration: none;
}

/* Stars — consistent with FA icons */
.rating-row .stars i {
  font-size: 15px;
  color: #f5a623;
}

.rating-row .stars .far {
  color: #ddd;
}

/* btn-primary hover (add to bag) */
.btn-primary:hover:not(:disabled) {
  background: #9e000b;
  transform: translateY(-1px);
}

.product-page {
  padding: 60px 5%;
  max-width: 1200px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Gallery Styles */
.main-img-container img {
  width: 100%;
  border-radius: 20px;
}

.thumbnail-bar {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.thumbnail-bar img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumbnail-bar img.active {
  border-color: var(--brand-red);
}

/* Info Styles */
.brand-title {
  color: var(--brand-red);
  font-size: 3.5rem;
  font-weight: 900;
  margin: 0;
}

.rating-row {
  display: flex;
  gap: 10px;
  color: var(--brand-red);
  font-weight: 700;
  margin-bottom: 20px;
}

.price-row {
  margin-bottom: 30px;
}

.price-val {
  font-size: 3rem;
  font-weight: 800;
}

.unit-val {
  color: #888;
  font-size: 1.2rem;
}

/* Buttons */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 35px;
}

.btn-primary, .btn-secondary {
  padding: 18px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
  border: none;
}

.btn-secondary {
  background: transparent;
  color: var(--brand-red);
  border: 2px solid var(--brand-red);
}

.btn-secondary:hover {
  background: var(--brand-red);
  color: #fff;
}

/* Info Card */
.info-card {
  background: var(--soft-pink);
  padding: 20px;
  border-radius: 15px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.icon-circle {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.item-head {
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
}

.text-block p {
  margin: 0;
  font-size: 0.8rem;
  color: #666;
}


/* --- MOBILE RESPONSIVE --- */
@media (max-width: 850px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .brand-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .price-row, .rating-row {
    justify-content: center;
    display: flex;
  }

  .thumbnail-bar {
    justify-content: center;
  }
}


.quantity-container {
  margin-bottom: 25px;
}

.quantity-container label {
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #a32a2a; /* Matching brand red */
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.quantity-selector {
  display: flex;
  align-items: center;
  background: #fdeeee; /* Soft pink background */
  width: fit-content;
  border-radius: 12px;
  overflow: hidden;
}

.qty-btn {
  background: transparent;
  border: none;
  width: 45px;
  height: 45px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  color: #bc000d;
  transition: background 0.2s;
}

.qty-btn:hover {
  background: rgba(188, 0, 13, 0.05);
}

.quantity-selector input {
  width: 50px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  outline: none;
  /* Hide arrows */
  -moz-appearance: textfield;
}

.quantity-selector input::-webkit-outer-spin-button,
.quantity-selector input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Mobile Alignment */
@media (max-width: 850px) {
  .quantity-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
















.crunch-story {
  background-color: #fef6f3; /* Matching the brand's light blush background */
  padding: 80px 10%;
  font-family: 'Inter', sans-serif;
}

.crunch-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* TEXT SIDE */
.crunch-text {
  flex: 1.2; /* Text takes slightly more space */
}

.label {
  color: #a32a2a;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  display: block;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.crunch-text h2 {
  font-size: 3rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.crunch-quote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 25px;
  padding-left: 0; /* Aligning with the image design */
}

.crunch-text p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

/* IMAGE SIDE */
.crunch-image {
  flex: 1;
}

.story-img {
  width: 100%;
  border-radius: 30px; /* Large rounded corners from the image */
  display: block;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 992px) {
  .crunch-container {
    flex-direction: column-reverse; /* Stacks image on TOP of text for mobile */
    gap: 40px;
    text-align: center;
  }

  .crunch-text h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .crunch-story {
    padding: 60px 20px;
  }

  .crunch-text h2 {
    font-size: 2rem;
  }
  
  .story-img {
    border-radius: 20px;
  }
}














.product-transparency {
  background-color: #fff;
  padding: 60px 10%;
  font-family: 'Inter', sans-serif;
}

.transparency-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.transparency-card {
  padding: 40px;
  border-radius: 20px;
}

.ingredients-card {
  background-color: #fef6f3; /* Light blush from image */
}

.nutrition-card {
  background-color: #fdeeee; /* Slightly darker pink from image */
}

.section-title {
  color: #a32a2a;
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 30px;
}

/* Ingredients List Styles */
.ingredient-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(163, 42, 42, 0.1);
}

.ingredient-name {
  font-weight: 800;
  letter-spacing: 1px;
}

.ingredient-desc {
  color: #666;
  font-size: 0.9rem;
}

.tag-group {
  margin-top: 30px;
  display: flex;
  gap: 10px;
}

.tag {
  background: white;
  color: #a32a2a;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid #fdeeee;
}

/* Nutrition Label Styles */
.nutrition-label {
  background: white;
  border: 2px solid #000;
  padding: 20px;
  font-family: 'Helvetica', sans-serif; /* Classic label font */
}

.nutrition-label h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 0 10px 0;
  border-bottom: 8px solid #000;
}

.label-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #000;
  font-size: 0.9rem;
  font-weight: 700;
}

.line-thick { border-bottom-width: 4px; }
.no-border { border-bottom: none; }

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .transparency-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .product-transparency {
    padding: 40px 15px;
  }
  
  .transparency-card {
    padding: 25px;
  }

  .tag-group {
    flex-wrap: wrap;
  }
}











.shipping-returns {
  background-color: #fef6f3; /* Matching the soft brand background */
  padding: 80px 10%;
  font-family: 'Inter', sans-serif;
  text-align: center;
}

.sr-container {
  max-width: 1100px;
  margin: 0 auto;
}

.sr-main-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 60px;
  letter-spacing: -0.5px;
}

.sr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; /* Generous space between columns */
  text-align: left; /* Text remains left-aligned inside columns */
}

.sr-label {
  color: #a32a2a; /* Brand Red */
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.sr-column p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
}

/* --- RESPONSIVE DESIGN --- */

@media (max-width: 992px) {
  .sr-grid {
    gap: 40px;
  }
  
  .sr-main-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .shipping-returns {
    padding: 60px 20px;
  }

  .sr-grid {
    grid-template-columns: 1fr; /* Stack columns on mobile */
    gap: 40px;
    text-align: center; /* Center text on mobile for better balance */
  }

  .sr-main-title {
    margin-bottom: 40px;
  }
}













.weight-container {
  margin-bottom: 15px;
}

.weight-container label {
  
  margin-bottom: 5px;
  display: block;
  font-size: 0.8rem;
  font-weight: 800;
  color: #a32a2a; /* Matching brand red */
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.weight-select {
  width: 120px;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  cursor: pointer;

display: flex;
  align-items: center;
  background: #fdeeee; /* Soft pink background */
  

}



@media (max-width: 768px) {

  .weight-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .weight-select {
    margin: 0 auto;
  }

}



