/* ==========================================================================
   DIGITENSIL™ DESIGN SYSTEM & PRODUCT DETAIL PAGE (PDP)
   Visual Direction: Manrope Geometric Titles + Inter UI & Body
   ========================================================================== */

:root {
  /* Refined Palette */
  --bg-page: #fbfbfd;
  --bg-surface: #ffffff;
  --bg-studio: #f5f5f7;
  --bg-subtle: #f5f5f7;
  
  --text-main: #1d1d1f;
  --text-title: #1d1d1f;
  --text-secondary: #515154;
  --text-muted: #86868b;
  --text-strikethrough: #a1a1a6;
  
  /* Restrained Hairline Borders */
  --border-subtle: rgba(0, 0, 0, 0.08);
  --border-card: rgba(0, 0, 0, 0.07);
  --border-divider: rgba(0, 0, 0, 0.05);
  --border-focus: #1d1d1f;
  
  /* Star Ratings */
  --rating-star: #f5a623;
  --rating-star-muted: #d2d2d7;
  
  /* Buttons */
  --btn-cart-bg: #1d1d1f;
  --btn-cart-hover: #000000;
  --btn-cart-text: #ffffff;
  
  --btn-buy-bg: #0071e3;
  --btn-buy-hover: #0077ed;
  --btn-buy-text: #ffffff;
  
  --btn-learn-border: rgba(0, 0, 0, 0.15);
  --btn-learn-text: #1d1d1f;
  --btn-learn-hover: #f5f5f7;

  /* Shadows */
  --shadow-subtle: 0 2px 10px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-sticky: 0 -4px 25px rgba(0, 0, 0, 0.08);
  
  /* Typography Tokens: Manrope for Bold Titles & Headings, Inter for Body */
  --font-heading: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  
  --ease-smooth: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-page);
  color: var(--text-main);
  line-height: 1.5;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
}

body.pdp-body {
  background-color: var(--bg-page);
  display: block;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  color: var(--text-title);
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   PRODUCT DETAIL PAGE CONTAINER & BREADCRUMBS
   ========================================================================== */

.pdp-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.75rem 1.5rem 5rem;
}

.breadcrumb-nav {
  margin-bottom: 2.25rem;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.breadcrumb-item a {
  color: var(--text-muted);
  font-weight: 400;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--text-main);
}

.breadcrumb-separator {
  color: #d2d2d7;
  font-size: 0.75rem;
}

.breadcrumb-item.active {
  color: var(--text-main);
  font-weight: 500;
}

/* ==========================================================================
   2. HERO GRID (GALLERY & PURCHASING PANEL)
   ========================================================================== */

.pdp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 5rem;
}

/* Gallery Column */
.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
  width: 100%;
  position: sticky;
  top: 5rem;
}

/* Studio Gray Viewport */
.main-image-viewport {
  background-color: var(--bg-studio);
  border: 1px solid var(--border-subtle);
  border-radius: 20px;
  height: 470px;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.gallery-main-display {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.2s var(--ease-smooth), transform 0.3s var(--ease-smooth);
}

.gallery-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-subtle);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

/* Thumbnail Selector Strip */
.thumbnail-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  width: 100%;
}

.thumb-btn {
  background-color: var(--bg-studio);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  height: 84px;
  width: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.2s var(--ease-smooth);
}

.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.thumb-btn:hover {
  border-color: rgba(0, 0, 0, 0.2);
}

.thumb-btn.active {
  border: 1.5px solid var(--text-main);
}

/* Purchasing Column */
.purchase-column {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.product-header-block {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.product-category-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* Montserrat Bold Product Title */
.pdp-product-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

/* Rating Row */
.pdp-rating-row {
  margin-top: 0.15rem;
}

.pdp-rating-anchor {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: opacity 0.2s ease;
}

.pdp-rating-anchor:hover {
  opacity: 0.75;
}

.star-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
}

.star-icon {
  width: 13px;
  height: 13px;
  color: var(--rating-star);
}

.review-count-text {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: underline;
}

.verified-pill {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  color: #108548;
  background: rgba(16, 185, 129, 0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}

/* Pricing Box with Montserrat */
.pdp-price-box {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.price-group {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.pdp-currency {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
}

.pdp-current-price {
  font-family: var(--font-heading);
  font-size: 1.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1;
}

.pdp-strikethrough {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  color: var(--text-strikethrough);
  text-decoration: line-through;
  font-weight: 500;
}

.pdp-savings-pill {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: #108548;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.pdp-divider {
  width: 100%;
  height: 1px;
  background: var(--border-divider);
}

/* Option Selectors */
.pdp-option-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.option-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.option-label strong {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 600;
}

.color-options-row {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.color-select-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.2s var(--ease-smooth);
}

.color-select-btn .swatch-circle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: var(--btn-color);
  border: 1px solid rgba(0,0,0,0.1);
}

.color-select-btn:hover {
  border-color: rgba(0,0,0,0.2);
}

.color-select-btn.active {
  border-color: var(--border-focus);
  background: var(--bg-studio);
}

.capacity-chips-row {
  display: flex;
  gap: 0.55rem;
}

.cap-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  padding: 0.55rem 0.65rem;
  border-radius: 12px;
  transition: all 0.2s var(--ease-smooth);
}

.cap-val {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
}

.cap-price {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
}

.cap-btn:hover {
  border-color: rgba(0,0,0,0.2);
}

.cap-btn.active {
  background: var(--text-main);
  border-color: var(--text-main);
}

.cap-btn.active .cap-val,
.cap-btn.active .cap-price {
  color: #ffffff;
}

/* Purchase Actions Container */
.purchase-action-container {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  margin-top: 0.35rem;
}

.quantity-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--bg-studio);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 0.25rem;
  height: 48px;
  flex-shrink: 0;
}

.qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.qty-btn:hover {
  background: var(--text-main);
  color: #ffffff;
}

.qty-display {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 600;
  min-width: 34px;
  text-align: center;
  color: var(--text-main);
}

