/* =========================================================
   RC MEALS — MAIN STYLESHEET
   Custom design system built on top of Bootstrap 5 grid only.
   Bootstrap's component classes are intentionally overridden.
   ========================================================= */

/* ---------- Reset / Base ---------- */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-alt);
  font-size: 16px;
  line-height: var(--body-lh);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { margin: 0; padding: 0; list-style: none; }

button { font-family: inherit; border: none; background: none; cursor: pointer; }

input, textarea, select { font-family: inherit; }

/* ---------- Focus states (accessibility) ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Container ---------- */
.rc-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

@media (max-width: 767px) {
  .rc-container { padding-inline: var(--sp-3); }
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--title);
  margin: 0;
}

h1, .h1 {
  font-weight: 900;
  font-size: clamp(38px, 7vw, var(--h1-size));
  line-height: var(--h1-lh);
  letter-spacing: -0.02em;
}

h2, .h2 {
  font-weight: 900;
  font-size: clamp(28px, 4.5vw, var(--h2-size));
  line-height: var(--h2-lh);
  letter-spacing: -0.01em;
}

h3, .h3 {
  font-family: var(--font-alt);
  font-weight: 900;
  font-size: clamp(26px, 5vw, var(--h3-size));
  line-height: 1.2;
}

h4, .h4 {
  font-weight: 700;
  font-size: var(--h4-size);
  line-height: var(--h4-lh);
}

p { margin: 0; }

.rc-lead {
  font-size: clamp(16px, 2vw, var(--body-size));
  line-height: var(--body-lh);
  color: var(--text);
}

.rc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--sp-2);
}

.rc-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
}

.rc-section-head {
  max-width: 640px;
  margin-bottom: var(--sp-7);
}

.rc-section-head.center { margin-inline: auto; text-align: center; }

.rc-section-head p { margin-top: var(--sp-3); }

/* ---------- Section spacing ---------- */
.rc-section { padding-block: var(--sp-10); }
.rc-section--sm { padding-block: var(--sp-8); }

@media (max-width: 992px) {
  .rc-section { padding-block: 72px; }
}
@media (max-width: 575px) {
  .rc-section { padding-block: var(--sp-8); }
}

.bg-cream { background: var(--cream); }
.bg-dark  { background: var(--bg-dark); color: rgba(255,255,255,0.82); }
.bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--white); }

/* ---------- Buttons ---------- */
.btn-rc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  padding: 16px 32px;
  border-radius: var(--radius-btn);
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
  border: 2px solid transparent;
}

.btn-rc-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-rc-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-feature);
  color: var(--white);
}

.btn-rc-secondary {
  background: var(--secondary);
  color: var(--white);
}
.btn-rc-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-rc-outline {
  background: transparent;
  border-color: var(--title);
  color: var(--title);
}
.btn-rc-outline:hover {
  background: var(--title);
  border-color: var(--title);
  color: var(--white);
}

.btn-rc-outline-light {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-rc-outline-light:hover {
  background: var(--white);
  color: var(--title);
  border-color: var(--white);
}

.btn-rc-sm { padding: 11px 22px; font-size: 13px; }
.btn-rc-block { width: 100%; }

.btn-icon-circle {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  color: var(--title);
  transition: all var(--dur-base) var(--ease);
  position: relative;
}
.btn-icon-circle:hover { background: var(--primary); color: var(--white); }

.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--secondary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  min-width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-alt);
  border: 2px solid var(--white);
}

/* ---------- Badges ---------- */
.rc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-btn);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.rc-badge--new { background: #FFE3D6; color: var(--secondary-dark); }
.rc-badge--best { background: #FFE1E6; color: var(--primary); }
.rc-badge--sale { background: var(--title); color: var(--white); }
.rc-badge--natural { background: var(--green-soft); color: var(--green); }

/* =========================================================
   TOP BAR
   ========================================================= */
.rc-topbar {
  background: var(--title);
  color: rgba(255,255,255,0.85);
  font-family: var(--font-heading);
  font-size: 13px;
  padding-block: 10px;
}
.rc-topbar .rc-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
}
.rc-topbar-left, .rc-topbar-right {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}
.rc-topbar a { transition: color var(--dur-base) var(--ease); }
.rc-topbar-left a:hover { color: var(--secondary); }
.rc-topbar-item { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.rc-topbar-social { display: inline-flex; align-items: center; gap: 14px; }
.rc-topbar-social a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background var(--dur-base) var(--ease);
}
.rc-topbar-social a:hover { background: var(--primary); }

@media (max-width: 992px) { .rc-topbar { display: none; } }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.rc-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--dur-base) var(--ease);
}
.rc-header.is-scrolled { box-shadow: var(--shadow-soft); }

