/* Base Styles */
:root {
  --bg-color: #FAF9F6;
  --bg-secondary: #EFEBE0;
  --text-main: #2C2C2C;
  --text-light: #5A5A5A;
  --accent-gold: #C4A661;
  --accent-gold-hover: #b09351;
  --accent-green: #7A8B76;
  --accent-olive: #5E6E5A;
  --white: #FFFFFF;
  --border-color: #E2DED5;
  --radius: 12px;
  --font-main: 'Inter', sans-serif;
  --spacing-base: 1rem;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
}

/* Typography */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-main);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.5rem; }

p { margin-bottom: 1rem; }

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-green { color: var(--accent-green); }
.text-olive { color: var(--accent-olive); }
.font-bold { font-weight: bold; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .btn { width: auto; }
}

.btn-primary {
  background-color: var(--accent-green);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(122, 139, 118, 0.3);
}

.btn-primary:hover {
  background-color: var(--accent-olive);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122, 139, 118, 0.4);
}

.btn-amazon {
  background-color: #FF9900;
  color: #000;
  box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
  display: flex;
  gap: 10px;
}

.btn-amazon:hover {
  background-color: #e68a00;
  transform: translateY(-2px);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.animate-fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

/* Custom Product Animations */
@keyframes product-float-shine {
  0% { transform: translateY(0) scale(1) rotate(0deg); filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15)) brightness(1); }
  50% { transform: translateY(-15px) scale(1.03) rotate(2deg); filter: drop-shadow(0 30px 45px rgba(122,139,118,0.4)) brightness(1.08); }
  100% { transform: translateY(0) scale(1) rotate(0deg); filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15)) brightness(1); }
}

@keyframes product-pulse-glow {
  0% { filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); transform: scale(1); }
  50% { filter: drop-shadow(0 15px 35px rgba(196,166,97,0.4)); transform: scale(1.02); }
  100% { filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1)); transform: scale(1); }
}

.product-anim-hero {
  animation: product-float-shine 6s ease-in-out infinite;
  max-height: 550px;
  width: auto !important;
  margin: 0 auto;
  object-fit: contain;
}

.product-styled {
  max-height: 480px;
  width: auto !important;
  margin: 0 auto;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.15));
}
.product-styled:hover {
  transform: scale(1.07) translateY(-10px);
  filter: drop-shadow(0 25px 40px rgba(122,139,118,0.3));
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }

.floating { animation: float 4s ease-in-out infinite; }
.pulsing { animation: pulse 2s infinite; }

/* Promo Bar */
.promo-bar {
  background-color: var(--accent-olive);
  color: var(--white);
  text-align: center;
  padding: 8px 15px;
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  z-index: 100;
}

/* Header/Nav */
.header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 90;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent-olive);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Section */
.hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--bg-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-grid { grid-template-columns: 1fr 1fr; }
}

.hero-content h1 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero-content h1 { font-size: 3rem; }
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 576px) {
  .hero-actions { flex-direction: row; }
}

.hero-disclaimer {
  font-size: 0.8rem;
  color: #888;
  margin-top: 1rem;
}

.hero-image-wrapper {
  position: relative;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-bg-white { background-color: var(--white); }

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--border-color);
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(122, 139, 118, 0.1);
  color: var(--accent-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
}

/* Editoral Section */
.editorial-flex {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .editorial-flex {
    flex-direction: row;
  }
  .editorial-flex:nth-child(even) {
    flex-direction: row-reverse;
  }
}

.editorial-img {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.editorial-img img {
  max-height: 450px;
  object-fit: contain;
  border-radius: 0;
}

.editorial-text {
  flex: 1;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--bg-color);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 1.5rem;
}

.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--text-light);
}

/* Comparison */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-top: 2rem;
}

.comparison-table th, .comparison-table td {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--bg-secondary);
  font-weight: 700;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
  width: 40%;
}

.check-icon { color: var(--accent-green); font-size: 1.5rem; }
.cross-icon { color: #d9534f; font-size: 1.5rem; }

/* Shopify Section */
.shopify-section {
  background-color: var(--white);
  padding: 4rem 2rem;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
  margin-top: 2rem;
}

.product-display {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 992px) {
  .product-display { grid-template-columns: 1fr 1fr; }
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.main-image {
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  background: var(--bg-secondary);
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.main-image img {
  max-height: 400px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.thumbnail-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.thumbnail {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.thumbnail img {
  max-height: 100%;
  object-fit: contain;
}

.thumbnail.active { border-color: var(--accent-green); }

.product-info h2 { font-size: 2rem; margin-bottom: 0.5rem; }
.price-block { margin: 1.5rem 0; display: flex; align-items: center; gap: 1rem; }
.current-price { font-size: 2rem; font-weight: 700; color: var(--text-main); }
.old-price { font-size: 1.2rem; color: #888; text-decoration: line-through; }
.badge-sale {
  background-color: var(--accent-gold);
  color: var(--white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
}

.quantity-selector {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  width: max-content;
  margin-bottom: 1.5rem;
}

.quantity-btn {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  cursor: pointer;
}

.quantity-input {
  width: 50px;
  text-align: center;
  border: none;
  font-size: 1rem;
  font-weight: bold;
}

.checkout-icons {
  display: flex;
  gap: 10px;
  margin-top: 1rem;
  filter: grayscale(100%);
  opacity: 0.7;
}

.checkout-icons img { width: 40px; }

/* Product Tabs */
.product-tabs { marginTop: 2rem; border-top: 1px solid var(--border-color); padding-top: 1rem; }
.tab-header {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  cursor: pointer;
  font-weight: 600;
  border-bottom: 1px solid var(--border-color);
}

.tab-content {
  padding: 1rem 0;
  display: none;
  color: var(--text-light);
}

.tab-content.active { display: block; }

/* Checkout Direct Form */
.checkout-form-container {
  background: var(--bg-secondary);
  border-radius: var(--radius);
  padding: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label { font-weight: 600; font-size: 0.9rem; }
.form-group input, .form-group textarea {
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-family: inherit;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 3px rgba(122, 139, 118, 0.2);
}

.order-summary {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.summary-line {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-color);
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  font-size: 1.2rem;
  margin-top: 1rem;
}

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 1rem;
}

.faq-question {
  padding: 1.5rem 0;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding-bottom: 1.5rem;
  display: none;
  color: var(--text-light);
}

.faq-answer.active { display: block; animation: fadeInUp 0.3s ease; }

/* Disclaimer & Footer */
.footer {
  background-color: #1A1A1A;
  color: #DDD;
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-links a {
  color: #AAA;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover { color: var(--white); }

.legal-text {
  font-size: 0.8rem;
  color: #777;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
}