.action-buttons-group {
  display: flex;
  flex: 1;
  gap: 0.65rem;
}

.pdp-btn-cart {
  flex: 1.1;
  height: 48px;
  border-radius: 999px;
  background: var(--btn-cart-bg);
  color: var(--btn-cart-text);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0 1.25rem;
  transition: all 0.2s var(--ease-smooth);
}

.pdp-btn-cart svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pdp-btn-cart:hover {
  background: var(--btn-cart-hover);
  transform: translateY(-1px);
}

.pdp-btn-cart.added {
  background: #108548 !important;
}

.pdp-btn-buy {
  flex: 1;
  height: 48px;
  border-radius: 999px;
  background: var(--btn-buy-bg);
  color: var(--btn-buy-text);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.25rem;
  transition: all 0.2s var(--ease-smooth);
}

.pdp-btn-buy:hover {
  background: var(--btn-buy-hover);
  transform: translateY(-1px);
}

/* Trust & Genuine Information */
.trust-assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
  margin-top: 0.25rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.trust-item svg {
  width: 15px;
  height: 15px;
  color: var(--text-main);
  flex-shrink: 0;
}

/* ==========================================================================
   CONTENT SECTIONS (DESCRIPTION, SPECS, ACCORDION, REVIEWS, RECOMMENDATIONS)
   ========================================================================== */

.pdp-section {
  margin-bottom: 4.5rem;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.section-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Description Card */
.description-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-subtle);
}

.desc-lead {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}

.desc-body {
  font-size: 0.90625rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ==========================================================================
   3. COHESIVE PROFESSIONAL ICON SYSTEM & FEATURES
   ========================================================================== */

.features-matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.spec-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 1.35rem;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.2s var(--ease-smooth), border-color 0.2s ease;
}

.spec-card:hover {
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.spec-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--bg-studio);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  margin-bottom: 0.85rem;
}

.spec-card-icon svg {
  width: 20px;
  height: 20px;
}

.spec-card-title {
  font-family: var(--font-heading);
  font-size: 0.96875rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.3rem;
  letter-spacing: -0.015em;
}

.spec-card-desc {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* Technical Specifications Table */
.specs-table-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-subtle);
}

.specs-table-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.015em;
}

.specs-table-grid {
  display: grid;
  grid-template-columns: 1fr;
}

.spec-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  padding: 0.75rem 0;
  font-size: 0.8125rem;
  border-bottom: 1px solid var(--border-divider);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-name {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-main);
}

.spec-val {
  color: var(--text-secondary);
}

/* ==========================================================================
   4. ACCORDION (INTERFACE ICONS - ZERO EMOJIS)
   ========================================================================== */

.accordion-container {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.accordion-item {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
}

.accordion-trigger {
  padding: 1.1rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
}

.accordion-trigger::-webkit-details-marker {
  display: none;
}

.accordion-header-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.accordion-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--bg-studio);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  flex-shrink: 0;
}

.accordion-icon svg {
  width: 15px;
  height: 15px;
}

.accordion-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.90625rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.accordion-arrow {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.accordion-arrow svg {
  width: 14px;
  height: 14px;
}

.accordion-item[open] .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 0 1.35rem 1.15rem 3.45rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.accordion-body p + p {
  margin-top: 0.45rem;
}

/* Reviews Scorecard & Cards */
.review-scorecard-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 18px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-subtle);
}

.scorecard-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid var(--border-divider);
  padding-right: 1.75rem;
}

.score-large {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--text-main);
}

.scorecard-main .stars-row {
  color: var(--rating-star);
  font-size: 1.125rem;
  margin: 0.25rem 0 0.4rem;
  letter-spacing: 0.08em;
}

.score-caption {
  font-size: 0.78125rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.recommend-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: #108548;
  background: rgba(16, 185, 129, 0.08);
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

.scorecard-bars {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.78125rem;
}

.bar-label {
  min-width: 45px;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-secondary);
}

.bar-track {
  flex: 1;
  height: 6px;
  background: var(--bg-studio);
  border-radius: 999px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: #10b981;
  border-radius: 999px;
}

.bar-count {
  min-width: 35px;
  text-align: right;
  color: var(--text-muted);
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-subtle);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.reviewer-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.reviewer-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-studio);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--text-main);
}

.reviewer-name {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
}

.reviewer-verified {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #108548;
}

.review-rating-time {
  text-align: right;
}

.review-stars {
  color: var(--rating-star);
  font-size: 0.875rem;
  display: block;
}

.review-date {
  font-size: 0.6875rem;
  color: var(--text-muted);
}

.review-text {
  font-size: 0.84375rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}

.helpful-btn {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-studio);
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
  border: 1px solid var(--border-subtle);
  transition: all 0.2s ease;
}

.helpful-btn:hover {
  background: #ffffff;
  color: var(--text-main);
}

/* Recommendations Grid */
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* --------------------------------------------------------------------------
   THE PRODUCT CARD COMPONENT (Shared with Index & PDP Recommendations)
   -------------------------------------------------------------------------- */

.page-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 100vh;
  padding: 2.5rem 1rem;
}

.product-card {
  background: var(--bg-surface);
  width: 100%;
  max-width: 360px;
  border-radius: 20px;
  border: 1px solid var(--border-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth), border-color 0.2s ease;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 0, 0, 0.15);
}

.card-image-link {
  display: block;
  width: 100%;
}

.card-image-wrapper {
  width: 100%;
  height: 310px;
  background-color: var(--bg-studio);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s var(--ease-smooth);
}

.product-card:hover .card-img {
  transform: scale(1.03);
}

.card-body {
  padding: 1.1rem 1.35rem 1.35rem;
  position: relative;
  min-height: 220px;
  background: #ffffff;
}

.card-default-view {
  transition: opacity 0.2s var(--ease-smooth);
}

.product-card:hover .card-default-view {
  opacity: 0;
  pointer-events: none;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
}

.currency {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
}

.price-main {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
  line-height: 1;
}