.rc-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding-block: 18px;
}

.rc-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.rc-logo img { height: 56px; width: 56px; border-radius: 50%; object-fit: cover; }
.rc-logo-text { font-family: var(--font-heading); line-height: 1.05; }
.rc-logo-text strong { display: block; font-size: 22px; font-weight: 900; color: var(--title); }
.rc-logo-text span { display: block; font-size: 11px; letter-spacing: 0.18em; color: var(--secondary); font-weight: 700; }

.rc-menu { display: flex; align-items: center; gap: var(--sp-6); }
.rc-menu a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 15px;
  color: var(--title);
  position: relative;
  padding-block: 6px;
}
.rc-menu a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--primary);
  transition: width var(--dur-base) var(--ease);
}
.rc-menu a:hover::after, .rc-menu a.active::after { width: 100%; }
.rc-menu a.active { color: var(--primary); }

.rc-nav-actions { display: flex; align-items: center; gap: var(--sp-3); }
.rc-nav-actions .btn-rc { margin-left: 6px; }

.rc-burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  align-items: center;
  justify-content: center;
}
.rc-burger span, .rc-burger span::before, .rc-burger span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--title);
  position: relative;
  transition: all var(--dur-base) var(--ease);
}
.rc-burger span::before { position: absolute; top: -6px; }
.rc-burger span::after { position: absolute; top: 6px; }

@media (max-width: 992px) {
  .rc-menu, .rc-nav-actions .btn-rc-outline, .rc-nav-actions .search-toggle, .rc-nav-actions .user-toggle { display: none; }
  .rc-burger { display: inline-flex; }
  .rc-logo img { height: 46px; width: 46px; }
  .rc-logo-text strong { font-size: 18px; }
}

/* Mobile side menu */
.rc-mobile-menu {
  position: fixed;
  top: 0; right: -100%;
  width: min(340px, 86vw);
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  transition: right var(--dur-slow) var(--ease);
  padding: var(--sp-5);
  overflow-y: auto;
}
.rc-mobile-menu.is-open { right: 0; }
.rc-mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--sp-6); }
.rc-mobile-menu a {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 20px;
  padding-block: 14px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--title);
}
.rc-mobile-menu a.active { color: var(--primary); }
.rc-mobile-menu .btn-rc { margin-top: var(--sp-5); }

.rc-overlay {
  position: fixed; inset: 0;
  background: rgba(1,15,28,0.5);
  z-index: 1050;
  opacity: 0; pointer-events: none;
  transition: opacity var(--dur-base) var(--ease);
}
.rc-overlay.is-open { opacity: 1; pointer-events: auto; }

/* =========================================================
   HERO
   ========================================================= */
.rc-hero {
  position: relative;
  background: var(--cream);
  overflow: hidden;
  padding-block: var(--sp-9) 0;
}

.rc-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: var(--sp-7);
}

@media (max-width: 992px) {
  .rc-hero-grid { grid-template-columns: 1fr; text-align: center; }
  .rc-hero-badges { justify-content: center; }
  .rc-hero-cta { justify-content: center; }
}

.rc-hero-copy { padding-block: var(--sp-6) var(--sp-9); position: relative; z-index: 2; }

.rc-hero-copy h1 { margin-bottom: var(--sp-4); }
.rc-hero-copy h1 .accent { color: var(--primary); }

.rc-hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text);
  max-width: 460px;
  margin-bottom: var(--sp-6);
}
@media (max-width: 992px) { .rc-hero-sub { margin-inline: auto; } }

.rc-hero-cta { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-bottom: var(--sp-7); }

.rc-hero-stats { display: flex; gap: var(--sp-7); flex-wrap: wrap; }
@media (max-width: 992px) { .rc-hero-stats { justify-content: center; } }
.rc-hero-stats strong { display: block; font-family: var(--font-heading); font-size: 30px; font-weight: 900; color: var(--title); }
.rc-hero-stats span { font-size: 13px; color: var(--text-muted); }

