/** Shopify CDN: Minification failed

Line 679:15 Expected identifier but found whitespace
Line 679:17 Unexpected "{"
Line 679:26 Expected ":"
Line 690:10 Expected identifier but found whitespace
Line 690:12 Unexpected "{"
Line 690:21 Expected ":"
Line 703:15 Expected identifier but found whitespace
Line 703:17 Unexpected "{"
Line 703:26 Expected ":"
Line 709:10 Expected identifier but found whitespace
... and 29 more hidden warnings

**/


/* CSS from section stylesheet tags */
.faq-section {
    margin: 0 auto;
    padding: 48px 40px;
  }

  .faq-info-box-inner {
    display: flex;
    gap: 24px;
  }
  .faq-section-title {
    color: #083050;
    font-family: AureaUltra;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: left;
    margin-bottom: 2.5rem;
  }
  .faq-content-wrapper {
    display: flex;
    column-gap: 79px;
    row-gap: 2rem;
    align-items: flex-start;
    /* max-width: 1100px; */
    width: 100%;
    margin: 0 auto;
  }
  .faq-info-box {
    flex: 0 0 29%;
    background: #FEF7EF;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .faq-info-title {
    color: #083050;
    font-family: AureaUltra;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom:20px;
  }
  .faq-info-text {
    font-size: 1rem;
    color: #333;
  }
  .faq-accordion {
    flex: 0 0 65%;
  }
  .faq-accordion-item {
    border-bottom: 1px solid #e5e7eb;
  }
  .faq-accordion-title {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    font-size: 24px;
    font-weight: 700;
    text-align: left;
    padding: 1.25rem 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #083050;
    font-family: Agenda;
  }

  .faq-accordion-content p {
    color: #141414;
    font-family: Agenda;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%;
    /* 23.4px */
  }

  .faq-accordion-title.active,
  .faq-accordion-title:hover {
    color: #1e3a8a;
  }
  .faq-arrow {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  .icon-plus,
  .icon-minus {
    vertical-align: middle;
  }
  .icon-minus {
    display: none;
  }
  .faq-accordion-title.active .icon-plus {
    display: none;
  }
  .faq-accordion-title.active .icon-minus {
    display: inline;
  }
  .faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1)
    , padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
  }
  .faq-accordion-content.open {
    max-height: 400px;
    padding: 1rem 0 2rem;
  }

  .tip-title {
    color: #083050;
    font-family: Agenda !important;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
  }
  @media (max-width: 900px) {
    .faq-content-wrapper {
      flex-direction: column;
      gap: 1.5rem;
    }
    .faq-info-box,
    .faq-accordion {
      flex: 1 1 100%;
      max-width: 100%;
    }

    .faq-accordion-title{
      font-size:20px;
    }
    .faq-section-title{
      font-size:28px;
    }

    .faq-section{
      padding: 20px 
    }
  }
