/* ============= home.css =============== */
/* ===== GLOBAL ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #1f212a;
  color: #ffffff;
}

/* One sky background for HERO + ABOUT */
.sky-wrapper {
  position: relative;
  overflow: hidden;                 /* IMPORTANT: clips background + children */
  border-radius: 0 0 80px 80px;
  min-height: 200vh;
  margin-top: -5%;
  background-image: url("../assets/images/indexbgsky.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 350%;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* VALENCIA LOGO */
.valencia-logo {
  max-width: 88vw;
  height: auto;
  display: block;
  margin: -30vh auto 0;
}

/* 3D CAN WRAPPER */
.can-wrapper {
  position: absolute;
  left: 50%;
  bottom: 14vh;
  transform: translateX(-50%);
  width: 260px;
  max-width: 30vw;
  pointer-events: none;
}

#canModel {
  width: 100%;
  height: 500px;
  background-color: transparent !important;
  display: block;
  z-index: 10;
  pointer-events: auto !important;
}

.drag-hint{
  position: absolute;
  left: 55%;
  top: 40%;
  transform: translate(-50%, -50%);
  z-index: 50;
  pointer-events: none; /* IMPORTANT: keep can draggable */
  display: grid;
  justify-items: center;
  gap: 6px;
  opacity: 0;
  visibility: hidden;
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.55));
}

.drag-hint-text{
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(0, 0, 0);
  padding: 6px 10px;
}

.drag-hint-hand{
  width: 46px;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  animation: hintSwipe 1.2s ease-in-out infinite;
}

@keyframes hintSwipe{
  0%   { transform: translateX(-22px); opacity: 0.35; }
  50%  { transform: translateX(22px);  opacity: 1; }
  100% { transform: translateX(-22px); opacity: 0.35; }
}

/* Hide default black progress bar */
model-viewer::part(default-progress-bar) {
  display: none !important;
}

/* BOTTOM TEXT (HERO) */
.bottom-text {
  position: absolute;
  left: 50%;
  bottom: 6vh;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  display: flex;
  justify-content: space-between;
  gap: 280px;
  color: #ffffff;
}

.bottom-block {
  flex: 1;
  min-width: 0;
}

.bottom-block:first-child {
  text-align: right;
  padding-right: 10px;
}

.bottom-block:last-child {
  text-align: left;
  padding-left: 10px;
}

.bottom-block span {
  margin: 0 0 10%;
  font-size: 1.6rem;
  font-weight: 800;
}

.bottom-block p {
  line-height: 1.5;
  font-size: 0.98rem;
}



/* ========================================================= */
/* ========== ABOUT THE BRAND SECTION ====================== */
/* ========================================================= */

.about-brand {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 80px 0 0;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-inner {
  flex: 1;
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.about-top {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 0 20px;
}

.about-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 8px;
  line-height: 1;
  gap: 0;
}

.about-word {
  font-weight: 800;
  font-family: Moderniz;
  text-transform: uppercase;
  z-index: 2;
}

.about-word-about,
.about-word-brand {
  font-size: 4.2rem;
}

.about-word-the {
  font-size: 1.4rem;
  transform: rotate(-90deg);
  transform-origin: center;
}

.about-word-about{ margin-right: 1px; }   /* ABOUT → THE */
.about-word-the{ margin: 0 1px 8px; }          /* THE spacing on both sides */
.about-word-brand{ margin-left: 1px; }    /* THE → BRAND */

.about-icecube {
  position: absolute;
  top: -60px;
  left: 25%;
  transform: translateX(-50%);
  width: 140px;
  height: auto;
}

.about-subtitle {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 18px 0 4px;
}

.about-copy {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.about-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-top: 10%;
}

.about-tagline {

  max-width: 400px;
  text-align: left;
  line-height: 0.95;
  margin-left: 8vw;
  transform: translateY(-50px);
}

.tagline-line1 {
  font-family: Moderniz;
  display: block;
  font-size: 3.6rem;
  font-weight: 800;
}

.tagline-line2 {
  font-family: Moderniz;
  display: block;
  margin-left: 5%;
  font-size: 1.2rem;
  font-weight: 800;
}

.about-cans-wrapper {
  position: relative;
  width: 100vw;
  align-self: center;
}

.about-cans-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: -25%;
  border-radius: 0% 0% 10% 10%;
}

