

.SBC_section {
  background: #DCEFD8;
  padding: 56px 24px 64px;
}

.SBC_heading {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #1F2A17;
  letter-spacing: 0.5px;
  margin: 25px;
}

.SBC_underline {
  width: 56px;
  height: 4px;
  background: #2F5E17;
  margin: 12px auto 44px;
  border-radius: 2px;
}

.SBC_grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 16px;
  max-width: 1200px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.SBC_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  width: 150px;
}

.SBC_circle {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.SBC_circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.SBC_item:hover .SBC_circle {
  border-color: #2F5E17;
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(47, 94, 23, 0.18);
}

.SBC_label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #1F2A17;
}

.SBC_count {
  font-size: 12px;
  color: #6E7A66;
  margin-top: 4px;
}

@media (max-width: 1024px) {
  .SBC_item { width: 130px; }
}

@media (max-width: 700px) {
  .SBC_heading { font-size: 26px; }
  .SBC_grid { gap: 28px 10px; }
  .SBC_item { width: 100px; }
  .SBC_circle { width: 84px; height: 84px; }
  .SBC_label { font-size: 11px; }
}

@media (max-width: 420px) {
  .SBC_item { width: 42%; }
  .SBC_circle { width: 92px; height: 92px; }
}


.rf-hero-wrap {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  line-height: 0;
}

.rf-hero-wrap img {
  width: 100% !important;
  height: auto !important;
  max-width: none !important;
  display: block !important;
}

@media (max-width: 992px) {
  .rf-hero-wrap {
    max-height: 420px;
  }
}

@media (max-width: 576px) {
  .rf-hero-wrap {
    max-height: none;
  }
}

/* Desktop-only override: 50% width, centered, 37px top margin */
@media (min-width: 992px) {
  .rf-hero-wrap img {
    width: 67% !important;
    margin: 37px auto 0 !important;
  }
}

.rf-hero-link {
  display: block;
  width: 100%;
  cursor: pointer;
}


/* =============================================================
   RaghavLunchBox Section Styles
   Brand: RaghavFoods
   Theme: Deep Forest Green + Soft Mint Section Background
   Approach: Mobile-first, Flexbox, CSS Variables
   ============================================================= */

/* -------------------------------
   1. CSS Variables
   ------------------------------- */
.rlb-section {
  --rlb-primary: #2B5A16;      /* Deep Forest Green */
  --rlb-primary-dark: #1F4310; /* Darker shade for depth/hover */
  --rlb-secondary: #6FA34C;    /* Mid Green Accent (icons) */
  --rlb-label-color: #7FA36B;  /* Muted olive-green label */
  --rlb-text: #2E3A28;         /* Deep green-tinted text */
  --rlb-bg-section: #DCEAD3;   /* Soft Mint section background */
  --rlb-bg-white: #FFFFFF;     /* Card background */
  --rlb-border: #E4EDE0;       /* Subtle border for card definition */
  --rlb-radius: 12px;
  --rlb-shadow: 0 4px 16px rgba(43, 90, 22, 0.1);
  --rlb-shadow-hover: 0 10px 24px rgba(43, 90, 22, 0.18);
  --rlb-transition: 0.3s ease;

  /* Spacing (mobile-first default) */
  --rlb-padding-y: 2.5rem; /* 40px */

  background-color: var(--rlb-bg-section);
  color: var(--rlb-text);
  padding: var(--rlb-padding-y) 1.25rem;
  font-family: 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
}

/* -------------------------------
   2. Container
   ------------------------------- */
.rlb-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* -------------------------------
   3. Section Header
   ------------------------------- */
.rlb-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.rlb-label {
  color: var(--rlb-label-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  margin: 0 0 0.5rem;
}

.rlb-heading {
  color: var(--rlb-primary);
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.rlb-subtitle {
  color: var(--rlb-text);
  font-size: 1rem;
  font-weight: 400;
  max-width: 40rem;
  margin: 0 auto;
  opacity: 0.85;
}

/* -------------------------------
   4. About Card
   ------------------------------- */
.rlb-about-card {
  background-color: var(--rlb-bg-white);
  border-radius: var(--rlb-radius);
  padding: 1.75rem;
  box-shadow: var(--rlb-shadow);
  margin-bottom: 3rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.rlb-about-card p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
}

.rlb-about-card p:last-child {
  margin-bottom: 0;
}

/* -------------------------------
   5. Why RaghavLunchBox - Features
   ------------------------------- */
.rlb-features {
  margin-bottom: 3rem;
}

.rlb-features-title {
  text-align: center;
  color: var(--rlb-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 2rem;
}

.rlb-features-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  justify-content: center;
}

.rlb-feature-card {
  background-color: var(--rlb-bg-white);
  border-radius: var(--rlb-radius);
  box-shadow: var(--rlb-shadow);
  padding: 1.75rem 1.25rem;
  text-align: center;
  flex: 1 1 100%;
  transition: transform var(--rlb-transition), box-shadow var(--rlb-transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  border-bottom: 3px solid transparent;
}

.rlb-feature-card:hover,
.rlb-feature-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--rlb-shadow-hover);
  border-bottom-color: var(--rlb-secondary);
}

.rlb-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--rlb-secondary);
  color: var(--rlb-bg-white);
  border-radius: 50%;
  font-size: 1.4rem;
  flex-shrink: 0;
  transition: transform var(--rlb-transition), background-color var(--rlb-transition);
}

.rlb-feature-card:hover .rlb-icon {
  transform: scale(1.08);
  background-color: var(--rlb-primary);
}

.rlb-feature-title {
  color: var(--rlb-primary);
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

/* -------------------------------
   6. Our Commitment
   ------------------------------- */
.rlb-commitment-card {
  background-color: var(--rlb-bg-white);
  border-radius: var(--rlb-radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--rlb-shadow);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  border-top: 4px solid var(--rlb-primary);
}

.rlb-commitment-heading {
  color: var(--rlb-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.rlb-commitment-text {
  font-size: 0.98rem;
  margin: 0 0 1.5rem;
}

.rlb-tagline {
  color: var(--rlb-primary-dark);
  font-size: 1.15rem;
  font-weight: 700;
  text-align: center;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--rlb-border);
}

/* =================================================================
   Responsive Breakpoints (Mobile-first, scaling upward)
   ================================================================= */

/* Small Mobile - 360px */
@media (min-width: 360px) {
  .rlb-heading {
    font-size: 2.1rem;
  }
}

/* Mobile - 480px */
@media (min-width: 480px) {
  .rlb-section {
    --rlb-padding-y: 2.75rem;
  }

  .rlb-feature-card {
    flex: 1 1 100%;
  }
}

/* Tablet - 768px */
@media (min-width: 768px) {
  .rlb-section {
    --rlb-padding-y: 3.75rem; /* 60px */
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .rlb-heading {
    font-size: 2.5rem;
  }

  .rlb-subtitle {
    font-size: 1.1rem;
  }

  .rlb-about-card {
    padding: 2.25rem;
  }

  .rlb-feature-card {
    flex: 1 1 calc(50% - 1.25rem);
  }
}

/* Laptop - 992px */
@media (min-width: 992px) {
  .rlb-feature-card {
    flex: 1 1 calc(33.333% - 1.25rem);
  }

  .rlb-heading {
    font-size: 2.75rem;
  }
}

/* Desktop - 1200px+ */
@media (min-width: 1200px) {
  .rlb-section {
    --rlb-padding-y: 5rem; /* 80px */
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .rlb-heading {
    font-size: 3rem;
  }

  .rlb-subtitle {
    font-size: 1.15rem;
  }

  .rlb-about-card {
    padding: 2.5rem 3rem;
  }

  .rlb-feature-card {
    flex: 1 1 calc(20% - 1.25rem);
    padding: 2rem 1.25rem;
  }

  .rlb-commitment-card {
    padding: 3rem 3.5rem;
  }

  .rlb-tagline {
    font-size: 1.3rem;
  }
}

.checkout-details{
background: #d7ecd6 !important;
}

.primary-btn{
background: #235710 !important;
}

.primary-btn{
background: #235710 !important;
}

.primary-btn:hover{
background: #235710 !important;
}

#step-payment .billing-address-card,#shipping-summary-card {
background: #235710 !important;
}

.order-summary-card{
background: #d7ecd6 !important;
}

#step-login .customer-choice-button--primary{
background: #235710 !important;
}

#step-login .customer-newsletter input[type="checkbox"]{
accent-color: #235710 !important;
}

.checkout-login-card{
border: 1px solid #235710 !important;
background-color: #fff !important;
}

#step-shipping .shipping-save-btn:hover, #step-shipping .shipping-method-continue:hover, #step-payment .billing-save-btn:hover, #step-payment .payment-action-btn:hover {
  background: #235710 !important;
}

