/* ================================================
   ELECTRIC CALLUS REMOVER — style.css
   Color system: Deep Sapphire + Warm Blush + Clean White
   Language: Hungarian (LTR)
   Unique from all previous sites
   Mobile-first · Amazon-style reviews · No JS
   ================================================ */

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

:root {
  /* Palette — Deep Sapphire + Warm Blush + Clean White */
  --sapph-deep:   #1a2e6e;
  --sapph-mid:    #2a46a8;
  --sapph-soft:   #6a88d8;
  --sapph-pale:   #edf0fc;
  --sapph-border: #bcc8f0;
  --blush:        #d05878;
  --blush-pale:   #fdf0f3;
  --blush-border: #f0c0cc;
  --teal-acc:     #1a8080;
  --purple-acc:   #6848a8;
  --clean-bg:     #fafcff;
  --clean-card:   #f4f6fc;
  --clean-rule:   #e0e6f4;
  --white:        #ffffff;
  --text-dark:    #0e1428;
  --text-mid:     #2a3454;
  --text-muted:   #6a7898;
  --text-link:    #1a2e6e;
  --star-on:      #d4a010;
  --star-off:     #d4d0e4;
  --radius-sm:    6px;
  --radius-md:    12px;
  --shadow:       0 3px 20px rgba(26,46,110,0.11);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--clean-bg);
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ================================================
   HEADER
   ================================================ */
.site-header {
  background: var(--sapph-deep);
  padding: 13px 16px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.22);
  border-bottom: 2px solid var(--blush);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.site-name {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sapph-border);
  font-weight: 700;
  margin-bottom: 4px;
}

.header-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
  max-width: 700px;
  margin: 0 auto;
}

@media (max-width: 600px) {
  .header-title { font-size: 0.86rem; }
}

/* ================================================
   PRODUCT SECTION
   ================================================ */
.product-section {
  padding: 28px 16px 8px;
  max-width: 1100px;
  margin: 0 auto;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid var(--clean-rule);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

@media (min-width: 768px) {
  .product-card {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* ================================================
   GALLERY
   ================================================ */
.gallery-col {
  flex: 0 0 auto;
  width: 100%;
  background: var(--sapph-pale);
  padding: 18px 14px;
}

@media (min-width: 768px) {
  .gallery-col {
    width: 42%;
    padding: 26px 22px;
    border-right: 1px solid var(--clean-rule);
  }
}

.gallery-wrap input[type="radio"] { display: none; }

.slides { width: 100%; overflow: hidden; }
.slide  { display: none; }

.slide img {
  width: 100%;
  height: 280px;
  object-fit: contain;
  border-radius: var(--radius-sm);
  background: #fff;
}

@media (min-width: 768px) {
  .slide img { height: 350px; }
}

#s1:checked ~ .slides .slide:nth-child(1),
#s2:checked ~ .slides .slide:nth-child(2),
#s3:checked ~ .slides .slide:nth-child(3),
#s4:checked ~ .slides .slide:nth-child(4) { display: block; }

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumb {
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.18s;
}

.thumb img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .thumb img { width: 64px; height: 64px; }
}

#s1:checked ~ .gallery-thumbs label:nth-child(1),
#s2:checked ~ .gallery-thumbs label:nth-child(2),
#s3:checked ~ .gallery-thumbs label:nth-child(3),
#s4:checked ~ .gallery-thumbs label:nth-child(4) {
  border-color: var(--sapph-mid);
}

.thumb:hover { border-color: var(--blush); }

/* ================================================
   INFO COLUMN
   ================================================ */
.info-col {
  flex: 1;
  padding: 22px 18px 26px;
}

@media (min-width: 768px) {
  .info-col { padding: 28px 30px 30px; }
}

.brand-tag {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--sapph-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 14px;
}

@media (min-width: 768px) {
  .product-title { font-size: 1.2rem; }
}

/* Spec grid */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7px;
  margin-bottom: 18px;
}

.spec-box {
  background: var(--sapph-pale);
  border: 1px solid var(--sapph-border);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.spec-box-accent {
  background: var(--blush-pale);
  border-color: var(--blush-border);
}

.spec-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sapph-deep);
  line-height: 1.1;
}

.spec-box-accent .spec-val {
  color: var(--blush);
}