.rc-hero-visual { position: relative; z-index: 1; }
.rc-hero-visual img {
  border-radius: 28px;
  box-shadow: var(--shadow-feature);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.rc-hero-floating {
  position: absolute;
  bottom: -28px; left: -28px;
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatUp 4s ease-in-out infinite;
}
@media (max-width: 992px) { .rc-hero-floating { display: none; } }
.rc-hero-floating .dot { width: 42px; height: 42px; border-radius: 50%; background: var(--green-soft); display: flex; align-items: center; justify-content: center; color: var(--green); }
.rc-hero-floating strong { display: block; font-family: var(--font-heading); font-size: 15px; color: var(--title); }
.rc-hero-floating span { font-size: 12px; color: var(--text-muted); }

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

.rc-hero-leaf {
  position: absolute;
  opacity: 0.5;
  z-index: 0;
}
.rc-hero-leaf--1 { top: 8%; right: 4%; width: 90px; }
.rc-hero-leaf--2 { bottom: 6%; left: 2%; width: 60px; }

.rc-hero-wave { display: block; width: 100%; margin-top: var(--sp-8); line-height: 0; }

/* =========================================================
   CATEGORY CARDS ("What are you craving?")
   ========================================================= */
.rc-cat-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: var(--sp-6) var(--sp-5);
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
  border: 1px solid transparent;
}
.rc-cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-feature);
  border-color: var(--border-soft);
}
.rc-cat-card .icon-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
  color: var(--primary);
  transition: background var(--dur-base) var(--ease), color var(--dur-base) var(--ease);
}
.rc-cat-card:hover .icon-wrap { background: var(--primary); color: var(--white); }
.rc-cat-card h4 { margin-bottom: 10px; }
.rc-cat-card p { font-size: 14px; margin-bottom: var(--sp-4); }
.rc-cat-card .rc-cat-link {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--title);
  display: inline-flex; align-items: center; gap: 8px;
}
.rc-cat-card .rc-cat-link svg { transition: transform var(--dur-base) var(--ease); }
.rc-cat-card:hover .rc-cat-link svg { transform: translateX(4px); }

/* =========================================================
   PRODUCT CARDS
   ========================================================= */
.rc-product-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease);
}
.rc-product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-feature); }

.rc-product-media { position: relative; overflow: hidden; aspect-ratio: 4/3.2; }
.rc-product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.rc-product-card:hover .rc-product-media img { transform: scale(1.08); }
.rc-product-badges { position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 6px; }
.rc-product-fav {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex; align-items: center; justify-content: center;
  color: var(--title);
}

.rc-product-body { padding: 25px; display: flex; flex-direction: column; flex-grow: 1; }
.rc-product-tag { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--secondary); font-weight: 700; font-family: var(--font-heading); margin-bottom: 6px; }
.rc-product-title { font-family: var(--font-heading); font-weight: 800; font-size: 19px; color: var(--title); margin-bottom: 8px; }
.rc-product-desc { font-size: 14px; color: var(--text); margin-bottom: 14px; flex-grow: 1; }

.rc-product-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; flex-wrap: wrap; }
.rc-product-rating { display: flex; align-items: center; gap: 4px; font-size: 13px; color: var(--title); font-weight: 700; }
.rc-product-rating svg { color: var(--secondary); }
.rc-product-cal { font-size: 12px; color: var(--text-muted); }

.rc-product-footer { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.rc-product-price { font-family: var(--font-heading); font-weight: 900; font-size: 22px; color: var(--title); }
.rc-product-price small { font-size: 13px; color: var(--text-muted); font-weight: 500; text-decoration: line-through; margin-right: 6px; }

.btn-add-cart {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--title);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--dur-base) var(--ease);
  flex-shrink: 0;
}
.btn-add-cart:hover { background: var(--primary); transform: scale(1.08); }

/* ---------- Filter pills ---------- */
.rc-filters { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: var(--sp-7); }
.rc-filter-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 13px;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--border-soft);
  color: var(--title);
  transition: all var(--dur-base) var(--ease);
  background: var(--white);
}
.rc-filter-btn:hover { border-color: var(--primary); color: var(--primary); }
.rc-filter-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* =========================================================
   JUICE CARDS
   ========================================================= */
