/* =========================================================
   CANONICAL OCEAN — ICONIC BEVERAGE HERO SLIDER
   Full Image | Responsive | Mobile + Tablet + Desktop
========================================================= */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
   background:
    radial-gradient(
      circle at 12% 15%,
      rgba(105, 210, 205, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 35%,
      rgba(210, 190, 130, 0.08),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #f9fcfb 0%,
      #edf8f7 50%,
      #f7fbfa 100%
    );

  color: #263b3f;
  overflow-x: hidden;
}


/* =========================================================
   MAIN SLIDER
========================================================= */

.ocean-hero {
  position: relative;
  width: 100%;
  height: clamp(520px, 42vw, 760px);
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(105, 210, 205, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 35%,
      rgba(210, 190, 130, 0.08),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #f9fcfb 0%,
      #edf8f7 50%,
      #f7fbfa 100%
    );

  color: #263b3f;
}


/* =========================================================
   SLIDER TRACK
========================================================= */

.ocean-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(.77, 0, .18, 1);
  will-change: transform;
}


/* =========================================================
   INDIVIDUAL SLIDE
========================================================= */

.ocean-slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  isolation: isolate;
}


/* =========================================================
   SLIDE IMAGE
========================================================= */

.ocean-slide img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center center;

  transform: scale(1.01);

  user-select: none;
  -webkit-user-drag: none;

  transition: transform 1.2s ease;
}


/* Slight image movement when slide is active */

.ocean-slide.active img {
  transform: scale(1.04);
}


/* =========================================================
   PREMIUM BEVERAGE OVERLAY
========================================================= */

.ocean-slide::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0, 35, 39, .72) 0%,
      rgba(0, 45, 49, .48) 35%,
      rgba(0, 0, 0, .12) 70%,
      rgba(0, 0, 0, .20) 100%
    );

  z-index: 1;
}


/* Bottom cinematic shade */

.ocean-slide::after {
  content: "";

  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: 38%;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, .48),
    transparent
  );

  z-index: 1;
  pointer-events: none;
}


/* =========================================================
   CONTENT
========================================================= */

.ocean-content {
  position: absolute;

  top: 50%;
  left: clamp(30px, 8vw, 140px);

  transform: translateY(-50%);

  width: min(90%, 570px);

  color: #fff;

  z-index: 3;
}


/* Small brand heading */

.ocean-content .eyebrow {
  display: block;

  margin-bottom: 18px;

  color: #bce9e7;

  font-size: clamp(10px, 1vw, 13px);

  font-weight: 800;

  letter-spacing: 4px;

  text-transform: uppercase;
}


/* Main heading */

.ocean-content h1 {
  margin: 0 0 20px;

  color: #fff;

  font-size: clamp(42px, 5.2vw, 82px);

  line-height: .96;

  letter-spacing: -3px;

  font-weight: 800;

  text-transform: uppercase;

  text-shadow:
    0 5px 25px rgba(0, 0, 0, .22);
}


/* Highlight word */

.ocean-content h1 strong {
  color: #8de0dc;
  font-weight: 800;
}


/* Description */

