@charset "UTF-8";
/* CODESTITCH STYLES, RESET, HEADER/NAVIGATION AND FOOTER */
/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* CodeStitch Root and Helpers */
@media only screen and (min-width: 0rem) {
  :root {
    /* ————— Primary Brand Colours ————— */
    --primary: #132048;
    --primary-light: #E43E30;
    --primary-alt: #E43E30;
    /* ————— Flavor Accent Colours ————— */
    --flavor-yellow: #F4D03F;
    --flavor-magenta: #D4A5C7;
    --flavor-green: #7CB342;
    --flavor-golden: #FFB300;
    --flavor-pink: #E91E63;
    --flavor-brown: #8D6E63;
    /* ————— Secondary Brand Colours ————— */
    --secondary: #475569;
    --secondary-light: #94a3b8;
    /* ————— Neutrals ————— */
    --white: #ffffff;
    --grey-light: #f5f7fa;
    --grey: #a0a4ab;
    --grey-dark: #343435;
    /* ————— Dark-mode Helpers ————— */
    --dark: #8D6E63;
    --dark-alt: #000000;
    --medium: #1e293b;
    /* ————— Utility Colours ————— */
    --success: #7CB342;
    --warning: #FFB300;
    --danger: #E53E30;
    /* ————— Legacy Compatibility ————— */
    --primaryLight: #E53E30;
    --headerColor: #1A237E;
    --bodyTextColor: #343435;
    --bodyTextColorWhite: #ffffff;
    /* ————— Typography ————— */
    --font-heading: "Alfons Display", sans-serif;
    --font-body: "Alfons Display", sans-serif;
    /* 17px - 20px */
    --topperFontSize: clamp(1.0625rem, 1.6vw, 1.25rem);
    /* 35px - 53px */
    --headerFontSize: clamp(2.1875rem, 3.9vw, 3.3125rem);
    --bodyFontSize: 1.25rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
  }
  .cs-topper {
    display: block;
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: var(--font-heading);
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    font-weight: 900;
    color: var(--primary-light);
    text-align: inherit;
  }
  .cs-title {
    position: relative;
    margin: 0 0 1rem 0;
    max-width: 43.75rem;
    font-family: var(--font-heading);
    font-size: var(--headerFontSize);
    line-height: 1.2em;
    font-weight: 900;
    color: var(--headerColor);
    text-align: inherit;
  }
  .cs-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    line-height: 1.3em;
    font-weight: 400;
    color: var(--bodyTextColor);
    margin: 0 0 1rem 0;
    text-align: inherit;
  }
  .cs-text {
    margin: 0;
    max-width: 40.625rem;
    width: 100%;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    text-align: inherit;
  }
  .cs-button-solid {
    z-index: 1;
    position: relative;
    display: inline-block;
    background: var(--primary-light);
    width: auto;
    padding: 0 1.875rem;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 3.125em;
    font-weight: bold;
    color: var(--bodyTextColorWhite);
    text-align: center;
    border-radius: 8px;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 16px rgba(229, 62, 48, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .cs-button-solid:hover, .cs-button-solid:focus {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(229, 62, 48, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(229, 62, 48, 0.2);
    background: linear-gradient(135deg, #F55A4A 0%, var(--primaryLight) 30%, #F55A4A 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  .cs-button-solid:hover:before, .cs-button-solid:focus:before {
    left: 100%;
  }
  .cs-button-solid:hover:after, .cs-button-solid:focus:after {
    opacity: 1;
  }
  .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(229, 62, 48, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(229, 62, 48, 0.4), 0 0 8px rgba(229, 62, 48, 0.3);
    transition: all 0.1s ease;
  }
  .cs-hide-on-mobile {
    display: none;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  .cs-hide-on-mobile {
    display: block;
  }
  .cs-hide-on-desktop {
    display: none;
  }
}
/* Fonts and general styles */
@media only screen and (min-width: 0rem) {
  body,
  html {
    margin: 0;
    overflow-x: hidden;
    padding: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 100%;
    color: var(--bodyTextColor);
  }
  *,
  *:before,
  *:after {
    margin: 0;
    box-sizing: border-box;
    padding: 0;
  }
  body {
    transition: background-color 0.3s;
  }
  .container {
    position: relative;
    margin: auto;
    width: 92%;
  }
  /* Nana Betty Dark Blue Textured Background */
  .nanabetty-textured-bg {
    background-color: var(--primary);
    background-image: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.03) 0px, transparent 1px, transparent 2px, rgba(0, 0, 0, 0.02) 3px), repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0px, transparent 1px, transparent 3px, rgba(0, 0, 0, 0.03) 4px);
    position: relative;
  }
  .nanabetty-textured-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.02) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.01) 0%, transparent 50%);
    pointer-events: none;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--headerColor);
  }
  :where(h1) {
    font-size: var(--headerFontSize);
    margin-block: 0.67em;
  }
  p,
  li,
  a {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.5em;
  }
  p,
  li {
    color: #353535;
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  .skip {
    z-index: -1111111;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .skip:focus {
    z-index: 999999;
    opacity: 1;
    background-color: var(--primary);
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  /* roboto-regular - latin */
  @font-face {
    font-style: normal;
    font-family: "Roboto";
    font-weight: 400;
    font-display: swap;
    src: local(""), url("/assets/fonts/roboto-v29-latin-regular.woff2") format("woff2"), url("/assets/fonts/roboto-v29-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* roboto-700 - latin */
  @font-face {
    font-style: normal;
    font-family: "Roboto";
    font-weight: 700;
    font-display: swap;
    src: local(""), url("/assets/fonts/roboto-v29-latin-700.woff2") format("woff2"), url("/assets/fonts/roboto-v29-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* roboto-900 - latin */
  @font-face {
    font-style: normal;
    font-family: "Roboto";
    font-weight: 900;
    font-display: swap;
    src: local(""), url("/assets/fonts/roboto-v29-latin-900.woff2") format("woff2"), url("/assets/fonts/roboto-v29-latin-900.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* Nana Betty Brand Fonts */
  /* Alfons Display Black - Primary Typeface (Headings) */
  @font-face {
    font-style: normal;
    font-family: "Alfons Display";
    font-weight: 900;
    font-display: swap;
    src: local(""), url("/assets/fonts/alfons-display-black.woff2") format("woff2"), url("/assets/fonts/alfons-display-black.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* Alfons Display Regular - Secondary Typeface (Secondary Headings) */
  @font-face {
    font-style: normal;
    font-family: "Alfons Display";
    font-weight: 400;
    font-display: swap;
    src: local(""), url("/assets/fonts/alfons-display-regular.woff2") format("woff2"), url("/assets/fonts/alfons-display-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
  /* Fat Frank Regular - Secondary Typeface (Body Text) */
  @font-face {
    font-style: normal;
    font-family: "Fat Frank";
    font-weight: 400;
    font-display: swap;
    src: local(""), url("/assets/fonts/fat-frank-regular.woff2") format("woff2"), url("/assets/fonts/fat-frank-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
  }
}
/* Reset Margins */
@media only screen and (min-width: 1024px) {
  body,
  html {
    margin: 0;
    padding: 0;
  }
}
/* Scale full website with the viewport width */
@media only screen and (min-width: 3000px) {
  body,
  html {
    font-size: 0.55vw;
  }
}
body {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  /* prevents padding from affecting height and width */
  box-sizing: border-box;
}

.cs-topper {
  font-family: var(--font-heading);
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: var(--primary-light);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-family: var(--font-heading);
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

/*-- -------------------------- -->
<---      Dark Mode Toggle      -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  body.dark-mode #dark-mode-toggle .cs-sun {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  body.dark-mode #dark-mode-toggle .cs-moon {
    opacity: 0;
    transform: translate(-50%, -150%);
    fill: #fff;
  }
  #dark-mode-toggle {
    z-index: 1000;
    position: absolute;
    top: 0.625rem;
    right: 4.375rem;
    display: block;
    border: none;
    background: transparent;
    height: 3rem;
    width: 3rem;
    overflow: hidden;
    padding: 0;
  }
  #dark-mode-toggle img,
  #dark-mode-toggle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 1.25rem;
    width: 1.25rem;
    pointer-events: none;
  }
  #dark-mode-toggle .cs-moon {
    z-index: 2;
    transition: transform 0.3s, opacity 0.3s;
  }
  #dark-mode-toggle .cs-sun {
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, 100%);
    transition: transform 0.3s, opacity 0.3s;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #dark-mode-toggle {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: 0;
  }
  #dark-mode-toggle:hover {
    cursor: pointer;
  }
}
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  body.cs-open {
    overflow: hidden;
  }
  #cs-navigation {
    z-index: 10000;
    position: fixed;
    background-color: #fff;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
    font-family: var(--font-body);
    font-weight: 400;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #cs-navigation .cs-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
  #cs-navigation .cs-logo {
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 0 0;
    height: 2.5rem;
    max-width: 9.125rem;
    width: 40%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0;
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
    /* places the image to the left edge of the parent */
    object-position: left;
  }
  #cs-navigation .cs-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    border-radius: 0.25rem;
    margin: 0 0 0 auto;
    background-color: transparent;
    height: clamp(2.75rem, 6vw, 3rem);
    /* 44px - 48px */
    width: clamp(2.75rem, 6vw, 3rem);
  }
  #cs-navigation .cs-active .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation .cs-active .cs-line2 {
    top: 50%;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
    transform-origin: center;
  }
  #cs-navigation .cs-active .cs-line3 {
    bottom: 100%;
    opacity: 0;
  }
  #cs-navigation .cs-box {
    position: relative;
    /* 14px - 16px */
    height: clamp(0.875rem, 1.5vw, 1rem);
    /* 24px - 28px */
    width: clamp(1.5rem, 2vw, 1.75rem);
  }
  #cs-navigation .cs-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    background-color: #1a1a1a;
    height: 2px;
    width: 100%;
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
    transform-origin: center;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-direction: normal;
    animation-fill-mode: forwards;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    z-index: -1;
    position: absolute;
    top: 100%;
    left: auto;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: scaleX(0);
    background-color: #fff;
    height: 100vh;
    overflow: hidden;
    transition: transform 0.4s, opacity 0.3s;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    transform-origin: top right;
  }
  #cs-navigation .cs-ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0;
    height: 65vh;
    min-width: 40%;
    width: auto;
    overflow: scroll;
    /* 28px - 40px */
    padding: 3rem clamp(1.75rem, 3vw, 2.5rem) 2rem 4.375rem;
    gap: 1.25rem;
  }
  #cs-navigation .cs-li {
    opacity: 0;
    /* transition from these values */
    transform: translateX(-2.5rem);
    margin-right: 0;
    width: 100%;
    list-style: none;
    transition: transform 0.6s, opacity 0.9s;
    text-align: right;
  }
  #cs-navigation .cs-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-li-link {
    position: relative;
    display: inline-block;
    margin: 0;
    text-decoration: none;
    /* 18px - 27px */
    font-size: clamp(1.25rem, 2.5vw, 1.8125rem);
    line-height: 1.2em;
    color: var(--headerColor);
    font-weight: 500;
    transition: color 0.3s ease;
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary-light);
  }
  #cs-navigation .cs-li-link:before {
    position: absolute;
    bottom: -0.125rem;
    left: 0;
    /* active state underline */
    content: "";
    opacity: 1;
    display: none;
    background: var(--primary-light);
    height: 2px;
    width: 100%;
    border-radius: 2px;
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary-light);
    font-weight: 600;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    display: block;
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"] {
    overflow: visible;
    position: relative;
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"]::after {
    content: "Papa Jim!";
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) scale(0.85) translateY(8px);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    font-size: clamp(1.25rem, 2.5vw, 1.8125rem);
    font-weight: 700;
    color: var(--primary-light);
    background: rgba(255, 255, 255, 0.98);
    padding: 0.5rem 0.875rem;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(229, 62, 48, 0.4), 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    border: 2px solid var(--primary-light);
    letter-spacing: 0.02em;
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"]:hover, #cs-navigation .cs-li-link[href="/papa-jim/"]:active, #cs-navigation .cs-li-link[href="/papa-jim/"]:focus {
    color: transparent;
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"]:hover::after, #cs-navigation .cs-li-link[href="/papa-jim/"]:active::after, #cs-navigation .cs-li-link[href="/papa-jim/"]:focus::after {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
  }
  #cs-navigation .cs-button-solid {
    display: none;
  }
  #cs-navigation:before {
    z-index: -11;
    position: absolute;
    top: 100%;
    right: 0;
    /* black blurred overlay */
    content: "";
    opacity: 0;
    display: block;
    background: rgba(0, 0, 0, 0.6);
    height: 100vh;
    width: 0%;
    transition: width 0.5s, opacity 0.3s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    visibility: visible;
    transform: scaleX(1);
    transition-delay: 0.2s;
  }
  #cs-navigation.cs-active .cs-li {
    opacity: 1;
    transform: translateX(0);
  }
  #cs-navigation.cs-active:before {
    opacity: 1;
    width: 100%;
  }
}
/* Dark Mode */
@media only screen and (max-width: 63.9375rem) {
  body.dark-mode #cs-navigation {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-logo {
    /* makes it white */
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #cs-navigation .cs-line {
    background-color: #fff;
  }
  body.dark-mode #cs-navigation .cs-ul-wrapper {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-li-link {
    color: var(--bodyTextColorWhite);
  }
}
/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-dropdown {
    position: relative;
    color: var(--bodyTextColorWhite);
  }
  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    margin: 0.75rem 0 0 0;
    height: auto;
    padding: 1.5rem;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
  }
  #cs-navigation .cs-dropdown-button {
    border: none;
    background-color: transparent;
    font-family: inherit;
    font-size: clamp(1.25rem, 2.5vw, 1.8125rem);
    cursor: pointer;
    appearance: none;
  }
  #cs-navigation .cs-drop-icon {
    position: absolute;
    top: 50%;
    right: -1.25rem;
    transform: translateY(-50%);
    height: auto;
    width: 0.9375rem;
  }
  #cs-navigation .cs-drop-ul {
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-end;
    margin: 0;
    background-color: var(--primary);
    height: 0;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0 1.5rem 0 1.5rem;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, transform 0.3s, visibility 0.3s;
    gap: 0.75rem;
    transform-origin: top right;
  }
  #cs-navigation .cs-drop-li {
    list-style: none;
    text-align: inherit;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    /* 16px - 20px */
    font-size: clamp(1.25rem, 2vw, 1.625rem);
    color: #fff;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-dropdown {
    position: relative;
  }
  #cs-navigation .cs-dropdown.cs-active, #cs-navigation .cs-dropdown:hover {
    cursor: pointer;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul, #cs-navigation .cs-dropdown:hover .cs-drop-ul {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-li, #cs-navigation .cs-dropdown:hover .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container, #cs-navigation .cs-dropdown:hover .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container {
    visibility: hidden !important;
    opacity: 0 !important;
    transform: scaleY(0) !important;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container .cs-drop-li-nested, #cs-navigation .cs-dropdown:hover .cs-drop-li.cs-dropdown-nested .cs-drop-nested-container .cs-drop-li-nested {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
  }
  #cs-navigation .cs-dropdown-button {
    border: none;
    background-color: transparent;
    font-family: inherit;
    font-size: inherit;
    cursor: pointer;
    appearance: none;
  }
  #cs-navigation .cs-drop-icon {
    display: inline-block;
    height: auto;
    width: 0.9375rem;
  }
  #cs-navigation .cs-drop-ul {
    z-index: -100;
    /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the cs-drop-li so they don't have weird scattered animations */
    position: absolute;
    top: 100%;
    visibility: hidden;
    opacity: 0;
    transform: scaleY(0);
    border-bottom: 5px solid var(--primary);
    margin: 0;
    background-color: #fff;
    min-width: 12.5rem;
    overflow: hidden;
    padding: 0;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
    transform-origin: top;
  }
  #cs-navigation .cs-drop-li {
    opacity: 0;
    transform: translateY(-0.625rem);
    display: block;
    height: auto;
    width: 100%;
    list-style: none;
    text-decoration: none;
    font-size: 1.25rem;
    color: var(--bodyTextColor);
    transition: opacity 0.6s, transform 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(2) {
    transition-delay: 0.1s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(3) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(4) {
    transition-delay: 0.2s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(5) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(6) {
    transition-delay: 0.3s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(7) {
    transition-delay: 0.35s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(8) {
    transition-delay: 0.4s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(9) {
    transition-delay: 0.45s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(10) {
    transition-delay: 0.5s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(11) {
    transition-delay: 0.55s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(12) {
    transition-delay: 0.6s;
  }
  #cs-navigation .cs-drop-li:nth-of-type(13) {
    transition-delay: 0.65s;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    display: block;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0.75rem;
    white-space: nowrap;
    text-decoration: none;
    font-size: 1.25rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
    background-color: #f7f7f7;
  }
  #cs-navigation .cs-li-link.cs-drop-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
  }
  #cs-navigation .cs-li-link.cs-drop-link:before {
    display: none;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested {
    position: relative;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested:hover .cs-drop-nested-container {
    visibility: hidden !important;
    opacity: 0 !important;
    transform: scaleY(0) !important;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested:hover .cs-drop-nested-container .cs-drop-li-nested {
    opacity: 0 !important;
    transform: translateY(-10px) !important;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-dropdown-button-nested {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0.75rem;
    font-family: inherit;
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--bodyTextColor);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-dropdown-button-nested:hover {
    background-color: #f7f7f7;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-dropdown-button-nested:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-icon-nested {
    font-size: 0.5rem;
    transition: transform 0.3s;
    flex-shrink: 0;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-nested-container {
    position: absolute;
    left: 100%;
    top: 0;
    visibility: hidden !important;
    opacity: 0 !important;
    transform: scaleY(0) !important;
    background-color: #fff;
    min-width: 42.5rem;
    border: none;
    box-shadow: rgba(149, 157, 165, 0.3) 0px 10px 16px;
    padding: 1rem;
    margin: 0;
    list-style: none;
    z-index: 1000;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    border-radius: 6px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.25rem;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-column {
    min-width: 0;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-column-title {
    font-size: 1.015625rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.5rem 0;
    padding-bottom: 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested {
    padding: 0;
    margin: 0;
    list-style: none;
    transform-origin: top left;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem 0;
    padding: 0.75rem 0.5rem;
    width: 30rem;
    border-radius: 0.375rem;
  }
}
@media only screen and (min-width: 64rem) and (max-width: 48rem) {
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested {
    grid-template-columns: 1fr;
    width: 13.75rem;
    padding: 0.5rem;
    gap: 0.125rem 0;
  }
}
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-li-nested {
    opacity: 0;
    transform: translateY(-10px);
    list-style: none;
    transition: opacity 0.6s, transform 0.6s;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-li-nested:nth-of-type(3n+1) {
    transition-delay: 0.05s;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-li-nested:nth-of-type(3n+2) {
    transition-delay: 0.15s;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-li-nested:nth-of-type(3n+3) {
    transition-delay: 0.25s;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested {
    display: block;
    width: 100%;
    padding: 0.625rem 0.75rem;
    font-size: 1.09375rem;
    color: var(--bodyTextColor);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1;
    border-radius: 0.25rem;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested:hover {
    background-color: #f7f7f7;
    transform: translateX(2px);
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -4px;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested.cs-active-nested {
    background-color: var(--primary);
    color: #fff;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested.view-all-platforms {
    font-weight: 600;
    background-color: var(--primary);
    color: #fff;
    text-align: center;
    margin-top: 0.5rem;
    font-size: 1.015625rem;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-ul-nested .cs-drop-link-nested.view-all-platforms:hover {
    background-color: var(--primaryDark);
    transform: translateX(2px);
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-dropdown-button-nested:hover + .cs-drop-nested-container {
    visibility: visible !important;
    opacity: 1 !important;
    transform: scaleY(1) !important;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-dropdown-button-nested:hover + .cs-drop-nested-container .cs-drop-li-nested {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-nested-container:hover {
    visibility: visible !important;
    opacity: 1 !important;
    transform: scaleY(1) !important;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-drop-nested-container:hover .cs-drop-li-nested {
    opacity: 1 !important;
    transform: translateY(0) !important;
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested .cs-dropdown-button-nested:hover .cs-drop-icon-nested {
    transform: rotate(90deg);
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested.cs-active .cs-drop-nested-container {
    visibility: visible;
    opacity: 1;
    transform: scaleY(1);
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested.cs-active .cs-drop-nested-container .cs-drop-li-nested {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-li-link .cs-dropdown-nested.cs-active .cs-drop-icon-nested {
    transform: rotate(90deg);
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #cs-navigation .cs-drop-ul {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link:hover {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link-nested:hover {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link-nested.cs-active-nested {
    background-color: var(--primary);
    color: #fff;
  }
  body.dark-mode #cs-navigation .cs-dropdown-nested .cs-dropdown-button-nested:hover {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-dropdown-nested .cs-drop-nested-container {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-dropdown-nested .cs-drop-nested-container .cs-drop-column-title {
    color: var(--primaryLight);
    border-bottom-color: rgba(255, 255, 255, 0.2);
  }
  body.dark-mode #cs-navigation .cs-dropdown-nested .cs-drop-nested-container .cs-drop-li-nested {
    display: flex;
  }
  body.dark-mode #cs-navigation .cs-dropdown-nested .cs-drop-nested-container .cs-drop-link-nested:hover {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-drop-icon {
    /* turns it white */
    filter: grayscale(1) brightness(1000%);
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Desktop Navigation Button Styling */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-button-solid {
    font-size: 1.09375rem;
    font-weight: 700;
    line-height: 1.2em;
    text-align: center;
    text-decoration: none;
    min-width: 8rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  #cs-navigation .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  #cs-navigation .cs-button-solid:hover:before {
    left: 100%;
  }
  #cs-navigation .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #cs-navigation .cs-button-solid:hover:after {
    opacity: 1;
  }
  #cs-navigation .cs-button-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 30%, #2a8fd8 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  #cs-navigation .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 8px rgba(25, 121, 191, 0.3);
    transition: all 0.1s ease;
  }
  #cs-navigation .cs-button-solid:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 12px rgba(25, 121, 191, 0.2);
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    z-index: 10000;
    position: fixed;
    background-color: #fff;
    width: 100%;
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
    padding: 0 1rem;
    /* remove the font family so the Stitch inherits the fonts from your global stylesheet */
    font-family: var(--font-body);
    font-weight: 400;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  }
  #cs-navigation .cs-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    max-width: 80rem;
    width: 100%;
    gap: 1rem;
  }
  #cs-navigation .cs-nav {
    flex: 0 1 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-width: 0;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-right auto pushes everything away from it to the right */
    margin: 0 auto 0 0;
    height: 4.0625rem;
    max-width: 17.5rem;
    width: auto;
    flex: 0 0 auto;
    padding: 0;
  }
  #cs-navigation .cs-logo img {
    height: 100%;
    width: 100%;
    /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
    object-fit: contain;
  }
  #cs-navigation .cs-ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0;
    width: 100%;
    padding: 0;
    /* 16px - 24px - tighter spacing */
    gap: clamp(1rem, 1.5vw, 1.5rem);
    flex-wrap: nowrap;
  }
  #cs-navigation .cs-li {
    padding: 2rem 0;
    list-style: none;
    /* prevent flexbox from squishing it */
    flex: none;
  }
  #cs-navigation .cs-li-link {
    position: relative;
    display: block;
    margin: 0;
    text-decoration: none;
    /* 17px - 19px - slightly smaller */
    font-size: clamp(1.0625rem, 0.9vw, 1.1875rem);
    line-height: 1.5em;
    color: var(--bodyTextColor);
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary-light);
  }
  #cs-navigation .cs-li-link:hover:before {
    width: 100%;
    background: var(--primary-light);
  }
  #cs-navigation .cs-li-link:before {
    position: absolute;
    bottom: 0rem;
    left: 0;
    /* active state underline */
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary-light);
    height: 3px;
    width: 0%;
    transition: width 0.3s ease;
    border-radius: 2px;
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary-light);
    font-weight: 600;
  }
  #cs-navigation .cs-li-link.cs-active:before {
    width: 100%;
    background: var(--primary-light);
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"] {
    overflow: visible;
    position: relative;
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"]::after {
    content: "Papa Jim!";
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) scale(0.8) translateY(5px);
    opacity: 0;
    pointer-events: none;
    white-space: nowrap;
    font-size: clamp(1.0625rem, 0.9vw, 1.1875rem);
    font-weight: 700;
    color: var(--primary-light);
    background: rgba(255, 255, 255, 0.98);
    padding: 0.375rem 0.625rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(229, 62, 48, 0.35), 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1000;
    border: 2px solid var(--primary-light);
    letter-spacing: 0.02em;
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"]:hover {
    color: transparent;
  }
  #cs-navigation .cs-li-link[href="/papa-jim/"]:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1) translateY(0);
  }
  #cs-navigation .cs-nav-button {
    display: inline-block;
    background: var(--primary-light);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: clamp(1.1125rem, 1vw, 1.25rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(229, 62, 48, 0.2);
    white-space: nowrap;
  }
  #cs-navigation .cs-nav-button:hover {
    background: #c73528;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 62, 48, 0.3);
  }
  #cs-navigation .cs-nav-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(229, 62, 48, 0.25);
  }
}
/* Dark Mode */
@media only screen and (min-width: 64rem) {
  body.dark-mode #cs-navigation {
    background-color: var(--dark);
  }
  body.dark-mode #cs-navigation .cs-logo {
    /* makes it turn white */
    filter: grayscale(1) brightness(1000%);
  }
  body.dark-mode #cs-navigation .cs-li-link {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation .cs-li-link:before {
    background-color: var(--primaryLight);
  }
  body.dark-mode #cs-navigation .cs-li-link:hover {
    color: var(--primaryLight);
  }
  body.dark-mode #cs-navigation .cs-nav-button {
    background: var(--primaryLight);
  }
  body.dark-mode #cs-navigation .cs-nav-button:hover {
    background: #c73528;
  }
}
/*-- -------------------------- -->
<---   Interior Page Header     -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #int-hero {
    z-index: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    padding-top: 3.125rem;
  }
  #int-hero picture {
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  #int-hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #int-hero h1 {
    position: relative;
    margin: 0 auto;
    margin-top: 4.375rem;
    margin-bottom: 1.875rem;
    max-width: 31.25rem;
    width: 96%;
    font-size: 2.6666666667rem;
    color: #fff;
    text-align: center;
  }
  #int-hero p {
    display: block;
    margin: auto;
    margin-bottom: 1.875rem;
    max-width: 25rem;
    width: 96%;
    color: #fff;
    text-align: center;
  }
  #int-hero:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
  }
}
/* Tablet */
@media only screen and (min-width: 48rem) {
  #int-hero {
    font-size: 100%;
  }
  #int-hero h1 {
    font-size: 5rem;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #int-hero {
    background-attachment: fixed;
    min-height: 18.75rem;
    height: auto;
    padding-top: 11.25rem;
    font-size: inherit;
    padding-block-end: 6.25rem;
  }
}
/*-- -------------------------- -->
<---    Final Call To Action    -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #cta {
    position: relative;
    padding: 3.125rem 0;
  }
  #cta .container {
    text-align: center;
  }
  #cta picture {
    z-index: -2;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  #cta picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #cta .title {
    position: relative;
    margin-bottom: 2.25rem;
    font-size: min(9vw, 3rem);
    line-height: 1.2083333333em;
    font-weight: 900;
    color: #fff;
    text-align: center;
  }
  #cta p {
    opacity: 1;
    margin: auto;
    margin-bottom: 2.25rem;
    max-width: 37.375rem;
    width: 96%;
    color: #fff;
    text-align: center;
  }
  #cta:before {
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #cta {
    padding: 10.5rem 0;
  }
}
/* Large Desktop */
@media only screen and (min-width: 1300px) {
  #cta {
    position: relative;
    margin-top: 6.25rem;
  }
  #cta .container {
    margin: auto;
    width: 90.0625%;
  }
  #cta picture {
    left: 50%;
    transform: translateX(-50%);
    width: 90.0625%;
  }
  #cta picture:before {
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    opacity: 0.7;
    display: block;
    background: #000;
    height: 100%;
    width: 100%;
  }
  #cta:before {
    display: none;
  }
  #cta:after {
    z-index: -3;
    position: absolute;
    bottom: 0;
    left: 50%;
    content: "";
    opacity: 1;
    transform: translateX(-50%);
    display: block;
    background: url("/assets/svgs/cta-squares.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    height: 69.25rem;
    width: 125rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #cta:after {
    display: none;
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
/* Mobile */
@media only screen and (min-width: 0rem) {
  #footer {
    background: #1c1c1c;
    padding: 5.25rem 0 1.25rem;
    font-size: min(4vw, 1.2em);
  }
  #footer .left-section {
    margin: auto;
    margin-bottom: 3.125rem;
    text-align: center;
  }
  #footer .left-section .logo {
    display: inline-block;
    margin: auto;
    margin-bottom: 1.875em;
    height: 4.0625rem;
    width: auto;
    text-align: center;
  }
  #footer .left-section .logo img {
    display: block;
    height: 100%;
    width: auto;
  }
  #footer .left-section p {
    opacity: 0.9;
    margin: auto;
    width: 100%;
    font-size: 1.09375rem;
    line-height: 1.9285714286rem;
    color: #fff;
    text-align: center;
  }
  #footer .right-section {
    margin: auto;
    max-width: 25.4375rem;
    width: 96%;
  }
  #footer .right-section .lists {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: auto;
    max-width: 19.1875rem;
    width: 96%;
  }
  #footer .right-section .lists ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
  }
  #footer .right-section .lists ul li {
    opacity: 0.9;
    margin-bottom: 0.75rem;
    list-style: none;
    font-size: 1.25rem;
    color: #fff;
  }
  #footer .right-section .lists ul li a {
    text-decoration: none;
    line-height: 1.1666666667em;
    color: #fff;
    transition: color 0.3s;
  }
  #footer .right-section .lists ul li a:hover {
    color: var(--primary-light);
  }
  #footer .right-section .lists ul h2 {
    position: relative;
    margin-bottom: 2.3125rem;
    text-transform: uppercase;
    font-size: 1.25rem;
    line-height: 1.1666666667em;
    font-weight: bold;
    color: #fff;
  }
  #footer .right-section .lists ul h2:before {
    position: absolute;
    bottom: -1rem;
    left: 0;
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary-light);
    height: 0.125rem;
    width: 6.0625rem;
  }
  #footer .right-section .lists ul:nth-of-type(3) {
    margin-top: 3.125rem;
  }
  #footer .right-section .lists ul:nth-of-type(3) li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1rem;
  }
  #footer .right-section .lists ul:nth-of-type(3) li:last-of-type {
    margin-bottom: 0;
  }
  #footer .right-section .buttons {
    display: flex;
    justify-content: center;
  }
  #footer .right-section .cs-button-solid {
    margin: 0;
    height: 3.3125rem;
    width: 15.625rem;
    padding-top: 0.1875rem;
  }
  #footer .credit {
    margin: auto;
    margin-top: 6.25rem;
    width: 96%;
    font-size: 1.25rem;
    line-height: 2.25rem;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0.25rem;
  }
  #footer .credit .left, #footer .credit .right {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  #footer .credit .left {
    text-transform: uppercase;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 48rem) {
  #footer .credit {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
  }
  #footer .credit .left, #footer .credit .right {
    width: 100%;
    justify-content: center;
  }
}
@media only screen and (min-width: 0rem) {
  #footer .credit svg {
    margin-top: 0.125rem;
    height: 1.25rem;
    width: auto;
    vertical-align: middle;
  }
  #footer .credit svg.text-danger {
    stroke: #ff0000;
  }
  #footer .credit a {
    text-decoration: none;
    font-size: 1.25rem;
    color: var(--primary-light);
  }
  #footer .credit a:hover {
    text-decoration: underline;
  }
  #footer .credit .brand-link {
    color: var(--primary-light);
    font-weight: 700;
  }
}
/* Small Desktop */
@media only screen and (min-width: 64rem) {
  #footer {
    font-size: min(1.2vw, 1em);
  }
  #footer .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin: auto;
    max-width: 82.5rem;
    width: 96%;
    padding: 0;
  }
  #footer .left-section {
    margin: 0;
    width: 25.5625rem;
    text-align: left;
  }
  #footer .left-section .logo {
    margin-left: 0;
    height: 4.0625rem;
    text-align: left;
  }
  #footer .left-section p {
    margin-left: 0;
    text-align: left;
  }
  #footer .right-section {
    margin: 0;
    max-width: none;
    width: 38.0625rem;
  }
  #footer .right-section .lists {
    margin: 0;
    max-width: 48.0625rem;
    width: 96%;
  }
  #footer .right-section .lists ul li a {
    position: relative;
  }
  #footer .right-section .lists ul li a:before {
    position: absolute;
    bottom: -0.1875rem;
    left: 0;
    content: "";
    opacity: 1;
    display: block;
    background: var(--primary-light);
    height: 0.125rem;
    width: 0%;
    transition: width 0.3s;
  }
  #footer .right-section .lists ul li a:hover:before {
    width: 100%;
  }
  #footer .right-section .lists ul:nth-of-type(3) {
    margin-top: 0;
  }
  #footer .right-section .lists ul:nth-of-type(3) li:first-of-type {
    margin-bottom: 0;
  }
  #footer .right-section .buttons {
    justify-content: flex-start;
  }
  #footer .credit {
    max-width: 82.5rem;
  }
  #footer .credit .copyright {
    display: inline-block;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #footer {
    background: #061623;
  }
}
#faq-350-350 {
  padding: var(--sectionPadding);
  background: #f7f7f7;
}
#faq-350-350 .cs-container {
  width: 100%;
  max-width: 80rem;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(2.5rem, 5vw, 3rem);
}
@media only screen and (min-width: 64rem) {
  #faq-350-350 .cs-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 3.25rem;
  }
}
#faq-350-350 .cs-left {
  font-size: min(2.08vw, 0.7em);
  width: 42.875em;
  height: 42em;
  position: relative;
}
@media only screen and (min-width: 64rem) {
  #faq-350-350 .cs-left {
    font-size: min(1vw, 1em);
    flex: none;
    order: 2;
  }
}
@keyframes floatAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2em);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes floatAnimation2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1em);
  }
  100% {
    transform: translateY(0);
  }
}
#faq-350-350 .cs-left:before {
  content: "";
  width: 7.5em;
  height: 7.5em;
  border-radius: 50%;
  background: var(--secondary);
  opacity: 1;
  position: absolute;
  display: block;
  bottom: 6.25em;
  left: 0;
  z-index: 10;
  animation-name: floatAnimation;
  animation-duration: 6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}