.rc-juice-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: var(--sp-5);
  box-shadow: var(--shadow-soft);
  text-align: center;
  height: 100%;
  transition: transform var(--dur-base) var(--ease);
  position: relative;
}
.rc-juice-card:hover { transform: translateY(-8px); }
.rc-juice-card .jar-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: var(--sp-4);
  background: var(--cream);
}
.rc-juice-card .jar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.rc-juice-card h4 { margin-bottom: 8px; }
.rc-juice-card .ingredients { font-size: 12.5px; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; min-height: 44px; }
.rc-juice-card .rc-product-price { font-size: 18px; margin-bottom: 12px; }

.juice-swatch { width: 10px; height: 10px; border-radius: 50%; display: inline-block; margin-right: 6px; }

/* =========================================================
   DETOX SECTION
   ========================================================= */
.rc-detox-section {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.8);
  border-radius: 32px;
  padding: var(--sp-9) var(--sp-6);
  position: relative;
  overflow: hidden;
}
.rc-detox-section h2, .rc-detox-section h4 { color: var(--white); }
.rc-detox-section .rc-eyebrow { color: var(--secondary); }
.rc-detox-section .rc-eyebrow::before { background: var(--primary); }

.rc-detox-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  padding: var(--sp-4);
  text-align: center;
  transition: all var(--dur-base) var(--ease);
  height: 100%;
}
.rc-detox-card:hover { background: rgba(255,255,255,0.09); transform: translateY(-6px); }
.rc-detox-card .jar-wrap { aspect-ratio: 3/4; border-radius: 10px; overflow: hidden; margin-bottom: 14px; }
.rc-detox-card .jar-wrap img { width: 100%; height: 100%; object-fit: cover; }
.rc-detox-card h4 { font-size: 15px; margin-bottom: 6px; }
.rc-detox-card .ingredients { font-size: 11.5px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 12px; min-height: 55px; }
.rc-detox-card .price { font-family: var(--font-heading); font-weight: 800; color: var(--white); margin-bottom: 10px; display: block; }

/* =========================================================
   FEATURED JUICE (Pink Pineapple)
   ========================================================= */
.rc-feature-juice {
  background: linear-gradient(135deg, #FFF3EC 0%, var(--cream) 100%);
  border-radius: 32px;
  padding: var(--sp-8);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--sp-7);
  overflow: hidden;
}
@media (max-width: 992px) { .rc-feature-juice { grid-template-columns: 1fr; padding: var(--sp-6); text-align: center; } }
.rc-feature-juice img { border-radius: 24px; box-shadow: var(--shadow-feature); width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.rc-benefit-list { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); margin-block: var(--sp-5); }
@media (max-width: 480px) { .rc-benefit-list { grid-template-columns: 1fr; } }
.rc-benefit-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--title); }
.rc-benefit-item .ico { width: 34px; height: 34px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; color: var(--secondary); flex-shrink: 0; }

/* =========================================================
   ABOUT SECTION
   ========================================================= */
.rc-about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: var(--sp-8); align-items: center; }
@media (max-width: 992px) { .rc-about-grid { grid-template-columns: 1fr; } }
.rc-about-visual { position: relative; }
.rc-about-visual img { border-radius: 24px; width: 100%; aspect-ratio: 4/5; object-fit: cover; box-shadow: var(--shadow-soft); }
.rc-about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--primary); color: var(--white);
  width: 130px; height: 130px; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; box-shadow: var(--shadow-feature);
}
@media (max-width: 575px) { .rc-about-badge { width: 100px; height: 100px; bottom: -14px; right: -14px; } }
.rc-about-badge strong { font-family: var(--font-heading); font-size: 26px; font-weight: 900; display: block; }
.rc-about-badge span { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; }

