@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* CSS Variables specific to RTD Collection Page */
:root {
  --rtd-bg: #faf8f5; /* Warm off-white/cream background */
  --rtd-text-dark: #0f223d; /* Slate Navy */
  --rtd-text-muted: #5a6b82; /* Muted Slate */
  --rtd-orange: #ff5e14; /* Brand Orange */
  --rtd-orange-hover: #e05315;
  --rtd-card-bg: #ffffff;
  --rtd-border-light: rgba(15, 34, 61, 0.06);
}
html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;  /* ONLY on html — fixes double scrollbar bug */
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: var(--contact-bg);
  /* Do NOT add overflow-x: hidden here — causes 2nd scrollbar */
}

/* Page Reset & Base Styles */
.rtd-page-wrapper {
  background-color: var(--rtd-bg);
  color: var(--rtd-text-dark);
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  padding-top: 100px; /* Space for fixed header */
  position: relative;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* Hero Banner Section */
.rtd-hero-section {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 60px 50px 60px; /* Reduced vertical padding */
  box-sizing: border-box;
  z-index: 10;
}

.rtd-hero-container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 0.6fr; /* Give left column significantly more space */
  gap: 40px;
  align-items: center;
}

/* --- Left Column Content --- */
.rtd-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.rtd-pre-title {
  color: var(--rtd-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.rtd-hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 4.8vw, 4.4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--rtd-text-dark);
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.rtd-hero-title span.text-orange {
  color: var(--rtd-orange);
}

.rtd-hero-nowrap {
  white-space: nowrap;
}

.rtd-desc {
  color: var(--rtd-text-muted);
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 45px 0;
  max-width: 480px;
}

/* Horizontal Feature Badges */
.rtd-features-list {
  display: flex;
  flex-wrap: nowrap; /* Keep on a single line on desktop */
  gap: 20px;
  width: 100%;
}

.rtd-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 1 auto; /* Do not grow, allow shrink */
  min-width: max-content; /* Fit exactly to content size */
  transition: transform 0.2s ease;
}

.rtd-feature-item:hover {
  transform: translateY(-2px);
}

.rtd-feature-icon-wrapper {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.rtd-feature-icon-wrapper svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.rtd-feature-item:hover .rtd-feature-icon-wrapper svg {
  transform: scale(1.15);
}

/* Feature Colors */
.rtd-feature-item.fruit .rtd-feature-icon-wrapper {
  border: 1.5px solid var(--rtd-orange);
  background-color: rgba(255, 94, 20, 0.05);
  color: var(--rtd-orange);
}
.rtd-feature-item.preservatives .rtd-feature-icon-wrapper {
  border: 1.5px solid #8ac53e;
  background-color: rgba(138, 197, 62, 0.05);
  color: #8ac53e;
}
.rtd-feature-item.chilled .rtd-feature-icon-wrapper {
  border: 1.5px solid #00b4d8;
  background-color: rgba(0, 180, 216, 0.05);
  color: #00b4d8;
}
.rtd-feature-item.ready .rtd-feature-icon-wrapper {
  border: 1.5px solid #d4a373;
  background-color: rgba(212, 163, 115, 0.05);
  color: #d4a373;
}

.rtd-feature-text {
  display: flex;
  flex-direction: column;
}

.rtd-feature-title {
  font-size: 10px;
  font-weight: 800;
  color: var(--rtd-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.3;
}

.rtd-feature-desc {
  font-size: 9px;
  color: var(--rtd-text-muted);
  margin: 2px 0 0 0;
  line-height: 1.2;
}

/* --- Center Column Product Image --- */
.rtd-hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%; /* Keep 100% of grid column cell width to prevent track stretching */
  min-width: 0; /* Prevents grid column track from stretching to fit content */
  z-index: 15; /* Sits on top of the signature box border line */
}

.rtd-hero-image {
  width: 180%; /* Breakout width */
  flex-shrink: 0; /* Prevents parent flexbox from squeezing the breakout width */
  max-width: 720px; /* Keep desired size */
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 15px 30px rgba(15, 34, 61, 0.12));
  /* animation: rtdFloat 6s ease-in-out infinite; */
  margin-bottom: -90px; /* Pulls the image down to cross the signature box border line */
  position: relative;
}