.buzz-fuzz-section {
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .buzz-fuzz-container {
    width: 100%;
    position: relative;
  }

  .cards-wrapper {
    overflow: visible;
    border-radius: 20px;
    position: relative;
    height: 600px;
  }

  .card-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    touch-action: pan-y;
    gap: 20px;
  }

  .buzz-card {
    flex: 0 0 calc(75% - 10px);
    padding: 0;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    min-height: 600px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #000;
  }

  .card-background-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 30%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .card-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .card-content {
    position: relative;
    z-index: 2;
    text-align: left;
    width: 70%;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .card-title-icons {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 10px;
    text-align: center;
  }

  .card-subtitle-iconsw {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 30px;
    font-weight: 500;
    text-align: center;
  }

  .ingredients-grid,
  .attributes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
  }

  .ingredient-item,
  .attribute-item {
    text-align: center;
  }

  .ingredient-icon,
  .attribute-icon {
    margin: 0 auto 15px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ingredient-icon img,
  .attribute-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .ingredient-item h4,
  .attribute-item h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 5px;
  }

  .ingredient-item p,
  .attribute-item p {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-weight: 400;
  }

  .buzz-fuzz-title{
    text-align: center;
    margin-bottom:32px;
  }

  /* Navigation */
  .card-navigation {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
  }

  .nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #bdc3c7;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .nav-dot.active {
    background: #3498db;
    transform: scale(1.2);
  }

  .nav-dot:hover {
    background: #3498db;
  }

  /* Swipe hint */
  .swipe-hint {
    text-align: center;
    margin-top: 20px;
    opacity: 0.6;
    font-size: 0.9rem;
    color: #7f8c8d;
  }

  .card-subtitle-icons {
    text-align: center !important;
  }

  /* Mobile responsiveness */
  @media (max-width: 768px) {
    .buzz-fuzz-section {
      padding: 40px 15px;
      overflow: hidden;
    }

    .card-slider {
      gap: 15px;
    }

    .buzz-card {
      flex: 0 0 calc(85% - 7.5px);
      flex-direction: column;
      padding: 0;
      justify-content: space-between;
    }

    .card-content {
      width: 100%;
      padding:20px 0px 0px;
      text-align: center;
      order: 1;
    }

    .card-title-icons {
      font-size: 2.2rem;
      text-align: center;
    }

    .card-subtitle-icons {
      font-size: 1rem;
      text-align: center;
    }

    .card-background-image {
      position: relative;
      width: 100%;
      height: 150px;
      order: 2;
      top: auto;
      right: auto;
    }

    .ingredients-grid,
    .attributes-grid {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 30px;
    }

    .ingredient-item,
    .attribute-item {
      display: flex;
      align-items: center;
      text-align: left;
      gap: 15px;
      padding: 10px;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 10px;
    }

    .ingredient-icon,
    .attribute-icon {
      margin: 0;
      width: 50px;
      height: 50px;
      flex-shrink: 0;
    }

    .ingredient-icon img,
    .attribute-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .ingredient-item h4,
    .attribute-item h4 {
      font-size: 1.1rem;
      margin-bottom: 2px;
    }

    .ingredient-item p,
    .attribute-item p {
      font-size: 0.9rem;
      margin: 0;
    }

    .ingredient-item div:last-child,
    .attribute-item div:last-child {
      flex: 1;
    }

    .ingredient-text,
    .attribute-text {
      flex: 1;
    }
  }

  @media (max-width: 480px) {
    .card-title-icons {
      font-size: 1.8rem;
    }

    .card-slider {
      gap: 10px;
    }

    .buzz-card {
      flex: 0 0 calc(90% - 5px);
    }

    .ingredients-grid,
    .attributes-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }

    .cards-wrapper {
      height: auto;
      min-height: 500px;
    }

    .buzz-card {
      min-height: 500px;
    }

    .card-background-image {
      height: 120px;
    }
  }