#faq-350-350 .cs-picture {
  border-radius: 50%;
  border: clamp(6px, 1.2vw, 12px) solid #fff;
  overflow: hidden;
  position: absolute;
  display: block;
}
#faq-350-350 .cs-picture img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#faq-350-350 .cs-picture1 {
  width: 42em;
  height: 42em;
  top: -0.75em;
  left: -0.75em;
}
#faq-350-350 .cs-picture2 {
  width: 12.5em;
  height: 12.5em;
  top: -0.75em;
  left: -0.75em;
  animation-name: floatAnimation2;
  animation-duration: 20s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}
#faq-350-350 .cs-picture3 {
  width: 18.75em;
  height: 18.75em;
  bottom: -0.75em;
  right: -0.75em;
  animation-name: floatAnimation;
  animation-duration: 13s;
  animation-delay: 1s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}
#faq-350-350 .cs-content {
  width: 100%;
  max-width: 47.9375rem;
  position: relative; /* Ensure proper stacking context */
}
#faq-350-350 .cs-faq-group {
  padding: 0;
  margin: 0 0 2rem 0; /* Add bottom margin to prevent overlap */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
}
#faq-350-350 .cs-faq-item {
  list-style: none;
  width: 100%;
  border-bottom: 1px solid #e8e8e8;
  transition: border-bottom 0.3s;
}
#faq-350-350 .cs-faq-item.active {
  border-color: var(--primary);
}
#faq-350-350 .cs-faq-item.active .cs-button {
  color: var(--primary) !important;
  font-weight: bold;
}
#faq-350-350 .cs-faq-item.active .cs-button:before {
  background-color: var(--primary) !important;
  transform: rotate(315deg) !important;
}
#faq-350-350 .cs-faq-item.active .cs-button:after {
  background-color: var(--primary) !important;
  transform: rotate(-315deg) !important;
}
#faq-350-350 .cs-button {
  font-size: 1.25rem;
  line-height: 1.2em;
  text-align: left;
  font-weight: bold;
  padding: clamp(1rem, 1.3vw, 1.25rem);
  border: none;
  background: transparent;
  color: var(--headerColor);
  display: block;
  width: 100%;
  position: relative;
  transition: background-color 0.3s, color 0.3s;
}
#faq-350-350 .cs-button:hover {
  cursor: pointer;
}
#faq-350-350 .cs-button:before {
  content: "";
  width: 0.5rem;
  height: 0.125rem;
  background-color: var(--headerColor);
  opacity: 1;
  border-radius: 50%;
  position: absolute;
  display: block;
  top: 45%;
  right: 1.5rem;
  transform: rotate(45deg);
  transform-origin: left center;
  transition: transform 0.5s;
}
#faq-350-350 .cs-button:after {
  content: "";
  width: 0.5rem;
  height: 0.125rem;
  background-color: var(--headerColor);
  opacity: 1;
  border-radius: 50%;
  position: absolute;
  display: block;
  top: 45%;
  right: 1.3125rem;
  transform: rotate(-45deg);
  transform-origin: right center;
  transition: transform 0.5s;
}
#faq-350-350 .cs-button-text {
  width: 80%;
  display: block;
}
#faq-350-350 .cs-item-p {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.5em;
  width: 90%;
  margin: 0 0 1rem 0; /* Add bottom margin */
  color: var(--bodyTextColor);
  transition: opacity 0.3s, padding-bottom 0.3s, height 0.3s;
  position: relative; /* Ensure proper positioning */
  z-index: 1; /* Ensure content appears above background elements */
}
body.dark-mode #faq-350-350 {
  background-color: var(--medium);
}
body.dark-mode #faq-350-350 .cs-picture {
  border-color: var(--accent);
}
body.dark-mode #faq-350-350 .cs-topper {
  color: var(--primaryLight);
}
body.dark-mode #faq-350-350 .cs-title, body.dark-mode #faq-350-350 .cs-item-p {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #faq-350-350 .cs-faq-item {
  border-color: rgba(255, 255, 255, 0.2);
}
body.dark-mode #faq-350-350 .cs-faq-item.active {
  border-color: var(--primaryLight);
}
body.dark-mode #faq-350-350 .cs-faq-item.active .cs-button {
  color: var(--primaryLight);
}
body.dark-mode #faq-350-350 .cs-faq-item.active .cs-button:before, body.dark-mode #faq-350-350 .cs-faq-item.active .cs-button:after {
  background-color: var(--primaryLight);
}
body.dark-mode #faq-350-350 .cs-button {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #faq-350-350 .cs-button:before, body.dark-mode #faq-350-350 .cs-button:after {
  background-color: var(--bodyTextColorWhite);
}

/* Specific override styles to ensure proper behavior */
#faq-350-350 .cs-faq-item.active .cs-item-p {
  height: auto !important;
  opacity: 1 !important;
  padding: 1rem 1.5rem 1.5rem 1.5rem !important;
  overflow: visible !important;
  margin-bottom: 1rem !important; /* Ensure bottom margin */
}

#faq-350-350 .cs-faq-item:not(.active) .cs-item-p {
  height: 0 !important;
  opacity: 0 !important;
  overflow: hidden !important;
  padding: 0 1.5rem !important;
  margin: 0 !important; /* Remove margin when collapsed */
}

