/* =========================================================
   MAX BUBBLE STICK — MAIN REDESIGN CSS
========================================================= */


/* =========================================================
   ROOT VARIABLES
========================================================= */

:root {
  --pink: #f16099;
  --deep: #4a1932;
  --pale: #fff8fa;
  --blush: #ffeaf1;
  --muted: #765b6c;
  --yellow: #ffe37a;
  --line: #f3cbdc;
}


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  background: var(--pale);
  color: var(--deep);

  font: 400 16px/1.55 "Nunito Sans", sans-serif;
}

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


/* =========================================================
   CONTAINER
========================================================= */

.container {
  width: min(1130px, calc(100% - 42px));
  margin: auto;
}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.skip-link {
  position: absolute;
  left: -1000px;
}

.skip-link:focus {
  left: 10px;
  top: 10px;

  background: #fff;
  padding: 8px;

  z-index: 20;
}

.sr-only {
  position: absolute;

  width: 1px;
  height: 1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;

  height: 86px;

  background: rgba(255, 248, 251, 0.93);

  border-bottom: 1px solid rgba(128, 46, 84, 0.08);

  backdrop-filter: blur(10px);
}

.header-inner {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* =========================================================
   BRAND
========================================================= */

.brand {
  display: flex;
  flex-direction: column;
}

.brand img {
  width: 145px;
  max-height: 48px;

  object-fit: contain;
  object-position: left;
}

.brand span {
  margin-left: 3px;

  font-size: 9px;
  letter-spacing: 0.11em;
  font-weight: 900;

  text-transform: uppercase;

  color: var(--muted);
}


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

.site-nav {
  display: flex;
  gap: 28px;

  font-size: 13px;
  font-weight: 900;
}

.site-nav a:hover {
  color: var(--pink);
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.menu-button {
  display: none;

  border: 0;
  background: none;
}

.menu-button span {
  display: block;

  width: 24px;
  height: 2px;

  background: var(--deep);

  margin: 5px;
}


/* =========================================================
   GENERAL TYPOGRAPHY
========================================================= */

.kicker {
  margin: 0 0 13px;

  color: #d94882;

  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 900;

  text-transform: uppercase;
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero {
  overflow: hidden;

  background:
    radial-gradient(
      circle at 83% 20%,
      #ffd7e6 0,
      transparent 25%
    ),
    linear-gradient(
      108deg,
      #fff8fa 7%,
      #ffe8f0 100%
    );
}

.hero-grid {
  min-height: 565px;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 35px;
}


/* Hero Heading */

.hero h1 {
  max-width: 620px;

  margin: 0;

  font-family: "Baloo 2", sans-serif;

  line-height: 0.97;
  letter-spacing: -0.035em;

  font-size: clamp(50px, 6vw, 75px);
}

.hero h1 em {
  color: #d94882;
  font-style: normal;
}


/* Hero Paragraph */

.hero-copy > p:not(.kicker) {
  max-width: 500px;

  margin: 21px 0 27px;

  color: var(--muted);

  font-size: 18px;
}


/* =========================================================
   HERO ACTIONS
========================================================= */

.hero-actions {
  display: flex;

  align-items: center;

  gap: 23px;

  flex-wrap: wrap;
}

.button {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  padding: 14px 21px;

  border-radius: 99px;

  font-size: 14px;
  font-weight: 900;
}

.primary {
  background: var(--pink);
  color: white;
}

.text-button {
  padding-bottom: 3px;

  border-bottom: 2px solid var(--pink);

  font-size: 13px;
  font-weight: 900;
}

.button b,
.text-button b {
  font-size: 18px;
}


/* =========================================================
   HERO NOTE
========================================================= */

.hero-note {
  margin-top: 30px;

  color: var(--muted);

  font-size: 12px;
  font-weight: 800;
}

.hero-note span {
  color: #d94882;
}


/* =========================================================
   HERO PRODUCT GALLERY
========================================================= */

.hero-gallery {
  position: relative;

  height: 465px;
}


/* Decorative Bubbles */

.bubble {
  position: absolute;
  z-index: 6;

  border: 2px solid rgba(255, 255, 255, 0.74);

  border-radius: 50%;

  background:
    radial-gradient(
      circle at 30% 25%,
      rgba(255, 255, 255, 0.95),
      rgba(255, 255, 255, 0.2) 24%,
      rgba(210, 133, 237, 0.32) 54%,
      rgba(255, 255, 255, 0.2)
    );

  animation: float 5s ease-in-out infinite;
}

.bubble.large {
  width: 90px;
  height: 90px;

  right: 9%;
  top: 4%;
}

.bubble.small-one {
  width: 42px;
  height: 42px;

  left: 2%;
  top: 19%;

  animation-delay: -2s;
}

.bubble.small-two {
  width: 29px;
  height: 29px;

  right: 3%;
  bottom: 15%;

  animation-delay: -3.2s;
}


/* =========================================================
   GALLERY PHOTOS
========================================================= */

.gallery-photo {
  position: absolute;

  overflow: hidden;

  border: 6px solid rgba(255, 255, 255, 0.92);

  border-radius: 26px;

  background: white;

  box-shadow: 0 21px 34px rgba(165, 65, 110, 0.2);
}

.gallery-photo img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* Main Photo */

.photo-main {
  width: 43%;
  height: 82%;

  left: 29%;
  top: 7%;

  z-index: 4;

  transform: rotate(-2deg);
}


/* Left Photo */

.photo-left {
  width: 35%;
  height: 54%;

  left: 0;
  top: 28%;

  z-index: 3;

  transform: rotate(-12deg);
}


/* Right Photo */

.photo-right {
  width: 34%;
  height: 53%;

  right: 0;
  top: 25%;

  z-index: 2;

  transform: rotate(11deg);
}


/* Bottom Photo */

.photo-bottom {
  width: 27%;
  height: 34%;

  right: 18%;
  bottom: 0;

  z-index: 5;

  transform: rotate(8deg);
}


/* =========================================================
   HERO FLOAT ANIMATION
========================================================= */

@keyframes float {
  50% {
    translate: 0 -13px;
  }
}


/* =========================================================
   PRODUCT TICKER
========================================================= */

.ticker {
  overflow: hidden;

  background: var(--pink);
  color: #fff;

  white-space: nowrap;
}

.ticker div {
  min-height: 50px;

  display: flex;

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

  gap: 23px;

  font-size: 12px;
  letter-spacing: 0.14em;
  font-weight: 900;

  text-transform: uppercase;
}

.ticker i {
  color: var(--yellow);

  font-size: 18px;
}


/* =========================================================
   GENERAL SECTION
========================================================= */

.section {
  padding: 100px 0;
}


/* =========================================================
   SECTION TITLES
========================================================= */

.section-title {
  display: flex;

  align-items: end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 40px;
}

.section-title h2,
.story-copy h2,
.enquiry h2 {
  margin: 0;

  font-family: "Baloo 2", sans-serif;

  line-height: 0.97;

  letter-spacing: -0.035em;
}

.section-title h2 {
  font-size: clamp(38px, 4.4vw, 55px);
}

.section-title > p {
  max-width: 350px;

  margin: 0;

  color: var(--muted);
}


/* Centered Section */

.centered {
  display: block;

  text-align: center;
}

.centered > p:last-child {
  max-width: 500px;

  margin: 12px auto 0;
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.category-grid {
  display: grid;

  grid-template-columns: repeat(6, 1fr);

  gap: 12px;
}

.category-card {
  min-height: 145px;

  padding: 17px;

  display: flex;

  flex-direction: column;
  justify-content: space-between;

  border: 1px solid var(--line);

  border-radius: 18px;

  background: #fff;
}

.category-icon {
  width: 46px;
  height: 46px;

  display: grid;
  place-items: center;

  border-radius: 14px;

  font-size: 23px;
}

.category-card strong {
  font-size: 13px;
}

.category-card span:last-child {
  color: #d94882;

  font-size: 11px;
  font-weight: 800;
}


/* =========================================================
   FEATURE PRODUCTS
========================================================= */

.feature-products {
  background: var(--blush);
}

.product-grid {
  display: grid;

  grid-template-columns: repeat(5, 1fr);

  gap: 15px;
}

.product-card {
  overflow: hidden;

  border-radius: 20px;

  background: #fff;

  box-shadow: 0 7px 16px rgba(150, 67, 103, 0.1);
}


/* Product Image */

.product-visual {
  height: 220px;

  overflow: hidden;

  background: #ffe4ee;
}

.product-visual img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}

.product-visual span {
  height: 100%;

  display: grid;
  place-items: center;

  font-size: 60px;
}


/* Product Information */

.product-info {
  padding: 14px 14px 17px;
}

.product-tag {
  color: #d94882;

  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 900;

  text-transform: uppercase;
}

.product-info h3 {
  margin: 3px 0 7px;

  font: 800 20px/1.08 "Baloo 2", sans-serif;
}

.product-info p {
  margin: 0 0 11px;

  color: var(--muted);

  font-size: 12px;
}


/* Product Meta */

.product-meta {
  padding-top: 9px;

  border-top: 1px solid var(--line);

  color: var(--muted);

  font-size: 10px;
  font-weight: 800;
}

.product-meta span {
  display: block;
}


/* Product Loading Status */

.product-status {
  margin: 24px 0 0;

  text-align: center;

  color: var(--muted);

  font-size: 12px;
}


/* =========================================================
   BRAND STORY
========================================================= */

.brand-story {
  padding: 100px 0;

  background: #fff;
}

.story-grid {
  display: grid;

  grid-template-columns: 0.95fr 1.05fr;

  align-items: center;

  gap: 90px;
}


/* Story Image */

.story-image {
  position: relative;

  height: 410px;
}

.story-image > img {
  width: 85%;
  height: 100%;

  object-fit: cover;

  border-radius: 50% 50% 38% 45%;

  box-shadow: 18px 21px 0 #ffd6e5;
}


/* Story Badge */

.story-badge {
  position: absolute;

  right: 0;
  bottom: 35px;

  width: 145px;
  height: 145px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: var(--yellow);

  text-align: center;

  font: 800 18px/1.05 "Baloo 2", sans-serif;

  transform: rotate(9deg);
}


/* Story Text */

.story-copy h2 {
  max-width: 500px;

  font-size: clamp(39px, 4vw, 53px);
}

.story-copy > p:not(.kicker) {
  max-width: 500px;

  margin: 19px 0 26px;

  color: var(--muted);
}


/* =========================================================
   WHY MAX BUBBLE STICK
========================================================= */

.reason-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.reason-grid article {
  min-height: 205px;

  padding: 25px;

  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.reason-grid span {
  color: var(--pink);

  font: 800 20px "Baloo 2", sans-serif;
}

.reason-grid h3 {
  margin: 13px 0 4px;

  font-size: 15px;
}

.reason-grid p {
  margin: 0;

  color: var(--muted);

  font-size: 12px;
}


/* =========================================================
   B2B ENQUIRY
========================================================= */

.enquiry {
  padding: 68px 0;

  background: var(--pink);

  color: #fff;
}

.enquiry .kicker {
  color: #ffe997;
}

.enquiry-inner {
  display: grid;

  grid-template-columns: 1.2fr 0.8fr auto;

  gap: 40px;

  align-items: center;
}

.enquiry h2 {
  font-size: clamp(38px, 4vw, 52px);
}

.enquiry-inner > p {
  margin: 0;

  color: #fff3f8;

  font-size: 14px;
}

.dark {
  background: var(--deep);

  color: #fff;

  white-space: nowrap;
}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {
  padding: 42px 0 20px;

  background: var(--deep);

  color: #fbdde9;
}

.footer-top {
  display: flex;

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

  gap: 25px;
}


/* Footer Main Logo */

.footer-top > div:first-child img {
  width: 150px;

  filter: brightness(0) invert(1);
}

.footer-top p {
  margin: 3px 0;

  font-size: 12px;
}


/* Parent Company */

.footer-top > div:nth-child(2) {
  display: flex;

  align-items: center;

  gap: 8px;
}

.footer-top > div:nth-child(2) span {
  font-size: 9px;
  letter-spacing: 0.1em;
  font-weight: 900;

  text-transform: uppercase;
}

.footer-top > div:nth-child(2) img {
  max-width: 125px;
  max-height: 28px;

  filter: brightness(0) invert(1);
}


/* Footer Back To Top */

.footer-top > a {
  font-size: 12px;
  font-weight: 900;
}


/* Footer Bottom */

.footer-bottom {
  margin-top: 28px;

  padding-top: 15px;

  border-top: 1px solid rgba(255, 255, 255, 0.17);

  font-size: 10px;
}


/* =========================================================
   TABLET — MAX WIDTH 950px
========================================================= */

@media (max-width: 950px) {

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .enquiry-inner {
    grid-template-columns: 1fr 1fr;
  }

  .enquiry-inner .button {
    grid-column: 1 / -1;

    justify-self: start;
  }

}


/* =========================================================
   MOBILE — MAX WIDTH 750px
========================================================= */

@media (max-width: 750px) {

  /* Header */

  .site-header {
    height: 72px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;

    top: 72px;
    left: 0;
    right: 0;

    display: none;

    flex-direction: column;

    gap: 16px;

    padding: 22px;

    background: #fff8fb;

    box-shadow: 0 12px 20px rgba(90, 31, 60, 0.13);
  }

  .site-nav.open {
    display: flex;
  }


  /* Hero */

  .hero-grid,
  .story-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 55px 0 0;

    gap: 13px;
  }

  .hero-gallery {
    max-width: 500px;

    width: 100%;

    height: 410px;

    margin: auto;
  }


  /* Sections */

  .section-title {
    display: block;
  }

  .section-title > p {
    margin: 15px 0 0;
  }


  /* Brand Story */

  .brand-story {
    padding: 75px 0;
  }

  .story-grid {
    gap: 45px;
  }


  /* B2B Enquiry */

  .enquiry-inner {
    grid-template-columns: 1fr;

    gap: 19px;
  }

  .enquiry-inner .button {
    grid-column: auto;
  }


  /* Footer */

  .footer-top {
    align-items: flex-start;

    flex-direction: column;
  }

}


/* =========================================================
   SMALL MOBILE — MAX WIDTH 500px
========================================================= */

@media (max-width: 500px) {

  /* Container */

  .container {
    width: min(100% - 32px, 1130px);
  }


  /* Hero */

  .hero h1 {
    font-size: 48px;
  }

  .hero-copy > p:not(.kicker) {
    font-size: 16px;
  }

  .hero-gallery {
    height: 330px;
  }


  /* Gallery */

  .gallery-photo {
    border-width: 4px;

    border-radius: 17px;
  }

  .photo-main {
    height: 79%;
    width: 44%;

    left: 28%;
  }

  .photo-left {
    height: 52%;
    width: 34%;

    top: 29%;
  }

  .photo-right {
    height: 51%;
    width: 33%;

    top: 26%;
  }

  .photo-bottom {
    height: 31%;
    width: 27%;

    right: 15%;
  }


  /* Sections */

  .section {
    padding: 75px 0;
  }


  /* Categories */

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  /* Products */

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    display: grid;

    grid-template-columns: 40% 60%;
  }

  .product-visual {
    height: auto;

    min-height: 174px;
  }


  /* Reasons */

  .reason-grid {
    grid-template-columns: 1fr 1fr;
  }

  .reason-grid article {
    min-height: 170px;

    padding: 18px;
  }


  /* Story */

  .story-image {
    height: 310px;
  }

  .story-badge {
    width: 108px;
    height: 108px;

    font-size: 15px;
  }


  /* Ticker */

  .ticker div {
    justify-content: flex-start;

    overflow: hidden;
  }


  /* Footer */

  .footer-top > div:nth-child(2) {
    order: 3;
  }

}
/* =========================================================
   WHATSAPP CONTACT SELECTION
========================================================= */

.whatsapp-contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(74, 25, 50, 0.55);
  backdrop-filter: blur(6px);
}

.whatsapp-contact-modal[hidden] {
  display: none;
}

.whatsapp-contact-card {
  position: relative;
  width: min(100%, 440px);
  padding: 38px;
  border-radius: 28px;
  background: #fff8fb;
  box-shadow: 0 25px 70px rgba(52, 16, 36, 0.3);
  animation: whatsappContactIn 0.25s ease;
}

@keyframes whatsappContactIn {

  from {
    opacity: 0;
    transform: translateY(15px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

}

.whatsapp-contact-card h2 {
  margin: 0;
  font: 800 34px/1.05 "Baloo 2", sans-serif;
  letter-spacing: -0.03em;
  color: #4a1932;
}

.whatsapp-contact-subtitle {
  margin: 10px 0 22px;
  color: #765b6c;
  font-size: 14px;
}

.whatsapp-contact-close {
  position: absolute;
  top: 12px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #4a1932;
  font-size: 31px;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-number-option {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 12px;
  padding: 15px 16px;
  border: 1px solid #cdebd8;
  border-radius: 16px;
  background: #eaf9ef;
  color: #215b38;
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.whatsapp-number-option:hover {
  transform: translateY(-2px);
  background: #e2f7e9;
  box-shadow: 0 8px 20px rgba(33, 91, 56, 0.12);
}

.whatsapp-option-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 40px;
  border-radius: 50%;
  background: #ffffff;
  font-size: 20px;
}

.whatsapp-number-option span:not(.whatsapp-option-icon) {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.whatsapp-number-option small {
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.whatsapp-number-option strong {
  font-size: 16px;
}

.whatsapp-number-option > b {
  font-size: 20px;
}

@media (max-width: 500px) {

  .whatsapp-contact-card {
    padding: 32px 22px;
    border-radius: 23px;
  }

  .whatsapp-contact-card h2 {
    font-size: 29px;
  }

}
/* =========================================================
   PRODUCT CARD — VIEW DETAILS BUTTON
========================================================= */

.product-info {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-details-button {
  width: 100%;
  min-height: 44px;

  margin-top: auto;
  padding: 0 9px 0 16px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border: 0;
  border-radius: 999px;

  background: #4a1932;
  color: #ffffff;

  font-family: inherit;
  font-size: 12px;
  font-weight: 900;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.product-details-button span {
  display: block;
  line-height: 1;
}

.product-details-button b {
  width: 27px;
  height: 27px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  background: #f16099;
  color: #ffffff;

  font-size: 17px;
  line-height: 1;
}

.product-details-button:hover {
  transform: translateY(-2px);

  background: #5b1d3d;

  box-shadow:
    0 8px 18px rgba(74, 25, 50, 0.18);
}

.product-details-button:active {
  transform: translateY(0);
}


/* =========================================================
   KEEP PRODUCT CARDS EVENLY ALIGNED
========================================================= */

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card .product-info {
  flex: 1;
}


/* =========================================================
   PRODUCT QUANTITY BOXES
========================================================= */

.product-quantities {
  display: flex;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 14px;
}

.product-quantities > div {
  flex: 1;

  min-width: 0;

  padding: 8px 9px;

  border: 1px solid #f3cbdc;
  border-radius: 12px;

  background: #fff8fb;
}

.product-quantities small {
  display: block;

  margin-bottom: 3px;

  color: #d94882;

  font-size: 8px;
  font-weight: 900;

  letter-spacing: 0.08em;
}

.product-quantities strong {
  display: block;

  color: #4a1932;

  font-size: 11px;

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


/* =========================================================
   DESKTOP — BUTTON ALWAYS AT BOTTOM
========================================================= */

@media (min-width: 501px) {

  .product-info {
    min-height: 205px;
  }

}


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

@media (max-width: 500px) {

  .product-card {
    display: grid;
    grid-template-columns: 40% 60%;
  }

  .product-info {
    min-height: 100%;
    padding: 14px 14px 17px;
  }

  .product-details-button {
    min-height: 43px;
    margin-top: auto;
  }

  .product-details-button b {
    width: 27px;
    height: 27px;
  }

}