/* Desktop Layout */
  .desktop-layout {
    height: 100%;
  }

  .text-background-absolute {
    position: relative;
  }

  .text-content-side {
    position: relative;
  }

  /* Mobile Layout */
  .mobile-layout {
    display: none;
    flex-direction: column;
  }

  .mobile-text-background {
    position: relative;
  }

  @media only screen and (max-width: 768px) {
    .desktop-layout {
      display: none !important;
    }

    .mobile-layout {
      display: flex !important;
    }

    .mobile-text-content {
      min-height: 300px;
    }
    .hero-alt-tmc{
      text-align: center!important;
    }
  }

  /* Richtext content styling */
  .richtext-content p {
    margin: 0 0 1rem;
  }

  .richtext-content p:last-child {
    margin-bottom: 0;
  }

  .richtext-content strong {
    font-weight: bold;
  }

  .richtext-content em {
    font-style: italic;
  }

  .richtext-content a {
    color: inherit;
    text-decoration: underline;
  }

  /* Button Styles */
  .hv-btn-container {
    width: 18rem;
    background: #1e3a8a;
    border-radius: 0.5rem;
    outline-offset: -2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  .hv-btn-link {
    color: #fff;
    font-size: 1.125rem;
    font-weight: bold;
    font-family: 'Agenda'
    , sans-serif;
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 1rem 1.75rem;
  }

  .hv-btn-container:hover {
    background: #fff;
  }

  .hv-btn-link:hover {
    color: #1e3a8a;
  }

  /* Video Display Control */
  .hero-video-desktop {
    display: block;
  }

  .hero-video-mobile {
    display: none;
  }

  @media only screen and (max-width: 768px) {
    .hero-video-desktop {
      display: none !important;
    }
    .hero-video-mobile {
      display: block !important;
    }

    .hv-btn-container {
      width:100%;
    }
  }

  /* Responsive Typography */
  @media only screen and (max-width: 1024px) {
    .desktop-layout .hero-title {
      font-size: 64px !important;
    }
  }

  @media only screen and (max-width: 768px) {
    .mobile-layout .hero-title {
      font-size: 40px !important;
    }

    .mobile-text-content {
      padding: 40px 0 !important;
    }
  }
/* Desktop Layout */
  .desktop-layout {
    height: 100%;
  }

  .text-content-side {
    position: relative;
  }

  /* Mobile Layout */
  .mobile-layout {
    display: none;
    flex-direction: column;
    /* height: 95dvb; */
    align-items: flex-start;
    justify-content: flex-start;
  }

  @media only screen and (max-width: 768px) {
    .desktop-layout {
      display: none !important;
    }

    .mobile-layout {
      display: flex !important;
      min-height: unset !important;
    }

    .mobile-text-content {
      height: 100%;
      min-height: unset;
      padding: 40px 0 !important;
    }
    
    .mobile-content-inner {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      min-height: 70dvh;
    }

    .text-content-group {
      flex-shrink: 0;
      margin-top:5px;
    }
  }

  /* Richtext content styling */
  .richtext-content p {
    margin: 0 0 1rem;
  }

  .richtext-content p:last-child {
    margin-bottom: 0;
    padding-right:20px;
  }

  .richtext-content strong {
    font-weight: bold;
  }

  .richtext-content em {
    font-style: italic;
  }

  .richtext-content a {
    color: inherit;
    text-decoration: underline;
  }

  /* Button Styles */
  .hv-btn-container {
    width: 18rem;
    background: {{ section.settings.button_bg_color | default: '#083050' }};
    border-radius: 0.5rem;
    outline-offset: -2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .hv-btn-link {
    color: {{ section.settings.button_text_color | default: '#fff' }};
    font-size: 1.125rem;
    font-weight: bold;
    font-family: 'Agenda'
    , sans-serif;
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 1rem 1.75rem;
    transition: all 0.3s ease;
  }

  .hv-btn-container:hover {
    background: {{ section.settings.button_hover_bg | default: '#fff' }};
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .hv-btn-link:hover {
    color: {{ section.settings.button_hover_text | default: '#083050' }};
  }

  @media only screen and (max-width: 768px) {
    .hv-btn-container {
      width: 100%;
    }

    .richtext-content p:last-child {
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    padding-right:0px;
  }
  }

  /* Responsive Typography */
  @media only screen and (max-width: 1024px) {
    .desktop-layout .hero-title {
      font-size: clamp(48px, 6vw, 64px) !important;
    }
  }

  @media only screen and (max-width: 768px) {
    .mobile-layout .hero-title {
      font-size: clamp(32px, 8vw, 40px) !important;
      line-height: 1.2 !important;
      text-align: center;
      margin-bottom:12px!important;
    }
  }

  /* Animation Classes */
  .hero-title {
    animation: fadeInUp 0.8s ease-out;
  }

  .subtext,
  .hv-btn-container {
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media only screen and (max-width: 768px) {

    .mobile-layout .hero-title{
        font-size: clamp(32px, 5vw, 38px) !important;
    }

    /* .hv-btn-link{
      padding: 0.5rem 1.75rem!important;
    } */

    .mob-hero-btn{
      width:90%;
      margin: 0 auto 20px;
    }

        .mobile-text-content{
      padding: 20px 0 40px !important;
    }

  }


  .hv-btn-container{
    background-color: #083050!important;
  }

  .hv-btn-link:hover{
    color: #fff!important;
  }

  .review-hero{
    max-width:280px;
    margin-bottom: 20px;
  }

  .review-hero-mob{
    display: block;
    max-width:200px;
    margin:20px auto;
  }


  @media only screen and (max-width: 376px) {
    .mobile-content-inner {
        min-height: 80dvh;
    }
}
/* Desktop Layout */
  .desktop-layout {
    height: 100%;
  }

  .text-content-side {
    position: relative;
  }

  /* Mobile Layout */
  .mobile-layout {
    display: none;
    flex-direction: column;
    /* height: 95dvb; */
    align-items: flex-start;
    justify-content: flex-start;
  }

  @media only screen and (max-width: 768px) {
    .desktop-layout {
      display: none !important;
    }

    .mobile-layout {
      display: flex !important;
      min-height: unset !important;
    }

    .mobile-text-content {
      height: 100%;
      min-height: unset;
      padding: 40px 0 !important;
    }
    
    .mobile-content-inner {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
      min-height: 70dvh;
    }

    .text-content-group {
      flex-shrink: 0;
      margin-top:5px;
    }
  }

  /* Richtext content styling */
  .richtext-content p {
    margin: 0 0 1rem;
  }

  .richtext-content p:last-child {
    margin-bottom: 0;
    padding-right:20px;
  }

  .richtext-content strong {
    font-weight: bold;
  }

  .richtext-content em {
    font-style: italic;
  }

  .richtext-content a {
    color: inherit;
    text-decoration: underline;
  }

  /* Button Styles */
  .hv-btn-container {
    width: 18rem;
    background: {{ section.settings.button_bg_color | default: '#083050' }};
    border-radius: 0.5rem;
    outline-offset: -2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 20px;
  }

    .hv-btn-container2 {
    width: 13rem;
    background: {{ section.settings.button_bg_color | default: '#083050' }};
    border-radius: 0.5rem;
    outline-offset: -2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .hv-btn-link {
    color: {{ section.settings.button_text_color | default: '#fff' }};
    font-size: 1.125rem;
    font-weight: bold;
    font-family: 'Agenda'
    , sans-serif;
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 1rem 1.75rem;
    transition: all 0.3s ease;
  }

  .hv-btn-container:hover {
    background: {{ section.settings.button_hover_bg | default: '#fff' }};
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }

  .hv-btn-link:hover {
    color: {{ section.settings.button_hover_text | default: '#083050' }};
  }

  @media only screen and (max-width: 768px) {
    .hv-btn-container {
      width: 100%;
    }

    .richtext-content p:last-child {
    font-size: 18px;
    line-height: 1.3;
    text-align: center;
    padding-right:0px;
  }
  }

  /* Responsive Typography */
  @media only screen and (max-width: 1024px) {
    .desktop-layout .hero-title {
      font-size: clamp(48px, 6vw, 64px) !important;
    }
  }

  @media only screen and (max-width: 768px) {
    .mobile-layout .hero-title {
      font-size: clamp(32px, 8vw, 40px) !important;
      line-height: 1.2 !important;
      text-align: center;
      margin-bottom:12px!important;
    }
  }

  /* Animation Classes */
  .hero-title {
    animation: fadeInUp 0.8s ease-out;
  }

  .subtext,
  .hv-btn-container {
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }

  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @media only screen and (max-width: 768px) {

    .mobile-layout .hero-title{
        font-size: clamp(32px, 5vw, 38px) !important;
    }

    /* .hv-btn-link{
      padding: 0.5rem 1.75rem!important;
    } */

    .mobile-layout .hero-tagline {
      display: block;
      text-align: center;
    }

    .mob-hero-btn{
      width:90%;
      margin: 0 auto 20px;
    }

        .mobile-text-content{
      padding: 20px 0 40px !important;
    }

  }


  .hv-btn-container{
    background-color: #083050!important;
  }

  .hv-btn-link:hover{
    color: #fff!important;
  }

  .review-hero{
    max-width:280px;
    margin-bottom: 20px;
  }

  .review-hero-mob{
    display: block;
    max-width:200px;
    margin:20px auto;
  }


  @media only screen and (max-width: 376px) {
    .mobile-content-inner {
        min-height: 80dvh;
    }
}
.grapevine-icons-section {
    position: relative;
    min-height: 400px;
    width:100%;
  }

  .section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
  }

  .section-title {
    color: {{ section.settings.title_color | default: '#2c3e50' }};
    text-align: center;
    font-family: AureaUltra;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 48px */
    margin-bottom:48px;
  }

  .icon-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .icon-card {
    padding: 14px;
  }

  .icn-inner{
    padding:100px 0;
  }

  .icon-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .icon-card:hover .icon-circle {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }

  .icon-image {
    width: 75px;
    height: 65px;
    object-fit: contain;
  }

  .default-icon {
    color: {{ section.settings.icon_color | default: '#3b82f6' }};
  }

  .card-title {
    font-size: 24px;
    font-weight: 600;
    color: {{ section.settings.card_title_color | default: '#2c3e50' }};
    margin: 0;
    line-height: 1.3;
    margin-bottom:16px;
  }

  .card-description {
    font-size: 16px;
    font-weight: 400;
    color: {{ section.settings.card_text_color | default: '#4a5568' }};
    line-height: 1.5;
    margin: 0;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }

  /* Tablet Styles */
  @media (max-width: 1024px) {
    .icon-cards-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      padding: 0 20px;
    }

    .section-title {
      font-size: 40px;
      margin-bottom: 40px;
    }

    .icn-inner{
      padding:40px 0;
    }

    .card-title {
      font-size: 22px;
    }
  }

  /* Mobile Styles */
  @media (max-width: 768px) {
    .grapevine-icons-section {
      min-height: 300px;
    }

    .icon-cards-grid {
      grid-template-columns: 1fr;
      gap: 40px;
      padding: 0 20px;
    }

    .section-title {
      font-size: 32px;
      margin-bottom: 30px;
      padding: 0 20px;
    }


    .card-title {
      font-size: 20px;
      margin-bottom: 12px;
    }

    .card-description {
      max-width: 100%;
    }

    .icon-card {
      padding: 15px;
    }
  }

  /* Small Mobile Styles */
  @media (max-width: 480px) {
    .section-title {
      font-size: 32px;
    }
  }
.desktop-grid{
    gap:40px!important;
  }

  .mobile-grid {
    gap: 16px !important;
  }

  .mobile-grid .product-card-item {
    max-width: 100%;
  }

  #mobile-prev, #mobile-next{
    top:33%!important;
  }

  .mobile-dot {
    background: #7ecbff !important; /* more saturated light blue */
    transition: background 0.2s;
    opacity: 1;
    border: none;
    outline: none;
  }

  .mobile-dot-active {
    background: #2563eb !important; /* blue-600 for active */
  }

  .card-sub span{
    color: #142C4B;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    display:block;
    margin-bottom:16px
  }

  .tt-title{
    font-size:40px!important;
  }

  .title-sub, .sub-sub{
    display: block;
    text-align:center;
  }

  .title-sub{
    margin-bottom:12px;
  }

  .sub-sub{
    margin-bottom:32px;
  }
  @media (max-width: 768px) {
    .tt-title{
      font-size:28px!important;
    }
    
    .mobile-grid .tw-tt {
      font-size: 16px !important;
      min-height: auto !important;
    }
    
    /* .mobile-grid .product-card-item {
      padding: 12px 8px;
    } */
    
    .mobile-grid .cta-btn-card {
      font-size: 14px !important;
    }
  }