/* =========================================================
   JJ CARE — Dispozitiv de Înțepare
   Design: Soft organic lifestyle · yellow-green palette
   ========================================================= */

:root {
  --c-lime:       #b5cc1e;
  --c-lime-dk:    #8fa80d;
  --c-lime-lt:    #d6eb5a;
  --c-sage:       #e8f2c4;
  --c-sage-deep:  #cde080;
  --c-cream:      #f7fbe8;
  --c-white:      #ffffff;
  --c-ink:        #1a1f0e;
  --c-ink-mid:    #3d4a1a;
  --c-muted:      #6b7940;
  --c-border:     #ddf0a0;
  --c-gold:       #e6a817;
  --c-green-soft: #2e7d32;

  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    28px;
  --radius-pill:  999px;

  --shadow-xs:    0 1px 4px rgba(60,80,10,0.07);
  --shadow-sm:    0 3px 12px rgba(60,80,10,0.1);
  --shadow-md:    0 8px 32px rgba(60,80,10,0.13);
  --shadow-glow:  0 0 0 4px rgba(181,204,30,0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Nunito', sans-serif;

  --max-w: 1140px;
  --section-px: clamp(1rem, 5vw, 3rem);
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--font-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =========================================================
   DECORATIVE BLOBS (CSS only, pure bg art)
   ========================================================= */
.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.32;
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--c-lime-lt) 0%, transparent 70%);
  top: -180px; right: -150px;
  animation: blobFloat 12s ease-in-out infinite alternate;
}
.blob-2 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--c-sage-deep) 0%, transparent 70%);
  bottom: 120px; left: -100px;
  animation: blobFloat 16s ease-in-out infinite alternate-reverse;
}
@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, 20px) scale(1.07); }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: linear-gradient(135deg, var(--c-lime-dk) 0%, var(--c-lime) 60%, var(--c-lime-lt) 100%);
  padding: 0.9rem var(--section-px);
  box-shadow: 0 2px 20px rgba(100,130,10,0.22);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.header-leaf { display: flex; align-items: center; }
.header-logo {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.15);
}

/* =========================================================
   PRODUCT SECTION
   ========================================================= */
.product-section {
  position: relative;
  z-index: 1;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--section-px) clamp(2rem, 5vw, 3rem);
}
.product-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 48% 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-wrap {
  position: sticky;
  top: 5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.slides-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--c-white);
  box-shadow: var(--shadow-md), inset 0 0 0 1.5px var(--c-border);
  aspect-ratio: 1 / 1;
}

.slides {
  width: 100%;
  height: 100%;
}
.slide {
  display: none;
  width: 100%;
  height: 100%;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.25rem;
}

#s1:checked ~ .slides-frame .slides #slide-1,
#s2:checked ~ .slides-frame .slides #slide-2,
#s3:checked ~ .slides-frame .slides #slide-3,
#s4:checked ~ .slides-frame .slides #slide-4 { display: block; }

/* Dots inside frame */
.slide-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
}
.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--c-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: block;
}
.dot:hover { background: var(--c-lime); }

#s1:checked ~ .slides-frame .slide-dots label[for="s1"],
#s2:checked ~ .slides-frame .slide-dots label[for="s2"],
#s3:checked ~ .slides-frame .slide-dots label[for="s3"],
#s4:checked ~ .slides-frame .slide-dots label[for="s4"] {
  background: var(--c-lime-dk);
  transform: scale(1.35);
}

/* Thumbnails */
.thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.55rem;
}
.thumb {
  cursor: pointer;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--c-white);
  box-shadow: var(--shadow-xs);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.18s;
  aspect-ratio: 1 / 1;
}
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.thumb:hover { border-color: var(--c-lime); transform: translateY(-2px); }

#s1:checked ~ .thumbnails label[for="s1"],
#s2:checked ~ .thumbnails label[for="s2"],
#s3:checked ~ .thumbnails label[for="s3"],
#s4:checked ~ .thumbnails label[for="s4"] {
  border-color: var(--c-lime-dk);
  box-shadow: var(--shadow-glow);
}

/* =========================================================
   PRODUCT INFO
   ========================================================= */
.product-info {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}

/* badge */
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--c-sage);
  color: var(--c-lime-dk);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--c-border);
  width: fit-content;
}

/* h1 */
.product-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--c-ink);
  line-height: 1.2;
  position: relative;
  padding-bottom: 0.85rem;
}
.product-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 52px; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--c-lime-dk), var(--c-lime-lt));
}

/* description block */
.product-description {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.desc-intro {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-muted);
  display: flex;
  align-items: center;
}

/* feature list */
.desc-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.desc-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s, transform 0.18s;
}
.desc-list li:hover {
  box-shadow: var(--shadow-sm);
  transform: translateX(3px);
}
.feat-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: var(--c-sage);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.05rem;
}
.feat-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--c-ink);
}
.desc-label {
  font-weight: 700;
  color: var(--c-lime-dk);
  font-size: 0.85rem;
  margin-right: 0.2rem;
}