.price-strike {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--text-strikethrough);
  text-decoration: line-through;
  font-weight: 500;
  margin-left: 0.15rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 0.96875rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.35;
  letter-spacing: -0.015em;
  margin-bottom: 0.5rem;
}

.card-title-link {
  transition: color 0.2s ease;
}

.card-title-link:hover {
  color: var(--btn-buy-bg);
}

.rating-row {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.8125rem;
  margin-bottom: 0.75rem;
}

.star-svg {
  width: 13px;
  height: 13px;
  color: var(--rating-star);
}

.rating-val {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
}

.rating-count {
  color: var(--text-muted);
  font-weight: 400;
}

.card-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-divider);
  margin-bottom: 0.75rem;
}

.features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.custom-check-badge {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.18);
  color: #108548;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.custom-check-badge svg {
  width: 11px;
  height: 11px;
}

.feature-text {
  font-size: 0.84375rem;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.3;
}

/* Hover Reveal View */
.card-hover-view {
  position: absolute;
  inset: 0;
  background: #ffffff;
  padding: 1.1rem 1.35rem 1.35rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
  transition: opacity 0.25s var(--ease-smooth), transform 0.25s var(--ease-smooth);
}

.product-card:hover .card-hover-view {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.hover-title {
  font-family: var(--font-heading);
  font-size: 0.96875rem;
  font-weight: 700;
  color: var(--text-title);
  line-height: 1.35;
  letter-spacing: -0.015em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hover-divider {
  width: 100%;
  height: 1px;
  background-color: var(--border-divider);
}

.hover-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.hover-feature-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hover-icon-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  background: var(--bg-studio);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hover-icon-circle svg {
  width: 12px;
  height: 12px;
  color: var(--text-main);
}

.hover-feature-text {
  font-size: 0.84375rem;
  font-weight: 400;
  color: var(--text-main);
}

.action-buttons-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.btn-learn {
  border: 1px solid var(--btn-learn-border);
  background: transparent;
  color: var(--btn-learn-text);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease-smooth);
}

.btn-learn:hover {
  background: var(--btn-learn-hover);
}

.btn-cart {
  background: var(--btn-cart-bg);
  border: 1px solid var(--btn-cart-bg);
  color: var(--btn-cart-text);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s var(--ease-smooth);
}

.btn-cart:hover {
  background: var(--btn-cart-hover);
}

/* Modern Card for Recommendations */
.modern-product-card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border-card);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  transition: transform 0.25s var(--ease-smooth), box-shadow 0.25s var(--ease-smooth);
}

.modern-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}

.card-media-stage {
  position: relative;
  background-color: var(--bg-studio);
  padding: 1rem 1rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 1px solid var(--border-divider);
}

.floating-meta-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(16, 185, 129, 0.08);
  color: #108548;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.badge-glow-dot {
  width: 5px;
  height: 5px;
  background: #10b981;
  border-radius: 50%;
}

.badge-discount {
  background: rgba(220, 38, 38, 0.08);
  color: #dc2626;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.product-image-canvas {
  width: 100%;
  height: 190px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-content-stage {
  padding: 1.15rem;
}

.card-action-drawer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

/* ==========================================================================
   5. STICKY PURCHASE ACTION BAR (REFINED DESKTOP & MOBILE PILL GUARANTEE)
   ========================================================================== */

.sticky-purchase-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(251, 251, 253, 0.94);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-top: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sticky);
  z-index: 55;
  padding: 0.85rem 2rem;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s var(--ease-spring), opacity 0.25s ease, visibility 0.25s ease;
}

.sticky-purchase-bar.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.sticky-bar-container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.sticky-info-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-width: 0;
}

.sticky-product-meta {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
}

.sticky-thumb-img {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  object-fit: cover;
  background-color: var(--bg-studio);
  flex-shrink: 0;
}

.sticky-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.sticky-title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-variant {
  font-size: 0.78125rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-price-group {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  flex-shrink: 0;
}

.sticky-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text-main);
}

.sticky-strike {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  color: var(--text-strikethrough);
  text-decoration: line-through;
  font-weight: 500;
}

.sticky-button-pair {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.sticky-cart-btn {
  background: var(--btn-cart-bg);
  color: var(--btn-cart-text);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  height: 44px;
  padding: 0 1.4rem;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sticky-cart-btn:hover {
  background: var(--btn-cart-hover);
  transform: translateY(-1px);
}

.sticky-buy-btn {
  background: var(--btn-buy-bg);
  color: var(--btn-buy-text);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  height: 44px;
  padding: 0 1.4rem;
  border-radius: 999px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.sticky-buy-btn:hover {
  background: var(--btn-buy-hover);
  transform: translateY(-1px);
}

/* ==========================================================================
   FOOTER & NEWSLETTER
   ========================================================================== */

.pdp-footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  margin-top: 3rem;
}

.footer-top-newsletter {
  border-bottom: 1px solid var(--border-divider);
  padding: 2.75rem 1.5rem;
}

.newsletter-wrapper {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.newsletter-title {
  font-family: var(--font-heading);
  font-size: 1.1875rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.newsletter-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.newsletter-form {
  display: flex;
  gap: 0.45rem;
  max-width: 380px;
  width: 100%;
}

.newsletter-form input {
  flex: 1;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  font-family: inherit;
  font-size: 0.8125rem;
  outline: none;
  background: var(--bg-studio);
  transition: border-color 0.2s ease;
}

.newsletter-form input:focus {
  border-color: var(--border-focus);
  background: #ffffff;
}

.newsletter-submit-btn {
  background: var(--text-main);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  transition: background-color 0.2s ease;
}

.newsletter-submit-btn:hover {
  background: #000000;
}

.footer-columns-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 3rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--text-main);
}

.footer-bottom-bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem 1.75rem;
  border-top: 1px solid var(--border-divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 1rem;
}

.security-badges {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */

.toast-notification {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--text-main);
  color: #ffffff;
  border-radius: 12px;
  padding: 0.75rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  z-index: 120;
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-spring);
}

.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #108548;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.toast-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  line-height: 1.2;
}