/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-45 {
    padding: var(--sectionPadding);
    position: relative;
    /* Prevents overflow from the image going off screen */
    overflow: hidden;
    /* Portfolio Link Styles */
    /* Portfolio Caption Styles */
  }
  #gallery-45 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #gallery-45 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #gallery-45 .cs-image-group {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }
  #gallery-45 .cs-item {
    list-style: none;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    margin: 0;
    position: relative;
    display: block;
  }
  #gallery-45 .cs-item:hover .cs-hover-box {
    opacity: 1;
  }
  #gallery-45 .cs-item:hover .cs-icon {
    /* return to original position */
    transform: rotateY(0);
  }
  #gallery-45 .cs-item:hover .cs-h3 {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #gallery-45 .cs-item:hover .cs-hover-box-text {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #gallery-45 .cs-portfolio-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #gallery-45 .cs-portfolio-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  #gallery-45 .cs-portfolio-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(30, 36, 60, 0.95) 0%, rgba(25, 121, 191, 0.95) 100%);
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
  }
  #gallery-45 .cs-portfolio-caption h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #gallery-45 .cs-portfolio-caption p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 1;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  }
  #gallery-45 .cs-portfolio-link:hover .cs-portfolio-caption {
    transform: translateY(0);
  }
  #gallery-45 .cs-picture {
    margin: auto;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
  }
  #gallery-45 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #gallery-45 .cs-button-solid {
    font-size: 1.25rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--bodyTextColorWhite);
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #gallery-45 .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  #gallery-45 .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #gallery-45 .cs-button-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 30%, #2a8fd8 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  #gallery-45 .cs-button-solid:hover:before {
    left: 100%;
  }
  #gallery-45 .cs-button-solid:hover:after {
    opacity: 1;
  }
  #gallery-45 .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 8px rgba(25, 121, 191, 0.3);
    transition: all 0.1s ease;
  }
  #gallery-45 .cs-button-solid:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 12px rgba(25, 121, 191, 0.2);
  }
}
/* In Between - 600px */
@media only screen and (min-width: 37.5rem) {
  #gallery-45 .cs-image-group {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
  }
  #gallery-45 .cs-item {
    grid-column: span 6;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-45 .cs-item {
    grid-column: span 3;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #gallery-45 .cs-title,
  body.dark-mode #gallery-45 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #gallery-45 .cs-text {
    opacity: 0.8;
  }
}
/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #reviews-57 {
    padding: var(--sectionPadding);
  }
  #reviews-57 .cs-container {
    width: 100%;
    /* changes to 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    row-gap: clamp(3rem, 6vw, 4rem);
    /* 60px - 108px */
    column-gap: clamp(3.7rem, 8vw, 6.75rem);
  }
  #reviews-57 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
  }
  #reviews-57 .cs-text {
    margin-bottom: 2rem;
  }
  #reviews-57 .cs-review-item {
    margin-bottom: 1.5rem;
    padding: 1rem 0 1rem 1.5rem;
    position: relative;
    border-left: 0.3125rem solid var(--primaryLight);
    background: rgba(255, 186, 67, 0.05);
    border-radius: 0 0.5rem 0.5rem 0;
  }
  #reviews-57 .cs-stars {
    color: #ffba43;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
  }
  #reviews-57 .cs-review-text {
    /* 15px - 17px */
    font-size: clamp(15px, 5vw, 1.0625rem);
    line-height: 1.5em;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
    font-style: italic;
  }
  #reviews-57 .cs-name {
    font-size: 1.0625rem;
    font-weight: 700;
    margin: 0;
    display: block;
    color: var(--primary);
  }
  #reviews-57 .cs-button-solid {
    font-size: 1.25rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: var(--bodyTextColorWhite);
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #reviews-57 .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  #reviews-57 .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #reviews-57 .cs-button-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 30%, #2a8fd8 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  #reviews-57 .cs-button-solid:hover:before {
    left: 100%;
  }
  #reviews-57 .cs-button-solid:hover:after {
    opacity: 1;
  }
  #reviews-57 .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 8px rgba(25, 121, 191, 0.3);
    transition: all 0.1s ease;
  }
  #reviews-57 .cs-button-solid:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 12px rgba(25, 121, 191, 0.2);
  }
  #reviews-57 .cs-picture {
    width: 98%;
    margin: 0;
    position: relative;
    display: block;
    /* width divided by height 320/340 */
    aspect-ratio: 320/340;
    /* 8px - 12px */
    margin-left: clamp(0.5rem, 1vw, 0.75rem);
  }
  #reviews-57 .cs-picture:before {
    content: "";
    position: absolute;
    height: 12.125rem;
    width: 12.125rem;
    background: var(--primaryLight);
    opacity: 1;
    /* -8px to -12px */
    /* the calc function sets the clamp value to a negative number */
    top: calc(clamp(0.5rem, 0.6vw, 0.75em) * -1);
    right: calc(clamp(0.5rem, 0.6vw, 0.75em) * -1);
  }
  #reviews-57 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #reviews-57 .cs-container {
    max-width: 80rem;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
  }
  #reviews-57 .cs-content {
    text-align: left;
    align-items: flex-start;
  }
  #reviews-57 .cs-picture {
    /* 336px - 530px */
    width: clamp(21rem, 44vw, 33.125rem);
    /* 534px - 641px */
    height: clamp(33.375rem, 58.6vw, 40.0625rem);
    /* reset margin to account for the pseudo element square positioning */
    margin: 0.75rem 0.75rem 0 0;
    margin-right: 0;
    margin-bottom: 0;
    /* no longer need aspect ratio */
    aspect-ratio: initial;
    /* prevents flexbox from squishing it */
    flex: none;
    /* sends it to the right in the second position */
    order: 2;
  }
}
/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-pedigrees {
    padding: var(--sectionPadding);
    position: relative;
    /* Prevents overflow from the image going off screen */
    overflow: hidden;
  }
  #gallery-pedigrees .cs-container {
    width: 100%;
    max-width: 69rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #gallery-pedigrees .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #gallery-pedigrees .cs-image-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 16px - 20px */
    gap: clamp(1rem, 1.5vw, 1.25rem);
  }
  #gallery-pedigrees .cs-item {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    margin: 0;
    position: relative;
    display: block;
  }
  #gallery-pedigrees .cs-item:hover .cs-hover-box {
    opacity: 1;
  }
  #gallery-pedigrees .cs-item:hover .cs-icon {
    /* return to original position */
    transform: rotateY(0);
  }
  #gallery-pedigrees .cs-item:hover .cs-h3 {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #gallery-pedigrees .cs-item:hover .cs-hover-box-text {
    opacity: 1;
    /* Return to original position */
    transform: translateY(0);
  }
  #gallery-pedigrees .cs-picture {
    margin: auto;
    width: 100%;
    height: 100%;
    display: block;
    position: relative;
  }
  #gallery-pedigrees .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #gallery-pedigrees .cs-hover-box {
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(30, 36, 60, 0.95) 0%, rgba(25, 121, 191, 0.95) 100%);
    opacity: 0;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Prevents padding from contributing to height & width */
    box-sizing: border-box;
    /* Sets stage for 3d transform animation */
    perspective: 700px;
    top: 0;
    left: 0;
    z-index: 10;
    /* prevents mouse from being able to interact with these elements */
    pointer-events: none;
    transition: opacity 0.3s;
  }
  #gallery-pedigrees .cs-icon {
    /* 50px - 60px */
    width: clamp(3.125rem, 5vw, 3.75rem);
    height: clamp(3.125rem, 5vw, 3.75rem);
    /* 16px - 32px */
    margin-bottom: clamp(1rem, 5vw, 2rem);
    border-radius: 50%;
    background-color: #fff;
    outline: 0.5rem solid fade(#fff, 70%);
    /* Start with the icon box rotated 90deg */
    transform: rotateY(90deg);
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex: none;
    transition: transform 0.5s;
  }
  #gallery-pedigrees .cs-icon img {
    width: 1.25rem;
    height: 1.25rem;
  }
  #gallery-pedigrees .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 auto;
    max-width: 16.875rem;
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    /* make starting position down 10px and invisible */
    opacity: 0;
    transform: translateY(0.625rem);
    margin-bottom: 0.5rem;
    transition: opacity 0.3s, transform 0.3s ease-out;
    transition-delay: 0.1s;
  }
  #gallery-pedigrees .cs-hover-box-text {
    /* 13px - 16px */
    font-size: clamp(0.8125rem, 1vw, 1rem);
    line-height: 1.5em;
    margin: 0 auto;
    max-width: 16.875rem;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    /* make starting position down 10px and invisible */
    opacity: 0;
    transform: translateY(0.625rem);
    transition: opacity 0.3s, transform 0.3s ease-out;
    transition-delay: 0.2s;
  }
}
/* In Between - 600px */
@media only screen and (min-width: 37.5rem) {
  #gallery-pedigrees .cs-image-group {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 1fr;
  }
  #gallery-pedigrees .cs-item {
    grid-column: span 6;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-pedigrees .cs-item {
    grid-column: span 4;
  }
}
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero-1785 {
    /* Reduced padding to fit content in viewport */
    padding: clamp(6rem, 12vw, 10rem) 1rem;
    /* prevents the topper line from causing an overflow */
    overflow: hidden;
    position: relative;
    z-index: 1;
  }
  #hero-1785 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
  }
  #hero-1785 .cs-content {
    text-align: center;
    width: 100%;
    max-width: 56.25rem;
  }
  #hero-1785 .cs-title {
    /* 49px - 84px */
    font-size: clamp(3.0625rem, 6vw, 5.25rem);
    /* Prevent unnecessary line breaks on larger screens */
    max-width: 100%;
  }
  #hero-1785 .cs-title,
  #hero-1785 .cs-subtitle,
  #hero-1785 .cs-text {
    color: var(--bodyTextColorWhite);
  }
  #hero-1785 .cs-topper {
    color: #1979bf;
  }
  #hero-1785 .cs-text {
    margin-bottom: 2rem;
    text-align: center !important;
    width: 100%;
    max-width: none;
  }
  #hero-1785 .cs-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
  }
  #hero-1785 .cs-button-solid {
    font-size: 1.125rem;
    font-weight: 700;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 12.5rem;
    margin: 0;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  #hero-1785 .cs-button-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  #hero-1785 .cs-button-solid:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 0.5rem;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #hero-1785 .cs-button-solid:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
    background: linear-gradient(135deg, #2a8fd8 0%, var(--primaryLight) 30%, #2a8fd8 70%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
  }
  #hero-1785 .cs-button-solid:hover:before {
    left: 100%;
  }
  #hero-1785 .cs-button-solid:hover:after {
    opacity: 1;
  }
  #hero-1785 .cs-button-solid:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 8px rgba(25, 121, 191, 0.3);
    transition: all 0.1s ease;
  }
  #hero-1785 .cs-button-solid:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(25, 121, 191, 0.4), 0 0 12px rgba(25, 121, 191, 0.2);
  }
  #hero-1785 .cs-graphic {
    width: 100%;
    min-width: 120rem;
    height: auto;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
  }
  #hero-1785 .cs-graphic-dark {
    display: none;
  }
  #hero-1785 .cs-background {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
  }
  #hero-1785 .cs-background:before {
    /* Overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    /* prevents the cursor from interacting with it */
    pointer-events: none;
    opacity: 0.7;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #hero-1785 .cs-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
  }
}
/* Medium Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  #hero-1785 .cs-content {
    /* Allow text to use more horizontal space on medium-large screens */
    max-width: 59.375rem;
  }
}
/* Large Desktop - 1920px */
@media only screen and (min-width: 120rem) {
  #hero-1785 {
    /* Reduced padding for large screens to fit in viewport */
    padding: clamp(8rem, 10vw, 12rem) 1rem;
  }
  #hero-1785 .cs-content {
    /* Allow text to use more horizontal space on large screens */
    max-width: 68.75rem;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #hero-1785 .cs-background:before {
    opacity: 0.85;
  }
  body.dark-mode #hero-1785 .cs-graphic {
    display: none;
  }
  body.dark-mode #hero-1785 .cs-graphic-dark {
    display: block;
  }
}
/* ============================================ */
/*           Data Center Hero Enhanced         */
/* ============================================ */
/* ============================================ */
/*              Base Styles                    */
/* ============================================ */
/* Mobile - 0px */
@media only screen and (min-width: 0rem) {
  .hero-data-center-enhanced {
    /* Enhanced height for better visual impact */
    min-height: 100vh;
    padding: clamp(6rem, 12vw, 10rem) 1rem;
    overflow: hidden;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .hero-data-center-enhanced .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
    position: relative;
    z-index: 20; /* Ensure content is above background */
  }
  .hero-data-center-enhanced .cs-content {
    text-align: center;
    width: 100%;
    max-width: 56.25rem;
    position: relative;
    z-index: 25; /* Ensure text is above everything */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem; /* Even tighter spacing for mobile */
    padding-top: 0; /* Remove top padding entirely */
    margin-top: -4rem; /* Move everything up more for mobile */
  }
  /* ============================================ */
  /*              Text Elements                  */
  /* ============================================ */
  /* Base topper styles - applies to all screen sizes */
  .hero-data-center-enhanced .cs-topper {
    color: var(--primaryLight) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 0 !important;
    position: relative !important;
    top: -3rem !important; /* Move topper up more for mobile */
    z-index: 30 !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-align: center !important;
  }
  .hero-data-center-enhanced .cs-branding {
    margin-bottom: 0; /* Remove bottom margin since we're using gap */
    position: relative;
    top: -3rem; /* Move logo up more for mobile */
    z-index: 20; /* Logo behind topper text */
  }
  .hero-data-center-enhanced .cs-logo {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 20px rgba(25, 121, 191, 0.6)) drop-shadow(0 0 40px rgba(25, 121, 191, 0.4)) drop-shadow(0 0 60px rgba(25, 121, 191, 0.2)); /* Add blue glow effect */
  }
  .hero-data-center-enhanced .cs-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(25, 121, 191, 0.8)) drop-shadow(0 0 50px rgba(25, 121, 191, 0.6)) drop-shadow(0 0 70px rgba(25, 121, 191, 0.4)); /* Enhanced glow on hover */
  }
  .hero-data-center-enhanced .cs-title {
    /* 49px - 84px */
    font-size: clamp(3.0625rem, 6vw, 5.25rem);
    max-width: 100%;
    color: var(--bodyTextColorWhite);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0; /* Remove margin completely */
    line-height: 1.1;
    position: relative;
    top: -4rem; /* Move title up more for mobile */
  }
  .hero-data-center-enhanced .cs-subtitle {
    color: var(--bodyTextColorWhite);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0; /* Remove margin completely */
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: -3.5rem; /* Move subtitle up more for mobile */
  }
  .hero-data-center-enhanced .cs-text {
    color: var(--bodyTextColorWhite);
    margin-bottom: 1rem; /* Reduced margin further */
    text-align: center !important;
    width: 100%;
    max-width: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.3rem;
    font-weight: 900;
    line-height: 1.4;
    position: relative;
    top: -3rem; /* Move text up more for mobile */
  }
  /* ============================================ */
  /*              Call-to-Action                */
  /* ============================================ */
  .hero-data-center-enhanced .cs-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
    position: relative;
    top: 1.5rem; /* Move CTA button up slightly for mobile */
  }
  .hero-data-center-enhanced .cs-button-solid {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-align: center;
    text-decoration: none;
    min-width: 12.5rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0 1.5rem;
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.05);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  /* Secondary button styling */
  .hero-data-center-enhanced .cs-button-solid.cs-button2 {
    background: transparent;
    border: 2px solid var(--primaryLight);
    color: var(--primaryLight);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.2);
  }
  .hero-data-center-enhanced .cs-button-solid.cs-button2:hover {
    background: var(--primaryLight);
    color: var(--bodyTextColorWhite);
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.4);
  }
  /* ============================================ */
  /*              Background Elements            */
  /* ============================================ */
  /* Animated background positioning */
  .hero-data-center-enhanced .cs-background-animated {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
  }
  .hero-data-center-enhanced .hero__stage {
    position: relative;
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    overflow: hidden;
  }
  /* Mobile aspect ratio (default) */
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 430/930;
  }
  /* Desktop aspect ratio */
  /* Preserve original hero divider positioning */
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 1920/823;
    /* Ensure proper scaling for different display scaling factors */
    transform: scale(1);
    transform-origin: center center;
  }
}
@media only screen and (min-width: 0rem) {
  .hero-data-center-enhanced .hero__stage > picture,
  .hero-data-center-enhanced .hero__stage > picture > img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .hero-data-center-enhanced .hero__overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    contain: paint;
    will-change: transform, opacity;
    z-index: 10;
    /* Ensure perfect alignment with background */
    transform: scale(1);
    transform-origin: center center;
  }
  .hero-data-center-enhanced .hero__overlay svg {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
    /* Responsive scaling - no fixed scale values */
    transform: scale(1) !important;
    transform-origin: center center !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
  }
  .hero-data-center-enhanced .cs-graphic {
    width: 100%;
    min-width: 120rem;
    height: auto;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    left: 50%;
    z-index: 0;
    transform: translateX(-50%);
  }
  .hero-data-center-enhanced .cs-graphic-dark {
    display: none;
  }
}
/* ============================================ */
/*              Tablet Styles                   */
/* ============================================ */
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .hero-data-center-enhanced .cs-content {
    max-width: 59.375rem;
    gap: 1rem; /* Tighter spacing */
    padding-top: 0; /* No padding */
    margin-top: -4rem; /* Move everything up a bit more */
  }
  .hero-data-center-enhanced .cs-logo {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 25px rgba(25, 121, 191, 0.6)) drop-shadow(0 0 50px rgba(25, 121, 191, 0.4)) drop-shadow(0 0 75px rgba(25, 121, 191, 0.2)); /* Larger glow for tablet */
  }
  .hero-data-center-enhanced .cs-logo:hover {
    filter: drop-shadow(0 0 35px rgba(25, 121, 191, 0.8)) drop-shadow(0 0 60px rgba(25, 121, 191, 0.6)) drop-shadow(0 0 85px rgba(25, 121, 191, 0.4)); /* Enhanced glow on hover */
  }
  .hero-data-center-enhanced .cs-topper {
    font-size: 1.2rem !important;
    top: -2.5rem !important; /* Adjusted for tablet */
  }
  .hero-data-center-enhanced .cs-branding {
    top: -2.5rem; /* Move logo down to be between title and subtitle */
    z-index: 20;
  }
  .hero-data-center-enhanced .cs-title {
    top: -4rem; /* Adjusted for tablet */
  }
  .hero-data-center-enhanced .cs-subtitle {
    font-size: 1.3rem;
    max-width: 85%;
    top: -3.5rem; /* Adjusted for tablet */
  }
  .hero-data-center-enhanced .cs-text {
    top: -3rem; /* Adjusted for tablet */
  }
  .hero-data-center-enhanced .cs-button-group {
    top: 1.5rem; /* Move CTA button down a bit more on tablet */
  }
}
/* ============================================ */
/*              Desktop Styles                  */
/* ============================================ */
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  .hero-data-center-enhanced .cs-content {
    max-width: 59.375rem;
    gap: 0.75rem; /* Tighter gap between elements */
    margin-top: -5rem; /* Move everything up more on desktop */
  }
  .hero-data-center-enhanced .cs-topper {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    top: -0.25rem !important; /* Adjusted for desktop */
  }
  .hero-data-center-enhanced .cs-branding {
    top: -1rem; /* Better centered between topper and H1 */
    z-index: 20;
  }
  .hero-data-center-enhanced .cs-title {
    font-size: clamp(2rem, 3.5vw, 3.5rem) !important;
    top: -2rem; /* Move up even closer to logo */
    line-height: 1.1 !important;
    max-width: 90% !important;
    margin-bottom: 0 !important; /* Remove any margin */
  }
  .hero-data-center-enhanced .cs-subtitle {
    font-size: 1.4rem !important;
    max-width: 80% !important;
    top: -2.5rem; /* Move up closer to title */
    line-height: 1.2 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important; /* Remove any margin */
  }
  .hero-data-center-enhanced .cs-text {
    font-size: 1.2rem !important;
    top: -3rem; /* Move up closer to subtitle */
    line-height: 1.3 !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important; /* Remove any margin */
  }
  .hero-data-center-enhanced .cs-button-group {
    top: 3rem; /* Push down more for better spacing */
  }
  .hero-data-center-enhanced .cs-button-solid {
    padding: 0.75rem 3rem !important;
    line-height: 1.1 !important;
    font-size: 0.85rem !important;
    min-width: auto !important;
    max-width: none !important;
    white-space: nowrap !important;
  }
  /* Hero divider background to match next section */
  .hero-data-center-enhanced {
    background-color: #f7f7f7 !important; /* Match services-grid background */
  }
}
/* ============================================ */
/*              Large Desktop Styles            */
/* ============================================ */
/* Medium Desktop - 1200px */
@media only screen and (min-width: 75rem) {
  .hero-data-center-enhanced .cs-content {
    max-width: 59.375rem;
  }
}
/* Large Desktop - 1920px */
@media only screen and (min-width: 120rem) {
  .hero-data-center-enhanced {
    padding: clamp(8rem, 10vw, 12rem) 1rem;
  }
  .hero-data-center-enhanced .cs-content {
    max-width: 68.75rem;
  }
}
/* ============================================ */
/*              Dark Mode Support               */
/* ============================================ */
@media only screen and (min-width: 0rem) {
  body.dark-mode .hero-data-center-enhanced .cs-graphic {
    display: none;
  }
  body.dark-mode .hero-data-center-enhanced .cs-graphic-dark {
    display: block;
  }
}
/* ============================================ */
/*              Responsive Aspect Ratios        */
/* ============================================ */
@media only screen and (min-width: 64rem) and (max-width: 1023px) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 16/9; /* Standard widescreen */
  }
}
@media only screen and (min-width: 1024px) and (max-width: 1439px) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 1920/823; /* Desktop original */
  }
}
@media only screen and (min-width: 1440px) and (max-width: 1919px) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 21/9; /* Ultrawide */
  }
}
@media only screen and (min-width: 1920px) {
  .hero-data-center-enhanced .hero__stage {
    aspect-ratio: 1920/823; /* 4K and larger */
  }
}
/* ============================================ */
/*              High-DPI Display Support        */
/* ============================================ */
/* Specific fix for 2048x1152 resolution with 125% scaling */
@media only screen and (min-width: 64rem) and (max-width: 2048px) {
  .hero-data-center-enhanced .hero__stage {
    /* Adjust for specific resolution */
    max-width: 100vw;
    max-height: 100vh;
  }
  .hero-data-center-enhanced .hero__overlay {
    /* Ensure overlay matches exactly */
    max-width: 100vw;
    max-height: 100vh;
  }
}
/* High-DPI and scaling specific fixes */
@media only screen and (min-width: 64rem) and (min-resolution: 1.25dppx) {
  .hero-data-center-enhanced .hero__stage {
    /* Force exact pixel alignment for high-DPI displays */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
  .hero-data-center-enhanced .hero__overlay svg {
    /* Ensure SVG aligns perfectly with background */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
/* ============================================ */
/*              Animation Styles                */
/* ============================================ */
/* LED animation styles */
.led {
  transition: opacity 0.2s ease-in-out !important; /* Faster transitions */
  will-change: opacity; /* GPU acceleration */
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero__overlay * {
    animation: none !important;
    transition: none !important;
  }
}
/* ============================================ */
/*              Comparison Table                */
/* ============================================ */
/* Mobile - 0px */
@media only screen and (min-width: 0rem) {
  #comparison-table {
    padding: var(--sectionPadding);
    background-color: var(--grey-light);
  }
  #comparison-table .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #comparison-table .cs-content {
    text-align: center;
    width: 100%;
    max-width: 56.25rem;
    margin: auto;
    margin-bottom: 3rem;
  }
  #comparison-table .cs-topper {
    color: var(--primaryLight);
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: block;
  }
  #comparison-table .cs-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: center !important;
    max-width: 43.75rem;
    margin: 0 auto 1rem auto;
    color: var(--headerColor);
  }
  #comparison-table .cs-text {
    font-size: 1.1rem;
    line-height: 1.5em;
    text-align: center !important;
    width: 100%;
    max-width: 40.625rem;
    margin: 0 auto;
    color: var(--bodyTextColor);
  }
  /* Table Container */
  #comparison-table .cs-table-container {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 3rem;
    background: var(--white);
    border-radius: 0.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }
  /* Table Styles */
  #comparison-table .cs-comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
  }
  /* Header Styles */
  #comparison-table .cs-comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 700;
    color: var(--white);
    border-bottom: 2px solid var(--primaryLight);
  }
  #comparison-table .cs-feature-header {
    background: var(--primary);
    text-align: left;
    padding-left: 1.5rem;
  }
  #comparison-table .cs-crafted-header {
    background: var(--primaryLight);
  }
  /* Bookmark specific styles */
  #comparison-table .cs-bookmark {
    text-align: center;
  }
  /* IONOS specific styles */
  #comparison-table .cs-ionos {
    text-align: center;
  }
  #comparison-table .cs-canva-header {
    background: #ff6b35;
  }
  #comparison-table .cs-wix-header {
    background: #ff6b6b;
  }
  #comparison-table .cs-shopify-header {
    background: #96bf48;
  }
  #comparison-table .cs-squarespace-header {
    background: #000000;
  }
  #comparison-table .cs-webflow-header {
    background: #4353ff;
  }
  #comparison-table .cs-bigcommerce-header {
    background: #121118;
  }
  #comparison-table .cs-magento-header {
    background: #f26322;
  }
  #comparison-table .cs-woocommerce-header {
    background: #96588a;
  }
  #comparison-table .cs-hubspot-header {
    background: #ff7a59;
  }
  #comparison-table .cs-ionos-header {
    background: #003d82;
  }
  #comparison-table .cs-carrd-header {
    background: #ff6b6b;
  }
  #comparison-table .cs-bookmark-header {
    background: #ff6b35;
  }
  #comparison-table .cs-duda-header {
    background: #ff6b6b;
  }
  #comparison-table .cs-prestashop-header {
    background: #df0067;
  }
  #comparison-table .cs-pagecloud-header {
    background: #ff6b35;
  }
  #comparison-table .cs-opencart-header {
    background: #ff6b6b;
  }
  #comparison-table .cs-notion-header {
    background: #000000;
  }
  #comparison-table .cs-joomla-header {
    background: #5091cd;
  }
  #comparison-table .cs-framer-header {
    background: #0055ff;
  }
  #comparison-table .cs-drupal-header {
    background: #0678be;
  }
  #comparison-table .cs-wordpress-header {
    background: #4ecdc4;
  }
  #comparison-table .cs-godaddy-header {
    background: #1f2937;
  }
  #comparison-table .cs-weebly-header {
    background: #8b5cf6;
  }
  #comparison-table .cs-bigcommerce-header {
    background: #059669;
  }
  #comparison-table .cs-magento-header {
    background: #dc2626;
  }
  #comparison-table .cs-google-sites-header {
    background: #ea4335;
  }
  /* Row Styles */
  #comparison-table .cs-comparison-table td {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
  }
  #comparison-table .cs-feature {
    text-align: left;
    font-weight: 600;
    color: var(--headerColor);
    background: #f8fafc;
    padding-left: 1.5rem;
  }
  /* Cell Content */
  #comparison-table .cs-check {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 0.5rem;
  }
  #comparison-table .cs-x {
    color: #ef4444;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 0.5rem;
  }
  #comparison-table .cs-value {
    font-weight: 500;
    color: var(--bodyTextColor);
  }
  /* Table Footnote */
  #comparison-table .cs-table-footnote {
    margin-bottom: 2rem;
    padding: 0 1rem;
    text-align: center;
  }
  #comparison-table .cs-table-footnote p {
    font-size: 0.9rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    margin: 0;
    max-width: 60rem;
    margin-left: auto;
    margin-right: auto;
  }
  #comparison-table .cs-table-footnote strong {
    color: var(--primaryLight);
    font-weight: 700;
  }
  /* CTA Group */
  #comparison-table .cs-cta-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-top: 1rem; /* Add top margin to create space */
  }
  #comparison-table .cs-button-solid {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 3rem;
    text-align: center;
    text-decoration: none;
    min-width: 12.5rem;
    margin: 0;
    box-sizing: border-box;
    padding: 0 1.5rem;
    color: var(--bodyTextColorWhite);
    border-radius: 0.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    border: 2px solid transparent;
    background-clip: padding-box;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateY(0) scale(1);
    overflow: hidden;
  }
  #comparison-table .cs-button-solid.cs-primary {
    background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15);
  }
  #comparison-table .cs-button-solid.cs-secondary {
    background: transparent;
    border: 2px solid var(--primaryLight);
    color: var(--primaryLight);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.2);
  }
  #comparison-table .cs-button-solid.cs-secondary:hover {
    background: var(--primaryLight);
    color: var(--bodyTextColorWhite);
    box-shadow: 0 4px 16px rgba(25, 121, 191, 0.4);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #comparison-table .cs-comparison-table {
    font-size: 1.25rem;
  }
  #comparison-table .cs-comparison-table th,
  #comparison-table .cs-comparison-table td {
    padding: 1.25rem 1rem;
  }
  #comparison-table .cs-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #comparison-table .cs-comparison-table {
    font-size: 1.1rem;
  }
  #comparison-table .cs-comparison-table th,
  #comparison-table .cs-comparison-table td {
    padding: 1.5rem 1.25rem;
  }
  #comparison-table .cs-table-container {
    max-width: 70rem;
    margin: 0 auto 3rem auto;
  }
  #comparison-table .cs-table-footnote {
    margin-bottom: 2.5rem;
    padding: 0 2rem;
  }
  #comparison-table .cs-table-footnote p {
    font-size: 1.25rem;
  }
  #comparison-table .cs-cta-group {
    margin-top: 1.5rem;
  }
}
/* ============================================ */
/*              Trust Badges                    */
/* ============================================ */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.trust-badge img {
  width: 20px;
  height: 20px;
  opacity: 0.9;
  /* Remove the filter that was making icons look odd */
}

.trust-badge span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .trust-badges {
    gap: 0.5rem;
    margin-top: 1rem;
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-badge {
    padding: 0.35rem 0.5rem;
    min-height: 44px; /* Better touch target */
  }
  .trust-badge span {
    font-size: 0.75rem;
    line-height: 1.2;
  }
  .trust-badge img {
    width: 18px;
    height: 18px;
  }
}
/* Extra small mobile devices */
@media (max-width: 480px) {
  .trust-badges {
    gap: 0.4rem;
  }
  .trust-badge {
    padding: 0.3rem 0.4rem;
  }
  .trust-badge span {
    font-size: 0.7rem;
  }
  .trust-badge img {
    width: 16px;
    height: 16px;
  }
}
.website-speed-test {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  cursor: pointer;
  transition: all 0.3s ease;
}
.website-speed-test:hover {
  transform: scale(1.05);
}
@media (max-width: 768px) {
  .website-speed-test {
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    position: fixed !important;
    transform: translateZ(0);
    will-change: transform;
  }
}
@media (max-width: 480px) {
  .website-speed-test {
    bottom: 15px;
    right: 15px;
    z-index: 9999;
  }
}
@media (max-width: 1024px) {
  .website-speed-test {
    z-index: 9999 !important;
    position: fixed !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

.speed-test-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50px;
  padding: 15px 25px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.4);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}
.speed-test-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50px;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation: pulse-ripple 2s infinite;
  z-index: -1;
}
.speed-test-button:hover {
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
  transform: translateY(-2px);
}