/* keywords card */
.keywords-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: linear-gradient(135deg, var(--c-sage) 0%, var(--c-cream) 100%);
  border: 1.5px solid var(--c-sage-deep);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
}
.keywords-icon { flex-shrink: 0; margin-top: 0.15rem; }
.keywords-para {
  font-size: 0.9rem;
  color: var(--c-ink-mid);
  font-style: italic;
  line-height: 1.6;
}
.keywords-para strong { color: var(--c-lime-dk); font-style: normal; font-weight: 700; }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 5vw, 3.5rem) var(--section-px);
  display: flex;
  justify-content: center;
}
.cta-wrapper {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.cta-note {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-muted);
  font-weight: 600;
}
.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--c-lime-dk) 0%, var(--c-lime) 55%, var(--c-lime-lt) 100%);
  color: var(--c-white);
  border-radius: var(--radius-pill);
  padding: 0;
  box-shadow: 0 8px 30px rgba(100,140,10,0.32), 0 2px 8px rgba(100,140,10,0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 40px rgba(100,140,10,0.38), 0 4px 12px rgba(100,140,10,0.22);
  filter: brightness(1.05);
}
.cta-btn:active { transform: translateY(-1px) scale(1); }
.cta-btn-inner {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.8rem;
}

/* =========================================================
   REVIEWS SECTION
   ========================================================= */
.reviews-section {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, var(--c-cream) 0%, var(--c-sage) 100%);
  border-top: 1.5px solid var(--c-border);
  padding: clamp(2.5rem, 6vw, 4rem) var(--section-px) clamp(3rem, 7vw, 5rem);
}
.reviews-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--c-border);
}
.reviews-heading {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2.1rem);
  font-weight: 700;
  color: var(--c-ink);
}
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.summary-stars {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: 0.04em;
}
.summary-text {
  font-size: 0.8rem;
  color: var(--c-muted);
  font-weight: 600;
}

/* Individual review */
.review-item {
  padding: 2rem 0;
  border-bottom: 1px solid var(--c-border);
  transition: background 0.2s;
}
.review-item:last-child { border-bottom: none; }

.review-card-inner {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.4rem 1.6rem;
  background: var(--c-white);
  border-radius: var(--radius-md);
  border: 1.5px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.22s, transform 0.2s;
}
.review-card-inner:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-top {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}
.review-avatar {
  flex-shrink: 0;
  width: 50px; height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid var(--c-border);
  box-shadow: var(--shadow-xs);
  background: var(--c-sage);
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.reviewer-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--c-ink);
}
.review-stars {
  color: var(--c-gold);
  font-size: 1rem;
  letter-spacing: 0.05em;
}
.review-title {
  font-weight: 700;
  font-size: 0.97rem;
  color: var(--c-ink);
}

.review-info-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 1.2rem;
}
.review-date {
  font-size: 0.79rem;
  color: var(--c-muted);
}
.review-verified {
  font-size: 0.79rem;
  color: var(--c-green-soft);
  font-weight: 600;
}

.review-body {
  font-size: 0.93rem;
  line-height: 1.72;
  color: var(--c-ink-mid);
  padding-top: 0.25rem;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer-divider {
  line-height: 0;
  display: block;
}
.footer-divider svg {
  width: 100%;
  height: 40px;
  display: block;
}

.site-footer {
  background: var(--c-ink);
  color: var(--c-sage);
  padding: 2.5rem var(--section-px) 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  text-align: center;
}
.footer-leaf-row { display: flex; justify-content: center; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-lime);
  letter-spacing: 0.01em;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3rem 0.7rem;
  font-size: 0.8rem;
}
.footer-links a {
  color: var(--c-sage-deep);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--c-lime-lt); }
.footer-sep { color: var(--c-muted); }
.footer-copy {
  font-size: 0.72rem;
  color: var(--c-muted);
  margin-top: 0.2rem;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet */
@media (max-width: 900px) {
  .product-container {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
  .gallery-wrap { position: static; }
  .blob-1 { width: 320px; height: 320px; top: -100px; right: -80px; }
  .blob-2 { width: 260px; height: 260px; }
}

/* Mobile */
@media (max-width: 560px) {
  .product-section { padding-top: 2rem; padding-bottom: 1rem; }
  .product-title { font-size: 1.6rem; }
  .product-title::after { width: 36px; }

  .desc-list li { padding: 0.7rem 0.85rem; gap: 0.6rem; }
  .feat-icon { width: 28px; height: 28px; }
  .feat-text { font-size: 0.85rem; }

  .cta-btn { width: 100%; max-width: 360px; }
  .cta-btn-inner { justify-content: center; padding: 0.95rem 1.5rem; }

  .review-card-inner { padding: 1rem 1rem; }
  .reviews-header { flex-direction: column; align-items: flex-start; }

  .thumbnails { grid-template-columns: repeat(4, 1fr); gap: 0.4rem; }

  .footer-links { font-size: 0.75rem; }
}

/* Very small */
@media (max-width: 360px) {
  .product-badge { font-size: 0.65rem; padding: 0.25rem 0.65rem; }
  .cta-btn-inner { padding: 0.9rem 1.2rem; }
}