.rc-about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-4); margin-block: var(--sp-6); }
@media (max-width: 700px) { .rc-about-stats { grid-template-columns: repeat(2, 1fr); } }
.rc-about-stat { border-left: 3px solid var(--secondary); padding-left: 14px; }
.rc-about-stat strong { display: block; font-family: var(--font-heading); font-weight: 900; font-size: 18px; color: var(--title); }
.rc-about-stat span { font-size: 12.5px; color: var(--text-muted); }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.rc-why-card { display: flex; gap: var(--sp-4); padding: var(--sp-5) 0; border-bottom: 1px solid var(--border-soft); }
.rc-why-card:last-child { border-bottom: none; }
.rc-why-card .icon-wrap {
  width: 56px; height: 56px; border-radius: 16px; flex-shrink: 0;
  background: var(--green-soft); color: var(--green);
  display: flex; align-items: center; justify-content: center;
}
.rc-why-card h4 { margin-bottom: 4px; }
.rc-why-card p { font-size: 14.5px; }

/* =========================================================
   MEAL PLANS
   ========================================================= */
.rc-plan-card {
  background: var(--white);
  border: 2px solid var(--border-soft);
  border-radius: var(--radius-card);
  padding: var(--sp-6) var(--sp-5);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all var(--dur-base) var(--ease);
  position: relative;
}
.rc-plan-card:hover { border-color: var(--primary); box-shadow: var(--shadow-feature); transform: translateY(-6px); }
.rc-plan-card.featured { background: var(--title); border-color: var(--title); color: rgba(255,255,255,0.8); }
.rc-plan-card.featured h3, .rc-plan-card.featured h4 { color: var(--white); }
.rc-plan-card.featured .rc-plan-price { color: var(--white); }
.rc-plan-card.featured .rc-plan-feature { color: rgba(255,255,255,0.75); }
.rc-plan-card.featured .rc-plan-feature svg { color: var(--secondary); }

.rc-plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--secondary); color: var(--white);
  padding: 6px 18px; border-radius: var(--radius-btn);
  font-family: var(--font-heading); font-weight: 700; font-size: 11px; letter-spacing: 0.08em;
  white-space: nowrap;
}

.rc-plan-name { font-family: var(--font-heading); font-weight: 800; font-size: 22px; margin-bottom: 6px; }
.rc-plan-desc { font-size: 14px; margin-bottom: var(--sp-4); }
.rc-plan-price { font-family: var(--font-heading); font-weight: 900; font-size: 38px; color: var(--title); margin-bottom: var(--sp-1); }
.rc-plan-price span { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.rc-plan-meals { font-size: 13px; color: var(--secondary-dark); font-weight: 700; margin-bottom: var(--sp-5); }

.rc-plan-features { margin-bottom: var(--sp-6); flex-grow: 1; }
.rc-plan-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; padding-block: 8px; }
.rc-plan-feature svg { color: var(--primary); flex-shrink: 0; }

/* =========================================================
   SPECIAL OFFER BANNER
   ========================================================= */
.rc-offer-banner {
  background: var(--primary);
  border-radius: 28px;
  padding: var(--sp-8);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: var(--sp-6);
  overflow: hidden;
  position: relative;
  color: rgba(255,255,255,0.9);
}
@media (max-width: 900px) { .rc-offer-banner { grid-template-columns: 1fr; text-align: center; padding: var(--sp-6); } }
.rc-offer-banner h2 { color: var(--white); }
.rc-offer-banner img { border-radius: 20px; width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.rc-offer-pill {
  display: inline-block;
  background: var(--white); color: var(--primary);
  font-family: var(--font-heading); font-weight: 900; font-size: 15px;
  padding: 10px 22px; border-radius: var(--radius-btn);
  margin-block: var(--sp-4);
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.rc-testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-card);
  padding: var(--sp-6);
  height: 100%;
}
.rc-testimonial-stars { color: var(--secondary); display: flex; gap: 3px; margin-bottom: var(--sp-3); }
.rc-testimonial-quote { font-size: 16px; color: var(--title); margin-bottom: var(--sp-5); line-height: 1.6; }
.rc-testimonial-person { display: flex; align-items: center; gap: 12px; }
.rc-testimonial-person img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.rc-testimonial-person strong { display: block; font-family: var(--font-heading); font-size: 14px; color: var(--title); }
.rc-testimonial-person span { font-size: 12.5px; color: var(--text-muted); }

/* =========================================================
   INSTAGRAM GRID
   ========================================================= */
