/* ============================================
   salonesdefiestas.top — styles
   ============================================ */

/* Base */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Hero background texture */
.hero-bg {
  background-image: 
    radial-gradient(circle at 80% 20%, rgba(220,158,46,0.12) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(220,158,46,0.08) 0%, transparent 40%);
}

/* Card hover lift */
.product-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(26, 18, 8, 0.08);
}

/* Article cards */
.card-featured {
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.card-featured:hover {
  transform: translateY(-2px);
}

/* Prose styles for articles */
.prose-article h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: #1a1208;
}

.prose-article h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: #1a1208;
}

.prose-article p {
  margin-bottom: 1.25rem;
  line-height: 1.8;
  color: #3d2009;
}

.prose-article ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
  color: #3d2009;
}

.prose-article ul li {
  margin-bottom: 0.4rem;
  line-height: 1.7;
}

.prose-article strong {
  color: #1a1208;
  font-weight: 600;
}

.prose-article .highlight-box {
  background: #faefd8;
  border-left: 4px solid #dc9e2e;
  padding: 1rem 1.25rem;
  border-radius: 0 0.5rem 0.5rem 0;
  margin: 1.5rem 0;
}

.prose-article .highlight-box p {
  margin: 0;
  font-size: 0.95rem;
}

/* Amazon affiliate product inline */
.affiliate-product {
  border: 1px solid #f3d9a0;
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  background: #fff;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.affiliate-product:hover {
  border-color: #dc9e2e;
  box-shadow: 0 4px 12px rgba(26, 18, 8, 0.07);
}

.affiliate-product .product-emoji {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.affiliate-product .product-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 0.4rem;
  background: #fff;
}

.affiliate-product .product-info h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a1208;
  margin: 0 0 0.2rem;
}

.affiliate-product .product-info p {
  font-size: 0.8rem;
  color: #9e6010;
  margin: 0;
}

.affiliate-product .product-cta {
  margin-left: auto;
  background: #dc9e2e;
  color: #1a1208;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 0.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Responsive tweaks */
@media (max-width: 640px) {
  .hero-bg h1 { font-size: 3.5rem; }
  .affiliate-product { flex-wrap: wrap; }
  .affiliate-product .product-cta { margin-left: 0; width: 100%; text-align: center; padding: 0.5rem; }
}