.fruit-img {
  position: absolute;
  display: block;
}

.fruit-lime {
  top: -110%;
  left: 15vw;
  width: 150px;
}

.fruit-watermelon {
  top: -150%;
  right: 10vw;
  width: 170px;
}

.fruit-ginger {
  bottom: 92%;
  left: 28vw;
  width: 150px;
}


/* ===== FRUIT BOUNCE (slow float + tilt) ===== */
.fruit-img, .about-icecube{
  /* keep your existing absolute positioning intact */
  will-change: transform;
  transform-origin: center center;
  animation: fruitFloatTilt 3.5s ease-in-out infinite;
}

/* Small natural variation so they don’t move in sync */
.fruit-lime{
  animation-delay: 0.0s;
}
.fruit-watermelon{
  animation-delay: -1.2s;
}
.fruit-ginger{
  animation-delay: -2.4s;
}
.about-icecube{
  animation-delay: -4.8s;
}

@keyframes fruitFloatTilt{
  /* down + tilt left */
  0%{
    transform: translateY(10px) rotate(-6deg);
  }

  /* up + tilt right */
  50%{
    transform: translateY(-12px) rotate(6deg);
  }

  /* back down + tilt left */
  100%{
    transform: translateY(10px) rotate(-6deg);
  }
}



/* ========================================================= */
/* ========== EXPLORE THE RANGE SECTION ==================== */
/* ========================================================= */

.explore-range {
  padding: 80px 0 120px;
}

.explore-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* heading */
.explore-heading {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.explore-heading span {
  font-family: Moderniz;
  font-size: 4.1rem;
}

.explore-heading .explore-the {
  font-family: Moderniz;
  margin-top: 10px;
  font-size: 1.4rem;
  transform: rotate(-90deg);
}

.explore-the{ margin: 0 1px 20px; }

/* NEON CARD */
.range-card {
  margin-top: 40px;
  width: 100%;
  height: 58vh;
  margin-left: auto;
  margin-right: auto;
  background: #1f212a;
  border-radius: 70px;
  border: 5px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.45),
    inset 0 0 40px rgba(255, 255, 255, 0.25),
    0 0 20px rgba(255, 255, 255, 0.55),
    0 0 40px rgba(255, 255, 255, 0.3);

  padding: 14px 60px 22px;
  position: relative;
}

/* slide layout */
.range-card .can-section {
  display: grid;
  grid-template-columns: 1.3fr 0.5fr 1.4fr;
  align-items: center;
  column-gap: 0;
}

/* LEFT column */
.range-left {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  margin-top: -10%;
  margin-right: -20px;
}

.range-tagline {
  font-size: 1.3rem;
  margin: 0;
}

.picture{
    padding: 0;
}

/* RIGHT column */
.range-right {
  width: 80%;
  font-size: 18px;
  line-height: 1.5;
}

.range-copy {
  margin-top: -42%;
}

/* MIDDLE column – can */
.range-middle {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
}

/* can touches top & bottom visually */
.range-can {
  width: 260px;
  height: 450px;
  max-width: 100%;
  background: transparent;
  margin-top: -24px;
  margin-bottom: -24px;
  transform: scale(1.1);
}

.range-nav{
  position: absolute;
  bottom: -20%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  cursor: pointer;
  outline: none;
  transition: transform 0.20s ease;
}

/* left + right images */
.range-nav-prev{
  left: 100px;
  background-image: url("/assets/images/range_left.png");
}

.range-nav-next{
  right: 100px;
  background-image: url("/assets/images/range_right.png");
}

.range-nav:hover{
  transform: scale(1.03);
}

/* CTA bar */
.range-cta-bar {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.range-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 60px;
  border-radius: 8px;
  background: linear-gradient(180deg, #0b3a4f 0%, #0b6c7f 100%);
  border: 2px solid #ffffff;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;

  box-shadow:
    0 0 10px rgba(0, 0, 0, 0.5),
    0 0 18px rgba(11, 108, 127, 0.6);
}

.range-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 14px rgba(0, 0, 0, 0.7),
    0 0 24px rgba(11, 108, 127, 0.85);
}