@keyframes rtdFloat {
  0% { transform: translateY(20px); }
  50% { transform: translateY(5px); }
  100% { transform: translateY(20px); }
}

/* --- Right Column Bulk Orders Card --- */
.rtd-bulk-card-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 70px; /* Shifts the card slightly down on desktop */
  position: relative;
  z-index: 20; /* Sit on top of the overlapping bottle splash image */
}

.rtd-bulk-card {
  background-color: var(--rtd-card-bg);
  border-radius: 20px;
  border: 1px solid var(--rtd-border-light);
  padding: 20px 20px; /* Reduced from 28px 24px */
  box-shadow: 0 10px 30px rgba(15, 34, 61, 0.04);
  max-width: 270px; /* Increased slightly to prevent button wrap */
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px; /* Reduced from 22px */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.rtd-bulk-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 34, 61, 0.09);
  border-color: rgba(255, 94, 20, 0.12);
}

.rtd-bulk-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rtd-bulk-icon-wrapper {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 94, 20, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rtd-orange);
  flex-shrink: 0;
}

.rtd-bulk-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.rtd-bulk-header-text {
  display: flex;
  flex-direction: column;
}

.rtd-bulk-title {
  font-size: 13px;
  font-weight: 800;
  color: var(--rtd-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.rtd-bulk-desc {
  font-size: 10px;
  color: var(--rtd-text-muted);
  margin: 3px 0 0 0;
  line-height: 1.3;
}

.rtd-bulk-btn {
  background-color: var(--rtd-orange);
  color: #ffffff;
  border-radius: 100px;
  padding: 10px 16px; /* Reduced padding */
  font-size: 11px; /* Sightly smaller font size */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap; /* Keep text on a single line! */
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  box-sizing: border-box; /* Prevents overflow when width is 100% */
  transition: all 0.3s ease;
}

.rtd-bulk-btn:hover {
  background-color: var(--rtd-orange-hover);
  box-shadow: 0 6px 15px rgba(255, 94, 20, 0.25);
  gap: 12px; /* Smooth arrow slide */
}

.rtd-bulk-btn svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */

@media (max-width: 1280px) {
  .rtd-hero-section {
    padding: 60px 40px 80px 40px;
  }
  .rtd-hero-container {
    gap: 30px;
    grid-template-columns: 1.4fr 1fr 0.6fr;
  }
  .rtd-features-list {
    flex-wrap: wrap; /* allow wrapping on smaller screens */
    gap: 16px;
  }
  .rtd-feature-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 180px;
  }
}

@media (max-width: 1100px) {
  .rtd-hero-container {
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
  }
  
  .rtd-bulk-card-wrapper {
    grid-column: span 2;
    justify-content: center;
    margin-top: 20px;
  }
  
  .rtd-bulk-card {
    max-width: 600px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    
  }

  .rtd-bulk-btn {
    width: auto;
    padding: 12px 30px;
    flex-shrink: 0;
  }

  .rtd-hero-image-wrapper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .rtd-hero-image {
    width: 100%;
    max-width: 480px;
    margin-bottom: 0;
    flex-shrink: 1;
  }
}

@media (max-width: 768px) {
  .rtd-page-wrapper {
    padding-top: 80px; /* smaller header spacing */
  }

  .rtd-hero-section {
    padding: 30px 12px 40px 12px;
  }

  .rtd-hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .rtd-hero-content {
    align-items: center;
    text-align: center;
  }

  .rtd-hero-title {
    font-size: clamp(1.8rem, 7vw, 2.5rem);
    line-height: 1.15;
    margin-bottom: 16px;
  }

  .rtd-hero-nowrap {
    white-space: normal;
  }

  .rtd-desc {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

  .rtd-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 20px;
    width: 100%;
  }

  .rtd-feature-item {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    min-width: 0; /* Override desktop max-content constraint */
  }

  .rtd-hero-image-wrapper {
    order: -1; /* Image appears first in mobile flow for visual punch */
    max-width: 320px;
    margin: 0 auto;
    width: 100%; /* Reset breakout width on mobile layout */
  }

  .rtd-hero-image {
    margin-bottom: 0; /* Reset desktop overlap margin on mobile layout */
    max-width: 100%;
    width: 100%; /* Reset breakout width on mobile layout */
    flex-shrink: 1; /* Reset flex-shrink on mobile layout */
  }

  .rtd-bulk-card-wrapper {
    grid-column: span 1;
    margin-top: 10px;
  }

  .rtd-bulk-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 24px;
  }

  .rtd-bulk-header {
    flex-direction: column;
    gap: 10px;
  }

  .rtd-bulk-btn {
    width: 100%;
  }
}

