/* === Slymsy Keto Drink PT - Warm Organic Design === */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

:root {
  --primary: #e17055;
  --primary-light: #fab1a0;
  --secondary: #2d3436;
  --accent: #e17055;
  --accent-hover: #d35a42;
  --bg: #fdf8f4;
  --bg-alt: #fef5ee;
  --white: #ffffff;
  --text: #2d3436;
  --text-light: #636e72;
  --border: #f0e0d6;
  --peach: #ffecd2;
  --coral: #ff7675;
  --soft-orange: #f8a572;
  --sunset-pink: #fd9b8e;
  --shadow: 0 4px 20px rgba(225,112,85,0.1);
  --shadow-lg: 0 12px 40px rgba(225,112,85,0.15);
  --shadow-pastel: 0 8px 32px rgba(253,155,142,0.18);
  --radius: 20px;
  --radius-sm: 14px;
  --font-heading: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  --font: 'Source Sans Pro', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --max-w: 1200px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

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

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }
ul, ol { padding-left: 1.5em; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

/* --- Keyframes --- */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-2deg); }
  75% { transform: rotate(2deg); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: .85; }
}
@keyframes pulseBorder {
  0%, 100% { box-shadow: 0 0 0 0 rgba(225,112,85,0.5); }
  50% { box-shadow: 0 0 0 12px rgba(225,112,85,0); }
}
@keyframes blobMorph {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  50% { border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%; }
  75% { border-radius: 60% 30% 60% 40% / 70% 50% 40% 60%; }
}
@keyframes floatBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.04); }
  66% { transform: translate(-10px, 10px) scale(0.97); }
}
@keyframes arrowBounce {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(5px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Organic Blob Decorations --- */
body::before,
body::after {
  content: '';
  position: fixed;
  z-index: -1;
  opacity: .12;
  pointer-events: none;
}
body::before {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, var(--peach), var(--coral));
  top: -100px;
  right: -120px;
  animation: blobMorph 12s ease-in-out infinite, floatBlob 18s ease-in-out infinite;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
body::after {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, var(--soft-orange), var(--primary-light));
  bottom: 10%;
  left: -80px;
  animation: blobMorph 15s ease-in-out infinite reverse, floatBlob 20s ease-in-out infinite reverse;
  border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%;
}

/* --- Header (floating nav) --- */
.site-header {
  background: transparent;
  border-bottom: none;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 12px 20px 0;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  max-width: var(--max-w);
  margin: 0 auto;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 60px;
  box-shadow: 0 4px 24px rgba(225,112,85,0.1);
  border: 1px solid rgba(240,224,214,0.5);
}
.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.5px;
}
.logo span { color: var(--secondary); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0; }
.main-nav a {
  color: var(--text);
  padding: 8px 16px;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--font);
  border-radius: 50px;
  transition: background .2s, color .2s, transform .2s;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
  background: rgba(225,112,85,0.1);
  transform: translateY(-1px);
}
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: " \25BE"; font-size: .7em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 10px 0;
  z-index: 100;
}
.dropdown-menu a { display: block; padding: 10px 20px; font-size: .9rem; border-radius: 0; }
.dropdown-menu a:hover { background: var(--bg-alt); }
.nav-dropdown:hover .dropdown-menu { display: block; }

.nav-cta {
  background: linear-gradient(135deg, var(--coral), var(--soft-orange)) !important;
  color: var(--white) !important;
  padding: 8px 22px !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 15px rgba(255,118,117,0.3) !important;
  transition: transform .2s, box-shadow .2s !important;
}
.nav-cta:hover {
  background: linear-gradient(135deg, var(--primary), var(--coral)) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(255,118,117,0.4) !important;
}

.menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--text); }