/* ========================================================= */
/* ========== VITAMIN INFUSION SECTION ===================== */
/* ========================================================= */

.vitamin-infusion {
  padding: 80px 0 120px;
}

.infusion-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
  color: #ffffff;
}

/* Heading */
.infusion-heading {
  margin: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.infusion-heading span {
  font-family: Moderniz;
  font-size: 4.3rem;
  line-height: 1.1;
}

.infusion-heading .infusion-with {
  font-family: Moderniz;
  font-size: 0.9rem;
  margin-top: 10px;
  transform: rotate(-90deg);
}

.infusion-with{ margin: 0 1px 20px; }

/* Wrapper for bars + can */
.vitamin-card {
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

/* Glow bars */
.vitamin-row {
  display: grid;
  grid-template-columns: minmax(0, .4fr) minmax(0, 0.7fr) minmax(0, 1.4fr);
  align-items: center;
  padding: 20px 80px;
  border-radius: 40px;
  margin: 0 auto 60px;

  background: #101218;
  border: 5px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.45),
    inset 0 0 40px rgba(255, 255, 255, 0.25),
    0 0 20px rgba(255, 255, 255, 0.55),
    0 0 40px rgba(255, 255, 255, 0.3);

}

/* Text blocks */
.vitamin-text p {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
  max-width: 200px;
}

/* LEFT SIDE */
.vitamin-top-left {
  justify-self: flex-start;
  text-align: left;
}

.vitamin-bottom-left {
  justify-self: flex-start;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

/* RIGHT SIDE */
.vitamin-right-column {
  justify-self: flex-end;
  display: flex;
  align-items: center;
  gap: 60px;
}

.vitamin-top-right {
  text-align: right;
}

.vitamin-bottom-right {
  justify-self: flex-end;
  display: flex;
  gap: 60px;
}

.vitamin-bottom-right-text {
  margin-top: 10px;
  text-align: right;
  max-width: 360px;
  align-items: center;
}

/* CENTER (bottom) */
.vitamin-bottom-center {
  justify-self: center;
  text-align: left;
}

/* vitamin icon images */
.vitamin-icon {
  justify-self: center;
}

.vitamin-icon img {
  display: block;
  width: 170px;
  height: auto;
}

/* Center can */
.vitamin-can {
  position: absolute;
  left: 50%;
  top: 47%;
  transform: translate(-50%, -50%) rotate(18deg);
  transform-origin: center center;
  height: 430px;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.85));
}


/* ========================================================= */
/* ========== MOVING LOGO STRIPS =========================== */
/* ========================================================= */
/*
.brand-strips {
  background-color: #1f212a;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 40px 0;
}

.strip {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  height: 70px;
  display: flex;
  align-items: center;
}

.strip-green {
  background-color: #0B8FAE;
}

.strip-orange {
  background-color: #0B8FAE;
}

.strip-track-main {
  display: inline-flex;
  width: max-content;
  animation: strip-scroll 20s linear infinite;
}

.strip-track-reverse {
  animation-direction: reverse;
}

.strip-items {
  display: inline-flex;
  align-items: center;
  gap: 160px;
  padding: 0 40px;
}

.strip-items img {
  height: 35px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.4));
}

@keyframes strip-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .strip {
    height: 60px;
  }

  .strip-items {
    gap: 80px;
  }

  .strip-items img {
    height: 22px;
  }
}
  */

/* ========================================================= */
/* ========== CANS CAROUSEL – FULL WIDTH, ONLY ARROWS ====== */
/* ========================================================= */

.can-carousel {
  position: relative;
  width: 100%;
  min-height: 100vh;
  margin-top: 0;
  overflow: hidden;
  background-color: #1f212a;
}

.can-carousel-track {
  display: flex;
  transition: transform 0.6s ease;
  will-change: transform;
}

.can-slide {
  flex: 0 0 100%;
}

.can-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* arrows – only icons, no bg box */
.can-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  padding: 0 12px;
  cursor: pointer;
  z-index: 2;
}

.can-arrow-left { left: 20px; }
.can-arrow-right { right: 20px; }

.can-arrow:focus { outline: none; }

.can-arrow:hover {
  transform: translateY(-50%) scale(1.05);
}