/* ==========================================================================
   Signature RTD Beverages Section Styles
   ========================================================================== */

.rtd-signature-section {
  padding: 60px 40px 0px 40px; /* Reduced vertical padding */
  background-color: var(--rtd-bg);
  position: relative;
  z-index: 10;
  width: 100%;
  box-sizing: border-box;
}

/* Big outer container box wrapping the header and cards */
.rtd-signature-box {
  width: 100%;
  max-width: 1360px;
  margin: 30px auto 0 auto;
  border: 1.5px solid rgba(15, 34, 61, 0.08);
  border-radius: 28px;
  background-color: #ffffff;
  padding: 65px 30px 40px 30px; /* Roomy padding leaves space for absolute title */
  position: relative;
  box-sizing: border-box;
}

/* Divider Header Styles (Absolute sitting on top border line) */
.signature-section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--rtd-bg); /* matches body background */
  padding: 0 24px;
  margin-bottom: 0;
  width: auto;
  z-index: 5;
}

.sig-header-line {
  height: 1.5px;
  width: 60px;
  background-color: var(--rtd-orange);
  opacity: 0.8;
}

.sig-header-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--rtd-orange);
  display: inline-block;
}

.sig-section-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--rtd-text-dark);
  margin: 0;
  text-align: center;
}

/* Flavor Cards Grid Layout */
.rtd-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
}

/* Single Card Styling */
.rtd-flavor-card {
  background-color: var(--rtd-card-bg);
  border-radius: 24px;
  border: 1px solid var(--rtd-border-light);
  box-shadow: 0 8px 24px rgba(15, 34, 61, 0.03);
  display: flex;
  overflow: hidden;
  height: 320px; /* Reduced fixed height */
  padding: 12px; /* Inner padding creating rounded border margins */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.rtd-flavor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(15, 34, 61, 0.07);
}