/* --- Hero --- */
.hero {
  background: linear-gradient(160deg, #ffecd2 0%, #fcb69f 30%, #fd9b8e 60%, #e17055 100%);
  padding: 100px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(255,255,255,0.12);
  top: -60px;
  left: -60px;
  animation: blobMorph 10s ease-in-out infinite;
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 80px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
  z-index: 2;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 16px;
  line-height: 1.15;
  position: relative;
  z-index: 3;
  animation: fadeInUp .6s ease-out;
}
.hero p {
  font-size: 1.2rem;
  color: #4a4a4a;
  max-width: 700px;
  margin: 0 auto 30px;
  position: relative;
  z-index: 3;
  animation: fadeInUp .6s ease-out .1s both;
}
.hero .price-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--white);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  margin-bottom: 30px;
  position: relative;
  z-index: 3;
  animation: fadeInUp .6s ease-out .2s both, pulseBorder 2.5s ease-in-out infinite;
  border: 3px solid var(--primary-light);
  padding: 20px;
}
.price-old {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-right: 0;
  margin-bottom: 2px;
}
.price-new {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 900;
  font-family: var(--font-heading);
  line-height: 1.1;
}
.price-discount {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary), var(--coral));
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  margin-top: 4px;
  vertical-align: middle;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: transform .25s, box-shadow .25s;
  border: none;
  text-align: center;
  position: relative;
  z-index: 3;
}
.btn::after {
  content: '\2192';
  display: inline-block;
  transition: transform .3s;
  font-size: 1.2em;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.btn:hover::after {
  animation: arrowBounce .5s ease infinite;
}
.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--soft-orange));
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255,118,117,0.3);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary), var(--coral));
  color: var(--white);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--primary), #d35a42);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(225,112,85,0.3);
}
.btn-secondary:hover {
  background: linear-gradient(135deg, #d35a42, var(--primary));
  color: var(--white);
}

/* --- Sections --- */
.section {
  padding: 80px 0;
  position: relative;
}
.section-alt { background: var(--bg-alt); }
.section-title {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 16px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto 50px;
}

/* --- Grid --- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-pastel);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  border: 1px solid rgba(240,224,214,0.4);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--peach), var(--coral), var(--soft-orange));
  opacity: 0;
  transition: opacity .3s;
}
.card:hover {
  transform: rotate(-1deg) translateY(-6px);
  box-shadow: 0 16px 48px rgba(253,155,142,0.22);
}
.card:hover::before { opacity: 1; }
.card:nth-child(even):hover {
  transform: rotate(1deg) translateY(-6px);
}
.card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--secondary);
}
.card p { color: var(--text-light); font-size: .95rem; }
.card-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--peach), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 18px;
  transition: transform .3s, box-shadow .3s;
}
.card:hover .card-icon {
  animation: wiggle .4s ease;
  box-shadow: 0 4px 16px rgba(225,112,85,0.2);
}

/* --- Benefits --- */
.benefit-item { display: flex; gap: 16px; margin-bottom: 24px; }
.benefit-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--coral), var(--soft-orange));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 12px rgba(255,118,117,0.25);
  transition: transform .3s;
}
.benefit-item:hover .benefit-num {
  animation: bounce .5s ease;
}

/* --- Timeline --- */
.timeline { max-width: 700px; margin: 0 auto; }
.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  position: relative;
}
.timeline-marker {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--coral), var(--soft-orange));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  font-family: var(--font-heading);
  box-shadow: 0 4px 14px rgba(255,118,117,0.25);
  transition: transform .3s;
}
.timeline-item:hover .timeline-marker {
  animation: pulse .6s ease;
}
.timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.timeline-content p { color: var(--text-light); }

/* --- Testimonials (speech bubble) --- */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-pastel);
  margin-bottom: 36px;
  position: relative;
  border: 1px solid rgba(240,224,214,0.4);
  transition: transform .3s;
}
.testimonial::after {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 36px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 16px solid var(--white);
  filter: drop-shadow(0 3px 4px rgba(253,155,142,0.12));
}
.testimonial:hover {
  transform: translateY(-3px);
}
.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.testimonial-avatar {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--peach), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary);
  font-size: 1.2rem;
  font-family: var(--font-heading);
}
.testimonial-name { font-weight: 700; font-family: var(--font-heading); }
.testimonial-location { color: var(--text-light); font-size: .85rem; }
.stars { color: #f9a825; font-size: 1.05rem; margin-bottom: 8px; letter-spacing: 2px; }
.testimonial p { color: var(--text-light); font-style: italic; line-height: 1.7; }
.testimonial .result { color: var(--primary); font-weight: 700; font-style: normal; margin-top: 8px; display: block; }

/* --- Rating badge --- */
.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: .95rem;
  font-family: var(--font-heading);
  border: 1px solid rgba(240,224,214,0.4);
}