/* ========================================================= */
/* ========== INSTAGRAM FOOTER GRID SECTION ================ */
/* ========================================================= */

.insta-section {
  position: relative;
  width: 100%;
  padding: 70px 0 80px;
  background-image: url("/assets/images/footerbg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.insta-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  color: #ffffff;
}

/* heading */
.insta-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 30px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: #ffffff;
}

.insta-logo{
  font-size: 45px;   /* controls icon size */
  margin-top: 5px;
  width: auto;
  height: auto;
}

.insta-handle {
  font-size: 40px;
}

/* grid */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 40px;
}

.insta-item {
  display: block;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;
}

.insta-item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.insta-item:hover img {
  transform: scale(1.05);
}

/* CTA button */
.insta-cta-wrap {
  display: flex;
  justify-content: center;
}

.insta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 60px;
  border-radius: 8px;
  border: 2px solid #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  background: linear-gradient(180deg, rgba(15, 87, 110, 0.95), rgba(17, 121, 140, 0.95));
}

.insta-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 16px rgba(0, 0, 0, 0.9),
    0 0 34px rgba(17, 121, 140, 1);
}



/* ========================================================= */
/* ========== CONTACT CTA SECTION ========================== */
/* ========================================================= */

.contact-cta {
  background-color: #1f212a;
  padding: 90px 16px 120px;
  text-align: center;
}

.contact-cta-inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact-cta-title {
  margin: 0 0 40px;
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
}

.contact-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  padding: 16px 16px;
  border-radius: 8px;
  border: 2px solid #ffffff;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  background: radial-gradient(circle at top, rgba(255,255,255,0.18), rgba(15, 15, 18, 0.95));
}

.contact-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 0 18px rgba(0, 0, 0, 0.95),
    0 0 30px rgba(255, 255, 255, 0.25);
}
































/* ============================================================================ 
                                MEDIA QUERIES
   ============================================================================ */

/* =========================================================
   HERO — MOBILE + TABLET (explicit classes, bulletproof)
========================================================= */
@media (max-width: 1024px){

  .valencia-logo{margin-top: 20%; }

  .sky-wrapper{ margin-top: -16%; min-height: 170vh; border-radius: 0 0 50px 50px; }

  .hero, .hero-content{
    
    min-height: 100vh;
  }

  .hero-content{
    max-width: 100%;
    margin: 0;
    display: block;
    position: relative;
    overflow: hidden;
  }

  /* Center can */
  .can-wrapper{
    position: absolute;
    left: 50%;
    top: 50%;
    bottom: auto;
    transform: translate(-50%, -50%);
    width: clamp(220px, 40vw, 320px);
    max-width: none;
    z-index: 10;
  }

  #canModel{
    width: 100%;
    height: clamp(360px, 62vh, 520px);
    z-index: 10;
    pointer-events: auto !important;
  }

  /* Full overlay for captions */
  .bottom-text{
    position: absolute;
    inset: 0;
    transform: none;
    display: block;
    width: 100%;
    max-width: none;
    z-index: 3;

    /* keep side padding, reduce bottom padding so right text can go lower */
    padding:
      max(18px, env(safe-area-inset-top))
      max(18px, env(safe-area-inset-right))
      max(8px,  env(safe-area-inset-bottom))
      max(18px, env(safe-area-inset-left));
  }

  .bottom-block{
    position: absolute;
    padding: 0 !important;      /* kill desktop padding */
    margin: 0 !important;
    max-width: min(44vw, 260px);
  }

  .bottom-block p{ display:none !important; }

  .bottom-block span{
    margin: 0 !important;
    font-size: clamp(20px, 2vw, 26px);
    line-height: 1.15;
    font-weight: 600;
  }

  /* LEFT caption */
  .bottom-block--left{
    top: max(32%, env(safe-area-inset-top));
    left: max(18px, env(safe-area-inset-left));
    text-align: left !important;
    width: 30%;
  }

  /* RIGHT caption — HARD bottom anchor */
  .bottom-block--right{
    right: max(18px, env(safe-area-inset-right));
    bottom: max(2px, env(safe-area-inset-bottom));
    text-align: right !important;
    width: 30%;
  }

  .sky-wrapper{
    background-image: url("../assets/images/indexbgsky.jpg"); /* keep if already set */
    background-repeat: no-repeat;
    background-size: cover;          /* fills full area */
    background-position: center top; /* keep sky at top */
  }
}