.toast-msg {
  font-size: 0.75rem;
  opacity: 0.85;
}

/* ==========================================================================
   RESPONSIVE QUERIES & MOBILE PILL BUTTON PRESERVATION
   ========================================================================== */

@media (max-width: 960px) {
  .pdp-hero-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .gallery-column {
    position: static;
  }
  
  .review-scorecard-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .scorecard-main {
    border-right: none;
    border-bottom: 1px solid var(--border-divider);
    padding-right: 0;
    padding-bottom: 1.5rem;
  }
  
  .footer-columns-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile Viewport: Preserve Product Name & Horizontal Pill Buttons */
@media (max-width: 768px) {
  .sticky-purchase-bar {
    padding: 0.65rem 1rem 0.85rem;
  }

  .sticky-bar-container {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    width: 100%;
  }

  .sticky-info-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    min-width: 0;
  }

  .sticky-product-meta {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    min-width: 0;
    flex: 1;
  }

  .sticky-thumb-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .sticky-text {
    display: flex !important;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
  }

  .sticky-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.25;
  }

  .sticky-variant {
    font-size: 0.6875rem;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
  }

  .sticky-price-group {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    flex-shrink: 0;
  }

  .sticky-price {
    font-size: 1.125rem;
    font-weight: 700;
  }

  .sticky-strike {
    font-size: 0.78125rem;
  }

  .sticky-button-pair {
    display: flex;
    width: 100%;
    gap: 0.5rem;
  }

  .sticky-cart-btn,
  .sticky-buy-btn {
    flex: 1;
    height: 42px;
    padding: 0 0.75rem;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 999px;
    white-space: nowrap;
    text-align: center;
  }
}

@media (max-width: 500px) {
  .pdp-container {
    padding: 1rem 1rem 3rem;
  }
  
  .main-image-viewport {
    height: 320px;
  }
  
  .thumb-btn {
    height: 70px;
  }

  .accordion-body {
    padding-left: 1.35rem;
  }
  
  .purchase-action-container {
    flex-direction: column;
    align-items: stretch;
  }

  .action-buttons-group {
    width: 100%;
  }

  .pdp-btn-cart,
  .pdp-btn-buy {
    flex: 1;
    border-radius: 999px;
    white-space: nowrap;
    font-size: 0.8125rem;
  }
  
  .quantity-stepper {
    justify-content: center;
    width: 100%;
  }
  
  .trust-assurance-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-columns-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   6. SLIDE-OVER CART DRAWER COMPONENT
   ========================================================================== */

.cart-drawer-backdrop {
  position: fixed;
  top: var(--header-h, 0px);
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  overscroll-behavior: contain;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  will-change: opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.cart-drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: var(--header-h, 0px);
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: var(--bg-surface);
  box-shadow: none;
  z-index: 160;
  display: flex;
  flex-direction: column;
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
  backface-visibility: hidden;
}

.cart-drawer.open {
  transform: translate3d(0, 0, 0);
  visibility: visible;
  pointer-events: auto;
  box-shadow: -10px 0 35px rgba(0, 0, 0, 0.12);
}

.cart-drawer-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-divider);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
}

.cart-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.cart-drawer-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.015em;
}

.cart-header-count {
  position: static;
  background: var(--bg-studio);
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  min-width: auto;
  height: auto;
}

.cart-close-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-studio);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: all 0.2s ease;
}

.cart-close-btn:hover {
  background: #000000;
  color: #ffffff;
}

.cart-close-btn svg {
  width: 16px;
  height: 16px;
}

/* Empty State View */
.cart-empty-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  text-align: center;
}

.empty-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-studio);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.empty-icon-circle svg {
  width: 32px;
  height: 32px;
}

.empty-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}

.empty-subtitle {
  font-size: 0.84375rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 280px;
  margin-bottom: 1.75rem;
}

.cart-explore-btn {
  background: var(--text-main);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.cart-explore-btn:hover {
  background: #000000;
  transform: translateY(-1px);
}

/* Populated State View */
.cart-populated-view {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-items-scroll {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-item-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem;
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 14px;
  box-shadow: var(--shadow-subtle);
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.cart-item-card.unselected {
  opacity: 0.55;
  background: var(--bg-studio);
}

.item-select-checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.item-select-checkbox input[type="checkbox"],
.select-all-label input[type="checkbox"],
.form-checkbox-label input[type="checkbox"],
.deal-add-checkbox input[type="checkbox"],
.terms-agreement-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.custom-chk-box {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(0,0,0,0.25);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

input[type="checkbox"]:checked + .custom-chk-box {
  background: #108548;
  border-color: #108548;
}

input[type="checkbox"]:checked + .custom-chk-box::after {
  content: "✓";
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-item-thumb {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  background-color: var(--bg-studio);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.item-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.cart-item-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-remove-btn {
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem;
  transition: color 0.2s ease;
  flex-shrink: 0;
}

.cart-item-remove-btn svg {
  width: 15px;
  height: 15px;
}

.cart-item-remove-btn:hover {
  color: #dc2626;
}

.cart-item-variant {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cart-item-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.25rem;
}

.cart-item-price-group {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
}

.cart-item-price {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-main);
}

.cart-item-strike {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--text-strikethrough);
  text-decoration: line-through;
}

.cart-item-stepper {
  display: inline-flex;
  align-items: center;
  background: var(--bg-studio);
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  padding: 0.15rem;
  height: 28px;
}

.drawer-qty-btn {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
  transition: background-color 0.2s ease;
}

.drawer-qty-btn:hover {
  background: var(--text-main);
  color: #ffffff;
}

.drawer-qty-val {
  font-family: var(--font-heading);
  font-size: 0.78125rem;
  font-weight: 700;
  min-width: 22px;
  text-align: center;
}

/* Cart Footer */
.cart-drawer-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-divider);
  background: var(--bg-page);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cart-footer-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.select-all-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
}

.cart-subtotal-group {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.subtotal-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.subtotal-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.015em;
}

.delivery-notice {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.71875rem;
  color: #108548;
  background: rgba(16, 185, 129, 0.08);
  padding: 0.4rem 0.65rem;
  border-radius: 8px;
}

.delivery-notice svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.cart-actions-column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cart-checkout-btn {
  height: 46px;
  border-radius: 999px;
  background: var(--text-main);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  transition: all 0.2s var(--ease-smooth);
}

.cart-checkout-btn svg {
  width: 15px;
  height: 15px;
}

.cart-checkout-btn:hover {
  background: #000000;
  transform: translateY(-1px);
}

.cart-continue-btn {
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--border-subtle);
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  transition: background-color 0.2s ease;
}

.cart-continue-btn:hover {
  background: var(--bg-studio);
}

/* ==========================================================================
   7. SECURE CHECKOUT PAGE STYLES (CHECKOUT.HTML)
   ========================================================================== */

body.checkout-body {
  background-color: var(--bg-page);
}

.checkout-header {
  background: rgba(251, 251, 253, 0.9);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 0.85rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 50;
}

.checkout-header-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.checkout-steps-nav {
  display: flex;
}

.checkout-steps-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-family: var(--font-heading);
}

