/*
=======================================================================================
SUNHO K-BEAUTY
=======================================================================================
*/

/* ============================================
   PDP HERO
   ============================================ */
.pdp-hero {
  padding: 150px 0 var(--sp-8);
  background: var(--off-white);
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

/* --- Left: Product Image --- */
.pdp-image-col {
  display: flex;
  justify-content: center;
}

.pdp-image-card {
  width: 100%;
  max-width: 580px;
  aspect-ratio: 4/5;
  border-radius: var(--radius-2xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pdp-image-card .pdp-product-shape {
  transform: scale(1.6);
}

.pdp-image-badge {
  position: absolute;
  bottom: var(--sp-5);
  left: var(--sp-5);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.pdp-image-badge::before {
  content: '●';
  font-size: 0.5rem;
  color: var(--primary);
  animation: pulseDot 2s ease-in-out infinite;
}

/* --- Right: Product Info --- */
.pdp-info-col {
  max-width: 480px;
}

.pdp-top-badge {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: #2D8B4E;
  color: var(--white);
  margin-bottom: var(--sp-5);
}

.pdp-title {
  font-family: var(--font-primary);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
}

.pdp-title-italic {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  color: var(--gray-900);
}

.pdp-title-type {
  font-family: var(--font-primary);
  font-weight: 800;
  color: var(--gray-900);
}

.pdp-rating {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

.pdp-stars.star-rating--md {
  font-size: 1.45rem;
}

.pdp-stars {
  flex-shrink: 0;
}

.pdp-reviews {
  font-size: 0.82rem;
  color: var(--gray-500);
  font-weight: 500;
}

.pdp-description {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}

.pdp-description strong {
  color: var(--gray-800);
  font-weight: 600;
}

/* --- Attribute Pills --- */
.pdp-attributes {
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}

.pdp-attr {
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  min-width: 110px;
  transition: all var(--transition-fast);
}

.pdp-attr:hover {
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.pdp-attr.attr-accent {
  border-color: var(--coral);
  background: rgba(255,127,110,0.04);
}

.pdp-attr-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 2px;
}

.pdp-attr-value {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
}

/* --- Price + CTA Redesign --- */
.pdp-price-wrapper {
  margin-bottom: var(--sp-4);
}

(--mint);
  letter-spacing: -0.02em;
}

.pdp-purchase-group {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  margin-bottom: var(--sp-6);
  max-width: 320px;
  transition: box-shadow 0.3s;
}

.pdp-purchase-group:hover {
  box-shadow: 0 6px 20px rgba(155, 111, 223, 0.1);
  border-color: rgba(155, 111, 223, 0.3);
}

.pdp-quantity-pill {
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.pdp-quantity-pill .qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gray-50);
  border: none;
  font-size: 1rem;
  color: var(--gray-600);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.pdp-quantity-pill .qty-btn:hover {
  background: var(--gray-200);
  color: var(--gray-900);
}

.pdp-quantity-pill .qty-input {
  width: 36px;
  text-align: center;
  font-weight: 700;
  border: none;
  background: transparent;
  color: var(--gray-900);
  outline: none;
  -moz-appearance: textfield;
}

.pdp-quantity-pill .qty-input::-webkit-outer-spin-button,
.pdp-quantity-pill .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.pdp-buy-pill-btn {
  flex: 1;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 999px;
  height: 44px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 12px rgba(155, 111, 223, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-primary);
}

.pdp-buy-pill-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(155, 111, 223, 0.4);
}

/* --- Trust Badges Custom Grid --- */
.pdp-trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: var(--sp-8);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(155, 111, 223, 0.03);
  border: 1px solid rgba(155, 111, 223, 0.1);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: background 0.3s, transform 0.3s;
}

.trust-badge:hover {
  background: rgba(155, 111, 223, 0.08);
  transform: translateY(-1px);
}

.trust-badge svg {
  color: var(--primary);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.stock-dot {
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
  position: relative;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
  animation: dot-throb 2s infinite ease-in-out;
}

.stock-dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  border-radius: inherit;
  animation: pulse-green-strong 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
  z-index: -1;
}

.trust-badge.stock-loading {
  color: #7a7483;
  border-color: rgba(121, 116, 134, 0.16);
  background: linear-gradient(90deg, rgba(244, 242, 247, 0.72), rgba(232, 229, 238, 0.9), rgba(244, 242, 247, 0.72));
  background-size: 220% 100%;
  animation: stock-skeleton 1.2s ease-in-out infinite;
}

.trust-badge.stock-loading:hover {
  background: linear-gradient(90deg, rgba(244, 242, 247, 0.72), rgba(232, 229, 238, 0.9), rgba(244, 242, 247, 0.72));
  background-size: 220% 100%;
  transform: none;
}

.stock-dot.stock-loading {
  background-color: #b8b2c4;
  box-shadow: none;
  animation: stock-skeleton-dot 1.2s ease-in-out infinite;
}

.stock-dot.stock-loading::after {
  display: none;
}

.trust-badge.out-of-stock {
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.16);
  background: rgba(254, 243, 242, 0.72);
}

.stock-dot.out-of-stock {
  background-color: #ef4444;
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.35);
  animation: none;
}