/* Card Specific Pastel Gradients & Borders */
.rtd-flavor-card.card-berry {
  background: linear-gradient(135deg, #ffffff 35%, #ffd1d7 100%);
  border-color: rgba(185, 28, 28, 0.14);
}
.rtd-flavor-card.card-berry:hover {
  border-color: rgba(185, 28, 28, 0.28);
}

.rtd-flavor-card.card-mojito {
  background: linear-gradient(135deg, #ffffff 35%, #d1f7dc 100%);
  border-color: rgba(46, 125, 50, 0.14);
}
.rtd-flavor-card.card-mojito:hover {
  border-color: rgba(46, 125, 50, 0.28);
}

.rtd-flavor-card.card-apple {
  background: linear-gradient(135deg, #ffffff 35%, #ebf7ce 100%);
  border-color: rgba(85, 139, 47, 0.14);
}
.rtd-flavor-card.card-apple:hover {
  border-color: rgba(85, 139, 47, 0.28);
}

/* Left Image Column */
.flavor-card-image-col {
  position: relative;
  width: 47%; /* Increased image width to 47% */
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 16px; /* Rounded corners on all 4 sides */
  overflow: hidden;
}

.flavor-card-image-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; /* Fill full height to clip to rounded container */
  z-index: 1;
}

.flavor-card-image-bg.bg-red {
  background: linear-gradient(180deg, #b91c1c, #7f1d1d);
}

.flavor-card-image-bg.bg-green {
  background: linear-gradient(180deg, #2e7d32, #1b5e20);
}

.flavor-card-image-bg.bg-yellow {
  background: linear-gradient(180deg, #558b2f, #33691e);
}

.flavor-card-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.rtd-flavor-card:hover .flavor-card-img {
  transform: scale(1.05);
}

/* Overlapping Badges on Image */
.flavor-badges-wrapper {
  position: absolute;
  top: 15px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 3;
}

.flavor-badge {
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4.5px 8px;
  border-radius: 100px;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  display: inline-flex;
  align-items: center;
}

/* Card Specific Badges Background Colors */
/* Berry Blast (Red) */
.flavor-badge.badge-label-red {
  background-color: rgba(139, 0, 0, 0.45); /* Translucent dark red */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.flavor-badge.badge-featured-red {
  background-color: #b91c1c; /* Solid dark red */
}

/* Virgin Mojito (Green) */
.flavor-badge.badge-label-green {
  background-color: rgba(27, 94, 32, 0.45); /* Translucent dark green */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.flavor-badge.badge-featured-green {
  background-color: #2e7d32; /* Solid dark green */
}

/* Green Apple (Olive/Yellow-Green) */
.flavor-badge.badge-label-yellow {
  background-color: rgba(51, 105, 30, 0.45); /* Translucent dark olive */
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.flavor-badge.badge-featured-yellow {
  background-color: #558b2f; /* Solid dark olive */
}

.flavor-badge .badge-star {
  color: #fbbf24;
  margin-right: 3px;
  font-size: 8px;
}

/* Right Content Column */
.flavor-card-content-col {
  width: 53%; /* Reduced content column width */
  padding: 8px 8px 8px 16px; /* Compact padding */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Stretches logos to bottom */
  box-sizing: border-box;
  height: 100%;
}

.flavor-card-title {
  font-size: 18px; /* Reduced from 20px */
  font-weight: 800;
  margin: 0 0 6px 0;
  letter-spacing: -0.2px;
}

.flavor-card-title.text-maroon {
  color: #7f1d1d;
}

.flavor-card-title.text-green {
  color: #1b5e20;
}

.flavor-card-title.text-yellow {
  color: #33691e;
}

.flavor-card-desc {
  font-size: 10.5px; /* Reduced from 11px */
  line-height: 1.4;
  color: var(--rtd-text-muted);
  margin: 0 0 10px 0;
}

/* Features Bullet Points */
.flavor-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 12px 0; /* Compact margins */
  display: flex;
  flex-direction: column;
  gap: 8px; /* Compact gaps */
}

.flavor-card-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-bullet-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-bullet-icon svg {
  width: 9px;
  height: 9px;
}

.feature-bullet-icon.color-red {
  background-color: rgba(185, 28, 28, 0.06);
  color: #b91c1c;
}

.feature-bullet-icon.color-green {
  background-color: rgba(46, 125, 50, 0.06);
  color: #2e7d32;
}

.feature-bullet-icon.color-yellow {
  background-color: rgba(85, 139, 47, 0.06);
  color: #558b2f;
}

.feature-bullet-text {
  font-size: 11px;
  font-weight: 600;
  color: var(--rtd-text-dark);
}

/* Available On Platforms */
.flavor-available-on {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.avail-title {
  font-size: 8.5px;
  font-weight: 800;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.avail-logos-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avail-logo-box {
  height: 24px;
  display: flex;
  align-items: center;
}

.avail-logo-img {
  height: 15px;
  max-width: 65px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
  transition: all 0.3s ease;
  display: block;
}

/* Custom alignment adjustments for brand logos due to intrinsic whitespace difference */
.avail-logo-img[src*="zepto"] {
  height: 12.5px; /* Zepto is vertically compact and bold, scale down slightly */
}

.avail-logo-img[src*="blink"] {
  height: 12px; /* Blinkit is taller and thinner, scale up slightly */
  margin-top: -3px;
}

.avail-logo-img[src*="amazon"] {
  height: 14.5px; /* Amazon text baseline is offset by arrow curve, shift down */
  margin-top: 2px;
}

.rtd-flavor-card:hover .avail-logo-img {
  filter: grayscale(0);
  opacity: 0.9;
}

/* ==========================================================================
   Trust Badges Section Styles
   ========================================================================== */

.rtd-trust-section {
  padding: 10px 40px 10px 40px; /* roomy padding */
  background-color: var(--rtd-bg);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

.rtd-trust-container {
  background-color: #ffffff;
  border: 1.5px solid rgba(15, 34, 61, 0.08);
  border-radius: 24px;
  box-shadow: 0 8px 24px rgba(15, 34, 61, 0.03);
  padding: 28px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.rtd-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
  padding: 0 12px;
  box-sizing: border-box;
}

.rtd-trust-item:not(:last-child) {
  border-right: 1.5px solid rgba(15, 34, 61, 0.08); /* Vertical divider line */
}

.rtd-trust-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(255, 94, 20, 0.05);
  border: 1.5px solid rgba(255, 94, 20, 0.12);
  color: var(--rtd-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rtd-trust-icon-wrapper svg {
  width: 20px;
  height: 20px;
}

.rtd-trust-text {
  display: flex;
  flex-direction: column;
}

.rtd-trust-title {
  font-family: var(--about-font-sans), 'Poppins', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--rtd-text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.2;
}

.rtd-trust-desc {
  font-size: 9.5px;
  color: var(--rtd-text-muted);
  margin: 3px 0 0 0;
  line-height: 1.3;
}

/* ==========================================================================
   Responsive Overrides for Cards & Trust Grid
   ========================================================================== */

@media (max-width: 1280px) {
  .rtd-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .rtd-trust-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
    padding: 30px 24px;
  }

  .rtd-trust-item {
    padding: 0;
    justify-content: flex-start;
  }

  .rtd-trust-item:not(:last-child) {
    border-right: none;
  }
}

@media (max-width: 1100px) {
  .rtd-signature-section {
    padding: 60px 40px;
  }
  .rtd-cards-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .rtd-signature-section {
    padding: 40px 12px 0 12px;
  }

  .rtd-signature-box {
    padding: 55px 12px 20px 12px;
    margin-top: 20px;
    border-radius: 20px;
  }

  .rtd-cards-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 0 auto;
    gap: 20px;
  }

  .rtd-flavor-card {
    flex-direction: row; /* Keep horizontal alignment on mobile */
    height: 230px; /* Highly compact height */
    padding: 8px;
  }

  .flavor-card-image-col {
    width: 44%;
    height: 100%;
  }

  .flavor-card-content-col {
    width: 56%;
    padding: 4px 4px 4px 10px;
  }

  .flavor-card-title {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .flavor-card-desc {
    font-size: 9.5px;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .flavor-card-features {
    gap: 5px;
    margin-bottom: 8px;
  }

  .feature-bullet-icon {
    width: 18px;
    height: 18px;
  }

  .feature-bullet-icon svg {
    width: 10px;
    height: 10px;
  }

  .feature-bullet-text {
    font-size: 9px;
  }

  .avail-title {
    font-size: 7.5px;
    letter-spacing: 0.5px;
  }

  .avail-logos-row {
    gap: 8px;
  }

  .avail-logo-box {
    height: 16px;
  }

  .avail-logo-img {
    height: 11px;
    max-width: 45px;
  }

  .avail-logo-img[src*="zepto"] {
    height: 9px;
  }

  .avail-logo-img[src*="blink"] {
    height: 9px;
    margin-top: -2px;
  }

  .avail-logo-img[src*="amazon"] {
    height: 10.5px;
    margin-top: 1px;
  }

  .flavor-badges-wrapper {
    top: 8px;
    right: 8px;
    gap: 4px;
  }

  .flavor-badge {
    font-size: 7px;
    padding: 3px 6px;
  }

  .flavor-badge .badge-star {
    font-size: 6.5px;
    margin-right: 2px;
  }

  .rtd-trust-section {
    padding: 30px 12px;
  }

  .rtd-trust-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    padding: 20px 12px;
  }

  .rtd-trust-item {
    padding: 0;
    justify-content: flex-start;
  }

  .rtd-trust-item:not(:last-child) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .rtd-features-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 10px;
  }
  
  .rtd-trust-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 16px;
  }
}

/* ==========================================================================
   Refreshment Sip Banner Styles
   ========================================================================== */

.rtd-sip-banner-section {
  padding: 0 40px 80px 40px; /* aligns horizontally with signature box padding */
  background-color: var(--rtd-bg);
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 10;
}

.rtd-sip-banner {
  max-width: 1360px;
  margin: 0 auto;
  width: 100%;
  height: 90px; /* Fixed height on desktop */
  border-radius: 25px; /* Pill-shaped */
  display: flex;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 34, 61, 0.05);
  box-sizing: border-box;
}

/* Left Dark Section */
.rtd-sip-left {
  width: 74%;
  background-color: #0f131f; /* Premium dark background */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-sizing: border-box;
}

.rtd-sip-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.sip-circle-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--rtd-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 94, 20, 0.05);
  color: var(--rtd-orange);
  flex-shrink: 0;
}

.sip-circle-icon svg {
  width: 20px;
  height: 20px;
}

.rtd-sip-header-text {
  display: flex;
  flex-direction: column;
}

.rtd-sip-title {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
}

.rtd-sip-subtitle {
  font-size: 10.5px;
  color: #94a3b8;
  margin: 3px 0 0 0;
}

.rtd-sip-vertical-line {
  width: 1.5px;
  height: 42px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 20px;
}

.rtd-sip-features {
  display: flex;
  align-items: center;
  gap: 24px;
}

.sip-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sip-feat-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(132, 204, 22, 0.2);
  background-color: rgba(132, 204, 22, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #84cc16;
  flex-shrink: 0;
}

.sip-feat-circle svg {
  width: 14px;
  height: 14px;
}

.sip-feat-text {
  font-size: 9.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* Right Orange Section */
.rtd-sip-right {
  width: 26%;
  background: linear-gradient(90deg, #ff5e14 0%, #ff7e36 100%);
  display: flex;
  align-items: center;
  padding: 0 30px;
  position: relative;
  box-sizing: border-box;
}

.sip-circle-icon-white {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  margin-right: 15px;
}

.sip-circle-icon-white svg {
  width: 20px;
  height: 20px;
}

.rtd-sip-right-text {
  display: flex;
  flex-direction: column;
  z-index: 2; /* Sit on top of ice cubes */
}

.rtd-sip-title-white {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
}

.rtd-sip-subtitle-white {
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.85);
  margin: 3px 0 0 0;
}

/* Translucent Ice Cubes overlay */
.ice-cubes-overlay {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 56px;
  pointer-events: none;
  z-index: 1;
}

/* ==========================================================================
   Responsive Banner Styles
   ========================================================================== */

@media (max-width: 1200px) {
  .rtd-sip-features {
    gap: 16px;
  }
  .sip-feature-item {
    gap: 8px;
  }
  .rtd-sip-left {
    padding: 0 25px;
  }
}

@media (max-width: 1100px) {
  .rtd-sip-banner {
    height: auto;
    flex-direction: column;
    border-radius: 28px;
  }
  
  .rtd-sip-left {
    width: 100%;
    padding: 24px;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  
  .rtd-sip-header {
    width: 100%;
  }

  .rtd-sip-vertical-line {
    display: none;
  }

  .rtd-sip-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
  }

  .rtd-sip-right {
    width: 100%;
    padding: 24px;
  }

  .ice-cubes-overlay {
    right: 24px;
  }
}

@media (max-width: 768px) {
  .rtd-sip-banner-section {
    padding: 0 12px 50px 12px;
  }
}

@media (max-width: 480px) {
  .rtd-sip-features {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}