.step-item {
  color: var(--text-muted);
  font-weight: 500;
}

.step-item.step-completed a {
  color: var(--text-secondary);
}

.step-item.step-active {
  color: var(--text-main);
  font-weight: 700;
}

.step-separator {
  color: #d2d2d7;
  display: flex;
  align-items: center;
}

.step-separator svg {
  width: 12px;
  height: 12px;
}

.header-security-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #108548;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.15);
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.header-security-pill svg {
  width: 13px;
  height: 13px;
}

.checkout-main-container {
  width: 100%;
  max-width: 1140px;
  margin: 2.25rem auto 5rem;
  padding: 0 1.5rem;
  box-sizing: border-box;
}

.checkout-grid-layout {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 2.5rem;
  align-items: start;
  width: 100%;
  box-sizing: border-box;
}

.checkout-form-column,
.checkout-summary-column {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}

.checkout-form-flow {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
}

.checkout-section-block {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-subtle);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  box-sizing: border-box;
}

.section-title-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.015em;
}

.section-subtext {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Delivery Segmented Control (Ship vs Pickup) */
.delivery-segmented-control {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg-studio);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
  border: 1px solid var(--border-subtle);
}

.segment-btn {
  height: 40px;
  border: none;
  border-radius: 8px;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.84375rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.segment-btn.active {
  background: #ffffff;
  color: var(--text-main);
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.segment-btn svg {
  width: 16px;
  height: 16px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-input,
.form-select {
  width: 100%;
  height: 46px;
  padding: 0 0.95rem;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--text-main);
  outline: none;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus {
  border-color: #0071e3;
  box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.12);
}

.select-wrapper {
  position: relative;
  width: 100%;
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-arrow {
  position: absolute;
  right: 0.95rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--text-muted);
}

.select-arrow svg {
  width: 14px;
  height: 14px;
}

.phone-input-group {
  display: flex;
  align-items: center;
  width: 100%;
}

.area-code-badge {
  height: 46px;
  padding: 0 0.85rem;
  background: var(--bg-studio);
  border: 1px solid var(--border-subtle);
  border-right: none;
  border-radius: 10px 0 0 10px;
  display: flex;
  align-items: center;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
  flex-shrink: 0;
}

.phone-field {
  border-radius: 0 10px 10px 0 !important;
  flex: 1;
  min-width: 0;
}

.form-checkbox-group {
  margin: 0.1rem 0;
}

.form-checkbox-label,
.terms-agreement-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  cursor: pointer;
  line-height: 1.4;
}

/* Grouped Radio Containers (Shopify-Style) */
.grouped-radio-box {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.grouped-radio-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  cursor: pointer;
  transition: background 0.15s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
}

.grouped-radio-row:last-child {
  border-bottom: none;
}

.grouped-radio-row.active {
  background: #f4f8fd;
}

.grouped-radio-row input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-disc-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(0, 0, 0, 0.35);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.grouped-radio-row.active .radio-disc-indicator {
  border: 5px solid #0071e3;
  background: #ffffff;
}

.grouped-radio-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.grouped-text-col {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.grouped-label {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-main);
}

.grouped-sublabel {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.grouped-price-badge {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #108548;
  background: rgba(16, 185, 129, 0.1);
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  flex-shrink: 0;
}

.payment-network-icons {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: 60%;
}

.network-badge {
  height: 22px;
  padding: 0 0.45rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.momo-badge {
  background: #ffcc00;
  color: #000000;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.telecel-badge {
  background: #e60000;
  color: #ffffff;
}

.network-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card-logo-svg {
  width: 35px;
  height: 22px;
  display: block;
}

.grouped-accordion-panel {
  padding: 1.25rem 1.15rem;
  background: #fbfbfd;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}

.redirect-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}

.redirect-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.redirect-instructions {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 360px;
  margin: 0 auto;
}

/* Order Summary Column */
.order-summary-card {
  position: sticky;
  top: 5rem;
}

.order-summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border-divider);
}

.order-summary-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-main);
}

.order-edit-btn {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--btn-buy-bg);
  transition: opacity 0.2s ease;
}

.order-edit-btn:hover {
  text-decoration: underline;
}

.checkout-items-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.checkout-item-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.checkout-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background-color: var(--bg-studio);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: visible;
  flex-shrink: 0;
}

.checkout-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.thumb-qty-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--text-main);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid #ffffff;
}