.ocean-content p {
  width: min(100%, 470px);

  margin-bottom: 28px;

  color: rgba(255, 255, 255, .90);

  font-size: clamp(14px, 1.25vw, 18px);

  line-height: 1.65;

  font-weight: 400;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.ocean-content a {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 48px;

  padding: 13px 25px;

  border: 1px solid rgba(255, 255, 255, .65);

  border-radius: 50px;

  background: rgba(255, 255, 255, .08);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #fff;

  text-decoration: none;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 1.8px;

  text-transform: uppercase;

  transition:
    background .3s ease,
    border-color .3s ease,
    transform .3s ease;
}


.ocean-content a b {
  font-size: 20px;
  line-height: 1;
  font-weight: 400;
}


.ocean-content a:hover {
  background: rgba(255, 255, 255, .18);

  border-color: #fff;

  transform: translateY(-2px);
}


/* =========================================================
   NAVIGATION ARROWS
========================================================= */

.ocean-nav {
  position: absolute;

  top: 50%;

  transform: translateY(-50%);

  width: 48px;
  height: 48px;

  display: flex;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(255, 255, 255, .35);

  border-radius: 50%;

  background: rgba(0, 30, 34, .22);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #fff;

  cursor: pointer;

  z-index: 20;

  transition:
    background .3s ease,
    border-color .3s ease,
    transform .3s ease;
}


.ocean-nav span {
  font-size: 20px;
  line-height: 1;
}


.ocean-nav.prev {
  left: 25px;
}


.ocean-nav.next {
  right: 25px;
}


.ocean-nav:hover {
  background: rgba(0, 90, 95, .65);

  border-color: rgba(255, 255, 255, .8);

  transform: translateY(-50%) scale(1.06);
}


/* =========================================================
   DOTS
   OUTSIDE SLIDER
========================================================= */

.ocean-dots {
  position: relative;

  width: 100%;

  min-height: 55px;

  display: flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  background:
    radial-gradient(
      circle at 12% 15%,
      rgba(105, 210, 205, 0.14),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 35%,
      rgba(210, 190, 130, 0.08),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #f9fcfb 0%,
      #edf8f7 50%,
      #f7fbfa 100%
    );

  color: #263b3f;

  z-index: 50;
}


.ocean-dot {
  width: 10px;
  height: 10px;

  padding: 0;

  border: 0;

  border-radius: 50%;

  background: #657477;

  opacity: .45;

  cursor: pointer;

  transition:
    width .35s ease,
    opacity .35s ease,
    background .35s ease;
}


.ocean-dot.active {
  width: 30px;

  border-radius: 20px;

  background: #e63946;

  opacity: 1;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .ocean-hero {
    height: clamp(500px, 60vw, 650px);
  }


  .ocean-content {
    left: 6%;
    width: min(88%, 500px);
  }


  .ocean-content h1 {
    font-size: clamp(40px, 6vw, 62px);

    letter-spacing: -2px;
  }


  .ocean-content p {
    font-size: 15px;
  }


  .ocean-nav {
    width: 42px;
    height: 42px;
  }


  .ocean-nav.prev {
    left: 18px;
  }


  .ocean-nav.next {
    right: 18px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .ocean-hero {
    height: 100svh;

    min-height: 580px;
    max-height: 900px;
  }


  .ocean-slide img {
    object-position: center center;
  }


  /* Mobile overlay */

  .ocean-slide::before {
    background:
      linear-gradient(
        180deg,
        rgba(0, 35, 39, .18) 0%,
        rgba(0, 35, 39, .28) 38%,
        rgba(0, 20, 23, .72) 100%
      );
  }


  .ocean-slide::after {
    height: 45%;

    background:
      linear-gradient(
        to top,
        rgba(0, 0, 0, .58),
        transparent
      );
  }


  .ocean-content {

    top: auto;
    bottom: 105px;

    left: 25px;
    right: 25px;

    transform: none;

    width: auto;
  }


  .ocean-content .eyebrow {
    margin-bottom: 13px;

    font-size: 10px;

    letter-spacing: 3px;
  }


  .ocean-content h1 {

    margin-bottom: 15px;

    font-size: clamp(34px, 10vw, 52px);

    line-height: .98;

    letter-spacing: -1.5px;
  }


  .ocean-content p {

    width: 100%;

    margin-bottom: 20px;

    font-size: 14px;

    line-height: 1.5;
  }


  .ocean-content a {

    min-height: 44px;

    padding: 11px 20px;

    font-size: 10px;
  }


  /* Mobile arrows */

  .ocean-nav {

    top: auto;
    bottom: 30px;

    width: 40px;
    height: 40px;

    transform: none;
  }


  .ocean-nav.prev {
    left: 20px;
  }


  .ocean-nav.next {
    right: 20px;
  }


  .ocean-nav:hover {
    transform: none;
  }


  /* Dots */

  .ocean-dots {
    min-height: 48px;

    gap: 8px;
  }


  .ocean-dot {
    width: 8px;
    height: 8px;
  }


  .ocean-dot.active {
    width: 25px;
    height: 8px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .ocean-hero {
    min-height: 560px;
  }


  .ocean-content {

    left: 18px;
    right: 18px;

    bottom: 100px;
  }


  .ocean-content .eyebrow {

    font-size: 9px;

    letter-spacing: 2.5px;

    margin-bottom: 10px;
  }


  .ocean-content h1 {

    font-size: clamp(31px, 10vw, 43px);

    letter-spacing: -1px;

    margin-bottom: 13px;
  }


  .ocean-content p {

    font-size: 13px;

    line-height: 1.45;

    margin-bottom: 17px;
  }


  .ocean-content a {

    min-height: 41px;

    padding: 10px 17px;

    font-size: 9px;

    letter-spacing: 1.4px;
  }


  .ocean-nav {

    width: 36px;
    height: 36px;

    bottom: 28px;
  }


  .ocean-nav.prev {
    left: 15px;
  }


  .ocean-nav.next {
    right: 15px;
  }


  .ocean-nav span {
    font-size: 17px;
  }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

  .ocean-hero {
    min-height: 530px;
  }


  .ocean-content {

    left: 15px;
    right: 15px;

    bottom: 95px;
  }


  .ocean-content h1 {
    font-size: 29px;
  }


  .ocean-content p {
    font-size: 12px;
  }


  .ocean-content a {
    min-height: 39px;
    padding: 9px 15px;
  }

             }