/* Mobile tweaks */
@media (max-width: 768px){
  .can-wrapper{ width: clamp(230px, 60vw, 320px); }
  #canModel{ height: clamp(350px, 60vh, 500px); z-index: 10; }

  .bottom-block{ max-width: min(48vw, 220px); }
  .bottom-block h2{ font-size: clamp(10px, 3vw, 16px); line-height: 1.1; }

  .bottom-block--right{ bottom: max(12px, env(safe-area-inset-bottom)); }
}

/* Small phones */
@media (max-width: 480px){
  .can-wrapper{ width: clamp(200px, 68vw, 300px); }
  #canModel{ height: clamp(300px, 58vh, 440px); z-index: 10; }

  .bottom-block{ max-width: min(54vw, 200px); }
  .bottom-block h2{ font-size: clamp(15px, 4.9vw, 20px); }

  .bottom-block--right{ bottom: max(180px, env(safe-area-inset-bottom)); }
}

/* =========================================================
   ABOUT — MOBILE + TABLET (match screenshot layout)
   Paste AFTER existing About CSS
========================================================= */

/* Tablet + Mobile base */
@media (max-width: 1024px){

  .about-brand{
    min-height: 50vh;
    padding: 34px 0 0;
  }

  .about-top{
    max-width: 560px;
    padding: 0 18px;
  }

  /* Heading: tight, big, centered */
  .about-heading{
    gap: 10px;
    margin: 0 0 15px;
    font-weight: bold;
  }

  .about-word-about,
  .about-word-brand{
    font-size: clamp(30px, 4vw, 35px);
    font-weight: bolder;
  }

  .about-word-the{
    font-size: clamp(10px, 1vw, 12px);
    font-style: normal;
  }

  /* Small fruit above "Unique?" (your watermelon image) */
  .about-icecube{
    top: -26px;
    width: 46px;
  }

  .about-subtitle{
    font-size: clamp(18px, 2.8vw, 22px);
    margin: 10px 0 6px;
  }

  .about-copy{
    font-size: clamp(14px, 2.2vw, 16px);
    line-height: 1.45;
    max-width: 520px;
    margin: 0 auto;
  }

  /* Center the FIZZED block like screenshot */
  .about-main{
    justify-content: flex-end;
    gap: 10px;
  }

  .about-tagline{
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;      /* centers children */
  justify-content: center;
  text-align: center;       /* centers text */
  margin: 15% auto 0;
  line-height: 0.92;
}

.tagline-line1,
.tagline-line2{
  display: block;
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
}

  .tagline-line1{
    font-size: clamp(42px, 10vw, 66px);
  }

  .tagline-line2{
    font-size: clamp(15px, 5vw, 25px);
  }

  /* Cans: keep at bottom, show reflection */
  .about-cans-wrapper{
    width: 100%;
  }

  .about-cans-image{
    width: 100%;
    margin-top: 0;          /* remove desktop negative lift */
    border-radius: 0 0 10% 10%;
    transform: translateY(10px) scale(2);
  }

  /* Fruits: place like screenshot (top-left, mid-right, bottom-right) */
  .fruit-lime{
    left: 78%;
    width: clamp(75px, 16vw, 115px);
  }

  .fruit-watermelon{
    top: -5%;
    left: 10%;
    right: auto;
    width: clamp(56px, 12vw, 75px);
    transform: translate(-50%, -50%);
  }

  .fruit-ginger{
    bottom: 6%;                 /* was 6% → goes UP */
    left: 0;                  /* was 4% → goes LEFT */
    width: clamp(62px, 11vw, 95px);
  }

}


/* Mobile refinements */
@media (max-width: 768px){

  .about-brand{
    padding-top: 28px;
  }

  .about-top{
    max-width: 520px;
  }

  .about-cans-image{
    transform: translateY(18px); /* push cans lower like screenshot */
  }

  /* tighten copy for small screens */
  .about-copy{
    max-width: 320px;
  }

  .about-cans-wrapper .about-cans-image{
    display: block;
    transform: translateY(-60px); /* ⬅️ increase magnitude to move more up */
  }
}


