/* ===========================
   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: #faf6f0;
  color: #1a1208;
  line-height: 1.65;
  font-size: 15px;
}

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

/* ===========================
   HEADER
   — Desert gold to warm sand
=========================== */
.site-header {
  background: linear-gradient(135deg, #3d2a00 0%, #8a6218 100%);
  padding: 22px 16px;
  box-shadow: 0 3px 16px rgba(61,42,0,0.28);
}

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

.site-logo {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #f0d890;
}

.header-title {
  font-size: clamp(15px, 2.3vw, 21px);
  font-weight: 700;
  color: #ffffff;
  max-width: 840px;
  line-height: 1.35;
}

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

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

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

.gallery-radio { display: none; }

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

.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: #fffcf4;
}

.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: #8a6218;
}

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

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

.product-title {
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 700;
  color: #1a1208;
  line-height: 1.42;
}

/* ===========================
   DESCRIPTION
=========================== */
.desc-heading {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8a6218;
  padding-bottom: 5px;
  border-bottom: 2px solid #ecddb8;
  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: #2a1e08;
  line-height: 1.62;
}

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

.desc-list strong { color: #1a1208; }

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

.keywords-block strong { color: #3d2a00; }

/* ===========================
   CTA BUTTON
   — Desert gold gradient, pill
=========================== */
.cta-section {
  padding: 36px 16px 52px;
  display: flex;
  justify-content: center;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #3d2a00 0%, #8a6218 100%);
  color: #fffcf4;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  padding: 18px 58px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(138,98,24,0.34);
  letter-spacing: 0.04em;
  transition: transform 0.15s, box-shadow 0.15s;
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(138,98,24,0.44);
  background: linear-gradient(135deg, #2a1c00 0%, #6e4e12 100%);
}

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

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

.reviews-heading {
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 700;
  color: #1a1208;
  margin-bottom: 28px;
  padding-bottom: 10px;
  border-bottom: 2px solid #ecddb8;
}

.review-item {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(61,42,0,0.07);
  border: 1px solid #f0e4c0;
  border-top: 3px solid #c89030;
}

.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: #ecddb8;
  border: 2px solid #e0cca0;
}

.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: #1a1208;
}

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

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

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

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

.review-body {
  font-size: 14px;
  color: #2a1e08;
  line-height: 1.72;
  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 #ecddb8;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: linear-gradient(135deg, #120c00 0%, #3d2a00 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-size: 12px;
  font-weight: 700;
  color: #f0d890;
  letter-spacing: 0.20em;
  text-transform: uppercase;
}

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

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

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

.footer-sep { color: #2a1c00; }

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

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .product-card { grid-template-columns: 1fr; }
  .gallery-col { border-right: none; border-bottom: 1px solid #ecddb8; padding: 20px 16px; }
  .info-col { padding: 24px 16px; }
  .cta-btn { padding: 16px 36px; font-size: 16px; width: 90%; text-align: center; }
}

@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; }
}