@keyframes pulse-ripple {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 0.1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}
.speed-test-text {
  color: white;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
@media (max-width: 768px) {
  .speed-test-text {
    font-size: 12px;
  }
}

.speed-test-icon {
  font-size: 18px;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  .speed-test-icon {
    font-size: 16px;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.speed-test-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.speed-test-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  margin: 5% auto;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideInDesktop 0.3s ease;
}
@media (max-width: 768px) {
  .speed-test-modal-content {
    margin: 15% auto;
    padding: 30px 20px;
    width: 95%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    animation: slideIn 0.3s ease;
  }
}
@media (max-width: 480px) {
  .speed-test-modal-content {
    margin: 20% auto;
    padding: 25px 20px;
    width: 92%;
    top: 45%;
    transform: translate(-50%, -50%);
  }
}

@keyframes slideIn {
  from {
    transform: translate(-50%, -60%);
    opacity: 0;
  }
  to {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}
@keyframes slideInDesktop {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.speed-test-close {
  position: absolute;
  top: 15px;
  right: 20px;
  color: #666;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}
.speed-test-close:hover {
  color: #333;
}

.speed-test-header {
  text-align: center;
  margin-bottom: 30px;
}

.speed-test-title {
  font-size: 28px;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 10px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .speed-test-title {
    font-size: 24px;
  }
}

.speed-test-subtitle {
  font-size: 16px;
  color: #64748b;
  margin: 0;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .speed-test-subtitle {
    font-size: 14px;
  }
}

.speed-test-form .form-group {
  margin-bottom: 25px;
}
.speed-test-form .form-label {
  display: block;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 8px;
  font-size: 16px;
}
.speed-test-form .url-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: white;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.speed-test-form .url-input-wrapper:focus-within {
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}
.speed-test-form .url-prefix {
  background: #f7fafc;
  color: #64748b;
  padding: 15px 12px;
  font-weight: 600;
  border-right: 1px solid #e2e8f0;
  font-size: 14px;
}
.speed-test-form .url-input {
  border: none;
  outline: none;
  padding: 15px;
  font-size: 16px;
  width: 100%;
  background: transparent;
}
.speed-test-form .url-input::placeholder {
  color: #a0aec0;
}

.speed-test-submit {
  margin-top: 30px;
}

.speed-test-button-submit {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.speed-test-button-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}
.speed-test-button-submit:active {
  transform: translateY(0);
}
@media (max-width: 768px) {
  .speed-test-button-submit {
    padding: 16px 20px;
    font-size: 16px;
  }
}

.button-text {
  font-size: 18px;
  font-weight: 800;
}
@media (max-width: 768px) {
  .button-text {
    font-size: 16px;
  }
}

.button-subtext {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.9;
}
@media (max-width: 768px) {
  .button-subtext {
    font-size: 11px;
  }
}

.speed-test-privacy {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: #64748b;
  line-height: 1.4;
}
.speed-test-privacy .privacy-link {
  color: #667eea;
  text-decoration: underline;
  font-weight: 600;
}
.speed-test-privacy .privacy-link:hover {
  color: #5a67d8;
}
@media (max-width: 768px) {
  .speed-test-privacy {
    font-size: 13px;
  }
}

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #services-448 {
    padding: var(--sectionPadding);
  }
  #services-448 .cs-container {
    width: 100%;
    /* changes at 1280px at tablet */
    max-width: 34.375rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
  }
  #services-448 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #services-448 .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* 16px - 20px */
    column-gap: clamp(1rem, 1.5vw, 1.25rem);
    /* 24px - 60px */
    row-gap: clamp(1.5rem, 5vw, 3.75rem);
  }
  #services-448 .cs-item {
    list-style: none;
    width: 100%;
    max-width: 22.5rem;
    /* changes at desktop */
    padding-top: 9rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #services-448 .cs-item:hover .cs-picture img {
    transform: scale(1.2);
    opacity: 0.4;
  }
  #services-448 .cs-item:hover .cs-flex:before {
    opacity: 1;
  }
  #services-448 .cs-picture {
    width: 100%;
    /* changes at desktop */
    height: 15.625rem;
    border-radius: 0.5rem;
    background-color: var(--primary);
    /* clips the corners of the image */
    overflow: hidden;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  #services-448 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    /* makes it behave like a background image */
    object-fit: cover;
    /* positions top of image to the top of the container */
    object-position: top;
    transition: transform 0.9s, opacity 0.5s;
  }
  #services-448 .cs-flex {
    text-align: center;
    width: 88%;
    padding: 0 1.5rem 1.5rem 1.5rem;
    /* prevents padding and border from affecting height and width */
    box-sizing: border-box;
    border: 1px solid #dad9e3;
    border-radius: 0.75rem;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #services-448 .cs-flex:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  #services-448 .cs-flex:before {
    /* hover border box */
    content: "";
    background: transparent;
    /* prevents the mouse from interacting with it */
    pointer-events: none;
    border: 4px solid var(--primary);
    border-radius: 0.75rem;
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    opacity: 0;
    position: absolute;
    display: block;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    transition: opacity 0.5s;
  }
  #services-448 .cs-wrapper {
    /* 80px - 120px */
    width: clamp(5rem, 9.2vw, 7.5rem);
    height: clamp(5rem, 9.2vw, 7.5rem);
    /* 20px - 24px */
    margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
    /* we use the same clamp value for height & width, but multiple by -.5 so it will be a negative value, and be half of the height.  Negative margins pull things toward the element so they overlap them, in this case we want the .cs-wrapper to overlap .cs-flex by half its height, so we use the same clamp for height and half it for the margin top value */
    margin-top: calc(clamp(5rem, 9.2vw, 7.5rem) * -0.5);
    border-radius: 50%;
    border: 4px solid var(--primary);
    background-color: #fff;
    /* prevents border from affecting height and width */
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
  }
  #services-448 .cs-icon {
    /* 48px - 64px */
    width: clamp(3rem, 4.3vw, 4rem);
    height: auto;
    display: block;
  }
  #services-448 .cs-h3 {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 1.9vw, 1.5625rem);
    line-height: 1.2em;
    font-weight: 700;
    margin: 0 0 0.5rem 0;
    color: var(--headerColor);
  }
  #services-448 .cs-item-text {
    /* 14px - 16px */
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    line-height: 1.5em;
    font-weight: 400;
    /* 20px - 24px */
    margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
    color: var(--bodyTextColor);
  }
  #services-448 .cs-link {
    display: inline-block;
    background-color: var(--primaryLight);
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 1.2em;
    padding: 1rem 1.75rem;
    border-radius: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3);
    min-height: 44px;
    min-width: 44px;
  }
  #services-448 .cs-link:hover {
    background-color: #0d47a1;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25, 121, 191, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }
  #services-448 .cs-link:focus {
    outline: 3px solid var(--primary-alt);
    outline-offset: 3px;
  }
  #services-448 .cs-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(25, 121, 191, 0.3);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #services-448 .cs-container {
    max-width: 80rem;
  }
  #services-448 .cs-card-group {
    flex-direction: row;
  }
  #services-448 .cs-item {
    width: 47%;
  }
  #services-448 .cs-link {
    padding: 0.875rem 1.5rem;
  }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #services-448 .cs-card-group {
    flex-wrap: nowrap;
  }
  #services-448 .cs-item {
    width: 100%;
    /* 144px - 274px */
    padding-top: clamp(9rem, 17.5vw, 17.125rem);
  }
  #services-448 .cs-picture {
    /* 224px - 428px */
    height: clamp(14rem, 28vw, 26.75rem);
  }
}
/* ===========================================
   Managed vs DIY (component styles)
   =========================================== */
#managed-vs-diy {
  padding: var(--sectionPadding);
  position: relative;
  z-index: 1;
  text-align: center;
  /* Grid */
  /* Cards */
  /* Visual emphasis per side */
  /* Badge + VS pill */
  /* CTA */
  /* Tablet & up */
}
#managed-vs-diy .mv-container {
  max-width: clamp(64rem, 92vw, 80rem);
  margin: 0 auto;
}
#managed-vs-diy .mv-head {
  text-align: center;
  margin-inline: auto;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
}
#managed-vs-diy .mv-head .cs-title {
  max-width: 28ch;
  margin-inline: auto;
}
#managed-vs-diy .mv-explanation {
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(20, 23, 31, 0.1);
}
#managed-vs-diy .mv-explanation p {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.6;
  color: var(--bodyTextColor);
  margin: 0;
  opacity: 0.8;
}
#managed-vs-diy .mv-explanation p strong {
  color: var(--headerColor);
  font-weight: 700;
}
#managed-vs-diy .mv-explanation p em {
  color: var(--primary);
  font-style: italic;
  font-weight: 600;
}
#managed-vs-diy .mv-cost-breakdown {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 48rem) {
  #managed-vs-diy .mv-cost-breakdown {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}
#managed-vs-diy .mv-cost-item {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(20, 23, 31, 0.1);
  border-radius: 1rem;
  padding: 1.25rem;
  text-align: left;
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  line-height: 1.5;
  /* First item (DIY) gets a subtle red tint */
  /* Second item (Managed) gets a subtle blue tint */
}
#managed-vs-diy .mv-cost-item strong {
  color: var(--headerColor);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
#managed-vs-diy .mv-cost-item .mv-total-cost {
  font-weight: 800;
  font-size: 1.1em;
  color: #dc2626; /* red-600 */
}
#managed-vs-diy .mv-cost-item .mv-total-cost.managed {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primaryLight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
#managed-vs-diy .mv-cost-item:first-child {
  border-color: rgba(220, 38, 38, 0.2);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.03), rgba(255, 255, 255, 0.8));
}
#managed-vs-diy .mv-cost-item:last-child {
  border-color: color-mix(in srgb, var(--primary) 20%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 5%, transparent), rgba(255, 255, 255, 0.8));
}
#managed-vs-diy .mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  justify-items: center;
}
#managed-vs-diy .mv-card {
  background: #fff;
  border: 1px solid rgba(20, 23, 31, 0.08);
  border-radius: 1.5rem;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease, box-shadow 0.3s ease;
  max-width: 400px;
  width: 100%;
}
#managed-vs-diy .mv-card.mv-in {
  transform: translateY(0);
  opacity: 1;
}
#managed-vs-diy .mv-card .mv-card-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  justify-content: center;
}
#managed-vs-diy .mv-card .mv-title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}
#managed-vs-diy .mv-card .mv-card-title {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.25;
  margin: 0;
  color: var(--headerColor);
  font-weight: 800;
  text-align: center;
}
#managed-vs-diy .mv-card .mv-subtitle {
  font-size: clamp(1.25rem, 2.2vw, 1.75rem);
  line-height: 1.2;
  margin: 0.5rem 0 0 0;
  font-weight: 700;
  text-align: center;
  color: var(--primaryLight);
  background: linear-gradient(135deg, var(--primaryLight), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 3px 6px rgba(25, 121, 191, 0.3);
  letter-spacing: 0.02em;
}
#managed-vs-diy .mv-card .mv-subtitle .mv-emoji {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: none;
  margin-right: 0.5rem;
  font-size: 1.1em;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}
#managed-vs-diy .mv-card .mv-subtitle.boring {
  color: #6b7280;
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: none;
  font-weight: 500;
  opacity: 0.8;
  letter-spacing: normal;
}
#managed-vs-diy .mv-card .mv-subtitle.boring .mv-emoji {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  text-shadow: none;
  margin-right: 0.5rem;
  font-size: 1.1em;
  vertical-align: middle;
  display: inline-block;
  line-height: 1;
}
#managed-vs-diy .mv-card .mv-price-line {
  font-size: clamp(0.875rem, 1.4vw, 1rem);
  line-height: 1.4;
  margin: 0.75rem 0 0 0;
  font-weight: 600;
  text-align: center;
  color: var(--bodyTextColor);
  opacity: 0.9;
  letter-spacing: 0.01em;
  /* Make the managed pricing line more prominent */
  /* Make the DIY pricing line more muted */
}
.mv-card.is-managed #managed-vs-diy .mv-card .mv-price-line {
  color: var(--primary);
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primaryLight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mv-card.is-diy #managed-vs-diy .mv-card .mv-price-line {
  color: #6b7280;
  font-weight: 500;
  opacity: 0.8;
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(20, 23, 31, 0.1);
  border-radius: 0.75rem;
  padding: 1rem;
  margin: 1rem 0 0 0;
  text-align: left;
  font-size: clamp(0.85rem, 1.3vw, 0.95rem);
  line-height: 1.5;
  /* Managed card styling */
  /* DIY card styling */
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline strong {
  color: var(--headerColor);
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline .mv-total-cost {
  font-weight: 800;
  font-size: 1.1em;
  color: #dc2626; /* red-600 */
}
#managed-vs-diy .mv-card .mv-cost-breakdown-inline .mv-total-cost.managed {
  color: var(--primary);
  background: linear-gradient(135deg, var(--primary), var(--primaryLight));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mv-card.is-managed #managed-vs-diy .mv-card .mv-cost-breakdown-inline {
  border-color: color-mix(in srgb, var(--primary) 20%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 5%, transparent), rgba(255, 255, 255, 0.9));
}
.mv-card.is-diy #managed-vs-diy .mv-card .mv-cost-breakdown-inline {
  border-color: rgba(220, 38, 38, 0.2);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.03), rgba(255, 255, 255, 0.9));
}
#managed-vs-diy .mv-card .mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.75rem;
}
#managed-vs-diy .mv-card .mv-li {
  display: grid;
  grid-template-columns: 1.25rem 1fr;
  align-items: start;
  gap: 0.5rem;
  color: var(--bodyTextColor);
  font-size: var(--bodyFontSize);
  line-height: 1.55;
  text-align: left;
}
#managed-vs-diy .mv-card .mv-icon {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.375rem;
  background: var(--mv-yes);
  -webkit-mask: var(--mv-check) center/70% no-repeat;
  mask: var(--mv-check) center/70% no-repeat;
  opacity: 0.95;
}
#managed-vs-diy .mv-card .is-no .mv-icon {
  background: var(--mv-no);
  -webkit-mask: var(--mv-x) center/70% no-repeat;
  mask: var(--mv-x) center/70% no-repeat;
}
#managed-vs-diy .mv-card.is-managed {
  border-color: color-mix(in srgb, var(--primary) 26%, #ffffff);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--primary) 18%, transparent);
  position: relative;
}
#managed-vs-diy .mv-card.is-managed::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--primaryLight));
  border-radius: 1.5rem;
  z-index: -1;
  opacity: 0.1;
}
#managed-vs-diy .mv-card.is-diy {
  border-color: rgba(20, 23, 31, 0.12);
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.035) 0%, rgba(2, 6, 23, 0.02) 100%), #fff;
}
#managed-vs-diy .mv-badge {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--bodyTextColorWhite);
  background: var(--primary);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--primary) 30%, transparent);
}
#managed-vs-diy .mv-badge.alt {
  background: #64748b; /* slate */
  color: #fff;
}
#managed-vs-diy .mv-divider {
  display: grid;
  place-items: center;
}
#managed-vs-diy .mv-pill {
  display: inline-grid;
  place-items: center;
  min-width: 3rem;
  height: 3rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: radial-gradient(70% 70% at 30% 30%, color-mix(in srgb, var(--primary) 38%, transparent), transparent), #0b1020;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  transform: scale(0.9);
  transition: transform 0.4s ease;
  position: relative;
}
#managed-vs-diy .mv-pill::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--primary), var(--primaryLight));
  border-radius: 999px;
  z-index: -1;
  opacity: 0.3;
}
#managed-vs-diy .mv-pop .mv-pill {
  transform: scale(1);
}
#managed-vs-diy .mv-cta {
  text-align: center;
  margin-top: clamp(1rem, 3vw, 2rem);
}
#managed-vs-diy .mv-btn {
  --btnH: 3.125rem;
  display: inline-grid;
  place-items: center;
  height: var(--btnH);
  padding: 0 1.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primaryLight) 0%, #2a8fd8 50%, var(--primaryLight) 100%);
  color: var(--bodyTextColorWhite);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(25, 121, 191, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  transition: transform 0.15s ease, box-shadow 0.2s ease, filter 0.2s ease;
  position: relative;
  overflow: hidden;
}
#managed-vs-diy .mv-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
  z-index: 1;
}
#managed-vs-diy .mv-btn:hover {
  transform: translateY(-2px) scale(1.02);
  filter: brightness(1.02);
  box-shadow: 0 8px 24px rgba(25, 121, 191, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 12px rgba(25, 121, 191, 0.2);
}
#managed-vs-diy .mv-btn:hover::before {
  left: 100%;
}
#managed-vs-diy .mv-btn:active {
  transform: translateY(1px) scale(0.98);
}
@media (min-width: 48rem) {
  #managed-vs-diy .mv-grid {
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-items: stretch;
  }
  #managed-vs-diy .mv-card {
    max-width: none;
  }
}

/* Dark theme */
body.dark-mode #managed-vs-diy {
  background: linear-gradient(180deg, #0b1020 0%, #0a0f1a 100%);
}
body.dark-mode #managed-vs-diy .mv-explanation {
  border-top-color: rgba(255, 255, 255, 0.1);
}
body.dark-mode #managed-vs-diy .mv-explanation p {
  color: #ffffff !important;
  opacity: 1 !important;
}
body.dark-mode #managed-vs-diy .mv-explanation p strong {
  color: #ffffff !important;
}
body.dark-mode #managed-vs-diy .mv-explanation p em {
  color: var(--primaryLight) !important;
  font-style: italic;
  font-weight: 600;
}
body.dark-mode #managed-vs-diy .mv-cost-item {
  background: rgba(15, 23, 42, 0.8);
  border-color: rgba(255, 255, 255, 0.1);
  /* First item (DIY) gets a subtle red tint */
  /* Second item (Managed) gets a subtle blue tint */
}
body.dark-mode #managed-vs-diy .mv-cost-item strong {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-cost-item:first-child {
  border-color: rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(15, 23, 42, 0.8));
}
body.dark-mode #managed-vs-diy .mv-cost-item:last-child {
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, transparent), rgba(15, 23, 42, 0.8));
}
body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--bodyTextColorWhite);
  /* Managed card styling */
  /* DIY card styling */
}
body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline strong {
  color: var(--bodyTextColorWhite);
}
.mv-card.is-managed body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline {
  border-color: color-mix(in srgb, var(--primary) 30%, transparent);
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary) 8%, transparent), rgba(15, 23, 42, 0.9));
}
.mv-card.is-diy body.dark-mode #managed-vs-diy .mv-cost-breakdown-inline {
  border-color: rgba(220, 38, 38, 0.3);
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.05), rgba(15, 23, 42, 0.9));
}
body.dark-mode #managed-vs-diy .mv-card {
  background: #0f172a;
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.5);
}
body.dark-mode #managed-vs-diy .mv-card .mv-card-title {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-card .mv-subtitle {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-card .mv-price-line {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-card .mv-li {
  color: color-mix(in srgb, #ffffff 82%, transparent);
}
body.dark-mode #managed-vs-diy .mv-card .mv-cost-breakdown-inline strong {
  color: var(--bodyTextColorWhite);
}
body.dark-mode #managed-vs-diy .mv-card.is-managed {
  border-color: color-mix(in srgb, var(--primary) 35%, #0f172a);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--primary) 30%, transparent);
}
body.dark-mode #managed-vs-diy .mv-card.is-diy {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.06) 0%, rgba(2, 6, 23, 0.35) 100%), #0f172a;
  border-color: rgba(255, 255, 255, 0.07);
}

/* ============== portfolio-3cards ============== */
.p3c {
  padding: var(--sectionPadding);
}
.p3c .cs-content {
  text-align: center;
  width: 100%;
  max-width: 56.25rem;
  margin: auto;
  margin-bottom: 3rem;
}
.p3c .cs-topper {
  color: var(--primaryLight);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}
.p3c .cs-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2em;
  text-align: center !important;
  max-width: 43.75rem;
  margin: 0 auto 1rem auto;
  color: var(--headerColor);
}
.p3c .cs-text {
  font-size: 1.1rem;
  line-height: 1.5em;
  text-align: center !important;
  width: 100%;
  max-width: 40.625rem;
  margin: 0 auto;
  color: var(--bodyTextColor);
}
.p3c .p3c-row {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(1.75rem, 4vw, 3rem);
}
.p3c .p3c-row:not(:last-child) {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}
@media (max-width: 900px) {
  .p3c .p3c-row {
    grid-template-columns: 1fr;
  }
}
.p3c .p3c-media {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}
.p3c .p3c-media img {
  display: block;
  width: 100%;
  height: auto;
}
.p3c .p3c-media .p3c-badge {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.875rem;
  line-height: 1;
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  user-select: none;
}
.p3c .p3c-copy .p3c-title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--headerColor);
  margin: 0 0 0.5rem 0;
}
.p3c .p3c-copy .p3c-lede {
  margin: 0 0 1rem 0;
  color: var(--bodyTextColor);
  max-width: 48ch;
}
.p3c .p3c-copy .p3c-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0.5rem 0 0 0;
}
.p3c .p3c-copy .p3c-meta {
  margin: 0.6rem 0 0 0;
  font-size: 0.9rem;
  color: color-mix(in oklab, var(--bodyTextColor) 80%, black 20%);
  opacity: 0.8;
}
.p3c .p3c-outline {
  background: transparent;
  color: var(--headerColor);
  border: 2px solid currentColor;
}
[data-theme=dark] .p3c .p3c-copy .p3c-meta, .dark .p3c .p3c-copy .p3c-meta {
  color: color-mix(in oklab, var(--bodyTextColorWhite) 70%, black 30%);
}
[data-theme=dark] .p3c .p3c-outline, .dark .p3c .p3c-outline {
  color: var(--bodyTextColorWhite);
  border-color: currentColor;
}