/* --- Ingredients --- */
.ingredient-card {
  text-align: center;
  padding: 30px 20px;
}
.ingredient-card .emoji {
  font-size: 3.2rem;
  margin-bottom: 14px;
  display: inline-block;
  transition: transform .3s;
}
.ingredient-card:hover .emoji {
  animation: bounce .5s ease;
}
.ingredient-card h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
}

/* --- Pricing table --- */
.pricing-table {
  max-width: 500px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(240,224,214,0.4);
}
.pricing-header {
  background: linear-gradient(135deg, var(--coral), var(--primary), var(--soft-orange));
  color: var(--white);
  text-align: center;
  padding: 35px;
  position: relative;
}
.pricing-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 25px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.pricing-header h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 900;
}
.pricing-body { padding: 30px; }
.pricing-body ul { list-style: none; padding: 0; }
.pricing-body li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: padding-left .2s;
}
.pricing-body li:hover { padding-left: 6px; }
.pricing-body li::before { content: "\2713"; color: var(--primary); font-weight: 700; }
.pricing-footer { text-align: center; padding: 0 30px 30px; }

/* --- Order Form --- */
.order-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  margin: 0 auto;
  border: 1px solid rgba(240,224,214,0.4);
  position: relative;
  overflow: hidden;
}
.order-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--peach), var(--coral), var(--soft-orange), var(--primary));
}
.order-form h3 {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 28px;
  color: var(--secondary);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--secondary);
}
.form-group input, .form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font);
  transition: border-color .2s, box-shadow .2s;
  background: var(--bg);
}
.form-group input:focus, .form-group select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 4px rgba(225,112,85,0.1);
  background: var(--white);
}
.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--coral), var(--soft-orange));
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .25s, box-shadow .2s;
  font-family: var(--font);
  box-shadow: 0 6px 20px rgba(255,118,117,0.3);
}
.form-submit:hover {
  background: linear-gradient(135deg, var(--primary), var(--coral));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,118,117,0.4);
}

/* --- FAQ (emoji indicators) --- */
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: var(--shadow-pastel);
  overflow: hidden;
  border: 1px solid rgba(240,224,214,0.3);
  transition: transform .2s;
}
.faq-item:hover {
  transform: translateX(4px);
}
.faq-question {
  padding: 20px 26px;
  font-weight: 700;
  font-family: var(--font-heading);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background .2s;
}
.faq-question:hover {
  background: var(--bg-alt);
}
.faq-question::after {
  content: "\1F449";
  font-size: 1.2rem;
  transition: transform .3s;
}
.faq-item.open .faq-question::after {
  content: "\1F447";
}
.faq-answer {
  padding: 0 26px 20px;
  color: var(--text-light);
  line-height: 1.7;
}

/* --- Blog article --- */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 50px 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-pastel);
  border: 1px solid rgba(240,224,214,0.4);
}
.article-content h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 16px;
  color: var(--secondary);
  line-height: 1.25;
}
.article-meta { color: var(--text-light); font-size: .9rem; margin-bottom: 30px; padding-bottom: 20px; border-bottom: 2px solid var(--border); }
.article-content h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 800;
  margin: 35px 0 15px;
  color: var(--secondary);
}
.article-content h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 25px 0 12px;
  color: var(--secondary);
}
.article-content p { margin-bottom: 18px; color: var(--text); }
.article-content ul, .article-content ol { margin-bottom: 18px; }
.article-content li { margin-bottom: 8px; }
.article-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 18px 24px;
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-light);
}
.article-cta {
  background: linear-gradient(135deg, var(--peach), var(--primary-light));
  border-radius: var(--radius);
  padding: 34px;
  text-align: center;
  margin: 40px 0;
}
.article-cta h3 {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
}
.article-cta p { margin-bottom: 20px; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--coral), var(--primary), var(--soft-orange));
  color: var(--white);
  text-align: center;
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -80px;
  right: -40px;
  animation: blobMorph 8s ease-in-out infinite;
}
.cta-banner h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
}
.cta-banner p { font-size: 1.15rem; margin-bottom: 30px; opacity: .92; position: relative; }