.stock-dot.out-of-stock::after {
  display: none;
}

.pdp-buy-pill-btn:disabled,
.qty-btn:disabled,
.qty-input:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.pdp-buy-pill-btn:disabled {
  background: #c9c4d6;
  box-shadow: none;
}

/* Price skeleton */
.pdp-price.skeleton-block {
  display: inline-block;
  min-width: 140px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(90deg, rgba(80,185,144,0.15) 25%, rgba(80,185,144,0.35) 50%, rgba(80,185,144,0.15) 75%);
  background-size: 800px 100%;
  animation: skeletonShimmer 1.6s ease-in-out infinite;
}

@keyframes stock-skeleton {
  0% { background-position: 120% 0; }
  100% { background-position: -120% 0; }
}

@keyframes stock-skeleton-dot {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 0.9; }
}

@keyframes dot-throb {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes pulse-green-strong {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* --- Sunho Premium Accordion --- */
.pdp-accordion-custom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: var(--sp-6);
}

.acc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.acc-card.active {
  border-color: var(--primary-light);
  box-shadow: 0 8px 24px rgba(155, 111, 223, 0.12);
}

.acc-card-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-900);
  transition: background 0.3s;
}

.acc-card-header:hover {
  background: rgba(250, 248, 255, 0.5);
}

.acc-card-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.acc-card-title svg {
  color: var(--primary);
  width: 20px;
  height: 20px;
}

.acc-card-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--gray-50);
  border-radius: 50%;
  color: var(--gray-500);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-card.active .acc-card-toggle {
  background: var(--primary-bg-deep);
  color: var(--primary-dark);
  transform: rotate(180deg);
}

.acc-card-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-card-inner {
  padding: 0 20px 20px 20px;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.acc-card-inner strong {
  color: var(--primary-dark);
  font-weight: 600;
}



/* ============================================
   SCIENCE OF GLOW
   ============================================ */
.pdp-science {
  padding: var(--sp-12) 0 var(--sp-10);
}

.pdp-science-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--sp-8);
  letter-spacing: -0.02em;
}

.pdp-science-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--sp-5);
  margin-bottom: var(--sp-5);
}

/* Science Cards */
.science-card {
  border-radius: var(--radius-2xl);
  padding: var(--sp-8);
  position: relative;
  overflow: hidden;
}

.science-green {
  background: linear-gradient(145deg, #C8F5A0 0%, #A8E6CF 50%, #90DDB8 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-4);
  align-items: center;
}

.science-purple {
  background: linear-gradient(145deg, #C4A1F0 0%, #A87DEB 50%, #9B6FDF 100%);
  color: var(--white);
}

.science-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--sp-3);
  color: var(--gray-900);
}

.science-purple h3 {
  color: var(--white);
}

.science-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--gray-700);
}

.science-purple p {
  color: rgba(255,255,255,0.8);
}

.science-card-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-700);
}

.science-card-icon-top {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  color: var(--white);
}

/* --- How to Use --- */
.pdp-howto {
  background: linear-gradient(135deg, #FFCC80 0%, #FFB74D 40%, #FFA726 100%);
  border-radius: var(--radius-2xl);
  padding: var(--sp-6) var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}

.howto-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: var(--sp-2);
}

.howto-content p {
  font-size: 0.82rem;
  color: var(--gray-700);
  line-height: 1.55;
  max-width: 800px;
}

.howto-flag {
  width: 90px;
  height: auto;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transform: rotate(2deg);
  transition: transform 0.3s ease;
}

.howto-flag:hover {
  transform: rotate(0deg) scale(1.05);
}

.howto-flag img {
  width: 100%;
  height: auto;
  display: block;
}



/* ============================================
   ROUTINE STEPS
   ============================================ */
.pdp-routine {
  padding: var(--sp-10) 0 var(--sp-16);
}

.routine-steps {
  display: flex;
  justify-content: center;
  gap: var(--sp-12);
}

.routine-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

.routine-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--gray-500);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition-base);
}

.routine-number.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(155,111,223,0.35);
  transform: scale(1.1);
}