/* Nana Betty Components */
/* ============================================ */
/*           Nana Betty Hero                    */
/* ============================================ */
/* Mobile - 0px */
@media only screen and (min-width: 0rem) {
  .hero-nanabetty {
    min-height: 65vh;
    padding: clamp(5rem, 10vw, 8rem) 1rem clamp(4.5rem, 9vw, 7.5rem) 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: visible;
  }
  .hero-nanabetty__image {
    position: absolute;
    top: clamp(5rem, 10vw, 7rem);
    right: -3%;
    width: 30%;
    max-width: 220px;
    height: auto;
    z-index: 5;
    opacity: 0.15;
    pointer-events: none;
    overflow: visible;
    padding-top: 0;
  }
  .hero-nanabetty__image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
    display: block;
    max-height: 75vh;
  }
  .hero-nanabetty .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    position: relative;
    z-index: 20;
  }
  .hero-nanabetty .cs-content {
    text-align: center;
    width: 100%;
    max-width: 56.25rem;
    margin: auto;
    position: relative;
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .hero-nanabetty .cs-topper {
    color: var(--primary-light);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
  }
  .hero-nanabetty .cs-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--bodyTextColorWhite);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 0;
    line-height: 1.1;
  }
  .hero-nanabetty .cs-subtitle {
    color: var(--bodyTextColorWhite);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: clamp(1.25rem, 2vw, 1.55rem);
    font-weight: 400;
    margin-bottom: 0;
    max-width: 90%;
  }
  .hero-nanabetty .cs-text {
    color: var(--bodyTextColorWhite);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: clamp(1.25rem, 1.5vw, 1.35rem);
    font-weight: 400;
    line-height: 1.5;
    max-width: 90%;
  }
  .hero-nanabetty .cs-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }
  .hero-nanabetty .cs-button-solid {
    background: var(--primary-light);
    color: var(--white);
    border: none;
  }
  .hero-nanabetty .cs-button-solid:hover {
    background: #c73528;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  .hero-nanabetty {
    padding: clamp(6rem, 7.5vw, 9rem) 1rem;
  }
  .hero-nanabetty__image {
    right: 1%;
    top: 0;
    width: 20%;
    max-width: 260px;
    opacity: 0.2;
    overflow: visible;
    padding-top: clamp(3rem, 6vw, 5rem);
  }
  .hero-nanabetty__image img {
    object-position: center top;
    max-height: 80vh;
  }
  .hero-nanabetty .cs-content {
    gap: 1.5rem;
  }
  .hero-nanabetty .cs-topper {
    font-size: 1.3rem;
  }
  .hero-nanabetty .cs-subtitle {
    font-size: 1.4rem;
    max-width: 80%;
  }
  .hero-nanabetty .cs-text {
    font-size: 1.2rem;
    max-width: 80%;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode .hero-nanabetty {
    background-color: var(--dark);
  }
}
/* ============================================ */
/*           Value Proposition                  */
/* ============================================ */
#value-proposition {
  padding: var(--sectionPadding);
  background-color: var(--white);
}
#value-proposition .cs-container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0 1rem;
}
#value-proposition .cs-content {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
}
#value-proposition .cs-content .cs-topper,
#value-proposition .cs-content .cs-title,
#value-proposition .cs-content .cs-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#value-proposition .cs-card-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
#value-proposition .cs-item {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
#value-proposition .cs-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border-top-color, var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#value-proposition .cs-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#value-proposition .cs-item:hover::before {
  transform: scaleX(1);
}
#value-proposition .cs-h3 {
  font-size: clamp(1.25rem, 2vw, 1.5625rem);
  line-height: 1.2em;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  font-weight: bold;
}
#value-proposition .cs-item-text {
  font-size: 1.25rem;
  line-height: 1.5em;
  margin: 0;
  color: var(--bodyTextColor);
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #value-proposition .cs-card-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #value-proposition .cs-card-group {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ============================================ */
/*           Flavors Grid                       */
/* ============================================ */
#flavors-grid {
  padding: var(--sectionPadding);
  background-color: var(--grey-light);
}
#flavors-grid .cs-container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0 1rem;
}
#flavors-grid .cs-content {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
}
#flavors-grid .cs-content .cs-topper,
#flavors-grid .cs-content .cs-title,
#flavors-grid .cs-content .cs-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#flavors-grid .cs-card-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 47.9375rem) {
  #flavors-grid .cs-card-group {
    gap: 1.5rem;
  }
}
#flavors-grid .cs-item {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
#flavors-grid .cs-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--border-top-color, var(--primary-light));
  transform: scaleX(0);
  transition: transform 0.3s ease;
  z-index: 2;
}
#flavors-grid .cs-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#flavors-grid .cs-item:hover::before {
  transform: scaleX(1);
}
#flavors-grid .cs-item:hover .cs-link {
  transform: translateX(4px);
}
#flavors-grid .cs-item:hover .cs-product-image {
  opacity: 0;
  transform: scale(1.05);
}
#flavors-grid .cs-item:hover .cs-packaging-image {
  opacity: 1;
  transform: scale(1.02);
}
#flavors-grid .cs-image-wrapper {
  width: 100%;
  height: 0;
  padding-bottom: 75%;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.02) 100%);
  border-radius: 1rem 1rem 0 0;
  margin-bottom: 0;
  isolation: isolate;
}
#flavors-grid .cs-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
#flavors-grid .cs-item:hover .cs-image-wrapper::after {
  opacity: 1;
}
#flavors-grid .cs-product-picture,
#flavors-grid .cs-packaging-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#flavors-grid .cs-product-image,
#flavors-grid .cs-packaging-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform, opacity;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
#flavors-grid .cs-packaging-image {
  opacity: 0;
  object-fit: contain;
}
#flavors-grid .cs-flavor-tagline {
  font-style: italic;
  color: var(--grey-dark);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
}
#flavors-grid .cs-h3 {
  font-size: clamp(1.25rem, 2vw, 1.5625rem);
  line-height: 1.2em;
  margin: 0 0 0.5rem 0;
  color: var(--headerColor);
  font-weight: bold;
}
#flavors-grid .cs-item-text {
  font-size: 1.25rem;
  line-height: 1.5em;
  margin: 0 0 1rem 0;
  color: var(--bodyTextColor);
}
#flavors-grid .cs-nutrition {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--grey);
  font-size: 0.875rem;
  color: var(--grey-dark);
}
#flavors-grid .cs-item .cs-h3,
#flavors-grid .cs-item .cs-flavor-tagline,
#flavors-grid .cs-item .cs-item-text,
#flavors-grid .cs-item .cs-nutrition,
#flavors-grid .cs-item .cs-link {
  padding-left: 2rem;
  padding-right: 2rem;
}
#flavors-grid .cs-item .cs-h3 {
  padding-top: 2rem;
  padding-bottom: 0;
}
#flavors-grid .cs-item .cs-flavor-tagline {
  padding-top: 0;
  padding-bottom: 0;
}
#flavors-grid .cs-item .cs-item-text {
  padding-top: 0;
  padding-bottom: 0;
}
#flavors-grid .cs-item .cs-nutrition {
  padding-top: 1rem;
  padding-bottom: 0;
}
#flavors-grid .cs-item .cs-link {
  padding-top: 0;
  padding-bottom: 2rem;
}
#flavors-grid .cs-link {
  text-decoration: none;
  color: var(--primary-light);
  font-weight: 700;
  margin-top: auto;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
#flavors-grid .cs-link::after {
  content: "→";
  transition: transform 0.3s ease;
}
#flavors-grid .cs-link:hover {
  color: #c73528;
}
#flavors-grid .cs-link:hover::after {
  transform: translateX(4px);
}
#flavors-grid .cs-button-wrapper {
  text-align: center;
  margin-top: 3rem;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #flavors-grid .cs-card-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  #flavors-grid .cs-image-wrapper {
    padding-bottom: 70%;
  }
  #flavors-grid .cs-item .cs-h3,
  #flavors-grid .cs-item .cs-flavor-tagline,
  #flavors-grid .cs-item .cs-item-text,
  #flavors-grid .cs-item .cs-nutrition,
  #flavors-grid .cs-item .cs-link {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  #flavors-grid .cs-item .cs-h3 {
    padding-top: 2.5rem;
  }
  #flavors-grid .cs-item .cs-link {
    padding-bottom: 2.5rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #flavors-grid .cs-card-group {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
  #flavors-grid .cs-card-group .cs-item:nth-child(4),
  #flavors-grid .cs-card-group .cs-item:nth-child(5) {
    grid-column: span 1;
  }
  #flavors-grid .cs-image-wrapper {
    padding-bottom: 65%;
  }
  #flavors-grid .cs-item .cs-h3,
  #flavors-grid .cs-item .cs-flavor-tagline,
  #flavors-grid .cs-item .cs-item-text,
  #flavors-grid .cs-item .cs-nutrition,
  #flavors-grid .cs-item .cs-link {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  #flavors-grid .cs-item .cs-h3 {
    padding-top: 2.5rem;
    font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  }
  #flavors-grid .cs-item .cs-link {
    padding-bottom: 2.5rem;
  }
}
/* ============================================ */
/*           Meet Nana Betty                    */
/* ============================================ */
@media only screen and (min-width: 0rem) {
  #meet-nana-betty {
    padding: var(--sectionPadding);
    background-color: var(--grey-light);
  }
  #meet-nana-betty .cs-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 1rem;
  }
  #meet-nana-betty .cs-flex-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  #meet-nana-betty .cs-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  #meet-nana-betty .cs-content .cs-topper,
  #meet-nana-betty .cs-content .cs-title,
  #meet-nana-betty .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #meet-nana-betty .cs-image-wrapper {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
  #meet-nana-betty .cs-image-wrapper .cs-picture {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1/1;
  }
  #meet-nana-betty .cs-image-wrapper .cs-picture:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  }
  #meet-nana-betty .cs-image-wrapper .cs-picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
  }
  #meet-nana-betty .cs-topper {
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  #meet-nana-betty .cs-title {
    margin-bottom: 1.5rem;
  }
  #meet-nana-betty .cs-text {
    margin-bottom: 1.5rem;
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
    line-height: 1.6;
    color: var(--bodyTextColor);
  }
  #meet-nana-betty .cs-button-wrapper {
    text-align: center;
    margin-top: 1rem;
  }
  #meet-nana-betty .cs-button-solid {
    display: inline-block;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #meet-nana-betty .cs-flex-group {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    text-align: left;
  }
  #meet-nana-betty .cs-content {
    flex: 1;
    text-align: left;
    max-width: none;
  }
  #meet-nana-betty .cs-content .cs-button-wrapper {
    text-align: center;
  }
  #meet-nana-betty .cs-content .cs-button-solid {
    display: inline-block;
  }
  #meet-nana-betty .cs-image-wrapper {
    flex: 0 0 auto;
    width: 35%;
    max-width: 320px;
    margin: 0;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #meet-nana-betty .cs-flex-group {
    gap: 4rem;
  }
  #meet-nana-betty .cs-image-wrapper {
    width: 30%;
    max-width: 350px;
  }
}
/* ============================================ */
/*           Where to Find Us                   */
/* ============================================ */
@media only screen and (min-width: 0rem) {
  #where-to-find-us {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #where-to-find-us .cs-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 1rem;
  }
  #where-to-find-us .cs-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
  }
  #where-to-find-us .cs-content .cs-topper,
  #where-to-find-us .cs-content .cs-title,
  #where-to-find-us .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #where-to-find-us .cs-topper {
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  #where-to-find-us .cs-text {
    margin-bottom: 1.5rem;
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
    line-height: 1.6;
  }
  #where-to-find-us .cs-location-info {
    margin: 2rem 0;
    padding: 2rem;
    background: var(--grey-light);
    border-radius: 1rem;
    text-align: left;
    border-left: 4px solid var(--primary-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #where-to-find-us .cs-location-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  }
  #where-to-find-us .cs-location-info p {
    margin: 0.75rem 0;
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--bodyTextColor);
  }
  #where-to-find-us .cs-location-info p strong {
    color: var(--headerColor);
    font-weight: 700;
  }
  #where-to-find-us .cs-location-info .cs-location-map {
    width: 100%;
    margin: 1.5rem 0 0 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 66.67%;
    height: 0;
    background: var(--grey-light);
  }
  #where-to-find-us .cs-location-info .cs-location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  #where-to-find-us .cs-packaging-preview {
    margin: 2.5rem 0;
    padding: 2rem 1rem;
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.5) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  #where-to-find-us .cs-packaging-hint {
    font-size: 0.875rem;
    color: var(--grey-dark);
    font-style: italic;
    margin: 0 0 1.25rem 0;
    text-align: center;
  }
  #where-to-find-us .cs-packaging-mini-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin: 0;
    padding: 0;
  }
  #where-to-find-us .cs-packaging-mini-item {
    flex: 0 0 calc(18% - 0.6rem);
    max-width: 100px;
    opacity: 0.85;
    transition: all 0.3s ease;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    padding: 0.5rem;
  }
  #where-to-find-us .cs-packaging-mini-item:hover {
    opacity: 1;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    z-index: 1;
  }
  #where-to-find-us .cs-packaging-mini-item picture {
    display: block;
    width: 100%;
    height: auto;
  }
  #where-to-find-us .cs-packaging-mini-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0.25rem;
  }
  #where-to-find-us .cs-button-solid {
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #where-to-find-us .cs-packaging-preview {
    padding: 2.5rem 2rem;
  }
  #where-to-find-us .cs-packaging-hint {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
  #where-to-find-us .cs-packaging-mini-grid {
    gap: 1rem;
  }
  #where-to-find-us .cs-packaging-mini-item {
    flex: 0 0 calc(18% - 0.8rem);
    max-width: 120px;
    padding: 0.75rem;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  #where-to-find-us .cs-packaging-mini-item {
    max-width: 140px;
    padding: 1rem;
  }
}
/* ============================================ */
/*           Recipes Preview                    */
/* ============================================ */
#recipes-preview {
  padding: var(--sectionPadding);
  background-color: var(--grey-light);
}
#recipes-preview .cs-container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0 1rem;
}
#recipes-preview .cs-content {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
}
#recipes-preview .cs-content .cs-topper,
#recipes-preview .cs-content .cs-title,
#recipes-preview .cs-content .cs-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#recipes-preview .cs-card-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
#recipes-preview .cs-item {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
#recipes-preview .cs-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}
#recipes-preview .cs-item:hover .cs-picture img {
  transform: scale(1.05);
}
#recipes-preview .cs-item:hover .cs-link {
  color: #c73528;
  transform: translateX(4px);
}
#recipes-preview .cs-picture {
  display: block;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4/3;
}
#recipes-preview .cs-picture img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}
#recipes-preview .cs-h3 {
  font-size: clamp(1.25rem, 2vw, 1.5625rem);
  line-height: 1.2em;
  margin: 1rem 1.5rem 0.5rem;
  color: var(--headerColor);
  font-weight: bold;
}
#recipes-preview .cs-item-text {
  font-size: 1.25rem;
  line-height: 1.5em;
  margin: 0 1.5rem 1.5rem;
  color: var(--bodyTextColor);
}
#recipes-preview .cs-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 1.5rem 1.5rem;
  text-decoration: none;
  color: var(--primary-light);
  font-weight: 700;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}
#recipes-preview .cs-link::after {
  content: "→";
  transition: transform 0.3s ease;
}
#recipes-preview .cs-link:hover {
  color: #c73528;
}
#recipes-preview .cs-link:hover::after {
  transform: translateX(4px);
}
#recipes-preview .cs-button-wrapper {
  text-align: center;
  margin-top: 3rem;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #recipes-preview .cs-card-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #recipes-preview .cs-card-group {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ============================================ */
/*           Nana Medallion / Stamp             */
/* ============================================ */
.nana-medallion {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  isolation: isolate;
  margin-bottom: 1.5rem; /* Space for seal text below */
}

.nana-medallion__ring {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  padding: 4px; /* thickness of gradient ring */
  background: linear-gradient(135deg, #ff4b3a, #ffb347, #1b2a5a);
  display: flex;
  align-items: center;
  justify-content: center;
}

.nana-medallion__seal-text {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  font-weight: 700;
  color: #1b2a5a;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  z-index: 10;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.nana-medallion__inner {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.nana-medallion img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Sizes */
.nana-medallion--sm {
  width: 72px;
  height: 72px;
}
.nana-medallion--sm .nana-medallion__seal-text {
  font-size: 0.5rem;
  bottom: -20px;
}

.nana-medallion--md {
  width: 112px;
  height: 112px;
}
.nana-medallion--md .nana-medallion__seal-text {
  font-size: 0.65rem;
  bottom: -25px;
}

.nana-medallion--lg {
  width: 180px;
  height: 180px;
}
.nana-medallion--lg .nana-medallion__seal-text {
  font-size: 0.9rem;
  bottom: -32px;
}

/* Seal variant - using certificate-excellence.svg */
.nana-medallion--seal {
  position: relative;
  display: inline-block;
  transform: rotate(-8deg); /* Diagonal rotation */
  transition: transform 0.3s ease, filter 0.3s ease;
  /* Certificate wrapper */
  /* Certificate SVG */
  /* Face overlay in center of certificate */
  /* Certificate SVG: 360x512, inner circle center: (182.71, 176.83), radius: 103.95 */
}
.nana-medallion--seal .nana-medallion__certificate-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nana-medallion--seal .nana-medallion__certificate {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.15));
}
.nana-medallion--seal .nana-medallion__face-overlay {
  position: absolute;
  /* Center X: 182.71/360 = 50.75%, Center Y: 176.83/512 = 34.55% */
  top: 34.55%; /* Actual center Y of inner circle in SVG */
  left: 50.75%; /* Actual center X of inner circle in SVG */
  transform: translate(-50%, -50%);
  /* Inner circle diameter: 207.9 units = 57.75% of SVG width (360) */
  width: 57.75%; /* Sized to match inner yellow circle diameter */
  height: 57.75%;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25), inset 0 0 0 2px rgba(255, 255, 255, 0.9);
  background: #ffffff;
  z-index: 2;
}
.nana-medallion--seal .nana-medallion__face-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.nana-medallion--seal .nana-medallion__seal-text {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  color: #8b6914;
  font-weight: 800;
  text-shadow: 0 2px 4px rgb(255, 255, 255), 0 0 10px rgba(255, 215, 0, 0.4);
  z-index: 3;
  white-space: nowrap;
}
.nana-medallion--seal:hover {
  transform: rotate(-8deg) scale(1.05);
  filter: brightness(1.1);
}

/* Optional subtle hover motion for CTA sections */
.nana-medallion--pulse {
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.nana-medallion--pulse:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* ============================================ */
/*           Proof Points                       */
/* ============================================ */
#proof-points {
  padding: var(--sectionPadding);
  background-color: var(--white);
}
#proof-points .cs-container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0 1rem;
}
#proof-points .cs-content {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
}
#proof-points .cs-content .cs-topper,
#proof-points .cs-content .cs-title,
#proof-points .cs-content .cs-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#proof-points .cs-card-group {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
#proof-points .cs-item {
  background-color: var(--white);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border-top: 4px solid transparent;
  /* Seal item styling - transparent card */
}
#proof-points .cs-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-light), var(--flavor-yellow));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
#proof-points .cs-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  border-top-color: var(--primary-light);
}
#proof-points .cs-item:hover::before {
  transform: scaleX(1);
}
#proof-points .cs-item.cs-item--seal {
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  border-top: none;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  overflow: visible;
  /* Hide the ::before pseudo-element */
  /* Remove hover effects for seal card */
}
#proof-points .cs-item.cs-item--seal::before {
  display: none;
}
#proof-points .cs-item.cs-item--seal .cs-seal-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
#proof-points .cs-item.cs-item--seal:hover {
  transform: none;
  box-shadow: none;
}
#proof-points .cs-h3 {
  font-size: clamp(1.25rem, 2vw, 1.5625rem);
  line-height: 1.2em;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  font-weight: bold;
}
#proof-points .cs-item-text {
  font-size: 1.25rem;
  line-height: 1.5em;
  margin: 0;
  color: var(--bodyTextColor);
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #proof-points .cs-card-group {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Mobile - Responsive adjustments */
@media only screen and (max-width: 48rem) {
  #proof-points .cs-item.cs-item--seal {
    min-height: 240px;
    padding: 1.5rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #proof-points {
    /* First 3 items in top row - each takes 1 column */
    /* Items 4 and 5 in second row, columns 1 and 2 */
    /* Seal (6th item) in third column of second row */
  }
  #proof-points .cs-card-group {
    grid-template-columns: repeat(3, 1fr);
    justify-items: stretch;
  }
  #proof-points .cs-card-group .cs-item:nth-child(1),
  #proof-points .cs-card-group .cs-item:nth-child(2),
  #proof-points .cs-card-group .cs-item:nth-child(3) {
    grid-column: span 1;
  }
  #proof-points .cs-card-group .cs-item:nth-child(4) {
    grid-column: 1;
  }
  #proof-points .cs-card-group .cs-item:nth-child(5) {
    grid-column: 2;
  }
  #proof-points .cs-card-group .cs-item:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
  }
}
/* ============================================ */
/*           Gallery Preview                    */
/* ============================================ */
#gallery-preview {
  padding: var(--sectionPadding);
  background-color: var(--grey-light);
}
#gallery-preview .cs-container {
  width: 100%;
  max-width: 1280px;
  margin: auto;
  padding: 0 1rem;
}
#gallery-preview .cs-content {
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
}
#gallery-preview .cs-content .cs-topper,
#gallery-preview .cs-content .cs-title,
#gallery-preview .cs-content .cs-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#gallery-preview .cs-gallery-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
#gallery-preview .cs-gallery-item {
  overflow: hidden;
  border-radius: 1rem;
  aspect-ratio: 1;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
  cursor: pointer;
}
#gallery-preview .cs-gallery-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(229, 62, 48, 0);
  transition: background 0.3s ease;
  z-index: 1;
}
#gallery-preview .cs-gallery-item:hover {
  transform: scale(1.05) translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
#gallery-preview .cs-gallery-item:hover::after {
  background: rgba(229, 62, 48, 0.1);
}
#gallery-preview .cs-gallery-item:hover .cs-picture img {
  transform: scale(1.1);
}
#gallery-preview .cs-picture {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 0;
}
#gallery-preview .cs-picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
#gallery-preview .cs-button-wrapper {
  text-align: center;
  margin-top: 3rem;
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-preview .cs-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #gallery-preview .cs-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ============================================ */
/*           Gallery Page Sections               */
/* ============================================ */
@media only screen and (min-width: 0rem) {
  #tag-instructions {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #tag-instructions .cs-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 1rem;
  }
  #tag-instructions .cs-content {
    text-align: center;
    width: 100%;
    max-width: 43.75rem;
    margin: 0 auto 3rem;
  }
  #tag-instructions .cs-content .cs-topper,
  #tag-instructions .cs-content .cs-title,
  #tag-instructions .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #tag-instructions .tag-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 80rem;
    margin: 0 auto;
  }
  #tag-instructions .tag-card {
    background-color: var(--white);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 0.75rem;
    border: 2px solid var(--grey-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
  }
  #tag-instructions .tag-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
  }
  #tag-instructions .tag-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 1rem;
  }
  #tag-instructions .tag-card p {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    margin-bottom: 1rem;
    line-height: 1.6;
  }
  #tag-instructions .tag-card .tag-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  #tag-instructions .tag-card .tag-list li {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    margin-bottom: 0.75rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
  }
  #tag-instructions .tag-card .tag-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
  }
  #tag-instructions .tag-card .tag-list li:last-child {
    margin-bottom: 0;
  }
  #tag-instructions .tag-card .tag-list li strong {
    color: var(--headerColor);
    font-weight: 700;
  }
  #community-gallery {
    padding: var(--sectionPadding);
    background-color: var(--grey-light);
  }
  #community-gallery .cs-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 1rem;
  }
  #community-gallery .cs-content {
    text-align: center;
    width: 100%;
    max-width: 43.75rem;
    margin: 0 auto 3rem;
  }
  #community-gallery .cs-content .cs-topper,
  #community-gallery .cs-content .cs-title,
  #community-gallery .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #community-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0 0 2rem 0;
    padding: 0;
    list-style: none;
  }
  #community-gallery .gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
  }
  #community-gallery .gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  #community-gallery .gallery-item:hover .gallery-picture img {
    transform: scale(1.05);
  }
  #community-gallery .gallery-item .gallery-picture {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    overflow: hidden;
  }
  #community-gallery .gallery-item .gallery-picture img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
  }
  #community-gallery .gallery-item .gallery-caption {
    padding: 1rem;
    font-size: var(--bodyFontSize);
    color: var(--headerColor);
    font-weight: 600;
    text-align: center;
    margin: 0;
    background: var(--white);
  }
  #community-gallery .gallery-note {
    max-width: 43.75rem;
    margin: 2rem auto 0;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 0.75rem;
    border: 2px solid var(--primary-light);
    text-align: center;
  }
  #community-gallery .gallery-note p {
    margin: 0;
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    line-height: 1.6;
  }
  #community-gallery .gallery-note p strong {
    color: var(--headerColor);
    font-weight: 700;
  }
  #social-links {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #social-links .cs-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 1rem;
  }
  #social-links .cs-content {
    text-align: center;
    width: 100%;
    max-width: 43.75rem;
    margin: 0 auto 3rem;
  }
  #social-links .cs-content .cs-topper,
  #social-links .cs-content .cs-title,
  #social-links .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #social-links .social-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 43.75rem;
    margin: 0 auto;
    align-items: center;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #tag-instructions .tag-info {
    grid-template-columns: repeat(2, 1fr);
  }
  #community-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #social-links .social-buttons {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #tag-instructions .tag-info {
    grid-template-columns: repeat(3, 1fr);
  }
  #community-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ============================================ */