/* Small phones */
@media (max-width: 480px){

  .about-brand{
    padding-top: 22px;
  }

  .about-icecube{
    top: -22px;
    width: 40px;
  }

  .tagline-line1{
    font-size: clamp(40px, 12vw, 62px);
  }

  .tagline-line2{
    font-size: clamp(14px, 4.6vw, 24px);
  }

  /* keep fruits inside frame */
  .fruit-lime{
    left: 82%;
    top: 10%;
  }

  .fruit-ginger{
    left: 50%;
    bottom: 98%;
  }

  .about-cans-image{
    transform: translateY(22px);
  }
}


/* =========================================================
   EXPLORE RANGE — MOBILE/TABLET hierarchy like your screenshot
   (no HTML changes)
   Paste AFTER existing Explore Range CSS
========================================================= */

/* Tablet + Mobile */
@media (max-width: 900px){

  /* Heading smaller like screenshot */
  .explore-inner{ padding: 0 18px; }
  .explore-heading span{ font-size: 1.5rem; }
  .explore-heading .explore-the{
    font-size: 0.5rem;
    margin-top: 10px;
  }

  /* Card shape & inner spacing */
  .range-card{
    width: min(400px, 76vw);
    height: 80%;
    margin: 22px auto 5px;
    border-radius: 36px;
    padding: 10px 10px 10px; /* bottom space for arrows */
  }

  /* Re-map the layout into vertical hierarchy */
  .range-card .can-section{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "middle"
      "left"
      "right";
    row-gap: 10px;
    align-items: center;
    justify-items: center;
  }

  .range-left{ grid-area: left; }
  .range-middle{ grid-area: middle; }
  .range-right{ grid-area: right; }

  /* 1) CAN first */
  .range-middle{
    justify-content: center;
    align-items: center;
    align-self: center;
  }

  .range-can{
    width: min(180px, 55vw);
    height: clamp(300px, 50vh, 400px);
    margin: 0;
    transform: none; /* remove desktop scale */
  }

  /* 2) LOGO next (center) */
  .range-left{
    align-items: center;
    text-align: center;
    gap: 8px;
  }

  .range-logo {
      max-width: 200px;
      width: 80% !important;
      height: 100%;
      margin-bottom: 0;
      object-fit: contain;
      display: block;
    }

    .rangelogo-div{
      height: 100%;
    }

  /* 3) CLASSIC text smaller under logo
     (assuming your ROAR image already contains CLASSIC separate,
      otherwise this just styles tagline + icons nicely) */
  .range-tagline {
      margin-top: -5px;
      margin-bottom: 5px;
    }

  .range-features-single {
    height: 100%;
    align-items: center;
    justify-items: center;
  }

  .range-feature-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      align-self: center;
      margin: 0 auto -5%;
  }

  .range-features-single picture,
  .range-features-single img{
    display: block;
    width: 100%;
  }

  /* 5) Description copy at bottom */
  .range-right{
    text-align: center;
    font-size: 13px;
    line-height: 1.55;
    max-width: 280px;
    margin-top: 5%;
  }

  /* Arrows: keep inside card near bottom like screenshot */
  .range-nav{
    width: 70px;
    height: 70px;
    margin-bottom: -4%;
    border-width: 2px;
  }

  .range-nav-prev{ left: 14px; }
  .range-nav-next{ right: 14px; }

  .chevron{
    width: 14px;
    height: 14px;
    border-top-width: 3px;
    border-right-width: 3px;
  }

  /* CTA bar spacing similar */
  .range-cta-bar{ margin-top: 10%; }
  .range-cta{
    width: min(220px, 86vw);
    padding: 10px 15px;
    font-size: 1rem;
  }
}

