/* ===========================
   GLOBAL RESET & BASE
=========================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #fdf8f0;
  color: #2c1f0e;
  line-height: 1.65;
  font-size: 15px;
}

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

/* ===========================
   HEADER
   — Deep amber-to-sienna gradient
=========================== */
.site-header {
  background: linear-gradient(135deg, #7c3d0a 0%, #c47a20 100%);
  padding: 22px 16px;
  box-shadow: 0 3px 12px rgba(124,61,10,0.22);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}

.site-logo {
  font-family: 'Lora', serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fde8b8;
}

.header-title {
  font-family: 'Lora', serif;
  font-size: clamp(15px, 2.3vw, 21px);
  font-weight: 600;
  color: #ffffff;
  max-width: 780px;
  line-height: 1.38;
}

/* ===========================
   PRODUCT SECTION
=========================== */
.product-section {
  padding: 44px 16px;
}

.product-card {
  max-width: 1100px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 4px 28px rgba(124,61,10,0.10);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid #f0d9b0;
}

/* ===========================
   GALLERY
=========================== */
.gallery-col {
  background: #fdf3e3;
  padding: 28px 22px;
  border-right: 1px solid #f0d9b0;
  position: relative;
}

.gallery-radio {
  display: none;
}

.gallery-main {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #fef9f0;
  aspect-ratio: 1 / 1;
  border: 1px solid #ecdbb0;
}

.gallery-slides {
  width: 400%;
  height: 100%;
  display: flex;
}

.gallery-slide {
  width: 25%;
  flex-shrink: 0;
  display: none;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

#img1:checked ~ .gallery-main .gallery-slides #slide1,
#img2:checked ~ .gallery-main .gallery-slides #slide2,
#img3:checked ~ .gallery-main .gallery-slides #slide3,
#img4:checked ~ .gallery-main .gallery-slides #slide4 {
  display: block;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.thumb-label {
  width: calc(25% - 6px);
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: #fef9f0;
}

.thumb-label img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

#img1:checked ~ .gallery-thumbs label[for="img1"],
#img2:checked ~ .gallery-thumbs label[for="img2"],
#img3:checked ~ .gallery-thumbs label[for="img3"],
#img4:checked ~ .gallery-thumbs label[for="img4"] {
  border-color: #c47a20;
}

.thumb-label:hover {
  border-color: #e09030;
}

/* ===========================
   INFO COLUMN
=========================== */
.info-col {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-title {
  font-family: 'Lora', serif;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 600;
  color: #3d1a04;
  line-height: 1.45;
}

/* ===========================
   DESCRIPTION
=========================== */
.desc-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9b5110;
  padding-bottom: 6px;
  border-bottom: 1px solid #f0d9b0;
  margin-bottom: 14px;
}

.desc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.desc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #3d2408;
  line-height: 1.62;
}

.desc-bullet {
  color: #c47a20;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 3px;
}

.desc-list strong {
  color: #7c3d0a;
}

.keywords-block {
  margin-top: 8px;
  padding: 13px 16px;
  background: #fef6e4;
  border-left: 3px solid #c47a20;
  border-radius: 6px;
  font-size: 14px;
  color: #3d2408;
  line-height: 1.65;
}

.keywords-block strong {
  color: #9b5110;
}

/* ===========================
   CTA BUTTON
   — Rich honey amber
=========================== */
.cta-section {
  padding: 36px 16px 52px;
  display: flex;
  justify-content: center;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #7c3d0a 0%, #c47a20 100%);
  color: #fff8ed;
  font-family: 'Inter', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  padding: 18px 54px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(124,61,10,0.30);
  letter-spacing: 0.04em;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(124,61,10,0.40);
  background: linear-gradient(135deg, #632f06 0%, #ae6a16 100%);
}

/* ===========================
   REVIEWS SECTION
=========================== */
.reviews-section {
  background: #fdf8f0;
  padding: 0 16px 64px;
}

.reviews-container {
  max-width: 820px;
  margin: 0 auto;
}

.reviews-heading {
  font-family: 'Lora', serif;
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 600;
  color: #3d1a04;
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0d9b0;
}

.review-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(124,61,10,0.07);
  border: 1px solid #f5e4c4;
}

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

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: #fde8b8;
  border: 2px solid #f0d9b0;
}

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

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.reviewer-name {
  font-weight: 700;
  font-size: 14px;
  color: #3d1a04;
}

.review-stars {
  color: #c47a20;
  font-size: 15px;
  letter-spacing: 1px;
}

.review-title {
  font-weight: 600;
  font-size: 14px;
  color: #2c1f0e;
}

.review-date {
  font-size: 12px;
  color: #957040;
  margin-bottom: 4px;
}

.review-tags {
  font-size: 12px;
  color: #9b5110;
  font-weight: 600;
  margin-bottom: 10px;
}

.review-body {
  font-size: 14px;
  color: #3d2408;
  line-height: 1.7;
  margin-bottom: 14px;
}

.review-photos {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.review-photos img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #f0d9b0;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: linear-gradient(135deg, #3d1a04 0%, #7c3d0a 100%);
  padding: 28px 16px;
  text-align: center;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  font-family: 'Lora', serif;
  font-size: 14px;
  font-weight: 600;
  color: #fde8b8;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 14px;
  font-size: 13px;
}

.footer-links a {
  color: #e0b870;
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-sep {
  color: #6b3a18;
}

.footer-copy {
  font-size: 12px;
  color: #957040;
}

/* ===========================
   RESPONSIVE — TABLET
=========================== */
@media (max-width: 768px) {
  .product-card {
    grid-template-columns: 1fr;
  }

  .gallery-col {
    border-right: none;
    border-bottom: 1px solid #f0d9b0;
    padding: 20px 16px;
  }

  .info-col {
    padding: 24px 16px;
  }

  .cta-btn {
    padding: 16px 36px;
    font-size: 16px;
    width: 90%;
    text-align: center;
  }
}

/* ===========================
   RESPONSIVE — MOBILE
=========================== */
@media (max-width: 480px) {
  .site-header {
    padding: 16px 12px;
  }

  .product-section {
    padding: 20px 10px;
  }

  .thumb-label {
    width: calc(25% - 5px);
  }

  .review-item {
    padding: 16px 14px;
  }

  .review-avatar {
    width: 38px;
    height: 38px;
  }

  .review-photos img {
    width: 64px;
    height: 64px;
  }
}