/*           Packaging Showcase                 */
/* ============================================ */
@media only screen and (min-width: 0rem) {
  #packaging-showcase {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #packaging-showcase .cs-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 1rem;
  }
  #packaging-showcase .cs-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  #packaging-showcase .packaging-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  #packaging-showcase .packaging-showcase-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--grey-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #packaging-showcase .packaging-showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  #packaging-showcase .packaging-showcase-item picture {
    display: block;
    width: 100%;
    height: auto;
    flex: 1;
  }
  #packaging-showcase .packaging-showcase-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
  }
  #packaging-showcase .packaging-showcase-item:hover img {
    transform: scale(1.05);
  }
  #packaging-showcase .packaging-showcase-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--headerColor);
    text-align: center;
    margin: 0;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 0.5rem;
    border: 2px solid var(--primary-light);
    width: 100%;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #packaging-showcase .packaging-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  #packaging-showcase .packaging-showcase-item {
    padding: 2rem;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  #packaging-showcase .packaging-showcase-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
  }
  #packaging-showcase .packaging-showcase-item {
    padding: 2.5rem;
  }
  #packaging-showcase .packaging-showcase-label {
    font-size: 1.25rem;
  }
}
/* ============================================ */
/*           Wholesale & Catering CTA           */
/* ============================================ */
@media only screen and (min-width: 0rem) {
  #wholesale-catering-cta {
    padding: var(--sectionPadding);
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white);
  }
  #wholesale-catering-cta .cs-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 1rem;
    position: relative;
    z-index: 20;
  }
  #wholesale-catering-cta .cs-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 25;
  }
  #wholesale-catering-cta .cs-content .cs-topper,
  #wholesale-catering-cta .cs-content .cs-title,
  #wholesale-catering-cta .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #wholesale-catering-cta .cs-topper {
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  #wholesale-catering-cta .cs-title {
    color: var(--headerColor);
    margin-bottom: 1.5rem;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  }
  #wholesale-catering-cta .cs-text {
    color: var(--bodyTextColor);
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  #wholesale-catering-cta .cs-button-solid {
    margin-top: 1rem;
  }
}
/* ============================================ */
/*           Contact Form                       */
/* ============================================ */
@media only screen and (min-width: 0rem) {
  #contact-form {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #contact-form .cs-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 1rem;
  }
  #contact-form .cs-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  #contact-form .cs-content .cs-topper,
  #contact-form .cs-content .cs-title,
  #contact-form .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #contact-form .cs-topper {
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.1em;
  }
  #contact-form .cs-text {
    margin-bottom: 2rem;
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
    line-height: 1.6;
  }
  #contact-form .cs-button-group {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.2rem;
  }
  #contact-form .cs-button-email,
  #contact-form .cs-button-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-width: 160px;
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: var(--primary-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  #contact-form .cs-button-email svg,
  #contact-form .cs-button-phone svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    stroke-width: 2.5;
  }
  #contact-form .cs-button-email span,
  #contact-form .cs-button-phone span {
    position: relative;
    z-index: 1;
  }
  #contact-form .cs-button-email:before,
  #contact-form .cs-button-phone:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
    z-index: 1;
  }
  #contact-form .cs-button-email:after,
  #contact-form .cs-button-phone:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.05) 100%);
    border-radius: 8px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #contact-form .cs-button-email:hover, #contact-form .cs-button-email:focus,
  #contact-form .cs-button-phone:hover,
  #contact-form .cs-button-phone:focus {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(229, 62, 48, 0.4), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255, 255, 255, 0.1), 0 0 12px rgba(229, 62, 48, 0.2);
    background: linear-gradient(135deg, #F55A4A 0%, var(--primaryLight) 30%, #F55A4A 70%, var(--primaryLight) 100%);
    color: var(--white);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #contact-form .cs-button-email:hover:before, #contact-form .cs-button-email:focus:before,
  #contact-form .cs-button-phone:hover:before,
  #contact-form .cs-button-phone:focus:before {
    left: 100%;
  }
  #contact-form .cs-button-email:hover:after, #contact-form .cs-button-email:focus:after,
  #contact-form .cs-button-phone:hover:after,
  #contact-form .cs-button-phone:focus:after {
    opacity: 1;
  }
  #contact-form .cs-button-email:active,
  #contact-form .cs-button-phone:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 0 2px 8px rgba(229, 62, 48, 0.3), 0 1px 4px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 0 0 2px rgba(229, 62, 48, 0.4), 0 0 8px rgba(229, 62, 48, 0.3);
    transition: all 0.1s ease;
  }
  #contact-form .cs-button-email:focus,
  #contact-form .cs-button-phone:focus {
    outline: none;
    box-shadow: 0 4px 16px rgba(229, 62, 48, 0.3), 0 2px 8px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(229, 62, 48, 0.4), 0 0 12px rgba(229, 62, 48, 0.2);
  }
}
@media only screen and (min-width: 0rem) and (max-width: 48rem) {
  #contact-form .cs-button-group {
    flex-direction: column;
    gap: 1rem;
  }
  #contact-form .cs-button-email,
  #contact-form .cs-button-phone {
    width: 100%;
    min-width: auto;
  }
}
/* ============================================ */
/*           Final CTA                          */
/* ============================================ */
@media only screen and (min-width: 0rem) {
  #final-cta {
    padding: var(--sectionPadding);
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #final-cta .cs-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 1rem;
    position: relative;
    z-index: 20;
  }
  #final-cta .cs-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 25;
  }
  #final-cta .cs-content .cs-topper,
  #final-cta .cs-content .cs-title,
  #final-cta .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #final-cta .cs-title {
    color: var(--bodyTextColorWhite);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 1.5rem;
    font-size: clamp(2rem, 4vw, 3rem);
  }
  #final-cta .cs-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  #final-cta .cs-button-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
  }
  #final-cta .cs-button-solid.cs-button2 {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.2);
  }
  #final-cta .cs-button-solid.cs-button2:hover {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
  }
}
/* Nana Betty Page-Specific Components */
/* ============================================
   Menu Hero Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #menu-hero,
  #recipes-hero,
  #papa-jim-hero,
  #wholesale-hero,
  #nutrition-hero {
    min-height: 65vh;
    padding: clamp(5rem, 10vw, 8rem) 1rem clamp(4rem, 8vw, 6rem) 1rem;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  #menu-hero::before,
  #recipes-hero::before,
  #papa-jim-hero::before,
  #wholesale-hero::before,
  #nutrition-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(229, 62, 48, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(229, 62, 48, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  #menu-hero .menu-hero__image,
  #recipes-hero .menu-hero__image,
  #papa-jim-hero .menu-hero__image,
  #wholesale-hero .menu-hero__image,
  #nutrition-hero .menu-hero__image {
    position: absolute;
    top: 0;
    left: 2%;
    width: 22%;
    max-width: 180px;
    height: 100%;
    z-index: 5;
    opacity: 0.15;
    pointer-events: none;
    overflow: hidden;
    padding-top: 0;
  }
  #menu-hero .menu-hero__image img,
  #recipes-hero .menu-hero__image img,
  #papa-jim-hero .menu-hero__image img,
  #wholesale-hero .menu-hero__image img,
  #nutrition-hero .menu-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    display: block;
  }
  #menu-hero .cs-container,
  #recipes-hero .cs-container,
  #papa-jim-hero .cs-container,
  #wholesale-hero .cs-container,
  #nutrition-hero .cs-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #menu-hero .cs-content,
  #recipes-hero .cs-content,
  #papa-jim-hero .cs-content,
  #wholesale-hero .cs-content,
  #nutrition-hero .cs-content {
    max-width: 43.75rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  #menu-hero .cs-content .cs-topper,
  #menu-hero .cs-content .cs-title,
  #menu-hero .cs-content .cs-text,
  #recipes-hero .cs-content .cs-topper,
  #recipes-hero .cs-content .cs-title,
  #recipes-hero .cs-content .cs-text,
  #papa-jim-hero .cs-content .cs-topper,
  #papa-jim-hero .cs-content .cs-title,
  #papa-jim-hero .cs-content .cs-text,
  #wholesale-hero .cs-content .cs-topper,
  #wholesale-hero .cs-content .cs-title,
  #wholesale-hero .cs-content .cs-text,
  #nutrition-hero .cs-content .cs-topper,
  #nutrition-hero .cs-content .cs-title,
  #nutrition-hero .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #menu-hero .cs-topper,
  #recipes-hero .cs-topper,
  #papa-jim-hero .cs-topper,
  #wholesale-hero .cs-topper,
  #nutrition-hero .cs-topper {
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #menu-hero .cs-title,
  #recipes-hero .cs-title,
  #papa-jim-hero .cs-title,
  #wholesale-hero .cs-title,
  #nutrition-hero .cs-title {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
  }
  #menu-hero .cs-text,
  #recipes-hero .cs-text,
  #papa-jim-hero .cs-text,
  #wholesale-hero .cs-text,
  #nutrition-hero .cs-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: clamp(1.25rem, 1.5vw, 1.5rem);
    line-height: 1.6;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #menu-hero,
  #recipes-hero,
  #papa-jim-hero,
  #wholesale-hero,
  #nutrition-hero {
    padding: clamp(5rem, 8vw, 7rem) 1rem;
    overflow: hidden;
  }
  #menu-hero .menu-hero__image,
  #recipes-hero .menu-hero__image,
  #papa-jim-hero .menu-hero__image,
  #wholesale-hero .menu-hero__image,
  #nutrition-hero .menu-hero__image {
    left: 3%;
    width: 12%;
    max-width: 150px;
    opacity: 0.2;
    height: 100%;
    top: 0;
    bottom: 0;
  }
  #menu-hero .menu-hero__image img,
  #recipes-hero .menu-hero__image img,
  #papa-jim-hero .menu-hero__image img,
  #wholesale-hero .menu-hero__image img,
  #nutrition-hero .menu-hero__image img {
    object-position: left bottom;
    object-fit: contain;
  }
}
/* ============================================
   Menu Details Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #menu-details {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #menu-details .cs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  #menu-details .cs-content .cs-topper,
  #menu-details .cs-content .cs-title,
  #menu-details .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ============================================
   Preparation Instructions Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #preparation {
    padding: var(--sectionPadding);
    background-color: var(--grey-light);
  }
  #preparation .cs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  #preparation .cs-content .cs-title,
  #preparation .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #preparation .prep-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  #preparation .prep-step {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  #preparation .prep-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  #preparation .prep-step:hover .step-number {
    transform: scale(1.1);
  }
  #preparation .step-number {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), #c73528);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(229, 62, 48, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #preparation .prep-step h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
  }
  #preparation .prep-step p {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    margin: 0;
  }
  #preparation .prep-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--grey-dark);
    margin-top: 2rem;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #preparation .prep-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  #preparation .prep-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ============================================
   How to Prepare Section (nb-howto)
   ============================================ */
@media only screen and (min-width: 0rem) {
  .nb-howto {
    padding: var(--sectionPadding);
    background-color: var(--grey-light);
  }
  .nb-howto .cs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  .nb-howto .cs-content .cs-title,
  .nb-howto .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .nb-howto .nb-howto__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .nb-howto .nb-howto__card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: opacity 260ms ease-out, transform 260ms ease-out;
    opacity: 0;
    transform: translateY(20px);
  }
  .nb-howto .nb-howto__card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .nb-howto .nb-howto__card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  .nb-howto .nb-howto__badge {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), #c73528);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 12px rgba(229, 62, 48, 0.3);
  }
  .nb-howto .nb-howto__icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nb-howto .nb-howto-icon {
    width: 100%;
    height: 100%;
    display: block;
    color: #162961;
    animation: nb-howto-float 4s ease-in-out infinite;
    animation-play-state: paused;
  }
  .nb-howto .nb-howto__card.is-visible .nb-howto-icon {
    animation-play-state: running;
  }
  .nb-howto .nb-howto__card:hover .nb-howto-icon {
    animation-duration: 3s;
  }
  .nb-howto .nb-howto__title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
  }
  .nb-howto .nb-howto__body {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    margin: 0;
  }
  .nb-howto .prep-note {
    text-align: center;
    font-size: 0.875rem;
    color: var(--grey-dark);
    margin-top: 2rem;
  }
  @keyframes nb-howto-float {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-6px);
    }
  }
}
@media only screen and (min-width: 0rem) and (prefers-reduced-motion: reduce) {
  .nb-howto__card,
  .nb-howto-icon {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  .nb-howto .nb-howto__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  .nb-howto .nb-howto__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ============================================
   Page Hero Component (Generic)
   ============================================ */
@media only screen and (min-width: 0rem) {
  #personality-hero,
  #nana-hero,
  #location-hero,
  #gallery-hero {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: visible;
  }
  #personality-hero::before,
  #nana-hero::before,
  #location-hero::before,
  #gallery-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(229, 62, 48, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(229, 62, 48, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  #personality-hero .cs-container,
  #nana-hero .cs-container,
  #location-hero .cs-container,
  #gallery-hero .cs-container {
    position: relative;
    z-index: 1;
  }
  #personality-hero .cs-content,
  #nana-hero .cs-content,
  #location-hero .cs-content,
  #gallery-hero .cs-content {
    max-width: 43.75rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  #personality-hero .cs-topper,
  #nana-hero .cs-topper,
  #location-hero .cs-topper,
  #gallery-hero .cs-topper {
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #personality-hero .cs-title,
  #nana-hero .cs-title,
  #location-hero .cs-title,
  #gallery-hero .cs-title {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
  }
  #personality-hero .cs-subtitle,
  #nana-hero .cs-subtitle,
  #location-hero .cs-subtitle,
  #gallery-hero .cs-subtitle {
    color: var(--primary-light);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: clamp(1.25rem, 2vw, 1.625rem);
  }
  #personality-hero .cs-text,
  #nana-hero .cs-text,
  #location-hero .cs-text,
  #gallery-hero .cs-text {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
    line-height: 1.6;
  }
  #personality-hero,
  #nana-hero,
  #location-hero,
  #gallery-hero {
    min-height: 65vh;
    padding: clamp(5rem, 10vw, 8rem) 1rem clamp(4rem, 8vw, 6rem) 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
  }
  #personality-hero .cs-container,
  #nana-hero .cs-container,
  #location-hero .cs-container,
  #gallery-hero .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    position: relative;
    z-index: 1;
  }
  #personality-hero .cs-content,
  #nana-hero .cs-content,
  #location-hero .cs-content,
  #gallery-hero .cs-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  #personality-hero .cs-content .cs-topper,
  #personality-hero .cs-content .cs-title,
  #personality-hero .cs-content .cs-subtitle,
  #personality-hero .cs-content .cs-text,
  #nana-hero .cs-content .cs-topper,
  #nana-hero .cs-content .cs-title,
  #nana-hero .cs-content .cs-subtitle,
  #nana-hero .cs-content .cs-text,
  #location-hero .cs-content .cs-topper,
  #location-hero .cs-content .cs-title,
  #location-hero .cs-content .cs-subtitle,
  #location-hero .cs-content .cs-text,
  #gallery-hero .cs-content .cs-topper,
  #gallery-hero .cs-content .cs-title,
  #gallery-hero .cs-content .cs-subtitle,
  #gallery-hero .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #personality-hero .personality-hero__image,
  #personality-hero .nana-hero__image,
  #personality-hero .location-hero__image,
  #personality-hero .gallery-hero__image,
  #nana-hero .personality-hero__image,
  #nana-hero .nana-hero__image,
  #nana-hero .location-hero__image,
  #nana-hero .gallery-hero__image,
  #location-hero .personality-hero__image,
  #location-hero .nana-hero__image,
  #location-hero .location-hero__image,
  #location-hero .gallery-hero__image,
  #gallery-hero .personality-hero__image,
  #gallery-hero .nana-hero__image,
  #gallery-hero .location-hero__image,
  #gallery-hero .gallery-hero__image {
    position: absolute;
    top: 0;
    right: 2%;
    width: 22%;
    max-width: 180px;
    height: 100%;
    z-index: 5;
    opacity: 0.15;
    pointer-events: none;
    overflow: hidden;
    padding-top: 0;
  }
  #personality-hero .personality-hero__image img,
  #personality-hero .nana-hero__image img,
  #personality-hero .location-hero__image img,
  #personality-hero .gallery-hero__image img,
  #nana-hero .personality-hero__image img,
  #nana-hero .nana-hero__image img,
  #nana-hero .location-hero__image img,
  #nana-hero .gallery-hero__image img,
  #location-hero .personality-hero__image img,
  #location-hero .nana-hero__image img,
  #location-hero .location-hero__image img,
  #location-hero .gallery-hero__image img,
  #gallery-hero .personality-hero__image img,
  #gallery-hero .nana-hero__image img,
  #gallery-hero .location-hero__image img,
  #gallery-hero .gallery-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    display: block;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #personality-hero,
  #nana-hero,
  #location-hero,
  #gallery-hero {
    padding: clamp(5rem, 8vw, 7rem) 1rem;
    overflow: hidden;
  }
  #personality-hero .personality-hero__image,
  #personality-hero .nana-hero__image,
  #personality-hero .location-hero__image,
  #personality-hero .gallery-hero__image,
  #nana-hero .personality-hero__image,
  #nana-hero .nana-hero__image,
  #nana-hero .location-hero__image,
  #nana-hero .gallery-hero__image,
  #location-hero .personality-hero__image,
  #location-hero .nana-hero__image,
  #location-hero .location-hero__image,
  #location-hero .gallery-hero__image,
  #gallery-hero .personality-hero__image,
  #gallery-hero .nana-hero__image,
  #gallery-hero .location-hero__image,
  #gallery-hero .gallery-hero__image {
    right: 3%;
    width: 12%;
    max-width: 150px;
    opacity: 0.2;
    height: 100%;
    top: 0;
    bottom: 0;
  }
  #personality-hero .personality-hero__image img,
  #personality-hero .nana-hero__image img,
  #personality-hero .location-hero__image img,
  #personality-hero .gallery-hero__image img,
  #nana-hero .personality-hero__image img,
  #nana-hero .nana-hero__image img,
  #nana-hero .location-hero__image img,
  #nana-hero .gallery-hero__image img,
  #location-hero .personality-hero__image img,
  #location-hero .nana-hero__image img,
  #location-hero .location-hero__image img,
  #location-hero .gallery-hero__image img,
  #gallery-hero .personality-hero__image img,
  #gallery-hero .nana-hero__image img,
  #gallery-hero .location-hero__image img,
  #gallery-hero .gallery-hero__image img {
    object-position: right bottom;
    object-fit: contain;
  }
}
/* ============================================
   Personality Breakdown Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #what-is-personality {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #what-is-personality .cs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  #what-is-personality .cs-content .cs-topper,
  #what-is-personality .cs-content .cs-title,
  #what-is-personality .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #what-is-personality .personality-breakdown {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  #what-is-personality .breakdown-item {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 1rem;
    border-left: 4px solid var(--primary-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  #what-is-personality .breakdown-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-light);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  #what-is-personality .breakdown-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-light);
  }
  #what-is-personality .breakdown-item:hover::before {
    transform: scaleX(1);
  }
  #what-is-personality .breakdown-item:hover .breakdown-word {
    transform: scale(1.05);
  }
  #what-is-personality .breakdown-word {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--primary-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.3s ease;
    display: block;
    text-align: center;
  }
  #what-is-personality .breakdown-meaning {
    font-size: var(--bodyFontSize);
    line-height: 1.6;
    color: var(--bodyTextColor);
    margin: 0;
    text-align: center;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #what-is-personality .personality-breakdown {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #what-is-personality .breakdown-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 15rem;
  }
}
/* ============================================
   Flavor Stories Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #flavor-personality {
    padding: var(--sectionPadding);
  }
  #flavor-personality .cs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  #flavor-personality .cs-content .cs-topper,
  #flavor-personality .cs-content .cs-title,
  #flavor-personality .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #flavor-personality .flavor-stories {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #flavor-personality .flavor-story {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  #flavor-personality .story-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1rem;
  }
  #flavor-personality .flavor-story h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
  }
  #flavor-personality .flavor-story p {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    margin: 0;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #flavor-personality .flavor-stories {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  #flavor-personality .flavor-stories {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ============================================
   Traits Grid Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #nana-character {
    padding: var(--sectionPadding);
    background-color: var(--white);
    /* Seal card styling - transparent card */
  }
  #nana-character .cs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  #nana-character .cs-content .cs-topper,
  #nana-character .cs-content .cs-title,
  #nana-character .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #nana-character .traits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #nana-character .trait-card {
    background-color: var(--grey-light);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
  }
  #nana-character .trait-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  #nana-character .trait-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
  }
  #nana-character .trait-card p {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    margin: 0;
  }
  #nana-character .trait-card--seal {
    background-color: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    overflow: visible;
  }
  #nana-character .trait-seal-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #nana-character .traits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #nana-character .trait-card--seal {
    min-height: 240px;
    padding: 1.5rem;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  #nana-character {
    /* First 3 items in top row - each takes 1 column */
    /* Items 4 and 5 in second row, columns 1 and 2 */
    /* Seal (6th item) in third column of second row */
  }
  #nana-character .traits-grid {
    grid-template-columns: repeat(3, 1fr);
    justify-items: stretch;
  }
  #nana-character .traits-grid .trait-card:nth-child(1),
  #nana-character .traits-grid .trait-card:nth-child(2),
  #nana-character .traits-grid .trait-card:nth-child(3) {
    grid-column: span 1;
  }
  #nana-character .traits-grid .trait-card:nth-child(4) {
    grid-column: 1;
  }
  #nana-character .traits-grid .trait-card:nth-child(5) {
    grid-column: 2;
  }
  #nana-character .traits-grid .trait-card:nth-child(6) {
    grid-column: 3;
    grid-row: 2;
  }
}
/* ============================================
   Recipe Card Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #featured-recipes {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #featured-recipes .cs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  #featured-recipes .cs-content .cs-topper,
  #featured-recipes .cs-content .cs-title,
  #featured-recipes .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #featured-recipes .recipe-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  #featured-recipes .recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  #featured-recipes .recipe-card:hover .recipe-image img {
    transform: scale(1.05);
  }
  #featured-recipes .recipe-card:last-child {
    margin-bottom: 0;
  }
  #featured-recipes .recipe-image {
    overflow: hidden;
    aspect-ratio: 4/3;
  }
  #featured-recipes .recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  #featured-recipes .recipe-content {
    text-align: left;
    padding: 2rem;
  }
  #featured-recipes .recipe-name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
  }
  #featured-recipes .recipe-description {
    font-size: var(--bodyFontSize);
    line-height: 1.6;
    color: var(--bodyTextColor);
    margin-bottom: 1.5rem;
  }
  #featured-recipes .recipe-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--grey-light);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  #featured-recipes .detail {
    font-size: 0.875rem;
    color: var(--grey-dark);
  }
  #featured-recipes .recipe-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--headerColor);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
  #featured-recipes .ingredients-list,
  #featured-recipes .instructions-list {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bodyTextColor);
  }
  #featured-recipes .ingredients-list li,
  #featured-recipes .instructions-list li {
    margin-bottom: 0.5rem;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #featured-recipes .recipe-card {
    flex-direction: row;
    align-items: flex-start;
  }
  #featured-recipes .recipe-image {
    flex: 0 0 40%;
  }
  #featured-recipes .recipe-content {
    flex: 1;
  }
}
/* ============================================
   Serving Ideas Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #serving-ideas {
    padding: var(--sectionPadding);
  }
  #serving-ideas .cs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  #serving-ideas .cs-content .cs-topper,
  #serving-ideas .cs-content .cs-title,
  #serving-ideas .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
  }
  #serving-ideas .cs-content .cs-topper {
    color: var(--primary-light);
  }
  #serving-ideas .serving-ideas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #serving-ideas .serving-idea {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-light);
  }
  #serving-ideas .serving-idea h3 {
    font-size: clamp(1.25rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
  }
  #serving-ideas .serving-idea p {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    margin: 0;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #serving-ideas .serving-ideas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  #serving-ideas .serving-ideas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ============================================
   Share Recipes Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #share-recipes {
    padding: clamp(5rem, 10vw, 8rem) 1rem;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
  }
  #share-recipes::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(229, 62, 48, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(229, 62, 48, 0.02) 0%, transparent 50%);
    pointer-events: none;
  }
  #share-recipes .cs-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #share-recipes .cs-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  #share-recipes .cs-content .cs-topper,
  #share-recipes .cs-content .cs-title,
  #share-recipes .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #share-recipes .cs-topper {
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
  }
  #share-recipes .cs-title {
    color: var(--headerColor);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
  }
  #share-recipes .cs-text {
    color: var(--bodyTextColor);
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  #share-recipes .social-tags {
    margin-top: 2rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(229, 62, 48, 0.05) 0%, rgba(229, 62, 48, 0.02) 100%);
    border-radius: 1rem;
    border: 1px solid rgba(229, 62, 48, 0.1);
  }
  #share-recipes .social-tags p {
    margin: 0.75rem 0;
    font-size: clamp(1.25rem, 1.8vw, 1.625rem);
    color: var(--bodyTextColor);
    text-align: center;
  }
  #share-recipes .social-tags p strong {
    color: var(--primary);
    font-weight: 700;
  }
  #share-recipes .social-tags p:first-child {
    margin-top: 0;
  }
  #share-recipes .social-tags p:last-child {
    margin-bottom: 0;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #share-recipes {
    padding: clamp(6rem, 12vw, 10rem) 1rem;
  }
  #share-recipes .social-tags {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #share-recipes .social-tags p {
    margin: 0;
  }
}
/* ============================================
   Papa Jim Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #papa-jim-role {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
  }
  #papa-jim-role .cs-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #papa-jim-role .cs-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
  }
  #papa-jim-role .cs-content .cs-topper,
  #papa-jim-role .cs-content .cs-title,
  #papa-jim-role .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
  }
  #papa-jim-role .cs-content .cs-topper {
    color: var(--primary-light);
  }
  #papa-jim-role .role-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  #papa-jim-role .role-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }
  #papa-jim-role .role-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
  }
  #papa-jim-role .role-card .role-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  #papa-jim-role .role-card h3 {
    color: var(--white);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #papa-jim-role .role-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.25rem, 1.2vw, 1.375rem);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #papa-jim-story {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #papa-jim-story .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #papa-jim-story .cs-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto 3rem;
  }
  #papa-jim-story .cs-content .cs-topper,
  #papa-jim-story .cs-content .cs-title,
  #papa-jim-story .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #papa-jim-story .papa-jim-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }
  #papa-jim-story .papa-jim-image {
    width: 100%;
    max-width: 500px;
  }
  #papa-jim-story .papa-jim-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  }
  #papa-jim-story .papa-jim-text {
    text-align: center;
    max-width: 43.75rem;
  }
  #papa-jim-story .papa-jim-text h3 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-top: 2rem;
    margin-bottom: 1rem;
  }
  #papa-jim-story .papa-jim-text h3:first-child {
    margin-top: 0;
  }
  #papa-jim-story .papa-jim-text p {
    font-size: var(--bodyFontSize);
    line-height: 1.7;
    color: var(--bodyTextColor);
    margin-bottom: 1.5rem;
  }
  #papa-jim-story .papa-jim-text p:last-child {
    margin-bottom: 0;
  }
  #family-legacy {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #family-legacy .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #family-legacy .cs-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto;
  }
  #family-legacy .cs-content .cs-topper,
  #family-legacy .cs-content .cs-title,
  #family-legacy .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* Desktop - 768px */
