/* =============================================
   ZEAXAN – Variant 1 – Warm Orange / Amber
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Lato:wght@300;400;700&display=swap');

:root {
  --primary-color: #EE7738;
  --secondary-color: #D35400;
  --accent-color: #F59D2A;
  --light-color: #FFF4E6;
  --dark-color: #2C1A0A;
  --gradient-primary: linear-gradient(135deg, #F59D2A 0%, #EE7738 50%, #D35400 100%);
  --hover-color: #C44E1A;
  --background-color: #FFFBF5;
  --text-color: #3D2B1A;
  --border-color: rgba(238, 119, 56, 0.2);
  --divider-color: rgba(211, 84, 0, 0.1);
  --shadow-color: rgba(211, 84, 0, 0.12);
  --highlight-color: #FFD23F;
  --main-font: 'Lato', sans-serif;
  --alt-font: 'Oswald', sans-serif;
  --container-width: 1100px;
  --product-img-width: 340px;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--main-font);
  background-color: var(--background-color);
  color: var(--text-color);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ---- SVG background ---- */
.svg-bg-pattern {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}

/* ---- HEADER ---- */
header {
  position: relative;
  z-index: 20;
  box-shadow: 0 2px 12px var(--shadow-color);
}

.header-decorations { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.deco-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
}
.deco-1 { width: 80px; height: 80px; top: -20px; left: 40px; }
.deco-2 { width: 120px; height: 120px; top: -40px; right: 80px; background: rgba(255,255,255,0.04); }

.deco-line {
  position: absolute;
  height: 1px;
  background: rgba(255,255,255,0.15);
}
.deco-line-1 { width: 200px; bottom: 8px; left: 15%; }

@media (max-width: 768px) {
  .header-decorations { display: none; }
}

.logo-link { text-decoration: none; transition: opacity 0.2s; }
.logo-link:hover { opacity: 0.85; }
.logo-icon { display: flex; }
.logo-text { font-size: 1.75rem; }

/* ---- MAIN LAYOUT ---- */
main { position: relative; z-index: 10; }

.product-container { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.product-grid {
  display: grid;
  grid-template-columns: var(--product-img-width) 1fr;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: 1fr; }
}

/* ---- LEFT COLUMN ---- */
.left-col { gap: 1rem; }

.img-block {
  background: white;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 4px 20px var(--shadow-color);
}

.product-img {
  width: var(--product-img-width);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  border-radius: 10px;
}

/* ---- Guarantee block ---- */
.guarantee-block {
  background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 100%);
  border: 2px solid var(--accent-color);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  box-shadow: 0 2px 10px var(--shadow-color);
}

.guarantee-icon { flex-shrink: 0; margin-top: 2px; }

.guarantee-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.guarantee-list {
  list-style: none;
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--text-color);
}

/* ---- CTA button ---- */
.cta-button {
  display: block;
  text-align: center;
  background: var(--gradient-primary);
  color: white;
  font-family: var(--alt-font);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(211,84,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(211,84,0,0.45);
  filter: brightness(1.05);
}

.cta-button:active { transform: translateY(0); }

/* ---- RIGHT COLUMN ---- */
.right-col { gap: 1rem; }

.content-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 3px 14px var(--shadow-color);
}

.product-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
  margin-bottom: 0.4rem;
}

.product-subtitle {
  font-size: 0.95rem;
  color: var(--text-color);
  margin-top: 0.25rem;
}

/* ---- Highlight CTA ---- */
.highlight-cta {
  background: linear-gradient(135deg, var(--highlight-color) 0%, #FFB020 100%);
  border-radius: 14px;
  padding: 1.1rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: 0 4px 16px rgba(255,210,63,0.4);
  font-size: 1.05rem;
  color: #3D2B1A;
  font-weight: 600;
  line-height: 1.5;
}

.highlight-star {
  font-size: 1.8rem;
  flex-shrink: 0;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
}

/* ---- Features ---- */
.features-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.9rem;
}

.features-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-color), #FFE0B2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  box-shadow: 0 2px 6px var(--shadow-color);
}

.feature-item > div strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 0.1rem;
}

.feature-item > div p {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-color);
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
  margin-top: 2rem;
  padding: 2.5rem 1rem;
  background: linear-gradient(135deg, #FFF4E6 0%, #FFE8CC 60%, #FDEBD0 100%);
  border-top: 1px solid var(--border-color);
}

.testimonials-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

@media (max-width: 640px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 1.2rem 1.4rem;
  box-shadow: 0 3px 12px var(--shadow-color);
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--text-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.7rem;
}

.testimonial-avatar {
  font-size: 1.6rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-header strong {
  display: block;
  font-size: 0.9rem;
  color: var(--secondary-color);
}

.stars { color: var(--accent-color); font-size: 0.85rem; letter-spacing: 1px; margin-top: 1px; }

/* ---- FOOTER ---- */
footer {
  position: relative;
  z-index: 20;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-link {
  text-decoration: none;
  font-size: 0.82rem;
  transition: color 0.2s;
}

.footer-link:hover { color: white !important; }

.footer-logo { text-decoration: none; }