.routine-step span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
  text-align: center;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pdp-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .pdp-image-card {
    max-width: 360px;
    margin: 0 auto;
  }

  .pdp-info-col {
    max-width: 100%;
    text-align: center;
  }

  .pdp-attributes {
    justify-content: center;
  }

  .pdp-purchase {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  .pdp-hero {
    padding: 110px 0 var(--sp-8);
  }

  .pdp-howto {
    flex-direction: column;
    text-align: center;
  }

  .routine-steps {
    gap: var(--sp-6);
  }

  .routine-number {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .pdp-attributes {
    flex-direction: column;
    align-items: stretch;
  }

  .pdp-purchase {
    flex-direction: column;
    gap: var(--sp-4);
  }

  .pdp-buy-btn {
    max-width: 100%;
    width: 100%;
  }

  .routine-steps {
    gap: var(--sp-4);
    flex-wrap: wrap;
  }
}

/* ============================================
   PRODUCT SHAPES
   ============================================ */
/* Bottle Round Shape */
.shape-bottle-round {
  width: 80px;
  height: 140px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.2) 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}
.shape-bottle-round::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 20px;
  background: rgba(255,255,255,0.35);
  border-radius: 4px 4px 0 0;
}
/* Tube Shape */
.shape-tube {
  width: 70px;
  height: 150px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.25) 100%);
  border-radius: 30px 30px 12px 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}
.shape-tube::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 14px;
  background: rgba(255,255,255,0.3);
  border-radius: 6px 6px 0 0;
}
/* Spray Shape */
.shape-spray {
  width: 60px;
  height: 160px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.2) 100%);
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}
.shape-spray::before {
  content: '';
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 22px;
  background: rgba(255,255,255,0.35);
  border-radius: 6px 6px 0 0;
}
.shape-spray::after {
  content: '';
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}
/* Dropper Shape */
.shape-dropper {
  width: 55px;
  height: 140px;
  background: linear-gradient(180deg, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0.2) 100%);
  border-radius: 10px 10px 18px 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}
.shape-dropper::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 24px;
  background: rgba(255,255,255,0.3);
  border-radius: 8px 8px 3px 3px;
}
/* Jar Shape */
.shape-jar {
  width: 100px;
  height: 90px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0.25) 100%);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
}
.shape-jar::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 14px;
  background: rgba(255,255,255,0.35);
  border-radius: 8px 8px 0 0;
}
.shape-label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
}

/* ============================================
   DYNAMIC REVIEWS SECTION (Carousel)
   ============================================ */
.pdp-reviews-section {
  padding: var(--sp-12) 0 var(--sp-20);
  background: var(--white);
}

.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--sp-10);
  border-bottom: 1px solid var(--gray-100);
  padding-bottom: var(--sp-6);
}

.reviews-summary .section-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: var(--sp-2);
}

.pdp-reviews-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Carousel Structure */
.reviews-carousel {
  position: relative;
  margin-top: var(--sp-8);
}

.reviews-carousel-viewport {
  overflow: hidden;
  width: 100%;
}

.reviews-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.review-slide {
  flex: 0 0 100%;
  width: 100%;
  padding: 0 var(--sp-10);
}

.review-item-card {
  background: var(--off-white);
  border: 1px solid var(--gray-50);
  border-radius: var(--radius-2xl);
  padding: var(--sp-10);
  max-width: 800px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
  position: relative;
}

/* Controls */
.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 10;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s;
}

.carousel-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.carousel-btn.prev { transform: translateX(-22px) translateY(-50%); position: absolute; left: 0; top: 50%; }
.carousel-btn.next { transform: translateX(22px) translateY(-50%); position: absolute; right: 0; top: 50%; }

/* Review item content tweaks */
.review-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--sp-6);
}

.review-user {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.user-avatar {
  width: 40px;
  height: 40px;
  background: var(--primary-bg-deep);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.review-user span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
}

.review-item-rating {
  color: #E8A838;
  font-size: 1rem;
  letter-spacing: 2px;
}

.review-item-comment {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--sp-6);
  text-align: center;
}

.review-item-date {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: capitalize;
}

/* Form & UI overlays */
.review-form-container {
  margin-bottom: var(--sp-12);
}

.rating-input {
  display: flex;
  gap: 4px;
  margin-bottom: var(--sp-4);
  justify-content: center;
}

.star-input {
  font-size: 1.8rem;
  cursor: pointer;
  color: #D1CADF;
}

#reviewComment {
  width: 100%;
  padding: var(--sp-4);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-200);
  font-family: var(--font-primary);
  font-size: 0.9rem;
  margin-bottom: var(--sp-6);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: var(--sp-4);
}

@media (max-width: 768px) {
  .review-slide { padding: 0 var(--sp-4); }
  .review-item-card { padding: var(--sp-6); }
  .carousel-btn { width: 36px; height: 36px; }
  .carousel-btn.prev { transform: translateX(-5px) translateY(-50%); }
  .carousel-btn.next { transform: translateX(5px) translateY(-50%); }
  .review-item-comment { font-size: 0.95rem; }
}