/* --- Footer (warm dark with organic wave top) --- */
.site-footer {
  background: #2d2420;
  color: #c8b8ae;
  padding: 0 0 0;
  position: relative;
  margin-top: 40px;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 60px;
  background: #2d2420;
  clip-path: ellipse(55% 70% at 50% 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  padding-top: 50px;
}
.footer-col h4 {
  color: var(--peach);
  margin-bottom: 18px;
  font-size: 1rem;
  font-family: var(--font-heading);
  font-weight: 800;
}
.footer-col a {
  display: block;
  color: #c8b8ae;
  padding: 5px 0;
  font-size: .9rem;
  transition: color .2s, padding-left .2s;
}
.footer-col a:hover {
  color: var(--primary-light);
  padding-left: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(200,184,174,0.15);
  padding: 20px 0;
  text-align: center;
  font-size: .85rem;
}
.footer-disclaimer {
  background: rgba(0,0,0,0.25);
  padding: 18px 22px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  line-height: 1.6;
  margin-bottom: 30px;
  border: 1px solid rgba(200,184,174,0.08);
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 14px 0;
  font-size: .85rem;
  color: var(--text-light);
}
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { margin: 0 6px; }

/* --- Page hero small --- */
.page-hero {
  background: linear-gradient(160deg, #ffecd2 0%, #fcb69f 50%, #fd9b8e 100%);
  padding: 60px 0 55px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 50px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--secondary);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: #4a4a4a;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* --- Table --- */
.info-table { width: 100%; border-collapse: collapse; margin: 20px 0; border-radius: var(--radius-sm); overflow: hidden; }
.info-table th, .info-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--border); }
.info-table th { background: var(--bg-alt); font-weight: 700; color: var(--secondary); font-family: var(--font-heading); }
.info-table tr:hover td { background: rgba(254,245,238,0.5); }

/* --- Highlight box --- */
.highlight-box {
  background: linear-gradient(135deg, var(--peach), var(--primary-light));
  border-radius: var(--radius);
  padding: 26px 32px;
  margin: 20px 0;
  border: 1px solid rgba(225,112,85,0.1);
}
.highlight-box h3 {
  color: var(--secondary);
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-weight: 800;
}

/* --- Warning box --- */
.warning-box {
  background: #fff8e1;
  border-left: 4px solid #fdcb6e;
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}

/* --- Success box --- */
.success-box {
  background: #e8f8f5;
  border-left: 4px solid #00b894;
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 20px 0;
}

/* --- Blog list --- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-pastel);
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s;
  border: 1px solid rgba(240,224,214,0.4);
}
.blog-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 16px 48px rgba(253,155,142,0.22);
}
.blog-card-body { padding: 26px; }
.blog-card-body h3 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 800;
}
.blog-card-body h3 a { color: var(--secondary); }
.blog-card-body h3 a:hover { color: var(--primary); }
.blog-card-body p { color: var(--text-light); font-size: .95rem; margin-bottom: 14px; }
.blog-card-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--bg-alt), var(--peach));
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: .8rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.4rem; }
  body::before { width: 300px; height: 300px; }
  body::after { width: 250px; height: 250px; }
}

@media (max-width: 768px) {
  .site-header { padding: 8px 12px 0; }
  .header-inner { border-radius: 20px; padding: 10px 18px; }
  .main-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 16px;
    border: 1px solid var(--border);
  }
  .main-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .nav-dropdown .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; }
  .nav-dropdown:hover .dropdown-menu { display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .hero { padding: 70px 0 80px; }
  .hero .price-box { width: 150px; height: 150px; }
  .price-new { font-size: 1.8rem; }
  .section { padding: 50px 0; }
  .section-title { font-size: 1.8rem; }
  .article-content { padding: 30px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .order-form { padding: 28px; }
  body::before, body::after { display: none; }
  .testimonial::after { left: 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .hero .price-box { width: 130px; height: 130px; padding: 14px; }
  .price-new { font-size: 1.5rem; }
  .price-old { font-size: .95rem; }
  .btn { padding: 14px 28px; font-size: 1rem; }
}