.rc-insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--sp-2); }
@media (max-width: 767px) { .rc-insta-grid { grid-template-columns: repeat(3, 1fr); } }
.rc-insta-item { position: relative; aspect-ratio: 1/1; border-radius: 12px; overflow: hidden; }
.rc-insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.rc-insta-item:hover img { transform: scale(1.1); }
.rc-insta-item::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(1,15,28,0.35);
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease);
}
.rc-insta-item:hover::after { opacity: 1; }
.rc-insta-item svg {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0.7);
  color: var(--white); opacity: 0;
  transition: all var(--dur-base) var(--ease);
}
.rc-insta-item:hover svg { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* =========================================================
   NEWSLETTER
   ========================================================= */
.rc-newsletter {
  background: var(--title);
  border-radius: 28px;
  padding: var(--sp-8);
  text-align: center;
  color: rgba(255,255,255,0.8);
}
.rc-newsletter h2 { color: var(--white); }
.rc-newsletter p { max-width: 480px; margin-inline: auto; margin-top: 10px; margin-bottom: var(--sp-6); }
.rc-newsletter-form { display: flex; max-width: 460px; margin-inline: auto; gap: 10px; }
@media (max-width: 500px) { .rc-newsletter-form { flex-direction: column; } }
.rc-newsletter-form input {
  flex-grow: 1;
  padding: 16px 22px;
  border-radius: var(--radius-btn);
  border: none;
  font-size: 15px;
}
.rc-newsletter-form input:focus-visible { outline: 2px solid var(--secondary); outline-offset: 2px; }

/* =========================================================
   FOOTER
   ========================================================= */
.rc-footer { background: var(--cream); padding-top: var(--sp-9); }
.rc-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-8);
  border-bottom: 1px solid var(--border-soft);
}
@media (max-width: 900px) { .rc-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .rc-footer-grid { grid-template-columns: 1fr; } }

.rc-footer-brand .rc-logo-text strong { color: var(--title); }
.rc-footer-brand p { font-size: 14px; margin-block: var(--sp-4); max-width: 280px; }
.rc-footer-social { display: flex; gap: 10px; }
.rc-footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--white); display: flex; align-items: center; justify-content: center;
  color: var(--title); transition: all var(--dur-base) var(--ease);
}
.rc-footer-social a:hover { background: var(--primary); color: var(--white); }

.rc-footer h4 { margin-bottom: var(--sp-4); font-size: 16px; }
.rc-footer-links li { margin-bottom: 12px; }
.rc-footer-links a { font-size: 14px; color: var(--text); transition: color var(--dur-base) var(--ease); }
.rc-footer-links a:hover { color: var(--primary); }
.rc-footer-contact li { display: flex; gap: 10px; font-size: 14px; margin-bottom: 14px; color: var(--text); }
.rc-footer-contact svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.rc-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-block: var(--sp-5); font-size: 13px; color: var(--text-muted); flex-wrap: wrap; gap: 10px;
}
.rc-footer-bottom-links { display: flex; gap: var(--sp-4); flex-wrap: wrap; }
.rc-footer-bottom-links a:hover { color: var(--primary); }

/* ---------- WhatsApp float ---------- */
.rc-whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  transition: transform var(--dur-base) var(--ease);
}
.rc-whatsapp-float:hover { transform: scale(1.08); color: var(--white); }

/* ---------- Toast ---------- */
.rc-toast {
  position: fixed; bottom: 28px; left: 50%; transform: translate(-50%, 20px);
  background: var(--title); color: var(--white);
  padding: 14px 26px; border-radius: var(--radius-btn);
  font-family: var(--font-heading); font-weight: 700; font-size: 14px;
  display: flex; align-items: center; gap: 10px;
  opacity: 0; pointer-events: none; z-index: 1300;
  transition: all var(--dur-base) var(--ease);
}
.rc-toast.is-visible { opacity: 1; transform: translate(-50%, 0); }
.rc-toast svg { color: #4ADE80; }

/* ---------- Reveal on scroll ---------- */
.rc-reveal { opacity: 0; transform: translateY(24px); transition: all 0.6s var(--ease); }
.rc-reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Utilities ---------- */
.text-primary-rc { color: var(--primary); }
.text-secondary-rc { color: var(--secondary); }
.text-green-rc { color: var(--green); }