.checkout-item-details {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.checkout-item-name {
  font-family: var(--font-heading);
  font-size: 0.84375rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.checkout-item-meta {
  font-size: 0.71875rem;
  color: var(--text-muted);
}

.checkout-item-price {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Grab & Go Deal Card */
.grab-deal-card {
  background: #fdfbf7;
  border: 1px solid #faecc8;
  border-radius: 14px;
  padding: 0.85rem;
  margin-bottom: 1.25rem;
}

.deal-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.deal-badge {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 700;
  color: #b45309;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.deal-status {
  font-size: 0.6875rem;
  font-weight: 500;
  color: #854d0e;
}

.deal-item-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.deal-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background-color: var(--bg-studio);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  flex-shrink: 0;
}

.deal-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deal-info {
  flex: 1;
  min-width: 0;
}

.deal-title {
  font-family: var(--font-heading);
  font-size: 0.78125rem;
  font-weight: 700;
  color: var(--text-main);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.deal-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-top: 0.15rem;
}

.deal-price {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-main);
}

.deal-strike {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  color: var(--text-strikethrough);
  text-decoration: line-through;
}

.deal-save-tag {
  font-size: 0.625rem;
  font-weight: 600;
  color: #dc2626;
  background: rgba(220, 38, 38, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 999px;
}

.deal-add-checkbox {
  cursor: pointer;
  display: flex;
  align-items: center;
}

.deal-custom-chk {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,0,0,0.25);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

input[type="checkbox"]:checked + .deal-custom-chk {
  background: #108548;
  border-color: #108548;
}

input[type="checkbox"]:checked + .deal-custom-chk::after {
  content: "+";
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
}

/* Cost Breakdown */
.cost-breakdown-table {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border-divider);
  border-bottom: 1px solid var(--border-divider);
  margin-bottom: 1.25rem;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
}

.cost-label {
  color: var(--text-muted);
}

.cost-val {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-main);
}

.free-badge {
  color: #108548;
  background: rgba(16, 185, 129, 0.08);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-size: 0.71875rem;
}

.cost-divider {
  height: 1px;
  background: var(--border-divider);
  margin: 0.25rem 0;
}

.cost-row.total-row {
  font-size: 1rem;
}

.total-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
}

.total-val {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

/* Checkout Action Stage */
.checkout-action-stage {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.place-order-btn {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  background: var(--text-main);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.2s var(--ease-smooth);
}

.place-order-btn svg {
  width: 16px;
  height: 16px;
}

.place-order-btn:hover {
  background: #000000;
  transform: translateY(-1px);
}

.terms-text a {
  color: var(--text-main);
  text-decoration: underline;
}

.checkout-trust-box {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-divider);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.trust-mini-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.71875rem;
  color: var(--text-secondary);
}

.trust-mini-item svg {
  width: 14px;
  height: 14px;
  color: var(--text-main);
}

/* Modal Confirmation */
.order-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.order-modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.order-success-card {
  background: #ffffff;
  border: 1px solid var(--border-card);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
  transform: scale(0.95);
  transition: transform 0.3s var(--ease-spring);
}

.order-modal-backdrop.open .order-success-card {
  transform: scale(1);
}

/* ==========================================================================
   SHOPIFY-GRADE GHANA 1-PAGE CHECKOUT STYLES
   ========================================================================== */

body.shopify-checkout-body {
  background: #ffffff;
  color: #333333;
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

/* 1. Mobile Summary Header Banner */
.mobile-summary-banner {
  display: none;
  background: #f5f5f5;
  border-bottom: 1px solid #e1e1e1;
  padding: 0.95rem 1.15rem;
  position: sticky;
  top: 0;
  z-index: 40;
}

.mobile-summary-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 600px;
  margin: 0 auto;
}

.mobile-summary-toggle-btn {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  color: #1773b0;
  cursor: pointer;
}

.summary-bag-icon {
  width: 17px;
  height: 17px;
}

.toggle-chevron {
  width: 14px;
  height: 14px;
  transition: transform 0.2s ease;
}

.mobile-summary-toggle-btn.active .toggle-chevron {
  transform: rotate(180deg);
}

.mobile-summary-total {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #111111;
}

.mobile-summary-drawer {
  display: none;
  padding-top: 1.25rem;
  border-top: 1px solid #e1e1e1;
  margin-top: 0.85rem;
}

.mobile-summary-drawer.open {
  display: block;
}

/* 2. Main Desktop Viewport Grid */
.checkout-viewport-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  min-height: 100vh;
}

.checkout-layout-grid {
  display: grid;
  grid-template-columns: 57% 43%;
  min-height: 100vh;
}

.checkout-main-flow {
  padding: 3rem 3.5rem 4rem 2rem;
}

.checkout-brand-header {
  margin-bottom: 2.25rem;
}

.checkout-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.brand-mark-box {
  width: 32px;
  height: 32px;
  background: #111111;
  color: #ffffff;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark-box svg {
  width: 17px;
  height: 17px;
}

.brand-text-box {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: #111111;
  line-height: 1.1;
}

.brand-tag {
  font-family: var(--font-heading);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #707070;
}

/* 3. Steps & Sections */
.checkout-step-section {
  margin-bottom: 2rem;
}

.step-header-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.85rem;
}

.step-heading {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #111111;
  letter-spacing: -0.015em;
}

.step-aux-link {
  font-size: 0.8125rem;
  color: #1773b0;
  text-decoration: none;
  font-weight: 500;
}

.step-aux-link:hover {
  text-decoration: underline;
}

.step-sub-note {
  font-size: 0.8125rem;
  color: #707070;
  margin-top: -0.45rem;
  margin-bottom: 0.85rem;
}