.spec-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* About list */
.about-section { margin-bottom: 14px; }

.about-heading {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 1.5px solid var(--clean-rule);
}

.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.feat-badge {
  flex-shrink: 0;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 2px 7px;
  border-radius: 3px;
  margin-top: 2px;
  white-space: nowrap;
  text-transform: uppercase;
}

.feat-blue   { background: var(--sapph-pale); color: var(--sapph-mid); border: 1px solid var(--sapph-border); }
.feat-teal   { background: #e8f4f4; color: var(--teal-acc); border: 1px solid #a8d4d4; }
.feat-purple { background: #f0ecfc; color: var(--purple-acc); border: 1px solid #c8b8ec; }
.feat-pink   { background: var(--blush-pale); color: var(--blush); border: 1px solid var(--blush-border); }

.about-list strong { color: var(--text-dark); }

/* Rollers block */
.rollers-block {
  background: var(--clean-card);
  border: 1px solid var(--clean-rule);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin-bottom: 20px;
}

.rollers-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sapph-mid);
  margin-bottom: 10px;
}

.rollers-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.roller-item {
  flex: 1;
  min-width: 80px;
  background: var(--white);
  border: 1px solid var(--clean-rule);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  text-align: center;
}

.roller-dot {
  display: block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.roller-coarse  { background: var(--sapph-deep); }
.roller-medium  { background: var(--sapph-soft); }
.roller-fine    { background: var(--sapph-pale); border: 2px solid var(--sapph-border); }

.roller-item p {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.3;
}

.roller-item small {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* CTA inline */
.cta-inline { text-align: center; }

/* ================================================
   CTA BUTTON
   ================================================ */
.cta-btn {
  display: inline-block;
  background: var(--blush);
  color: #ffffff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(208,88,120,0.28);
}

.cta-btn:hover {
  background: #a83858;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(208,88,120,0.38);
  text-decoration: none;
  color: #fff;
}

.cta-section {
  max-width: 1100px;
  margin: 28px auto 0;
  padding: 0 16px;
  text-align: center;
}

.cta-large {
  font-size: 1.15rem;
  padding: 18px 50px;
}

@media (max-width: 480px) {
  .cta-large {
    font-size: 1rem;
    padding: 16px 24px;
    width: 100%;
    text-align: center;
  }
  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* ================================================
   REVIEWS SECTION
   ================================================ */
.reviews-section {
  max-width: 1100px;
  margin: 36px auto 0;
  padding: 0 16px 50px;
}

.reviews-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  border: 1px solid var(--clean-rule);
  padding: 28px 22px;
}

.reviews-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--clean-rule);
}

/* Single review */
.review {
  padding: 22px 0;
  border-bottom: 1px solid var(--clean-rule);
}

.review:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.review:first-of-type { padding-top: 0; }

.review-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}

.avatar-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--sapph-border);
  background: var(--sapph-pale);
}

.avatar-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer-info { flex: 1; }

.reviewer-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.stars {
  display: flex;
  gap: 1px;
  margin-bottom: 3px;
}

.star { font-size: 1rem; line-height: 1; }
.star.on  { color: var(--star-on); }
.star.off { color: var(--star-off); }

.review-headline {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-dark);
}

.review-date {
  font-size: 0.77rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.review-attrs {
  font-size: 0.77rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.verified {
  color: var(--sapph-mid);
  font-weight: 600;
}

.review-text {
  font-size: 0.87rem;
  color: var(--text-mid);
  line-height: 1.68;
  margin-bottom: 12px;
}

.review-imgs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.review-imgs img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--sapph-border);
}

@media (min-width: 480px) {
  .review-imgs img { width: 110px; height: 110px; }
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
  background: var(--sapph-deep);
  border-top: 2px solid var(--blush);
  padding: 22px 16px;
  color: #a0b0d8;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 6px 10px;
  margin-bottom: 10px;
}

.footer-nav a {
  font-size: 0.77rem;
  color: var(--blush);
  text-decoration: underline;
  transition: color 0.15s;
}

.footer-nav a:hover { color: #ffffff; }

.sep {
  color: #2a3e6e;
  font-size: 0.77rem;
}

.footer-copy {
  font-size: 0.7rem;
  color: #2a3e6e;
}