@media only screen and (min-width: 48rem) {
  #papa-jim-role .role-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #papa-jim-story .papa-jim-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  #papa-jim-story .papa-jim-image {
    flex: 0 0 40%;
    max-width: none;
  }
  #papa-jim-story .papa-jim-text {
    flex: 1;
    text-align: left;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #papa-jim-role .role-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ============================================
   Wholesale Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #wholesale-products {
    padding: var(--sectionPadding);
    background-color: var(--grey-light);
  }
  #wholesale-products .cs-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 1rem;
  }
  #wholesale-products .cs-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  #wholesale-products .cs-content .cs-topper,
  #wholesale-products .cs-content .cs-title,
  #wholesale-products .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #wholesale-products + #flavors-grid {
    padding-top: 0;
  }
  #wholesale-products + #flavors-grid .cs-content {
    display: none;
  }
  #wholesale-benefits {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #wholesale-benefits .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #wholesale-benefits .cs-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto 3rem;
  }
  #wholesale-benefits .cs-content .cs-topper,
  #wholesale-benefits .cs-content .cs-title,
  #wholesale-benefits .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #wholesale-benefits .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #wholesale-benefits .benefit-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
  }
  #wholesale-benefits .benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  #wholesale-benefits .benefit-card .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  #wholesale-benefits .benefit-card h3 {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 1rem;
  }
  #wholesale-benefits .benefit-card p {
    font-size: var(--bodyFontSize);
    line-height: 1.6;
    color: var(--bodyTextColor);
    margin: 0;
  }
  #wholesale-contact {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
  }
  #wholesale-contact .cs-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #wholesale-contact .cs-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
  }
  #wholesale-contact .cs-content .cs-topper,
  #wholesale-contact .cs-content .cs-title,
  #wholesale-contact .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
  }
  #wholesale-contact .cs-content .cs-topper {
    color: var(--primary-light);
  }
  #wholesale-contact .cs-content .cs-text {
    font-size: clamp(1.25rem, 1.8vw, 1.5rem);
    line-height: 1.7;
  }
  #wholesale-contact + #contact-form {
    background-color: var(--white);
  }
}
/* Desktop - 768px */
@media only screen and (min-width: 48rem) {
  #wholesale-products .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
  #wholesale-benefits .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #wholesale-products .product-list {
    grid-template-columns: repeat(3, 1fr);
  }
  #wholesale-benefits .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ============================================
   Nutrition Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #preparation-nutrition {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
  }
  #preparation-nutrition .cs-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #preparation-nutrition .cs-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
  }
  #preparation-nutrition .cs-content .cs-topper,
  #preparation-nutrition .cs-content .cs-title,
  #preparation-nutrition .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
  }
  #preparation-nutrition .cs-content .cs-topper {
    color: var(--primary-light);
  }
  #preparation-nutrition .prep-instructions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  #preparation-nutrition .prep-step {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
  }
  #preparation-nutrition .prep-step:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
  }
  #preparation-nutrition .prep-step .step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  #preparation-nutrition .prep-step h3 {
    color: var(--white);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #preparation-nutrition .prep-step p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.25rem, 1.2vw, 1.375rem);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #preparation-nutrition .prep-step p strong {
    color: var(--white);
    font-weight: 700;
  }
  #preparation-nutrition .food-safety-note {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  }
  #preparation-nutrition .food-safety-note p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.25rem, 1.2vw, 1.375rem);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #preparation-nutrition .food-safety-note p strong {
    color: var(--white);
    font-weight: 700;
  }
  #nutrition-table,
  #ingredients,
  #nutrition-questions {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #nutrition-table .cs-container,
  #ingredients .cs-container,
  #nutrition-questions .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #nutrition-table .cs-content,
  #ingredients .cs-content,
  #nutrition-questions .cs-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto 3rem;
  }
  #nutrition-table .cs-content .cs-topper,
  #nutrition-table .cs-content .cs-title,
  #nutrition-table .cs-content .cs-text,
  #ingredients .cs-content .cs-topper,
  #ingredients .cs-content .cs-title,
  #ingredients .cs-content .cs-text,
  #nutrition-questions .cs-content .cs-topper,
  #nutrition-questions .cs-content .cs-title,
  #nutrition-questions .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #ingredients .ingredient-lists {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  #ingredients .ingredient-card {
    background-color: var(--white);
    border: 2px solid var(--grey-light);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
  }
  #ingredients .ingredient-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
  }
  #ingredients .ingredient-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  #ingredients .ingredient-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
  }
  #ingredients .ingredient-card:hover::before {
    transform: scaleX(1);
  }
  #ingredients .ingredient-card:hover .ingredient-card__content {
    opacity: 0;
    transform: translateY(-10px);
  }
  #ingredients .ingredient-card:hover .ingredient-card__title {
    opacity: 0.2;
    transform: scale(0.95);
  }
  #ingredients .ingredient-card:hover .ingredient-card__packaging {
    opacity: 1;
    transform: translateY(0);
  }
  #ingredients .ingredient-card__packaging {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    pointer-events: none;
    backdrop-filter: blur(2px);
  }
  #ingredients .ingredient-card__packaging .packaging-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0 0 1rem 0;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 0.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  #ingredients .ingredient-card__packaging picture {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
  }
  #ingredients .ingredient-card__packaging img {
    width: 100%;
    max-width: 280px;
    max-height: 200px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0.5rem;
    margin: 0 auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  }
  #ingredients .ingredient-card__title {
    position: relative;
    z-index: 2;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  #ingredients .ingredient-card__content {
    position: relative;
    z-index: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  #ingredients .ingredient-card__title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 1.25rem;
    text-align: center;
  }
  #ingredients .ingredient-card__content {
    text-align: left;
  }
  #ingredients .ingredient-card__label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--grey-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
  }
  #ingredients .ingredient-card__ingredients {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  #ingredients .ingredient-card__allergens {
    font-size: 0.9375rem;
    color: var(--primary);
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-light);
    margin: 0;
  }
  #ingredients .ingredient-card__allergens strong {
    color: var(--headerColor);
  }
  #ingredients .ingredient-commitment {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--grey-light);
  }
  #ingredients .commitment-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--headerColor);
    text-align: center;
    margin-bottom: 2rem;
  }
  #ingredients .commitment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #ingredients .commitment-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border: 2px solid var(--grey-light);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
  }
  #ingredients .commitment-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  #ingredients .commitment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(248, 249, 250) 100%);
  }
  #ingredients .commitment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
  }
  #ingredients .commitment-card__title {
    font-size: clamp(1.25rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.75rem;
  }
  #ingredients .commitment-card__text {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    line-height: 1.6;
    margin: 0;
  }
}
/* Desktop - 768px */
@media only screen and (min-width: 48rem) {
  #preparation-nutrition .prep-instructions {
    grid-template-columns: repeat(2, 1fr);
  }
  #ingredients .ingredient-lists {
    grid-template-columns: repeat(2, 1fr);
  }
  #ingredients .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #preparation-nutrition .prep-instructions {
    grid-template-columns: repeat(3, 1fr);
  }
  #ingredients .ingredient-lists {
    grid-template-columns: repeat(3, 1fr);
  }
  #ingredients .commitment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ============================================
   Nutrition Table Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #nutrition-table {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #nutrition-table .cs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  #nutrition-table .nutrition-table-wrapper {
    overflow-x: auto;
  }
  #nutrition-table .nutrition-table-data {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  }
  #nutrition-table .nutrition-table-data thead {
    background: linear-gradient(135deg, var(--primary), #2a3a7e);
    color: var(--white);
  }
  #nutrition-table .nutrition-table-data th {
    padding: 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  #nutrition-table .nutrition-table-data td {
    padding: 1rem;
    border-bottom: 1px solid var(--grey-light);
    color: var(--bodyTextColor);
  }
  #nutrition-table .nutrition-table-data tbody tr {
    transition: background-color 0.3s ease;
  }
  #nutrition-table .nutrition-table-data tbody tr:hover {
    background-color: var(--grey-light);
    transform: scale(1.01);
  }
  #nutrition-table .nutrition-table-data tbody tr:last-child td {
    border-bottom: none;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #nutrition-table .nutrition-table-data {
    font-size: 1.25rem;
  }
}
/* ============================================
   Allergen Info Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #allergen-info {
    padding: var(--sectionPadding);
  }
  #allergen-info .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
  }
  #allergen-info.nanabetty-textured-bg {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
  }
  #allergen-info.nanabetty-textured-bg .cs-content {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  #allergen-info.nanabetty-textured-bg .cs-content .cs-topper,
  #allergen-info.nanabetty-textured-bg .cs-content .cs-title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--headerColor);
  }
  #allergen-info.nanabetty-textured-bg .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: #000000;
  }
  #allergen-info.nanabetty-textured-bg .cs-content .cs-topper {
    color: var(--primary-light);
  }
  #allergen-info.nanabetty-textured-bg .warning-box {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    backdrop-filter: none;
    text-align: left;
  }
  #allergen-info.nanabetty-textured-bg .warning-box h3 {
    color: #856404;
    text-shadow: none;
  }
  #allergen-info.nanabetty-textured-bg .warning-box p {
    color: #856404;
    text-shadow: none;
  }
  #allergen-info.nanabetty-textured-bg .warning-box p strong {
    color: #856404;
  }
  #allergen-info.nanabetty-textured-bg .warning-box .allergen-list li {
    color: #856404;
    text-shadow: none;
  }
  #allergen-info.nanabetty-textured-bg .warning-box .allergen-list li strong {
    color: #856404;
  }
  #allergen-info.nanabetty-textured-bg .warning-box .allergen-note {
    color: #856404;
    text-shadow: none;
  }
  #allergen-info.nanabetty-textured-bg .warning-box .allergen-note strong {
    color: #856404;
  }
  #allergen-info.nanabetty-textured-bg .allergen-content-wrapper {
    display: block;
  }
  #allergen-info.nanabetty-textured-bg .allergen-details h3 {
    display: none;
  }
  #allergen-info.nanabetty-textured-bg .allergen-details .allergen-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #allergen-info.nanabetty-textured-bg .allergen-details .allergen-card {
    background-color: var(--grey-light);
    border: 1px solid var(--grey);
    backdrop-filter: none;
    text-align: left;
  }
  #allergen-info.nanabetty-textured-bg .allergen-details .allergen-card h4 {
    color: var(--headerColor);
    text-shadow: none;
  }
  #allergen-info.nanabetty-textured-bg .allergen-details .allergen-card p {
    color: var(--bodyTextColor);
    text-shadow: none;
  }
  #allergen-info .cs-content {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  #allergen-info .cs-content .cs-text {
    color: #000000;
  }
  #allergen-info .allergen-warning {
    margin-bottom: 2rem;
  }
  #allergen-info .warning-box {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 0.5rem;
    padding: 1.5rem;
    text-align: left;
    max-width: 100%;
    box-sizing: border-box;
  }
  #allergen-info .warning-box h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #856404;
    margin-bottom: 1rem;
  }
  #allergen-info .warning-box p {
    font-size: var(--bodyFontSize);
    color: #856404;
    margin-bottom: 1rem;
  }
  #allergen-info .allergen-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
  }
  #allergen-info .allergen-list li {
    font-size: var(--bodyFontSize);
    color: #856404;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
  }
  #allergen-info .allergen-note {
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 1rem;
  }
  #allergen-info .allergen-details {
    margin-top: 0;
  }
  #allergen-info .allergen-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #allergen-info .allergen-card {
    background-color: var(--grey-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-bottom: 0;
    box-sizing: border-box;
  }
  #allergen-info .allergen-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
  }
  #allergen-info .allergen-card p {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    margin: 0;
  }
}
/* Desktop - 768px */
@media only screen and (min-width: 48rem) {
  #allergen-info .cs-content {
    margin-bottom: 2rem;
  }
  #allergen-info .allergen-warning {
    margin-bottom: 2rem;
  }
  #allergen-info .allergen-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  #allergen-info.nanabetty-textured-bg .allergen-details .allergen-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #allergen-info .cs-container {
    max-width: 100%;
    width: 100%;
  }
  #allergen-info .cs-content {
    margin-bottom: 2rem;
    max-width: 100%;
    width: 100%;
  }
  #allergen-info .allergen-content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr);
    gap: 2.5rem;
    align-items: start;
    max-width: 100%;
    width: 100%;
    grid-auto-rows: min-content;
  }
  #allergen-info .allergen-warning {
    margin-bottom: 0;
    width: 100%;
  }
  #allergen-info .warning-box {
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
    width: 100%;
    box-sizing: border-box;
    min-height: fit-content;
  }
  #allergen-info .allergen-details {
    margin-top: 0;
    width: 100%;
  }
  #allergen-info .allergen-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }
  #allergen-info.nanabetty-textured-bg .cs-container {
    max-width: 100%;
    width: 100%;
  }
  #allergen-info.nanabetty-textured-bg .cs-content {
    margin-bottom: 2rem;
    max-width: 100%;
    width: 100%;
  }
  #allergen-info.nanabetty-textured-bg .allergen-content-wrapper {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr);
    gap: 2.5rem;
    align-items: start;
    max-width: 100%;
    width: 100%;
    grid-auto-rows: min-content;
    width: 100%;
    grid-auto-rows: min-content;
  }
  #allergen-info.nanabetty-textured-bg .allergen-warning {
    margin-bottom: 0;
    width: 100%;
  }
  #allergen-info.nanabetty-textured-bg .warning-box {
    padding: 1.5rem;
    position: sticky;
    top: 2rem;
    width: 100%;
    box-sizing: border-box;
    min-height: fit-content;
  }
  #allergen-info.nanabetty-textured-bg .allergen-details {
    margin-top: 0;
    width: 100%;
  }
  #allergen-info.nanabetty-textured-bg .allergen-details .allergen-cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 100%;
  }
}
/* Large Desktop - 1280px+ */
@media only screen and (min-width: 80rem) {
  #allergen-info .allergen-content-wrapper {
    gap: 3rem;
  }
  #allergen-info.nanabetty-textured-bg .allergen-content-wrapper {
    gap: 3rem;
  }
}
/* ============================================
   Location Info Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #location-details {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  #location-details::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(229, 62, 48, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(229, 62, 48, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  #location-details .cs-container {
    position: relative;
    z-index: 1;
  }
  #location-details .cs-content {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    max-width: 43.75rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
  }
  #location-details .cs-topper {
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #location-details .cs-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  #location-details .cs-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #location-details .location-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  #location-details .location-card {
    background-color: var(--white);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  #location-details .location-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
  }
  #location-details .location-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  #location-details .location-card p {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
  }
  #location-details .location-note {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--grey);
    background-color: var(--grey-light);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: auto;
  }
  #location-details .location-card .cs-button-solid {
    margin-top: 1rem;
    align-self: flex-start;
  }
  #location-details .location-map {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 75%;
    height: 0;
    background: var(--grey-light);
  }
  #location-details .location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  #location-details .packaging-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
  }
  #location-details .packaging-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--grey-light);
  }
  #location-details .packaging-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
  }
  #location-details .packaging-item picture {
    display: block;
    width: 100%;
    height: auto;
  }
  #location-details .packaging-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  #location-details .packaging-item .packaging-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--headerColor);
    text-align: center;
    padding: 0.75rem 0.5rem;
    margin: 0;
    background: var(--grey-light);
    border-top: 2px solid var(--primary-light);
  }
  #location-details .packaging-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
  }
  #location-details .packaging-features li {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #location-details .location-info {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
  }
  #location-details .location-card--packaging {
    grid-column: 1/-1;
  }
  #location-details .packaging-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  #location-details .location-map {
    padding-bottom: 60%;
    margin: 2rem 0;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  #location-details {
    padding: clamp(5rem, 8vw, 7rem) 1rem;
  }
  #location-details .location-info {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
  #location-details .location-card--packaging {
    grid-column: 1/-1;
  }
  #location-details .packaging-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
  #location-details .location-map {
    padding-bottom: 50%;
    margin: 2rem 0;
  }
}
/* ============================================
   Benefits Grid Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #wholesale-benefits {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #wholesale-benefits .cs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  #wholesale-benefits .benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  #wholesale-benefits .benefit-card {
    background-color: var(--grey-light);
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    border-top: 4px solid var(--primary-light);
  }
  #wholesale-benefits .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  #wholesale-benefits .benefit-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
  }
  #wholesale-benefits .benefit-card p {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    margin: 0;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #wholesale-benefits .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  #wholesale-benefits .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ============================================
   Where's Nana Map Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #wheres-nana-map {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #wheres-nana-map .cs-container {
    max-width: 43.75rem;
    margin: 0 auto;
  }
  #wheres-nana-map .cs-content {
    text-align: center;
    margin-bottom: 2rem;
  }
  #wheres-nana-map .map-container {
    width: 100%;
    height: 0;
    padding-bottom: 70%;
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    background-color: var(--grey-light);
    max-width: 1200px;
    margin: 0 auto;
  }
  #wheres-nana-map .nana-map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
    z-index: 1;
    min-height: 500px;
  }
  #wheres-nana-map .leaflet-container {
    font-family: inherit;
    background-color: var(--grey-light);
  }
  #wheres-nana-map .leaflet-popup-content-wrapper {
    border-radius: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  #wheres-nana-map .leaflet-popup-content {
    margin: 0;
  }
  #wheres-nana-map .leaflet-marker-icon {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.2s ease;
  }
  #wheres-nana-map .leaflet-marker-icon:hover {
    transform: scale(1.1);
  }
  #wheres-nana-map .nana-marker-container {
    background: transparent;
    border: none;
  }
  #wheres-nana-map .nana-marker-container .nana-pin-marker {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: float 3s ease-in-out infinite;
  }
  #wheres-nana-map .nana-marker-container .nana-pin-marker .nana-pin-face {
    position: relative;
    z-index: 2;
  }
  #wheres-nana-map .nana-marker-container .nana-pin-marker .nana-pin-pointer {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid rgba(0, 0, 0, 0.5);
    filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3));
    margin-top: -2px;
    z-index: 1;
  }
  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-5px);
    }
  }
  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
  }
  #wheres-nana-map .home-base-marker-container {
    background: transparent !important;
    border: none !important;
  }
  #wheres-nana-map .home-base-marker-container .home-base-pin {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }
  #wheres-nana-map .home-base-marker-container .home-base-pin .home-base-icon {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 8px;
    padding: 2px;
  }
  #wheres-nana-map .home-base-marker-container .home-base-pin .home-base-pointer {
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 18px solid #d32f2f;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
    margin-top: -2px;
    z-index: 1;
  }
  #wheres-nana-map .home-base-marker-container:hover .home-base-pin {
    transform: scale(1.15);
    transition: transform 0.3s ease;
  }
  #wheres-nana-map .home-base-marker-container:hover .home-base-pin .home-base-pointer {
    border-top-color: #b71c1c;
  }
  #wheres-nana-map .map-scroll-hint {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    color: #666;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #wheres-nana-map .map-scroll-hint.show {
    opacity: 1;
  }
}
@media only screen and (min-width: 0rem) and (max-width: 47.9375rem) {
  #wheres-nana-map .map-container {
    padding-bottom: 70%;
    min-height: 500px;
  }
  #wheres-nana-map .leaflet-container {
    touch-action: pan-x pan-y;
  }
  #wheres-nana-map .leaflet-control-zoom a {
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 20px;
  }
  #wheres-nana-map .map-scroll-hint {
    display: none;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #wheres-nana-map .map-container {
    padding-bottom: 45%;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  #wheres-nana-map .map-container {
    padding-bottom: 30%;
    max-height: 450px;
  }
}
/* ============================================
   Nana Story Section (The Origin)
   ============================================ */
@media only screen and (min-width: 0rem) {
  #nana-story {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  #nana-story::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(229, 62, 48, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(229, 62, 48, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  #nana-story .cs-container {
    position: relative;
    z-index: 1;
    max-width: 80rem;
    margin: 0 auto;
  }
  #nana-story .cs-content {
    max-width: 43.75rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  #nana-story .pierogi-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    opacity: 0.2;
    color: var(--white);
    display: block;
    position: relative;
    z-index: 2;
  }
  #nana-story .pierogi-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  }
  #nana-story .cs-topper {
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #nana-story .cs-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  #nana-story .cs-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #nana-story .cs-text:last-of-type {
    margin-bottom: 0;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #nana-story {
    padding: clamp(5rem, 8vw, 7rem) 1rem;
  }
  #nana-story .pierogi-icon {
    width: 100px;
    height: 100px;
    opacity: 0.25;
  }
}
/* ============================================
   Retailer Contact Section
   ============================================ */