#step-shipping .shipping-save-btn, #step-shipping .shipping-method-continue, #step-payment .billing-save-btn, #step-payment .payment-action-btn {
  background: #235710 !important;
}

#step-login .customer-submit, #step-login .customer-submit:hover{
background: #235710 !important;
}


 

  .err500-block {
    /* Design tokens ? scoped to this component only */
    --err500-primary: #245C18;
    --err500-primary-dark: #17400f;
    --err500-primary-light: #3a7a29;
    --err500-secondary: #DCECD8;
    --err500-secondary-tint: #f2f8f0;
    --err500-ink: #16231a;
    --err500-muted: #5c6b58;
    --err500-white: #ffffff;
    --err500-line: #d7e6d2;

    --err500-font-display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
    --err500-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    box-sizing: border-box;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(32px, 6vw, 72px) clamp(16px, 5vw, 32px);
    text-align: center;
    font-family: var(--err500-font-body);
    color: var(--err500-ink);
  }

  .err500-block *,
  .err500-block *::before,
  .err500-block *::after {
    box-sizing: border-box;
  }

  .err500-block a { text-decoration: none; }

  @media (prefers-reduced-motion: reduce) {
    .err500-block *,
    .err500-block *::before,
    .err500-block *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }

  .err500-code {
    font-family: var(--err500-font-display);
    font-weight: 700;
    font-size: clamp(64px, 11vw, 140px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0;
    background: linear-gradient(160deg, var(--err500-primary) 0%, var(--err500-primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .err500-heading {
    font-family: var(--err500-font-display);
    font-weight: 700;
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.25;
    margin: 12px 0 14px;
    color: var(--err500-ink);
  }

  .err500-desc {
    font-family: var(--err500-font-body);
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.65;
    color: var(--err500-muted);
    max-width: 46ch;
    margin: 0 auto 28px;
  }

  .err500-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .err500-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--err500-font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    padding: 12px 26px;
    border-radius: 8px;
    border: 1.5px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
  }

  .err500-btn:focus-visible {
    outline: 3px solid var(--err500-primary-light);
    outline-offset: 2px;
  }

  .err500-btn-primary {
    background: var(--err500-primary);
    color: var(--err500-white);
  }

  .err500-btn-primary:hover {
    background: var(--err500-primary-dark);
    transform: translateY(-2px);
  }

  .err500-btn-secondary {
    background: var(--err500-white);
    color: var(--err500-primary);
    border-color: var(--err500-line);
  }

  .err500-btn-secondary:hover {
    background: var(--err500-secondary-tint);
    border-color: var(--err500-primary-light);
    transform: translateY(-2px);
  }

  .err500-btn-ghost {
    background: transparent;
    color: var(--err500-muted);
    border-color: transparent;
  }

  .err500-btn-ghost:hover {
    color: var(--err500-primary);
    background: var(--err500-secondary-tint);
  }

  /* Responsive: 320 ? 1920 */
  @media (max-width: 576px) {
    .err500-btn { flex: 1 1 auto; padding: 12px 18px; }
    .err500-buttons { width: 100%; }
  }

  @media (max-width: 375px) {
    .err500-code { font-size: 56px; }
  }

  @media (min-width: 1600px) {
    .err500-block { max-width: 780px; }
  }


.err404-block {
    /* Design tokens ? scoped to this component only */
    --err404-primary: #245C18;
    --err404-primary-dark: #17400f;
    --err404-primary-light: #3a7a29;
    --err404-secondary: #DCECD8;
    --err404-secondary-tint: #f2f8f0;
    --err404-ink: #16231a;
    --err404-muted: #5c6b58;
    --err404-white: #ffffff;
    --err404-line: #d7e6d2;

    --err404-font-display: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
    --err404-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

    box-sizing: border-box;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    padding: clamp(32px, 6vw, 72px) clamp(16px, 5vw, 32px);
    text-align: center;
    font-family: var(--err404-font-body);
    color: var(--err404-ink);
  }

  .err404-block *,
  .err404-block *::before,
  .err404-block *::after {
    box-sizing: border-box;
  }

  .err404-block a { text-decoration: none; }

  @media (prefers-reduced-motion: reduce) {
    .err404-block *,
    .err404-block *::before,
    .err404-block *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }
  }

  .err404-code {
    font-family: var(--err404-font-display);
    font-weight: 700;
    font-size: clamp(64px, 11vw, 140px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin: 0;
    background: linear-gradient(160deg, var(--err404-primary) 0%, var(--err404-primary-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }

  .err404-heading {
    font-family: var(--err404-font-display);
    font-weight: 700;
    font-size: clamp(20px, 3vw, 32px);
    line-height: 1.25;
    margin: 12px 0 14px;
    color: var(--err404-ink);
  }

  .err404-desc {
    font-family: var(--err404-font-body);
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.65;
    color: var(--err404-muted);
    max-width: 46ch;
    margin: 0 auto 28px;
  }

  .err404-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .err404-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--err404-font-body);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.01em;
    padding: 12px 26px;
    border-radius: 8px;
    border: 1.5px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
  }

  .err404-btn:focus-visible {
    outline: 3px solid var(--err404-primary-light);
    outline-offset: 2px;
  }

  .err404-btn-primary {
    background: var(--err404-primary);
    color: var(--err404-white);
  }

  .err404-btn-primary:hover {
    background: var(--err404-primary-dark);
    transform: translateY(-2px);
  }

  .err404-btn-secondary {
    background: var(--err404-white);
    color: var(--err404-primary);
    border-color: var(--err404-line);
  }

  .err404-btn-secondary:hover {
    background: var(--err404-secondary-tint);
    border-color: var(--err404-primary-light);
    transform: translateY(-2px);
  }

  .err404-btn-ghost {
    background: transparent;
    color: var(--err404-muted);
    border-color: transparent;
  }

  .err404-btn-ghost:hover {
    color: var(--err404-primary);
    background: var(--err404-secondary-tint);
  }

  /* Responsive: 320 ? 1920 */
  @media (max-width: 576px) {
    .err404-btn { flex: 1 1 auto; padding: 12px 18px; }
    .err404-buttons { width: 100%; }
  }

  @media (max-width: 375px) {
    .err404-code { font-size: 56px; }
  }

  @media (min-width: 1600px) {
    .err404-block { max-width: 780px; }
  }





/* ===================================================================
   RAGHAV'S LUNCH BOX - ABOUT US CONTENT STYLES
   Scoped fragment (no header/footer) ? safe to drop into existing page.
   Theme: brand dark green (#235710) & mint green (#d7ecd6).
   Mobile-first, fully responsive, no animations/transitions.
   All classes prefixed with "rf-about-us-" to avoid collisions.
=================================================================== */

/* ---------- Scoped Theme Tokens ---------- */
.rf-about-us-wrapper {
  --rf-about-us-color-primary: #235710;        /* Brand dark green (from theme) */
  --rf-about-us-color-primary-dark: #163d0c;   /* Deeper green for strong contrast text */
  --rf-about-us-color-accent: #235710;         /* Accent uses same brand green for consistency */
  --rf-about-us-color-accent-light: #d7ecd6;   /* Brand mint green (from theme) */

  --rf-about-us-color-white: #ffffff;
  --rf-about-us-color-bg-soft: #f4f9f3;        /* Soft off-white with a green tint */
  --rf-about-us-color-text-primary: #2b2b2b;
  --rf-about-us-color-text-secondary: #5a5a5a;
  --rf-about-us-color-border: #d7ecd6;

  --rf-about-us-shadow-soft: 0 4px 16px rgba(35, 87, 16, 0.08);
  --rf-about-us-shadow-medium: 0 8px 24px rgba(35, 87, 16, 0.10);

  --rf-about-us-font-heading: 'Playfair Display', Georgia, serif;
  --rf-about-us-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --rf-about-us-container-max-width: 1200px;
  --rf-about-us-radius-md: 12px;
  --rf-about-us-radius-lg: 20px;

  font-family: var(--rf-about-us-font-body);
  font-weight: 400;
  color: var(--rf-about-us-color-text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding: 48px 0;
  box-sizing: border-box;
}

.rf-about-us-wrapper *,
.rf-about-us-wrapper *::before,
.rf-about-us-wrapper *::after {
  box-sizing: border-box;
}

.rf-about-us-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rf-about-us-wrapper h1,
.rf-about-us-wrapper h2,
.rf-about-us-wrapper p,
.rf-about-us-wrapper span {
  margin: 0;
}

.rf-about-us-wrapper a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Container ---------- */
.rf-about-us-container {
  width: 100%;
  max-width: var(--rf-about-us-container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Intro / Title Block ---------- */
.rf-about-us-intro {
  text-align: center;
  margin-bottom: 36px;
}

.rf-about-us-title {
  font-family: var(--rf-about-us-font-heading);
  font-size: 1.875rem; /* 30px ? mobile H1 per recommended scale */
  font-weight: 700;
  color: var(--rf-about-us-color-primary-dark);
  margin-bottom: 10px;
}

.rf-about-us-subtitle {
  font-size: 1rem;
  color: var(--rf-about-us-color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

/* ---------- Shared Heading Style ---------- */
.rf-about-us-heading {
  font-family: var(--rf-about-us-font-heading);
  font-size: 1.5rem; /* 24px ? mobile H2 per recommended scale */
  font-weight: 700;
  color: var(--rf-about-us-color-primary);
  margin-bottom: 20px;
  position: relative;
}

.rf-about-us-heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background-color: var(--rf-about-us-color-accent);
  margin-top: 12px;
  border-radius: 2px;
}

.rf-about-us-heading--center {
  text-align: center;
}

.rf-about-us-heading--center::after {
  margin-left: auto;
  margin-right: auto;
}

.rf-about-us-heading--light {
  color: var(--rf-about-us-color-white);
}

/* ---------- Shared Text Style ---------- */
.rf-about-us-text {
  font-size: 1rem;
  color: var(--rf-about-us-color-text-secondary);
}

.rf-about-us-text strong {
  color: var(--rf-about-us-color-primary);
}

.rf-about-us-text--light {
  color: var(--rf-about-us-color-accent-light);
}

.rf-about-us-text--light strong {
  color: var(--rf-about-us-color-white);
}

/* ---------- Intro Card ---------- */
.rf-about-us-card {
  background-color: var(--rf-about-us-color-bg-soft);
  border: 1px solid var(--rf-about-us-color-border);
  border-left: 4px solid var(--rf-about-us-color-accent);
  border-radius: var(--rf-about-us-radius-md);
  padding: 28px 24px;
  box-shadow: var(--rf-about-us-shadow-soft);
  margin-bottom: 48px;
}

.rf-about-us-card .rf-about-us-text {
  color: var(--rf-about-us-color-text-primary);
}

/* ---------- Generic Content Block Spacing ---------- */
.rf-about-us-block {
  margin-bottom: 48px;
}

/* ---------- Heritage Two Column Layout ---------- */
.rf-about-us-two-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.rf-about-us-product-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.rf-about-us-product-list__item {
  background-color: var(--rf-about-us-color-accent-light);
  color: var(--rf-about-us-color-primary-dark);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 14px 16px;
  border-radius: var(--rf-about-us-radius-md);
  text-align: center;
  border: 1px solid var(--rf-about-us-color-border);
}

/* ---------- Mission / Locations ---------- */
.rf-about-us-locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.rf-about-us-location-card {
  background-color: var(--rf-about-us-color-white);
  border: 1px solid var(--rf-about-us-color-border);
  border-radius: var(--rf-about-us-radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--rf-about-us-shadow-soft);
}

.rf-about-us-location-card__name {
  font-family: var(--rf-about-us-font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--rf-about-us-color-primary);
  letter-spacing: 0.3px;
  display: block;
}

/* ---------- Philosophy ---------- */
.rf-about-us-philosophy-card {
  background-color: var(--rf-about-us-color-primary);
  border-radius: var(--rf-about-us-radius-lg);
  padding: 36px 28px;
  box-shadow: var(--rf-about-us-shadow-medium);
  margin-bottom: 48px;
}

/* ---------- Contact Information ---------- */
.rf-about-us-contact {
  text-align: center;
  margin-bottom: 32px;
}

.rf-about-us-contact-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background-color: var(--rf-about-us-color-bg-soft);
  border: 1px solid var(--rf-about-us-color-border);
  border-radius: var(--rf-about-us-radius-md);
  padding: 28px 40px;
  box-shadow: var(--rf-about-us-shadow-soft);
}

.rf-about-us-contact-card__label {
  font-size: 0.85rem;
  color: var(--rf-about-us-color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  display: block;
}

.rf-about-us-contact-card__value {
  font-family: var(--rf-about-us-font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--rf-about-us-color-primary);
  display: block;
}

/* ---------- Powered By Note ---------- */
.rf-about-us-powered-by {
  text-align: center;
  font-size: 0.9rem;
  color: var(--rf-about-us-color-text-secondary);
}

.rf-about-us-powered-by strong {
  color: var(--rf-about-us-color-primary);
}

/* ===================================================================
   RESPONSIVE BREAKPOINTS (Mobile-first)
=================================================================== */

/* Small tablets and large phones (481px+) */
@media (min-width: 481px) {
  .rf-about-us-locations {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablets (768px+) */
@media (min-width: 768px) {
  .rf-about-us-container {
    padding: 0 32px;
  }

  .rf-about-us-wrapper {
    padding: 64px 0;
  }

  .rf-about-us-title {
    font-size: 2.25rem; /* 36px ? tablet H1 per recommended scale */
  }

  .rf-about-us-subtitle {
    font-size: 1.1rem;
  }

  .rf-about-us-text {
    font-size: 1rem; /* 16px ? tablet paragraph per recommended scale */
  }

  .rf-about-us-heading {
    font-size: 1.75rem; /* 28px ? tablet H2 per recommended scale */
  }

  .rf-about-us-two-col {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }

  .rf-about-us-two-col__text {
    flex: 1.1;
  }

  .rf-about-us-two-col__highlight {
    flex: 1;
  }

  .rf-about-us-card {
    padding: 40px;
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--rf-about-us-color-accent);
  }

  .rf-about-us-philosophy-card {
    padding: 48px 56px;
    text-align: center;
  }

  .rf-about-us-philosophy-card .rf-about-us-heading::after {
    margin-left: auto;
    margin-right: auto;
  }

  .rf-about-us-block .rf-about-us-heading,
  .rf-about-us-block .rf-about-us-text {
    text-align: center;
  }

  .rf-about-us-block .rf-about-us-heading::after {
    margin-left: auto;
    margin-right: auto;
  }

  .rf-about-us-block .rf-about-us-text {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .rf-about-us-title {
    font-size: 2.75rem; /* 44px ? desktop H1 per recommended scale */
  }

  .rf-about-us-heading {
    font-size: 2.125rem; /* 34px ? desktop H2 per recommended scale */
  }

  .rf-about-us-text {
    font-size: 1.0625rem; /* 17px ? desktop paragraph per recommended scale */
  }

  .rf-about-us-wrapper {
    padding: 80px 0;
  }
}

/* Large desktops / 2K+ (1920px+) ? layout scaling only, font sizes stay at Desktop tier */
@media (min-width: 1920px) {
  .rf-about-us-wrapper {
    --rf-about-us-container-max-width: 1400px;
    padding: 100px 0;
  }
}


/* ===================================================================
   RAGHAV'S LUNCH BOX - CONTACT US CONTENT STYLES
   Scoped fragment (no header/footer) ? safe to drop into existing page.
   Theme: brand dark green (#235710) & mint green (#d7ecd6).
   Mobile-first, fully responsive, no animations/transitions.
   All classes prefixed with "rf-contact-us-" to avoid collisions.
=================================================================== */

/* ---------- Scoped Theme Tokens ---------- */
.rf-contact-us-wrapper {
  --rf-contact-us-color-primary: #235710;        /* Brand dark green (from theme) */
  --rf-contact-us-color-primary-dark: #163d0c;   /* Deeper green for strong contrast text */
  --rf-contact-us-color-accent: #235710;         /* Accent uses same brand green for consistency */
  --rf-contact-us-color-accent-light: #d7ecd6;   /* Brand mint green (from theme) */

  --rf-contact-us-color-white: #ffffff;
  --rf-contact-us-color-bg-soft: #f4f9f3;        /* Soft off-white with a green tint */
  --rf-contact-us-color-text-primary: #2b2b2b;
  --rf-contact-us-color-text-secondary: #5a5a5a;
  --rf-contact-us-color-border: #d7ecd6;

  --rf-contact-us-shadow-soft: 0 4px 16px rgba(35, 87, 16, 0.08);

  --rf-contact-us-font-heading: 'Playfair Display', Georgia, serif;
  --rf-contact-us-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --rf-contact-us-container-max-width: 1200px;
  --rf-contact-us-radius-md: 12px;

  font-family: var(--rf-contact-us-font-body);
  font-weight: 400;
  color: var(--rf-contact-us-color-text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding: 48px 0;
  box-sizing: border-box;
}

.rf-contact-us-wrapper *,
.rf-contact-us-wrapper *::before,
.rf-contact-us-wrapper *::after {
  box-sizing: border-box;
}

.rf-contact-us-wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rf-contact-us-wrapper h1,
.rf-contact-us-wrapper h2,
.rf-contact-us-wrapper p,
.rf-contact-us-wrapper span {
  margin: 0;
}

.rf-contact-us-wrapper a {
  color: inherit;
  text-decoration: none;
}

/* ---------- Container ---------- */
.rf-contact-us-container {
  width: 100%;
  max-width: var(--rf-contact-us-container-max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Intro / Title Block ---------- */
.rf-contact-us-intro {
  text-align: center;
  margin-bottom: 36px;
}

.rf-contact-us-title {
  font-family: var(--rf-contact-us-font-heading);
  font-size: 1.875rem; /* 30px ? mobile H1 per recommended scale */
  font-weight: 700;
  color: var(--rf-contact-us-color-primary-dark);
}

/* ---------- Shared Heading Style ---------- */
.rf-contact-us-heading {
  font-family: var(--rf-contact-us-font-heading);
  font-size: 1.5rem; /* 24px ? mobile H2 per recommended scale */
  font-weight: 700;
  color: var(--rf-contact-us-color-primary);
  margin-bottom: 20px;
  position: relative;
}

.rf-contact-us-heading::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background-color: var(--rf-contact-us-color-accent);
  margin-top: 12px;
  border-radius: 2px;
}

/* ---------- Shared Text Style ---------- */
.rf-contact-us-text {
  font-size: 1rem;
  color: var(--rf-contact-us-color-text-secondary);
}

/* ---------- Address Card ---------- */
.rf-contact-us-card {
  background-color: var(--rf-contact-us-color-bg-soft);
  border: 1px solid var(--rf-contact-us-color-border);
  border-left: 4px solid var(--rf-contact-us-color-accent);
  border-radius: var(--rf-contact-us-radius-md);
  padding: 28px 24px;
  box-shadow: var(--rf-contact-us-shadow-soft);
  margin-bottom: 48px;
}

/* ---------- Generic Content Block Spacing ---------- */
.rf-contact-us-block {
  margin-bottom: 48px;
}

.rf-contact-us-block:last-child {
  margin-bottom: 0;
}

/* ---------- Customer Support Info Grid ---------- */
.rf-contact-us-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 24px;
}

.rf-contact-us-info-card {
  background-color: var(--rf-contact-us-color-white);
  border: 1px solid var(--rf-contact-us-color-border);
  border-radius: var(--rf-contact-us-radius-md);
  padding: 20px;
  text-align: center;
  box-shadow: var(--rf-contact-us-shadow-soft);
}

.rf-contact-us-info-card__label {
  display: block;
  font-size: 0.85rem;
  color: var(--rf-contact-us-color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}

.rf-contact-us-info-card__value {
  display: block;
  font-family: var(--rf-contact-us-font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rf-contact-us-color-primary);
}

/* ---------- Bulleted Lists (Order & Delivery Assistance) ---------- */
.rf-contact-us-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.rf-contact-us-list__item {
  position: relative;
  padding-left: 22px;
  font-size: 1rem;
  color: var(--rf-contact-us-color-text-secondary);
}

.rf-contact-us-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--rf-contact-us-color-accent);
}

/* ===================================================================
   RESPONSIVE BREAKPOINTS (Mobile-first)
=================================================================== */

/* Small tablets and large phones (481px+) */
@media (min-width: 481px) {
  .rf-contact-us-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Tablets (768px+) */
@media (min-width: 768px) {
  .rf-contact-us-container {
    padding: 0 32px;
  }

  .rf-contact-us-wrapper {
    padding: 64px 0;
  }

  .rf-contact-us-title {
    font-size: 2.25rem; /* 36px ? tablet H1 per recommended scale */
  }

  .rf-contact-us-heading {
    font-size: 1.75rem; /* 28px ? tablet H2 per recommended scale */
  }

  .rf-contact-us-text {
    font-size: 1rem; /* 16px ? tablet paragraph per recommended scale */
  }

  .rf-contact-us-list__item {
    font-size: 1rem;
  }

  .rf-contact-us-card {
    padding: 32px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .rf-contact-us-title {
    font-size: 2.75rem; /* 44px ? desktop H1 per recommended scale */
  }

  .rf-contact-us-heading {
    font-size: 2.125rem; /* 34px ? desktop H2 per recommended scale */
  }

  .rf-contact-us-text {
    font-size: 1.0625rem; /* 17px ? desktop paragraph per recommended scale */
  }

  .rf-contact-us-list__item {
    font-size: 1.0625rem;
  }

  .rf-contact-us-wrapper {
    padding: 80px 0;
  }
}

/* Large desktops / 2K+ (1920px+) ? layout scaling only, font sizes stay at Desktop tier */
@media (min-width: 1920px) {
  .rf-contact-us-wrapper {
    --rf-contact-us-container-max-width: 1400px;
    padding: 100px 0;
  }
}


.rf-terms-wrapper {
  --rf-terms-color-primary: #235710;        /* Brand dark green (from theme) */
  --rf-terms-color-primary-dark: #163d0c;   /* Deeper green for strong contrast text */
  --rf-terms-color-accent: #235710;         /* Accent uses same brand green for consistency */
  --rf-terms-color-accent-light: #d7ecd6;   /* Brand mint green (from theme) */

  --rf-terms-color-white: #ffffff;
  --rf-terms-color-bg-soft: #f4f9f3;        /* Soft off-white with a green tint */
  --rf-terms-color-text-primary: #2b2b2b;
  --rf-terms-color-text-secondary: #5a5a5a;
  --rf-terms-color-border: #e3ede1;

  --rf-terms-shadow-soft: 0 4px 16px rgba(35, 87, 16, 0.08);

  --rf-terms-font-heading: 'Playfair Display', Georgia, serif;
  --rf-terms-font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --rf-terms-container-max-width: 1200px;
  --rf-terms-radius-lg: 20px;

  font-family: var(--rf-terms-font-body);
  font-weight: 400;
  color: var(--rf-terms-color-text-primary);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  padding: 48px 0;
  box-sizing: border-box;
}

.rf-terms-wrapper *,
.rf-terms-wrapper *::before,
.rf-terms-wrapper *::after {
  box-sizing: border-box;
}

.rf-terms-wrapper h1,
.rf-terms-wrapper h2,
.rf-terms-wrapper p {
  margin: 0;
}

/* ---------- Container ---------- */
/* Capped at a comfortable reading measure, not the full page width,
   so long paragraphs stay easy to scan on wide screens. */
.rf-terms-container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Intro / Title Block ---------- */
/* Page title stays centered ? standard convention for a policy page header. */
.rf-terms-intro {
  text-align: center;
  margin-bottom: 32px;
}

.rf-terms-title {
  font-family: var(--rf-terms-font-heading);
  font-size: 1.5rem; /* 24px ? reduced for T&C page */
  font-weight: 700;
  color: var(--rf-terms-color-primary-dark);
}

/* ---------- Content Card ---------- */
/* Everything below the title lives inside one contained card so the
   page reads as a defined document, not loose floating text. */
.rf-terms-card {
  background-color: var(--rf-terms-color-white);
  border: 1px solid var(--rf-terms-color-border);
  border-radius: var(--rf-terms-radius-lg);
  box-shadow: var(--rf-terms-shadow-soft);
  padding: 28px 24px;
}

/* ---------- Numbered Section Blocks ---------- */
/* Left-aligned throughout: body copy reads far better left-aligned
   than centered, especially across multi-line paragraphs. */
.rf-terms-block {
  text-align: left;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--rf-terms-color-border);
}

.rf-terms-block--last {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.rf-terms-heading {
  font-family: var(--rf-terms-font-heading);
  font-size: 1.125rem; /* 18px ? reduced for T&C page */
  font-weight: 700;
  color: var(--rf-terms-color-primary);
  margin-bottom: 10px;
}

.rf-terms-text {
  font-size: 1rem; /* 16px ? mobile paragraph per site scale */
  color: var(--rf-terms-color-text-secondary);
}

.rf-terms-text--spaced {
  margin-top: 12px;
}

/* ===================================================================
   RESPONSIVE BREAKPOINTS (Mobile-first)
=================================================================== */

/* Tablet (768px+) */
@media (min-width: 768px) {
  .rf-terms-container {
    padding: 0 32px;
  }

  .rf-terms-wrapper {
    padding: 64px 0;
  }

  .rf-terms-title {
    font-size: 1.75rem; /* 28px ? reduced for T&C page */
  }

  .rf-terms-heading {
    font-size: 1.25rem; /* 20px ? reduced for T&C page */
  }

  .rf-terms-text {
    font-size: 1rem; /* 16px ? tablet paragraph per site scale */
  }

  .rf-terms-card {
    padding: 44px 48px;
  }

  .rf-terms-block {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }
}

/* Desktop (1024px+) */
@media (min-width: 1024px) {
  .rf-terms-title {
    font-size: 2rem; /* 32px ? reduced for T&C page */
  }

  .rf-terms-heading {
    font-size: 1.375rem; /* 22px ? reduced for T&C page */
  }

  .rf-terms-text {
    font-size: 1.0625rem; /* 17px ? desktop paragraph per site scale */
  }

  .rf-terms-wrapper {
    padding: 80px 0;
  }
}

/* ==========================================================================
   Raghav's Foods ? Privacy Policy Content Block
   All rules are scoped under .rf-privacy-policy to avoid collisions
   with existing site styles. Mobile-first, fully responsive.
   ========================================================================== */

.rf-privacy-policy {
  /* ---------- Scoped Theme Tokens ---------- */
  --rf-privacy-policy-color-primary-dark: #235710;    /* deep forest green */
  --rf-privacy-policy-color-primary: #2e6f16;         /* primary accent green */
  --rf-privacy-policy-color-primary-light: #d7ecd6;   /* soft mint green */
  --rf-privacy-policy-color-primary-lighter: #f1f8ef; /* near-white mint tint */

  --rf-privacy-policy-color-bg: #ffffff;
  --rf-privacy-policy-color-text: #24301f;
  --rf-privacy-policy-color-text-muted: #4d5c47;
  --rf-privacy-policy-color-border: #e1ece0;
  --rf-privacy-policy-color-shadow: rgba(35, 87, 16, 0.08);

  --rf-privacy-policy-font-base: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --rf-privacy-policy-space-xs: 0.5rem;
  --rf-privacy-policy-space-sm: 1rem;
  --rf-privacy-policy-space-md: 1.5rem;
  --rf-privacy-policy-space-lg: 2.5rem;
  --rf-privacy-policy-space-xl: 4rem;

  --rf-privacy-policy-container-max-width: 1200px;
  --rf-privacy-policy-container-padding: 1.25rem;
  --rf-privacy-policy-radius-lg: 16px;

  /* ---------- Block base ---------- */
  /* No background-color here on purpose ? the wrapper stays transparent
     so it inherits whatever background the surrounding page/site already has.
     Only inner elements (hero, cards) get an explicit background. */
  display: block;
  font-family: var(--rf-privacy-policy-font-base);
  color: var(--rf-privacy-policy-color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-block: var(--rf-privacy-policy-space-lg) var(--rf-privacy-policy-space-xl);
}

.rf-privacy-policy *,
.rf-privacy-policy *::before,
.rf-privacy-policy *::after {
  box-sizing: border-box;
}

.rf-privacy-policy ul {
  margin: 0;
  padding: 0;
}

.rf-privacy-policy p {
  margin: 0 0 var(--rf-privacy-policy-space-sm) 0;
}

/* ---------- Container ---------- */
.rf-privacy-policy__container {
  width: 100%;
  max-width: var(--rf-privacy-policy-container-max-width);
  margin-inline: auto;
  padding-inline: var(--rf-privacy-policy-container-padding);
}

/* ---------- Hero / Page Heading ---------- */
.rf-privacy-policy__hero {
  background-color: var(--rf-privacy-policy-color-primary-light);
  border-radius: var(--rf-privacy-policy-radius-lg);
  padding: var(--rf-privacy-policy-space-lg) var(--rf-privacy-policy-space-md);
  text-align: center;
  margin-bottom: var(--rf-privacy-policy-space-lg);
}

.rf-privacy-policy__hero-title {
  margin: 0 0 var(--rf-privacy-policy-space-xs) 0;
  color: var(--rf-privacy-policy-color-primary-dark);
  font-weight: 700;
  font-size: 1.75rem;      /* Mobile: 28px */
  line-height: 1.2;
}

.rf-privacy-policy__hero-subtitle {
  margin: 0;
  color: var(--rf-privacy-policy-color-text-muted);
  font-size: 1rem;
  font-weight: 400;
}

/* ---------- Card ---------- */
.rf-privacy-policy__card {
  background-color: var(--rf-privacy-policy-color-bg);
  border: 1px solid var(--rf-privacy-policy-color-border);
  border-radius: var(--rf-privacy-policy-radius-lg);
  box-shadow: 0 4px 16px var(--rf-privacy-policy-color-shadow);
  padding: var(--rf-privacy-policy-space-md);
  margin-bottom: var(--rf-privacy-policy-space-md);
}

.rf-privacy-policy__card--contact {
  background-color: var(--rf-privacy-policy-color-primary-lighter);
  border-color: var(--rf-privacy-policy-color-primary-light);
}

.rf-privacy-policy__card-title {
  margin: 0 0 var(--rf-privacy-policy-space-sm) 0;
  color: var(--rf-privacy-policy-color-primary-dark);
  font-weight: 700;
  font-size: 1.375rem;     /* Mobile: 22px */
  line-height: 1.3;
  border-bottom: 2px solid var(--rf-privacy-policy-color-primary-light);
  padding-bottom: var(--rf-privacy-policy-space-xs);
}

.rf-privacy-policy__text {
  color: var(--rf-privacy-policy-color-text);
  font-size: 1rem;         /* 16px */
}

.rf-privacy-policy__text:last-child {
  margin-bottom: 0;
}

/* ---------- List ---------- */
.rf-privacy-policy__list {
  list-style: none;
  margin: 0 0 var(--rf-privacy-policy-space-sm) 0;
  padding: 0;
}

.rf-privacy-policy__list-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--rf-privacy-policy-space-xs);
  color: var(--rf-privacy-policy-color-text);
  font-size: 1rem;
}

.rf-privacy-policy__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: var(--rf-privacy-policy-color-primary);
  border-radius: 50%;
}

.rf-privacy-policy__list-item:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Responsive Breakpoints
   Mobile:  up to 767px   (base styles above)
   Tablet:  768px ? 1023px
   Laptop / Desktop: 1024px+
   Large Desktop: 1440px+ (2K and wider)
   ========================================================================== */

/* ---------- Tablet (768px and up) ---------- */
@media (min-width: 768px) {
  .rf-privacy-policy {
    --rf-privacy-policy-container-padding: 2rem;
    padding-block: var(--rf-privacy-policy-space-xl);
  }

  .rf-privacy-policy__hero {
    padding: var(--rf-privacy-policy-space-xl) var(--rf-privacy-policy-space-lg);
  }

  .rf-privacy-policy__hero-title {
    font-size: 2.25rem;      /* Tablet: 36px */
  }

  .rf-privacy-policy__hero-subtitle {
    font-size: 1.0625rem;
  }

  .rf-privacy-policy__card {
    padding: var(--rf-privacy-policy-space-lg);
    margin-bottom: var(--rf-privacy-policy-space-lg);
  }

  .rf-privacy-policy__card-title {
    font-size: 1.625rem;     /* Tablet: 26px */
  }

  .rf-privacy-policy__text,
  .rf-privacy-policy__list-item {
    font-size: 1rem;         /* Tablet: 16px */
  }
}

/* ---------- Laptop / Desktop (1024px and up) ---------- */
@media (min-width: 1024px) {
  .rf-privacy-policy__hero-title {
    font-size: 2.75rem;      /* Desktop: 44px */
  }

  .rf-privacy-policy__hero-subtitle {
    font-size: 1.125rem;
  }

  .rf-privacy-policy__card-title {
    font-size: 2rem;         /* Desktop: 32px */
  }

  .rf-privacy-policy__text,
  .rf-privacy-policy__list-item {
    font-size: 1.125rem;     /* Desktop: 18px */
  }
}

/* ---------- Large Desktop / 2K+ (1440px and up) ---------- */
@media (min-width: 1440px) {
  .rf-privacy-policy {
    --rf-privacy-policy-container-padding: 2.5rem;
    padding-block: 5rem;
  }

  .rf-privacy-policy__hero {
    padding: 5rem var(--rf-privacy-policy-space-lg);
  }

  .rf-privacy-policy__hero-title {
    font-size: 3rem;         /* Desktop max: 48px */
  }

  .rf-privacy-policy__card {
    padding: 3rem;
  }
}



.rf-return-policy {
  /* ---------- Scoped Theme Tokens ---------- */
  --rf-return-policy-color-primary-dark: #235710;    /* deep forest green */
  --rf-return-policy-color-primary: #2e6f16;         /* primary accent green */
  --rf-return-policy-color-primary-light: #d7ecd6;   /* soft mint green */
  --rf-return-policy-color-primary-lighter: #f1f8ef; /* near-white mint tint */

  --rf-return-policy-color-bg: #ffffff;
  --rf-return-policy-color-text: #24301f;
  --rf-return-policy-color-text-muted: #4d5c47;
  --rf-return-policy-color-border: #e1ece0;
  --rf-return-policy-color-shadow: rgba(35, 87, 16, 0.08);

  --rf-return-policy-font-base: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --rf-return-policy-space-xs: 0.5rem;
  --rf-return-policy-space-sm: 1rem;
  --rf-return-policy-space-md: 1.5rem;
  --rf-return-policy-space-lg: 2.5rem;
  --rf-return-policy-space-xl: 4rem;

  --rf-return-policy-container-max-width: 1200px;
  --rf-return-policy-container-padding: 1.25rem;
  --rf-return-policy-radius-lg: 16px;

  /* ---------- Block base ---------- */
  /* No background-color here on purpose ? the wrapper stays transparent
     so it inherits whatever background the surrounding page/site already has.
     Only inner elements (hero, cards) get an explicit background. */
  display: block;
  font-family: var(--rf-return-policy-font-base);
  color: var(--rf-return-policy-color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-block: var(--rf-return-policy-space-lg) var(--rf-return-policy-space-xl);
}

.rf-return-policy *,
.rf-return-policy *::before,
.rf-return-policy *::after {
  box-sizing: border-box;
}

.rf-return-policy ul {
  margin: 0;
  padding: 0;
}

.rf-return-policy p {
  margin: 0 0 var(--rf-return-policy-space-sm) 0;
}

/* ---------- Container ---------- */
.rf-return-policy__container {
  width: 100%;
  max-width: var(--rf-return-policy-container-max-width);
  margin-inline: auto;
  padding-inline: var(--rf-return-policy-container-padding);
}

/* ---------- Hero / Page Heading ---------- */
.rf-return-policy__hero {
  background-color: var(--rf-return-policy-color-primary-light);
  border-radius: var(--rf-return-policy-radius-lg);
  padding: var(--rf-return-policy-space-lg) var(--rf-return-policy-space-md);
  text-align: center;
  margin-bottom: var(--rf-return-policy-space-lg);
}

.rf-return-policy__hero-title {
  margin: 0 0 var(--rf-return-policy-space-xs) 0;
  color: var(--rf-return-policy-color-primary-dark);
  font-weight: 700;
  font-size: 1.75rem;      /* Mobile: 28px */
  line-height: 1.2;
}

.rf-return-policy__hero-subtitle {
  margin: 0;
  color: var(--rf-return-policy-color-text-muted);
  font-size: 1rem;
  font-weight: 400;
}

/* ---------- Card ---------- */
.rf-return-policy__card {
  background-color: var(--rf-return-policy-color-bg);
  border: 1px solid var(--rf-return-policy-color-border);
  border-radius: var(--rf-return-policy-radius-lg);
  box-shadow: 0 4px 16px var(--rf-return-policy-color-shadow);
  padding: var(--rf-return-policy-space-md);
  margin-bottom: var(--rf-return-policy-space-md);
}

.rf-return-policy__card--contact {
  background-color: var(--rf-return-policy-color-primary-lighter);
  border-color: var(--rf-return-policy-color-primary-light);
}

.rf-return-policy__card-title {
  margin: 0 0 var(--rf-return-policy-space-sm) 0;
  color: var(--rf-return-policy-color-primary-dark);
  font-weight: 700;
  font-size: 1.375rem;     /* Mobile: 22px */
  line-height: 1.3;
  border-bottom: 2px solid var(--rf-return-policy-color-primary-light);
  padding-bottom: var(--rf-return-policy-space-xs);
}

.rf-return-policy__text {
  color: var(--rf-return-policy-color-text);
  font-size: 1rem;         /* 16px */
}

.rf-return-policy__text:last-child {
  margin-bottom: 0;
}

/* ---------- List ---------- */
.rf-return-policy__list {
  list-style: none;
  margin: 0 0 var(--rf-return-policy-space-sm) 0;
  padding: 0;
}

.rf-return-policy__list-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--rf-return-policy-space-xs);
  color: var(--rf-return-policy-color-text);
  font-size: 1rem;
}

.rf-return-policy__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: var(--rf-return-policy-color-primary);
  border-radius: 50%;
}

.rf-return-policy__list-item:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Responsive Breakpoints
   Mobile:  up to 767px   (base styles above)
   Tablet:  768px ? 1023px
   Laptop / Desktop: 1024px+
   Large Desktop: 1440px+ (2K and wider)
   ========================================================================== */

/* ---------- Tablet (768px and up) ---------- */
@media (min-width: 768px) {
  .rf-return-policy {
    --rf-return-policy-container-padding: 2rem;
    padding-block: var(--rf-return-policy-space-xl);
  }

  .rf-return-policy__hero {
    padding: var(--rf-return-policy-space-xl) var(--rf-return-policy-space-lg);
  }

  .rf-return-policy__hero-title {
    font-size: 2.25rem;      /* Tablet: 36px */
  }

  .rf-return-policy__hero-subtitle {
    font-size: 1.0625rem;
  }

  .rf-return-policy__card {
    padding: var(--rf-return-policy-space-lg);
    margin-bottom: var(--rf-return-policy-space-lg);
  }

  .rf-return-policy__card-title {
    font-size: 1.625rem;     /* Tablet: 26px */
  }

  .rf-return-policy__text,
  .rf-return-policy__list-item {
    font-size: 1rem;         /* Tablet: 16px */
  }
}

/* ---------- Laptop / Desktop (1024px and up) ---------- */
@media (min-width: 1024px) {
  .rf-return-policy__hero-title {
    font-size: 2.75rem;      /* Desktop: 44px */
  }

  .rf-return-policy__hero-subtitle {
    font-size: 1.125rem;
  }

  .rf-return-policy__card-title {
    font-size: 2rem;         /* Desktop: 32px */
  }

  .rf-return-policy__text,
  .rf-return-policy__list-item {
    font-size: 1.125rem;     /* Desktop: 18px */
  }
}

/* ---------- Large Desktop / 2K+ (1440px and up) ---------- */
@media (min-width: 1440px) {
  .rf-return-policy {
    --rf-return-policy-container-padding: 2.5rem;
    padding-block: 5rem;
  }

  .rf-return-policy__hero {
    padding: 5rem var(--rf-return-policy-space-lg);
  }

  .rf-return-policy__hero-title {
    font-size: 3rem;         /* Desktop max: 48px */
  }

  .rf-return-policy__card {
    padding: 3rem;
  }
}


.rf-shipping-policy {
  /* ---------- Scoped Theme Tokens ---------- */
  --rf-shipping-policy-color-primary-dark: #235710;    /* deep forest green */
  --rf-shipping-policy-color-primary: #2e6f16;         /* primary accent green */
  --rf-shipping-policy-color-primary-light: #d7ecd6;   /* soft mint green */
  --rf-shipping-policy-color-primary-lighter: #f1f8ef; /* near-white mint tint */

  --rf-shipping-policy-color-bg: #ffffff;
  --rf-shipping-policy-color-text: #24301f;
  --rf-shipping-policy-color-text-muted: #4d5c47;
  --rf-shipping-policy-color-border: #e1ece0;
  --rf-shipping-policy-color-shadow: rgba(35, 87, 16, 0.08);

  --rf-shipping-policy-font-base: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --rf-shipping-policy-space-xs: 0.5rem;
  --rf-shipping-policy-space-sm: 1rem;
  --rf-shipping-policy-space-md: 1.5rem;
  --rf-shipping-policy-space-lg: 2.5rem;
  --rf-shipping-policy-space-xl: 4rem;

  --rf-shipping-policy-container-max-width: 1200px;
  --rf-shipping-policy-container-padding: 1.25rem;
  --rf-shipping-policy-radius-lg: 16px;

  /* ---------- Block base ---------- */
  /* No background-color here on purpose ? the wrapper stays transparent
     so it inherits whatever background the surrounding page/site already has.
     Only inner elements (hero, cards) get an explicit background. */
  display: block;
  font-family: var(--rf-shipping-policy-font-base);
  color: var(--rf-shipping-policy-color-text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-block: var(--rf-shipping-policy-space-lg) var(--rf-shipping-policy-space-xl);
}

.rf-shipping-policy *,
.rf-shipping-policy *::before,
.rf-shipping-policy *::after {
  box-sizing: border-box;
}

.rf-shipping-policy ul {
  margin: 0;
  padding: 0;
}

.rf-shipping-policy p {
  margin: 0 0 var(--rf-shipping-policy-space-sm) 0;
}

/* ---------- Container ---------- */
.rf-shipping-policy__container {
  width: 100%;
  max-width: var(--rf-shipping-policy-container-max-width);
  margin-inline: auto;
  padding-inline: var(--rf-shipping-policy-container-padding);
}

/* ---------- Hero / Page Heading ---------- */
.rf-shipping-policy__hero {
  background-color: var(--rf-shipping-policy-color-primary-light);
  border-radius: var(--rf-shipping-policy-radius-lg);
  padding: var(--rf-shipping-policy-space-lg) var(--rf-shipping-policy-space-md);
  text-align: center;
  margin-bottom: var(--rf-shipping-policy-space-lg);
}

.rf-shipping-policy__hero-title {
  margin: 0 0 var(--rf-shipping-policy-space-xs) 0;
  color: var(--rf-shipping-policy-color-primary-dark);
  font-weight: 700;
  font-size: 1.75rem;      /* Mobile: 28px */
  line-height: 1.2;
}

.rf-shipping-policy__hero-subtitle {
  margin: 0;
  color: var(--rf-shipping-policy-color-text-muted);
  font-size: 1rem;
  font-weight: 400;
}

/* ---------- Card ---------- */
.rf-shipping-policy__card {
  background-color: var(--rf-shipping-policy-color-bg);
  border: 1px solid var(--rf-shipping-policy-color-border);
  border-radius: var(--rf-shipping-policy-radius-lg);
  box-shadow: 0 4px 16px var(--rf-shipping-policy-color-shadow);
  padding: var(--rf-shipping-policy-space-md);
  margin-bottom: var(--rf-shipping-policy-space-md);
}

.rf-shipping-policy__card--contact {
  background-color: var(--rf-shipping-policy-color-primary-lighter);
  border-color: var(--rf-shipping-policy-color-primary-light);
}

.rf-shipping-policy__card-title {
  margin: 0 0 var(--rf-shipping-policy-space-sm) 0;
  color: var(--rf-shipping-policy-color-primary-dark);
  font-weight: 700;
  font-size: 1.375rem;     /* Mobile: 22px */
  line-height: 1.3;
  border-bottom: 2px solid var(--rf-shipping-policy-color-primary-light);
  padding-bottom: var(--rf-shipping-policy-space-xs);
}

.rf-shipping-policy__text {
  color: var(--rf-shipping-policy-color-text);
  font-size: 1rem;         /* 16px */
}

.rf-shipping-policy__text:last-child {
  margin-bottom: 0;
}

/* ---------- List ---------- */
.rf-shipping-policy__list {
  list-style: none;
  margin: 0 0 var(--rf-shipping-policy-space-sm) 0;
  padding: 0;
}

.rf-shipping-policy__list-item {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: var(--rf-shipping-policy-space-xs);
  color: var(--rf-shipping-policy-color-text);
  font-size: 1rem;
}

.rf-shipping-policy__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 8px;
  height: 8px;
  background-color: var(--rf-shipping-policy-color-primary);
  border-radius: 50%;
}

.rf-shipping-policy__list-item:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Responsive Breakpoints
   Mobile:  up to 767px   (base styles above)
   Tablet:  768px ? 1023px
   Laptop / Desktop: 1024px+
   Large Desktop: 1440px+ (2K and wider)
   ========================================================================== */

/* ---------- Tablet (768px and up) ---------- */
@media (min-width: 768px) {
  .rf-shipping-policy {
    --rf-shipping-policy-container-padding: 2rem;
    padding-block: var(--rf-shipping-policy-space-xl);
  }

  .rf-shipping-policy__hero {
    padding: var(--rf-shipping-policy-space-xl) var(--rf-shipping-policy-space-lg);
  }

  .rf-shipping-policy__hero-title {
    font-size: 2.25rem;      /* Tablet: 36px */
  }

  .rf-shipping-policy__hero-subtitle {
    font-size: 1.0625rem;
  }

  .rf-shipping-policy__card {
    padding: var(--rf-shipping-policy-space-lg);
    margin-bottom: var(--rf-shipping-policy-space-lg);
  }

  .rf-shipping-policy__card-title {
    font-size: 1.625rem;     /* Tablet: 26px */
  }

  .rf-shipping-policy__text,
  .rf-shipping-policy__list-item {
    font-size: 1rem;         /* Tablet: 16px */
  }
}

/* ---------- Laptop / Desktop (1024px and up) ---------- */
@media (min-width: 1024px) {
  .rf-shipping-policy__hero-title {
    font-size: 2.75rem;      /* Desktop: 44px */
  }

  .rf-shipping-policy__hero-subtitle {
    font-size: 1.125rem;
  }

  .rf-shipping-policy__card-title {
    font-size: 2rem;         /* Desktop: 32px */
  }

  .rf-shipping-policy__text,
  .rf-shipping-policy__list-item {
    font-size: 1.125rem;     /* Desktop: 18px */
  }
}

/* ---------- Large Desktop / 2K+ (1440px and up) ---------- */
@media (min-width: 1440px) {
  .rf-shipping-policy {
    --rf-shipping-policy-container-padding: 2.5rem;
    padding-block: 5rem;
  }

  .rf-shipping-policy__hero {
    padding: 5rem var(--rf-shipping-policy-space-lg);
  }

  .rf-shipping-policy__hero-title {
    font-size: 3rem;         /* Desktop max: 48px */
  }

  .rf-shipping-policy__card {
    padding: 3rem;
  }
}