@media (max-width: 768px){

  /* hide tagline on mobile */
  .range-tagline{
    display: none !important;
  }

  .range-logo{
    width: 70% !important;
    justify-self: center;
  }

  /* mobile order: can, logo, right-copy, features */
  .range-card .can-section{
    display: grid;
    grid-template-columns: 1fr !important;
    grid-template-areas:
      "middle"
      "logo"
      "copy"
      "features" !important;
    row-gap: 5px;
    align-items: center;
    justify-items: center;
  }

  .range-middle{
    grid-area: middle;
    width: 100%;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 0 !important;          /* kills desktop left margin */
  }

  /* make range-left not force a flex layout */
  .range-left{
    margin-top: 0;
    display: contents !important;
  }

  .rangelogo-div{
    grid-area: logo;
    justify-self: center;
  }

  .range-right{
    grid-area: copy;
    text-align: center;
    max-width: 280px;
    margin: 0;
    margin-top: -15px;
  }

  .range-copy{
    margin: 0 !important;   /* removes desktop negative margin */
  }

  .range-features-single{
    grid-area: features;
    width: 80% !important;
    height: auto;
    display: flex;
    justify-content: center;
    margin-top: 10px;
  }

  .range-feature-img{
    margin: 2% auto 0 !important;
  }
}


/* Small phones refinement */
@media (max-width: 480px){
  .range-card{
    width: 92vw;
    border-radius: 30px;
    padding: 16px 10px 40px;
  }

  .range-can{
    width: min(160px, 60vw);
    height: clamp(300px, 50vh, 400px);
  }

  .range-logo{ max-width: 150px; }
  .range-right{ font-size: 12.5px; }
}

/* Mobile: arrows sit on the lower glow border (outside the card) */
@media (max-width: 900px){

  .range-card{
    overflow: visible;          /* allow buttons to go outside */
    padding-bottom: 64px;       /* LESS bottom space so border is higher */
  }

  .range-nav{
    bottom: -26px;              /* PUSH DOWN onto the border curve */
    z-index: 10;
  }

  /* keep your existing left/right positions */
  .range-nav-prev{ left: 22px; }
  .range-nav-next{ right: 22px; }
}

/* Small phones: a bit tighter */
@media (max-width: 480px){
  .range-card{ padding-bottom: 35px; }
  .range-nav{ bottom: -24px; }
  .range-nav-prev{ left: 50px; }
  .range-nav-next{ right: 50px; }
}



/* =========================================================
   VITAMINS — TABLET + MOBILE (match screenshot layout)
   Paste AFTER existing vitamin CSS
========================================================= */

/* Tablet + Mobile base */
@media (max-width: 1024px){

  .vitamin-infusion{
    padding: 56px 0 90px;
  }

  .infusion-inner{
    padding: 0 18px;
  }

  /* Heading: stacked like screenshot */
  .infusion-heading{
    flex-direction: column;
    gap: 6px;
    margin: 0 0 22px;
    text-align: center;
  }

  .infusion-heading span{
    font-size: clamp(34px, 9vw, 56px);
    line-height: 1.05;
  }

  .infusion-heading .infusion-with{
    transform: none;
    margin: 0;
    font-size: clamp(12px, 3.2vw, 16px);
    letter-spacing: 0.25em;
    opacity: 0.9;
  }

  /* Card spacing so can sits between bars */
  .vitamin-card{
    max-width: 520px;
    margin: 0 auto;
    padding-top: 8px;
  }

  /* Shared bar styling on mobile */
  .vitamin-row{
    padding: 18px 16px;
    border-radius: 34px;
    margin: 0 auto;
    row-gap: 10px;
  }

  /* text smaller + centered like screenshot */
  .vitamin-text p{
    font-size: 12px;
    line-height: 1.35;
    max-width: 90%;
    text-align: center;
  }

  .vitamin-icon img{
    width: 122px;
  }

  /* ---------- TOP BAR: 2 columns, each column is (text then icon) ---------- */
  .vitamin-row-top{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 10px;
    margin-bottom: 86px; /* space for can overlap */
  }

  /* Left stack (text then icon) */
  .vitamin-top-left{
    grid-column: 1;
    grid-row: 1;
    justify-self: stretch;
    text-align: center;
  }
  .vitamin-center-top{
    grid-column: 1;
    grid-row: 2;
    justify-self: center;
  }

  /* Right side: unwrap container so its children can be placed in grid */
  .vitamin-right-column{
    display: contents; /* key for layout without HTML change */
  }
  .vitamin-top-right{
    grid-column: 2;
    grid-row: 1;
    justify-self: stretch;
    text-align: center;
  }
  .vitamin-b3{
    grid-column: 2;
    grid-row: 2;
    justify-self: center;
  }

  /* ---------- BOTTOM BAR: 2 columns, each column is (icon then text) ---------- */
  .vitamin-row-bottom{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 10px;
    margin-top: 86px; /* space for can overlap */
    margin-bottom: 0;
  }

  /* Left column: C icon first, then bottom-center text under it */
  .vitamin-bottom-left{
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }
  .vitamin-bottom-center{
    grid-column: 1;
    grid-row: 2;
    justify-self: stretch;
    text-align: center;
  }

  /* Right column: unwrap bottom-right container too */
  .vitamin-bottom-right{
    display: contents; /* key */
  }
  .vitamin-row-bottom .vitamin-bottom-right .vitamin-icon{
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }
  .vitamin-bottom-right-text{
    grid-column: 2;
    grid-row: 2;
    justify-self: stretch;
    text-align: center;
    max-width: none;
    margin-top: 0;
  }

  /* ---------- CENTER CAN: larger + centered between bars ---------- */
  .vitamin-can{
    position: absolute;
    left: 50%;
    top: 50%;
    height: clamp(250px, 52vw, 320px);
    transform: translate(-50%, -50%) rotate(18deg);
    z-index: 5;
    filter: drop-shadow(0 20px 34px rgba(0,0,0,0.85));
  }
}