@media only screen and (min-width: 0rem) {
  #retailer-contact {
    padding: var(--sectionPadding);
    background-color: var(--white);
    text-align: center;
  }
  #retailer-contact .cs-container {
    max-width: 80rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  #retailer-contact .retailer-contact__image-wrapper {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    position: relative;
  }
  #retailer-contact .retailer-contact__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  #retailer-contact .retailer-contact__image:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  }
  #retailer-contact .retailer-contact__image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }
  #retailer-contact .cs-content {
    max-width: 43.75rem;
    margin: 0 auto;
    text-align: center;
  }
  #retailer-contact .cs-topper {
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    margin-bottom: 1rem;
    display: block;
  }
  #retailer-contact .cs-title {
    color: var(--headerColor);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  #retailer-contact .cs-text {
    color: var(--bodyTextColor);
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
    line-height: 1.7;
    margin-bottom: 2rem;
    text-align: center;
  }
  #retailer-contact .cs-button-solid {
    margin-top: 1rem;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #retailer-contact .cs-container {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  #retailer-contact .retailer-contact__image-wrapper {
    max-width: 350px;
    flex-shrink: 0;
  }
  #retailer-contact .cs-content {
    flex: 1;
    text-align: left;
  }
  #retailer-contact .cs-topper,
  #retailer-contact .cs-title,
  #retailer-contact .cs-text {
    text-align: left;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #retailer-contact {
    padding: clamp(5rem, 8vw, 7rem) 1rem;
  }
  #retailer-contact .cs-container {
    gap: 4rem;
  }
  #retailer-contact .retailer-contact__image-wrapper {
    max-width: 400px;
  }
}
/* New templated components following add-component.sh structure */
/* ============================================ */
/*                Role Cards                     */
/* ============================================ */
@media only screen and (min-width: 0rem) {
  #papa-jim-role {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
  }
  #papa-jim-role .cs-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #papa-jim-role .cs-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
  }
  #papa-jim-role .cs-content .cs-topper,
  #papa-jim-role .cs-content .cs-title,
  #papa-jim-role .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
  }
  #papa-jim-role .cs-content .cs-topper {
    color: var(--primary-light);
  }
  #papa-jim-role .role-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
  }
  #papa-jim-role .role-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
  }
  #papa-jim-role .role-card:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
  }
  #papa-jim-role .role-card .role-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  #papa-jim-role .role-card h3 {
    color: var(--white);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #papa-jim-role .role-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.25rem, 1.2vw, 1.375rem);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #papa-jim-role .role-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
/* ============================================
   Personality Breakdown Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #what-is-personality {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #what-is-personality .cs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  #what-is-personality .cs-content .cs-topper,
  #what-is-personality .cs-content .cs-title,
  #what-is-personality .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #what-is-personality .personality-breakdown {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  #what-is-personality .breakdown-item {
    padding: 2rem;
    background-color: var(--white);
    border-radius: 1rem;
    border-left: 4px solid var(--primary-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  #what-is-personality .breakdown-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-light);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  #what-is-personality .breakdown-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-left-color: var(--primary-light);
  }
  #what-is-personality .breakdown-item:hover::before {
    transform: scaleX(1);
  }
  #what-is-personality .breakdown-item:hover .breakdown-word {
    transform: scale(1.05);
  }
  #what-is-personality .breakdown-word {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--primary-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: transform 0.3s ease;
    display: block;
    text-align: center;
  }
  #what-is-personality .breakdown-meaning {
    font-size: var(--bodyFontSize);
    line-height: 1.6;
    color: var(--bodyTextColor);
    margin: 0;
    text-align: center;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #what-is-personality .personality-breakdown {
    flex-direction: row;
    flex-wrap: wrap;
  }
  #what-is-personality .breakdown-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 15rem;
  }
}
/* ============================================
   Location Info Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #location-details {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
  }
  #location-details::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(229, 62, 48, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(229, 62, 48, 0.05) 0%, transparent 50%);
    pointer-events: none;
  }
  #location-details .cs-container {
    position: relative;
    z-index: 1;
  }
  #location-details .cs-content {
    text-align: center;
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    max-width: 43.75rem;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
  }
  #location-details .cs-topper {
    color: var(--primary-light);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    margin-bottom: 1rem;
    display: block;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #location-details .cs-title {
    color: var(--white);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }
  #location-details .cs-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.25rem, 1.5vw, 1.375rem);
    line-height: 1.7;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #location-details .location-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    max-width: 80rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  #location-details .location-card {
    background-color: var(--white);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    border-radius: 0.75rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  #location-details .location-card:hover {
    border-color: var(--primary-light);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
  }
  #location-details .location-card h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  #location-details .location-card p {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
  }
  #location-details .location-note {
    font-size: 0.875rem;
    font-style: italic;
    color: var(--grey);
    background-color: var(--grey-light);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: auto;
  }
  #location-details .retailers-list {
    margin: 1.5rem 0;
  }
  #location-details .retailers-list__items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  #location-details .retailers-list__item {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    padding: 1rem;
    background-color: var(--grey-light);
    border-radius: 0.5rem;
    border-left: 3px solid var(--primary);
    line-height: 1.6;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
  }
  #location-details .retailers-list__item:hover {
    background-color: rgba(229, 62, 48, 0.05);
    border-left-color: var(--primary-light);
    transform: translateX(4px);
  }
  #location-details .retailers-list__item .retailer-info {
    flex: 1;
  }
  #location-details .retailers-list__item strong {
    color: var(--headerColor);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
  }
  #location-details .retailers-list__item .retailer-map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 0.5rem 0.75rem;
    background-color: rgba(229, 62, 48, 0.1);
    border-radius: 0.375rem;
    border: 1px solid var(--primary);
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 0.25rem;
  }
  #location-details .retailers-list__item .retailer-map-link:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(229, 62, 48, 0.3);
  }
  #location-details .retailers-list__item .retailer-map-link:active {
    transform: translateY(0);
  }
  #location-details .retailers-list__item .retailer-map-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
  }
  #location-details .retailers-list__item .retailer-map-link span {
    white-space: nowrap;
  }
  #location-details .location-card .cs-button-solid {
    margin-top: 1rem;
    align-self: flex-start;
  }
  #location-details .location-map {
    width: 100%;
    margin: 1.5rem 0;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    padding-bottom: 75%;
    height: 0;
    background: var(--grey-light);
  }
  #location-details .location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  #location-details .packaging-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
  }
  #location-details .packaging-item {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--grey-light);
  }
  #location-details .packaging-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
  }
  #location-details .packaging-item picture {
    display: block;
    width: 100%;
    height: auto;
  }
  #location-details .packaging-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }
  #location-details .packaging-item .packaging-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--headerColor);
    text-align: center;
    padding: 0.75rem 0.5rem;
    margin: 0;
    background: var(--grey-light);
    border-top: 2px solid var(--primary-light);
  }
  #location-details .packaging-features {
    list-style: none;
    padding-left: 0;
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
  }
  #location-details .packaging-features li {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #location-details .location-info {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
  }
  #location-details .location-card--packaging {
    grid-column: 1/-1;
  }
  #location-details .packaging-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  #location-details .retailers-list__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
  #location-details .location-map {
    padding-bottom: 60%;
    margin: 2rem 0;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  #location-details {
    padding: clamp(5rem, 8vw, 7rem) 1rem;
  }
  #location-details .location-info {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 60rem;
    margin: 0 auto;
  }
  #location-details .location-card:nth-child(1) {
    grid-column: 1;
  }
  #location-details .location-card:nth-child(2) {
    grid-column: 1;
  }
  #location-details .location-card--packaging {
    grid-column: 1;
  }
  #location-details .packaging-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }
  #location-details .retailers-list__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  #location-details .location-map {
    padding-bottom: 50%;
    margin: 2rem 0;
    max-width: 100%;
  }
}
/* ============================================
   Recipe Card Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #featured-recipes {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #featured-recipes .cs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  #featured-recipes .cs-content .cs-topper,
  #featured-recipes .cs-content .cs-title,
  #featured-recipes .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #featured-recipes .recipe-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 0;
    background-color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  #featured-recipes .recipe-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  #featured-recipes .recipe-card:hover .recipe-image img {
    transform: scale(1.05);
  }
  #featured-recipes .recipe-card:last-child {
    margin-bottom: 0;
  }
  #featured-recipes .recipe-image {
    overflow: hidden;
    aspect-ratio: 4/3;
  }
  #featured-recipes .recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
  }
  #featured-recipes .recipe-content {
    text-align: left;
    padding: 2rem;
  }
  #featured-recipes .recipe-name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
  }
  #featured-recipes .recipe-description {
    font-size: var(--bodyFontSize);
    line-height: 1.6;
    color: var(--bodyTextColor);
    margin-bottom: 1.5rem;
  }
  #featured-recipes .recipe-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background-color: var(--grey-light);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  #featured-recipes .detail {
    font-size: 0.875rem;
    color: var(--grey-dark);
  }
  #featured-recipes .recipe-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--headerColor);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
  }
  #featured-recipes .ingredients-list,
  #featured-recipes .instructions-list {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
    color: var(--bodyTextColor);
  }
  #featured-recipes .ingredients-list li,
  #featured-recipes .instructions-list li {
    margin-bottom: 0.5rem;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #featured-recipes .recipe-card {
    flex-direction: row;
    align-items: flex-start;
  }
  #featured-recipes .recipe-image {
    flex: 0 0 40%;
  }
  #featured-recipes .recipe-content {
    flex: 1;
  }
}
/* ============================================
   Serving Ideas Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #serving-ideas {
    padding: var(--sectionPadding);
  }
  #serving-ideas .cs-content {
    text-align: center;
    margin-bottom: 3rem;
  }
  #serving-ideas .cs-content .cs-topper,
  #serving-ideas .cs-content .cs-title,
  #serving-ideas .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
  }
  #serving-ideas .cs-content .cs-topper {
    color: var(--primary-light);
  }
  #serving-ideas .serving-ideas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #serving-ideas .serving-idea {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-light);
  }
  #serving-ideas .serving-idea h3 {
    font-size: clamp(1.25rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
  }
  #serving-ideas .serving-idea p {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    margin: 0;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #serving-ideas .serving-ideas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  #serving-ideas .serving-ideas-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ============================================
   Nutrition Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #preparation-nutrition {
    padding: var(--sectionPadding);
    background-color: var(--primary);
    position: relative;
    overflow: hidden;
  }
  #preparation-nutrition .cs-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #preparation-nutrition .cs-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
  }
  #preparation-nutrition .cs-content .cs-topper,
  #preparation-nutrition .cs-content .cs-title,
  #preparation-nutrition .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
  }
  #preparation-nutrition .cs-content .cs-topper {
    color: var(--primary-light);
  }
  #preparation-nutrition .prep-instructions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
  }
  #preparation-nutrition .prep-step {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
  }
  #preparation-nutrition .prep-step:hover {
    background-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
  }
  #preparation-nutrition .prep-step .step-number {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }
  #preparation-nutrition .prep-step h3 {
    color: var(--white);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #preparation-nutrition .prep-step p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.25rem, 1.2vw, 1.375rem);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #preparation-nutrition .prep-step p strong {
    color: var(--white);
    font-weight: 700;
  }
  #preparation-nutrition .food-safety-note {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  }
  #preparation-nutrition .food-safety-note p {
    color: rgba(255, 255, 255, 0.95);
    font-size: clamp(1.25rem, 1.2vw, 1.375rem);
    line-height: 1.6;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  }
  #preparation-nutrition .food-safety-note p strong {
    color: var(--white);
    font-weight: 700;
  }
  #nutrition-table,
  #ingredients,
  #nutrition-questions {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #nutrition-table .cs-container,
  #ingredients .cs-container,
  #nutrition-questions .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
  }
  #nutrition-table .cs-content,
  #ingredients .cs-content,
  #nutrition-questions .cs-content {
    text-align: center;
    max-width: 43.75rem;
    margin: 0 auto 3rem;
  }
  #nutrition-table .cs-content .cs-topper,
  #nutrition-table .cs-content .cs-title,
  #nutrition-table .cs-content .cs-text,
  #ingredients .cs-content .cs-topper,
  #ingredients .cs-content .cs-title,
  #ingredients .cs-content .cs-text,
  #nutrition-questions .cs-content .cs-topper,
  #nutrition-questions .cs-content .cs-title,
  #nutrition-questions .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #ingredients .ingredient-lists {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
  }
  #ingredients .ingredient-card {
    background-color: var(--white);
    border: 2px solid var(--grey-light);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    overflow: hidden;
  }
  #ingredients .ingredient-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
  }
  #ingredients .ingredient-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  #ingredients .ingredient-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
  }
  #ingredients .ingredient-card:hover::before {
    transform: scaleX(1);
  }
  #ingredients .ingredient-card:hover .ingredient-card__content {
    opacity: 0;
    transform: translateY(-10px);
  }
  #ingredients .ingredient-card:hover .ingredient-card__title {
    opacity: 0.2;
    transform: scale(0.95);
  }
  #ingredients .ingredient-card:hover .ingredient-card__packaging {
    opacity: 1;
    transform: translateY(0);
  }
  #ingredients .ingredient-card__packaging {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.98) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 1;
    pointer-events: none;
    backdrop-filter: blur(2px);
  }
  #ingredients .ingredient-card__packaging .packaging-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0 0 1rem 0;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 0.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  #ingredients .ingredient-card__packaging picture {
    display: block;
    width: 100%;
    max-width: 280px;
    height: auto;
    margin: 0 auto;
  }
  #ingredients .ingredient-card__packaging img {
    width: 100%;
    max-width: 280px;
    max-height: 200px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0.5rem;
    margin: 0 auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
  }
  #ingredients .ingredient-card__title {
    position: relative;
    z-index: 2;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  #ingredients .ingredient-card__content {
    position: relative;
    z-index: 0;
    transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  #ingredients .ingredient-card__title {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 1.25rem;
    text-align: center;
  }
  #ingredients .ingredient-card__content {
    text-align: left;
  }
  #ingredients .ingredient-card__label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--grey-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
  }
  #ingredients .ingredient-card__ingredients {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    line-height: 1.6;
    margin-bottom: 1rem;
  }
  #ingredients .ingredient-card__allergens {
    font-size: 0.9375rem;
    color: var(--primary);
    font-weight: 600;
    padding-top: 1rem;
    border-top: 1px solid var(--grey-light);
    margin: 0;
  }
  #ingredients .ingredient-card__allergens strong {
    color: var(--headerColor);
  }
  #ingredients .ingredient-commitment {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--grey-light);
  }
  #ingredients .commitment-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--headerColor);
    text-align: center;
    margin-bottom: 2rem;
  }
  #ingredients .commitment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  #ingredients .commitment-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border: 2px solid var(--grey-light);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateY(20px);
    position: relative;
  }
  #ingredients .commitment-card.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  #ingredients .commitment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-light);
    background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(248, 249, 250) 100%);
  }
  #ingredients .commitment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1;
  }
  #ingredients .commitment-card__title {
    font-size: clamp(1.25rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.75rem;
  }
  #ingredients .commitment-card__text {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    line-height: 1.6;
    margin: 0;
  }
}
/* Desktop - 768px */
@media only screen and (min-width: 48rem) {
  #preparation-nutrition .prep-instructions {
    grid-template-columns: repeat(2, 1fr);
  }
  #ingredients .ingredient-lists {
    grid-template-columns: repeat(2, 1fr);
  }
  #ingredients .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #preparation-nutrition .prep-instructions {
    grid-template-columns: repeat(3, 1fr);
  }
  #ingredients .ingredient-lists {
    grid-template-columns: repeat(3, 1fr);
  }
  #ingredients .commitment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ============================================
   Commitment Cards Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  .ingredient-commitment {
    margin-top: 3rem;
    padding: 2rem 0;
  }
  .ingredient-commitment .commitment-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--headerColor);
    text-align: center;
    margin-bottom: 2rem;
  }
  .ingredient-commitment .commitment-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .ingredient-commitment .commitment-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 2px solid var(--primary-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
  }
  .ingredient-commitment .commitment-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
  }
  .ingredient-commitment .commitment-card .commitment-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  .ingredient-commitment .commitment-card .commitment-card__title {
    font-size: clamp(1.25rem, 2vw, 1.375rem);
    font-weight: 700;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
  }
  .ingredient-commitment .commitment-card .commitment-card__text {
    font-size: var(--bodyFontSize);
    color: var(--bodyTextColor);
    margin: 0;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  .ingredient-commitment .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  .ingredient-commitment .commitment-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ============================================
   Gallery Grid Component
   ============================================ */
@media only screen and (min-width: 0rem) {
  #community-gallery {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #community-gallery .cs-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 1rem;
  }
  #community-gallery .cs-content {
    text-align: center;
    width: 100%;
    max-width: 43.75rem;
    margin: 0 auto 3rem;
  }
  #community-gallery .cs-content .cs-topper,
  #community-gallery .cs-content .cs-title,
  #community-gallery .cs-content .cs-text {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #community-gallery .cs-content .cs-topper {
    color: var(--flavor-golden);
  }
  #community-gallery .cs-content .cs-title {
    color: var(--headerColor);
  }
  #community-gallery .cs-content .cs-text {
    color: var(--bodyTextColor);
  }
  #community-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0 0 2rem 0;
    padding: 0;
  }
  #community-gallery .gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
  }
  #community-gallery .gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  #community-gallery .gallery-item:hover .gallery-picture img {
    transform: scale(1.05);
  }
  #community-gallery .gallery-item .gallery-picture {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    overflow: hidden;
  }
  #community-gallery .gallery-item .gallery-picture img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1;
    transition: transform 0.3s ease;
  }
  #community-gallery .gallery-item .gallery-caption {
    padding: 1rem;
    font-size: var(--bodyFontSize);
    color: var(--headerColor);
    font-weight: 600;
    text-align: center;
    margin: 0;
    background: var(--white);
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #community-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
/* ============================================ */
/*           Packaging Showcase                 */
/* ============================================ */
@media only screen and (min-width: 0rem) {
  #packaging-showcase {
    padding: var(--sectionPadding);
    background-color: var(--white);
  }
  #packaging-showcase .cs-container {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding: 0 1rem;
  }
  #packaging-showcase .cs-content {
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  #packaging-showcase .packaging-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 0;
    padding: 0;
  }
  #packaging-showcase .packaging-showcase-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: var(--grey-light);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  #packaging-showcase .packaging-showcase-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  #packaging-showcase .packaging-showcase-item picture {
    display: block;
    width: 100%;
    height: auto;
    flex: 1;
  }
  #packaging-showcase .packaging-showcase-item img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0.5rem;
    transition: transform 0.3s ease;
  }
  #packaging-showcase .packaging-showcase-item:hover img {
    transform: scale(1.05);
  }
  #packaging-showcase .packaging-showcase-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--headerColor);
    text-align: center;
    margin: 0;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: 0.5rem;
    border: 2px solid var(--primary-light);
    width: 100%;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 48rem) {
  #packaging-showcase .packaging-showcase-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
  #packaging-showcase .packaging-showcase-item {
    padding: 2rem;
  }
}
@media only screen and (min-width: 0rem) and (min-width: 64rem) {
  #packaging-showcase .packaging-showcase-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2.5rem;
  }
  #packaging-showcase .packaging-showcase-item {
    padding: 2.5rem;
  }
  #packaging-showcase .packaging-showcase-label {
    font-size: 1.25rem;
  }
}
/* ============================================ */
/*        Flavor Detail Card Component          */
/* ============================================ */
/* ============================================ */
/*      Flavor Detail Card Core                 */
/* ============================================ */
@media only screen and (min-width: 0rem) {
  /* Core flavor detail card styles and tokens */
  :root {
    --flavor-card-border-width: 4px;
    --flavor-card-border-radius: 1rem;
    --flavor-card-padding: 2rem;
    --flavor-card-gap: 2rem;
  }
}
@media only screen and (min-width: 0rem) {
  .flavor-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2rem;
    border-radius: 1rem;
    background-color: var(--white);
    border-left: 4px solid var(--flavor-accent, var(--primary-light));
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }
  .flavor-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--flavor-accent, var(--primary-light));
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  .flavor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  }
  .flavor-card:hover::before {
    transform: scaleX(1);
  }
  .flavor-card:last-child {
    margin-bottom: 0;
  }
  .flavor-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .flavor-image {
    overflow: hidden;
    border-radius: 0.75rem;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(0, 0, 0, 0.02) 100%);
    max-width: 100%;
  }
  .flavor-image picture,
  .flavor-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 0.75rem;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
    margin: 0 auto;
  }
  .flavor-image img {
    aspect-ratio: 4/3;
    object-position: center;
    max-height: 300px;
  }
  .flavor-packaging {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--grey-light);
    padding: 1rem;
    border: 2px solid var(--flavor-accent, var(--primary-light));
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 100%;
  }
  .flavor-packaging .packaging-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0 0 0.75rem 0;
    padding: 0.5rem;
    background: var(--white);
    border-radius: 0.25rem;
  }
  .flavor-packaging picture {
    display: block;
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto;
  }
  .flavor-packaging img {
    width: 100%;
    max-width: 350px;
    max-height: 250px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 0.5rem;
    margin: 0 auto;
  }
  .flavor-card:hover .flavor-image img {
    transform: scale(1.05);
  }
  .flavor-card:hover .flavor-packaging {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  .flavor-content {
    text-align: left;
  }
  .flavor-name {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: var(--headerColor);
    margin-bottom: 0.5rem;
  }
  .flavor-tagline {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    color: var(--primary-light);
    font-weight: 700;
    margin-bottom: 1rem;
  }
  .flavor-description {
    font-size: var(--bodyFontSize);
    line-height: 1.6;
    color: var(--bodyTextColor);
    margin-bottom: 1.5rem;
  }
  .flavor-ingredients {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(248, 249, 250, 0.9) 100%);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  .ingredients-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--grey-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
  }
  .ingredients-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: flex-start;
  }
  .ingredient-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 0 0 auto;
    min-width: 65px;
    max-width: 95px;
  }
  .ingredient-item picture,
  .ingredient-item img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .ingredient-item img {
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center;
  }
  .ingredient-item:hover picture,
  .ingredient-item:hover img {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  }
  .ingredient-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--headerColor);
    text-align: center;
    line-height: 1.2;
  }
  .flavor-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
    background-color: var(--grey-light);
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
  }
  .stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
  }
  .stat-label {
    font-size: 0.875rem;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--headerColor);
  }
  .flavor-allergens {
    font-size: 0.875rem;
    color: var(--grey-dark);
    margin-top: 1rem;
  }
}
@media only screen and (min-width: 48rem) {
  .flavor-card {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
  .flavor-images {
    flex: 0 0 35%;
    max-width: 350px;
  }
  .flavor-image {
    width: 100%;
  }
  .flavor-image picture,
  .flavor-image img {
    max-width: 100%;
    max-height: 280px;
  }
  .flavor-image img {
    aspect-ratio: 4/3;
  }
  .flavor-packaging picture,
  .flavor-packaging img {
    max-width: 100%;
    max-height: 220px;
  }
  .flavor-packaging .packaging-label {
    font-size: 0.875rem;
  }
  .flavor-content {
    flex: 1;
  }
  .flavor-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .ingredients-gallery {
    gap: 1.5rem;
  }
  .ingredient-item {
    min-width: 80px;
    max-width: 110px;
  }
  .ingredient-name {
    font-size: 0.875rem;
  }
}
@media only screen and (min-width: 64rem) {
  .flavor-ingredients {
    padding: 1.5rem;
  }
  .ingredients-gallery {
    gap: 2rem;
  }
  .ingredient-item {
    min-width: 95px;
    max-width: 125px;
  }
}

/*# sourceMappingURL=root.css.map */