/* 4. Form Fields & Inputs */
.field-container {
  position: relative;
  margin-bottom: 0.75rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.shopify-input,
.shopify-select {
  width: 100%;
  height: 46px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #333333;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.shopify-input::placeholder {
  color: #707070;
}

.shopify-input:focus,
.shopify-select:focus {
  border-color: #1773b0;
  box-shadow: 0 0 0 1px #1773b0;
}

.field-container.with-tooltip .shopify-input {
  padding-right: 2.5rem;
}

.field-tooltip-btn {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #b3b3b3;
  background: transparent;
  color: #707070;
  font-size: 0.6875rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.select-field-box {
  position: relative;
}

.floating-label-text {
  position: absolute;
  top: 5px;
  left: 0.85rem;
  font-size: 0.65625rem;
  color: #707070;
  pointer-events: none;
  z-index: 1;
}

.shopify-select {
  padding-top: 14px;
  font-size: 0.84375rem;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-chevron {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #707070;
}

.select-chevron svg {
  width: 14px;
  height: 14px;
}

/* 5. Segmented Delivery Bar */
.segmented-delivery-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #ebebeb;
  border-radius: 6px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 0.85rem;
}

.segment-tab {
  height: 42px;
  border: none;
  border-radius: 5px;
  background: transparent;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  cursor: pointer;
  transition: all 0.15s ease;
}

.segment-tab svg {
  width: 17px;
  height: 17px;
}

.segment-tab.active {
  background: #ffffff;
  color: #111111;
  font-weight: 700;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

/* Checkboxes */
.shopify-checkbox-row {
  margin: 0.45rem 0 0;
}

.shopify-chk-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.84375rem;
  color: #545454;
  cursor: pointer;
}

.chk-custom-box {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #d9d9d9;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.shopify-chk-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.shopify-chk-label input[type="checkbox"]:checked + .chk-custom-box {
  background: #1773b0;
  border-color: #1773b0;
}

.shopify-chk-label input[type="checkbox"]:checked + .chk-custom-box::after {
  content: "✓";
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
}

/* 6. Grouped Radio Containers */
.shopify-grouped-box {
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  overflow: hidden;
  background: #ffffff;
}

.grouped-card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.95rem 1rem;
  border-bottom: 1px solid #d9d9d9;
  cursor: pointer;
  transition: background 0.15s;
  position: relative;
}

.grouped-card-row:last-child {
  border-bottom: none;
}

.grouped-card-row.active {
  background: #f4f8fd;
  box-shadow: inset 0 0 0 1px #2b78d2;
  z-index: 1;
}

.grouped-card-row input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.shopify-radio-disc {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid #a6a6a6;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.15s;
}

.grouped-card-row.active .shopify-radio-disc {
  border: 5px solid #1773b0;
  background: #ffffff;
}

.row-left-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.row-text-block {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.row-primary-label {
  font-family: var(--font-heading);
  font-size: 0.84375rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.35;
}

.row-sub-label {
  font-size: 0.75rem;
  color: #707070;
}

.row-rate-label {
  font-family: var(--font-heading);
  font-size: 0.84375rem;
  font-weight: 600;
  color: #333333;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

/* 7. Payment Logos Cluster */
.payment-logos-cluster {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
}

.pay-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.pay-logo-badge svg {
  width: 36px;
  height: 24px;
}

.momo-pill {
  background: #ffcc00;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 0.65625rem;
  font-weight: 800;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
}

.plus-badge {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 0.2rem 0.35rem;
  font-size: 0.65625rem;
  font-weight: 700;
  color: #707070;
  background: #ffffff;
  font-family: var(--font-heading);
}

.shopify-accordion-body {
  padding: 1.35rem 1rem;
  background: #fafafa;
  border-bottom: 1px solid #d9d9d9;
  font-size: 0.8125rem;
  color: #545454;
  text-align: center;
  line-height: 1.45;
}

/* 8. Pay Now CTA Button */
.checkout-submit-stage {
  margin-top: 1.75rem;
}

.shopify-pay-now-btn {
  width: 100%;
  height: 52px;
  border-radius: 6px;
  border: none;
  background: #2358b8;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopify-pay-now-btn:hover {
  background: #1a4490;
}

/* 9. Sidebar Sticky Summary (Desktop) */
.checkout-sidebar-column {
  background: #fafafa;
  border-left: 1px solid #e1e1e1;
  padding: 3rem 2rem 4rem 3rem;
}

.desktop-summary-sticky-card {
  position: sticky;
  top: 2rem;
  max-width: 440px;
}

.summary-item-line {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.15rem;
}

.item-visual-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 8px;
  border: 1px solid #e1e1e1;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.item-visual-wrap img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.item-qty-circle {
  position: absolute;
  top: -7px;
  right: -7px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(114, 114, 114, 0.9);
  color: #ffffff;
  font-size: 0.6875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-name-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.item-name {
  font-family: var(--font-heading);
  font-size: 0.84375rem;
  font-weight: 600;
  color: #333333;
  line-height: 1.3;
}

.item-meta {
  font-size: 0.75rem;
  color: #707070;
}

.item-line-price {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  flex-shrink: 0;
}

.discount-code-row {
  display: flex;
  gap: 0.65rem;
  margin: 1.5rem 0 1.25rem;
}

.discount-input {
  flex: 1;
  height: 44px;
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  padding: 0 0.85rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  background: #ffffff;
  outline: none;
}

.discount-input:focus {
  border-color: #1773b0;
  box-shadow: 0 0 0 1px #1773b0;
}

.discount-apply-btn {
  padding: 0 1.25rem;
  height: 44px;
  border-radius: 5px;
  border: none;
  background: #e1e1e1;
  font-family: var(--font-heading);
  font-size: 0.84375rem;
  font-weight: 600;
  color: #707070;
  cursor: pointer;
  transition: background 0.15s ease;
}

.discount-apply-btn:hover {
  background: #d4d4d4;
  color: #333333;
}

.summary-calc-table {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.84375rem;
  color: #545454;
}

.calc-label .info-circle {
  color: #707070;
  font-size: 0.75rem;
  cursor: help;
}

.calc-val.free-val {
  font-weight: 600;
  color: #333333;
}

.calc-divider {
  height: 1px;
  background: #e1e1e1;
  margin: 0.35rem 0;
}

.total-calc-row {
  margin-top: 0.25rem;
}

.total-calc-row .total-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: #111111;
}

.total-val-group {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.total-val-group .currency-tag {
  font-size: 0.75rem;
  color: #707070;
}

.total-val-number {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #111111;
}

/* Mobile Actions (Hidden on Desktop) */
.mobile-action-bar-top {
  display: none;
}

/* Responsive Queries */
@media (max-width: 1000px) {
  .mobile-summary-banner {
    display: block;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
  }

  .checkout-layout-grid {
    grid-template-columns: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .checkout-sidebar-column {
    display: none;
  }

  .checkout-main-flow {
    padding: 1.5rem 1.25rem 3rem;
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .checkout-brand-header {
    display: none;
  }

  .mobile-action-bar-top {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.5rem;
    width: 100%;
    box-sizing: border-box;
  }

  .btn-add-discount {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: none;
    border: none;
    padding: 0;
    font-family: var(--font-heading);
    font-size: 0.84375rem;
    font-weight: 600;
    color: #1773b0;
    cursor: pointer;
  }

  .btn-add-discount svg {
    width: 15px;
    height: 15px;
  }

  .mobile-inline-total-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-top: 1px solid #e1e1e1;
    width: 100%;
    box-sizing: border-box;
  }

  .total-left-thumb-wrap {
    display: flex;
    align-items: center;
    gap: 0.65rem;
  }

  .total-left-thumb-wrap img {
    width: 38px;
    height: 38px;
    border-radius: 6px;
    border: 1px solid #e1e1e1;
    object-fit: contain;
  }

  .strip-text-col {
    display: flex;
    flex-direction: column;
  }

  .strip-total-title {
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 700;
    color: #111111;
  }

  .strip-item-count {
    font-size: 0.75rem;
    color: #707070;
  }

  .strip-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
  }

  .strip-curr {
    font-size: 0.75rem;
    color: #707070;
  }

  .strip-amount {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: #111111;
  }

  .strip-price-wrap svg {
    width: 14px;
    height: 14px;
    color: #707070;
  }
}

@media (max-width: 540px) {
  .checkout-main-flow {
    padding: 1.25rem 1rem 3rem !important;
  }

  .mobile-summary-banner {
    padding: 0.85rem 1rem;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .step-heading {
    font-size: 1.05rem;
  }

  .shopify-input,
  .shopify-select {
    font-size: 16px;
    height: 46px;
  }
}

/* ==========================================================================
   OPTION A: CLEAN MINIMALIST WEB AUTHENTICATION (APPLE / STRIPE STYLE)
   ========================================================================== */

body.auth-minimal-body {
  background: #fbfbfd;
  color: #1e293b;
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

/* 1. Clean Top Header Bar */
.auth-minimal-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.95rem 1.75rem;
  width: 100%;
  box-sizing: border-box;
}

.auth-header-container {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: #111827;
}

.auth-logo-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #0f3d38;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #52b788;
}

.auth-brand-titles {
  display: flex;
  flex-direction: column;
}

.auth-brand-main {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.auth-brand-sub {
  font-family: var(--font-heading);
  font-size: 0.5625rem;
  font-weight: 700;
  color: #6b7280;
  letter-spacing: 0.12em;
}

.auth-return-store-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.auth-return-store-link:hover {
  color: #0f3d38;
}

/* 2. Main Centered Web Stage */
.auth-minimal-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.25rem 4rem;
  width: 100%;
  box-sizing: border-box;
}

.auth-clean-card {
  max-width: 470px;
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.04);
  padding: 2.75rem 2.25rem 2.25rem;
  box-sizing: border-box;
}

.auth-clean-panel {
  display: none;
  flex-direction: column;
}

.auth-clean-panel.active {
  display: flex;
}

/* Header Text */
.auth-header-block {
  text-align: center;
  margin-bottom: 1.75rem;
}

.auth-heading {
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 0.45rem 0;
  letter-spacing: -0.025em;
}

.auth-subheading {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* Social SSO Full-Width Buttons */
.auth-sso-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.sso-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  height: 46px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
  cursor: pointer;
  transition: all 0.15s ease;
}

.sso-btn:hover {
  background: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-1px);
}

/* Clean Divider */
.auth-clean-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.divider-border {
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.divider-caption {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Form Styles */
.auth-standard-form {
  display: flex;
  flex-direction: column;
}

.form-row-group {
  margin-bottom: 1.15rem;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.4rem;
}

.form-grid-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

@media (max-width: 480px) {
  .form-grid-pair {
    grid-template-columns: 1fr;
  }
}

.label-with-aside {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.4rem;
}

.aside-forgot-link {
  font-size: 0.78125rem;
  color: #0f3d38;
  text-decoration: none;
  font-weight: 600;
}

.aside-forgot-link:hover {
  text-decoration: underline;
}

.form-text-input {
  width: 100%;
  height: 46px;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  padding: 0 0.95rem;
  font-family: var(--font-body);
  font-size: 0.90625rem;
  color: #1e293b;
  background: #ffffff;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-text-input:focus {
  border-color: #0f3d38;
  box-shadow: 0 0 0 3px rgba(15, 61, 56, 0.12);
}

.input-with-peek {
  position: relative;
  width: 100%;
}

.input-with-peek .form-text-input {
  padding-right: 2.75rem;
}

.peek-toggle {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Submit CTA */
.auth-action-submit {
  width: 100%;
  height: 48px;
  border-radius: 10px;
  background: #0f3d38;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  margin-bottom: 1.35rem;
  box-shadow: 0 2px 6px rgba(15, 61, 56, 0.18);
}

.auth-action-submit:hover {
  background: #092623;
}

.auth-action-submit:active {
  transform: scale(0.985);
}

/* Switcher Footer */
.auth-switch-note {
  text-align: center;
  font-size: 0.84375rem;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
}

.switch-link-btn {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 0.84375rem;
  font-weight: 700;
  color: #0f3d38;
  cursor: pointer;
  padding: 0;
}

.switch-link-btn:hover {
  text-decoration: underline;
}

/* Trust Badge */
.auth-trust-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

@media (max-width: 500px) {
  .auth-minimal-main {
    padding: 1.5rem 1rem 3rem;
  }

  .auth-clean-card {
    padding: 1.75rem 1.25rem;
    border-radius: 12px;
  }

  .auth-heading {
    font-size: 1.4rem;
  }
}