/* Mobile refinements */
@media (max-width: 768px){

  .vitamin-card{ max-width: 460px; }

  .vitamin-row-top{ margin-bottom: 78px; }
  .vitamin-row-bottom{ margin-top: 78px; }

  .vitamin-icon img{ width: 112px; }

  .vitamin-text p{
    font-size: 11px;
    line-height: 1.3;
  }

  .infusion-heading .infusion-with{
    display: none !important;
  }

  .vitamin-can{
    height: clamp(240px, 62vw, 310px);
  }
}

/* Small phones */
@media (max-width: 480px){

  .infusion-inner{ padding: 0 14px; }

  .vitamin-row{
    padding: 16px 12px;
    border-radius: 30px;
  }

  .vitamin-row-top{ margin-bottom: 60%; }
  .vitamin-row-bottom{ margin-top: 60%; }

  .vitamin-icon img{ width: 104px; }

  .vitamin-can{
    height: clamp(230px, 70vw, 300px);
  }
}

/* =========================================================
   CANS CAROUSEL — MOBILE/TABLET:
========================================================= */

@media (max-width: 1024px){

  /* Ensure arrows position relative to carousel area */
  .can-carousel{
    position: relative;
    min-height: 20%;
    height: 20%;
  }


  /* Put arrows ON the image */
  .can-arrow{
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;

    /* keep exactly your current look */
    background: none;
    border: none;
    color: #fff;
  }

  .can-arrow-left{ left: 8px; }
  .can-arrow-right{ right: 8px; }

  /* Size like screenshot */
  .can-arrow{
    font-size: 28px;
    padding: 0 6px;
  }
}

@media (max-width: 768px){
  .can-arrow{ font-size: 24px; }
  .can-arrow-left{ left: 6px; }
  .can-arrow-right{ right: 6px; }
}

@media (max-width: 420px){
  .can-arrow{ font-size: 22px; }
}



/* =========================================================
   INSTAGRAM SOCIAL MEDIA — TABLET + MOBILE
   (match screenshot layout)
========================================================= */
@media (max-width: 1200px) {
  .insta-handle {
    font-size: 1.8rem;
  }

  .insta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 0 4%;
  }
}

@media (max-width: 768px) {
  .insta-section {
    padding: 50px 0 60px;
  }

  .insta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .insta-heading {
    flex-direction: row;
    gap: 8px;
  }

  .insta-handle {
    font-size: 1.5rem;
  }

  .insta-btn {
    border-radius: 10px;
    width: 50%;
    padding: 8px 2px;
  }
}


/* =========================================================
   CONNECT WITH US — TABLET + MOBILE
   (match screenshot layout)
========================================================= */
@media (max-width: 768px) {
  .contact-cta {
    padding: 70px 5px 90px;
  }

  .contact-cta-title {
    font-size: 1.4rem;
    line-height: 1.2;
  }

  .contact-cta-btn {
    border-radius: 10px;
    width: 50%;
    padding: 8px 2px;
    min-width: 0;
  }
}