.holiday-hero-container {
    position: relative;
    width: 100%;
    height: auto;
    padding-top: 56px;
    padding-bottom: 56px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    overflow: hidden;
}

.holiday-hero-content {
    height: 242px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    z-index: 1; /* Keeps content above the background */
}

.holiday-hero-discount-text {
    text-align: center;
    color: white;
    font-size: 18px;
    font-family: 'futura-pt', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 22px;
    letter-spacing: 0.48px;
    word-wrap: break-word;
}

.holiday-hero-sale-title {
    text-align: center;
    color: white;
    font-size: 42px;
    font-family: 'futura-pt', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 52px;
    letter-spacing: 1.12px;
    word-wrap: break-word;
}

.holiday-hero-description {
    text-align: center;
    color: white;
    font-size: 16px;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.43px;
    word-wrap: break-word;
    max-width: 560px; /* Max width for the description container */
}

/* Mobile styles */
@media (max-width: 768px) {
    .holiday-hero-container {
        padding-top: 56px;
        padding-bottom: 56px;
        background-size: cover;
        background-position: center;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 56px;
        min-height: 400px; /* Increase minimum height to allow for longer text */
    }

    .holiday-hero-content {
        height: 196px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 16px;
    }

    .holiday-hero-discount-text,
    .holiday-hero-sale-title,
    .holiday-hero-description {
        width: 331px; /* Set width for mobile content */
    }

    .holiday-hero-discount-text {
        font-size: 14px;
        line-height: 22px;
        letter-spacing: 0.48px;
    }

    .holiday-hero-sale-title {
        font-size: 32px;
        line-height: 32px;
        letter-spacing: 0.85px;
    }

    .holiday-hero-description {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.43px;
    }
}


.check-dates-banner-container {
    width: 100%;
    background-color: #12808F;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 20px 0;
    flex-direction: row; /* Keep text and button in a row */
}

.check-dates-banner-text-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}


.check-dates-banner-delivery-text {
    text-align: center;
    color: white;
    font-size: 16px;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.43px;
    word-wrap: break-word;
}

/* Toggle link with arrow */
.check-dates-banner-toggle {
    color: white;
    font-size: 16px;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 400;
    text-decoration: underline;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.arrow {
    width: 24px;
    height: 25px;
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
    transition: transform 0.3s ease;
}

.check-dates-banner-toggle.open .arrow {
    background-image: url('{% asset_path gifts/keyboard_arrow_down.png %}'); /* Arrow pointing up when open */
}

.check-dates-banner-button {
    width: 240px;
    height: 45px;
    padding: 11px 3px;
    border: 1px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.check-dates-banner-button-text {
    text-align: center;
    color: white;
    font-size: .938em;
    font-family: 'proxima-nova-condensed', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .3em;
    word-wrap: break-word;
    text-decoration: none; /* Ensure no underline on hover */
}

/* Hover state for the button */
.check-dates-banner-button:hover {
    background-color: white;
    text-decoration: none; /* Ensure no underline on hover */
}

.check-dates-banner-button:hover .check-dates-banner-button-text {
    color: #333333;
    text-decoration: none; /* Ensure no underline on hover */
}

/* Drawer container styling */
.check-dates-banner-drawer-container {
    width: 100%;
    margin: 0px auto; /* Center the drawer on the page */
    padding: 0px;
    text-align: center; /* Center text within the drawer */
    display: none; /* Hidden by default */
}

.check-dates-banner-drawer {
    width: 100%;
    background-color: #12808F;
    border: 0px solid #ccc;
    border-radius: 0px;
    padding: 0px;
}

/* Classes to control drawer visibility */
.is-hidden {
    display: none;
}

.is-visible {
    display: flex; /* Show the drawer container as flex */
}

/* Mobile styles */
@media (max-width: 768px) {
    .check-dates-banner-container {
        padding: 32px 22px;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 32px;
    }

    .check-dates-banner-text-box {
        width: 100%; /* Stretch full width */
        display: flex;
        justify-content: center; /* Center horizontally */
        align-items: center;
    }

    .check-dates-banner-delivery-text {
        text-align: center;
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.43px;
    }

    .check-dates-banner-button {
        width: 240px;
        height: 45px;
        padding: 11px 3px;
        border: 1px solid white;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 8px;
    }
}

/* Main container */
.gift-ideas-container {
    width: 100%;
    padding: 56px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    background-color: #fff;
}

/* Header styles */
.gift-ideas-header {
    width: 806px;
    text-align: center;
    color: #333333;
    font-size: 42px;
    font-family: 'futura-pt', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 52px;
    letter-spacing: 1.12px;
}

/* Grid layout */
.gift-ideas-grid {
    width: 1280px;
    display: flex;
    justify-content: center;
    gap: 32px;
}

/* Each item in the grid */
.gift-ideas-item {
    width: 405px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Image container */
.gift-ideas-image {
    width: 405px;
    height: 290px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image overlay */
.gift-ideas-overlay-icon {
    position: absolute;
    width: 59px;
    height: 60px;
    top: 26px;
    right: 30px;
    background: linear-gradient(0deg, #EEB866 0%, #EEB866 100%);
}

.gift-ideas-overlay-icon.small-icon {
    width: 30px;
    height: 30px;
    top: 225px;
    right: 40px;
}

/* Content styles */
.gift-ideas-content {
    text-align: center;
    gap: 16px;
}

.gift-ideas-title {
    color: #333333;
    font-size: 22px;
    font-family: 'futura-pt', sans-serif;
    font-weight: 700;
    line-height: 30px;
    letter-spacing: 0.59px;
}

.gift-ideas-description {
    color: #333333;
    font-size: 16px;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.43px;
    margin-bottom: 16px;
}

.gift-ideas-button {
    width: 240px;
    height: 45px;
    padding: 11px;
    border: 1px solid #333333;
    text-transform: uppercase;
    font-family: 'proxima-nova-condensed', sans-serif;
    font-weight: 600;
    font-size: .938em;
    letter-spacing: .3em;
    cursor: pointer;
    background-color: transparent;
    color: #333;
    transition: background-color 0.3s;
    margin: 0 auto; /* Center the button */
    display: block; /* Ensure it's treated as a block element */
    text-decoration: none; /* Remove underline */
}

.gift-ideas-button:hover {
    background-color: #333333;
    color: #fff;
    text-decoration: none; /* Ensure no underline on hover */
}

@media screen and (max-width: 768px) {
    /* Adjust container for mobile */
    .gift-ideas-container {
        padding: 32px 0;
    }

    /* Header styles for mobile */
    .gift-ideas-header {
        width: 331px;
        font-size: 32px;
        line-height: 32px;
        letter-spacing: 0.85px;
    }

    /* Grid becomes a vertical layout on mobile */
    .gift-ideas-grid {
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 56px;
    }

    /* Each item adapts for mobile */
    .gift-ideas-item {
        width: 300px;
        align-items: center;
        gap: 16px;
    }

    /* Image container for mobile */
    .gift-ideas-image {
        width: 300px;
        height: 215px;
    }

    /* Mobile title styles */
    .gift-ideas-title {
        font-size: 18px;
        line-height: 22px;
        letter-spacing: 0.48px;
    }

    /* Mobile description styles */
    .gift-ideas-description {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.43px;
    }

    /* Button stays the same, but centered and mobile-friendly */
    .gift-ideas-button {
        width: 240px;
        height: 45px;
        padding: 11px;
    }
}

/* Center the container horizontally */
.ugc-cpro-center-container {
  display: flex;
  justify-content: center;
  background-color: #170fd6; /* Set background color */
}

.ugc-cpro-image-module {
  background-color: #170fd6;
  padding: 10px 0px; /* Increase top padding to create space */
  width: 900px;
  box-sizing: border-box;
}

.ugc-cpro-logo-container {
  display: flex;
  align-items: center;
  justify-content: center; /* Center horizontally */
  margin-top: 80px;
  margin-bottom: 40px;
}

.ugc-cpro-logo-container img {
  width: 90px;
  height: 90px;
  margin-right: 20px;
}

.ugc-cpro-heading {
  font-family: "futura-pt", sans-serif;
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  margin: 0; /* Reset margin for h2 */
}

.ugc-cpro-image-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  overflow: hidden; /* Ensure all images are contained within the container */
}

.ugc-cpro-image-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Align text to the left */
  text-align: center;
  width: 25%; /* Distribute the width evenly among the images */
  padding: 0 0px; /* Add spacing between images */
}

.ugc-cpro-image-item-last {
  justify-content: flex-end; /* Align Image 4 to the right */
}

.ugc-cpro-image-item img {
  width: 100%;
  height: 100%; /* Adjust the height to maintain the aspect ratio */
  object-fit: cover;
}

.ugc-cpro-image-text {
  font-family: "proxima-nova", sans-serif;
  font-size: 14px;
  margin-top: auto;
  margin-left: 0; /* Remove the left margin */
  padding: 0 0px; /* Add padding to the text */
}

.anti-center-col-margin {
  margin-top: 0px!important;
}

.content-container-header {
  font-weight: bold;
  font-size: 14px;
  font-family: "proxima-nova", sans-serif;
}

.content-container-sub {
  font-weight: bold;
  font-size: 12px;
  font-family: "proxima-nova", sans-serif;
  margin: 0;
}

.content-container-copy {
  font-size: 11px;
  font-family: "proxima-nova", sans-serif;
  margin: 0;
}

@media screen and (min-width: 768px) {
  .dynamic-content__section > .marg-right-gifts {
    margin-right: 20% !important;
  }
  .dynamic-content__section > .marg-left-gifts {
    margin-left: 20% !important;
  }
}

@media (max-width: 767px) {
  .ugc-cpro-image-module {
    padding: 20px 0; /* Adjust padding for mobile */
  }

  .ugc-cpro-logo-container {
    flex-direction: column; /* Stack logo and header */
    text-align: center; /* Center the logo and header */
    margin-top: 50px;
    margin-bottom: 30px; /* Add space between logo and header */
  }

  .ugc-cpro-logo-container img {
    margin-right: 0; /* Remove the margin for mobile */
  }

  .ugc-cpro-heading {
    margin-top: 20px; /* Add space between logo and header */
    font-size: 26px;
    text-align: center;
    padding: 0 20px; /* Add padding to the text */
  }

  .ugc-cpro-image-container {
    flex-direction: column; /* Stack images vertically on mobile */
    align-items: center;
  }

  .ugc-cpro-image-item {
    width: 70%; /* Take full width on mobile */
    padding: 0; /* Reset padding for mobile */
    margin-bottom: 20px; /* Add spacing between stacked images */
  }

  .ugc-cpro-image-text {
    font-size: 14px;
    padding: 0 0px; /* Add padding to the text */
  }
}


@media screen and (min-width: 600px) {
  .heromod-desktop-hide {
    display: none; /* Hide elements when screen size is 600 pixels or more */
  }
  .heromod-mobile-hide {
    display: block; /* show elements when screen size is 600 pixels or more */
  }
  .margin-bottom-11 {
    margin-bottom: 11px;
  }
  .heromod-desktop-font {
    font-weight: 400!important;
  }
}

@media screen and (max-width: 600px) {
  .heromod-mobile-font {
    font-size: 32px !important;
  }
  .heromod-mobile-hide {
    display: none; /* Hide elements when screen size is 600 pixels or less */
  }
  .heromod-desktop-hide {
    display: block; /* show elements when screen size is 600 pixels or less */
  }
  .box-mobile-only {
    height: 800px!important;
  }
  .box-mobile-only-row {
    height: 876px!important;
  }
  .heromod-mobile-bf-font {
    font-size: 26px !important;
    font-weight: 400!important;
  }
}

@media (max-width: 768px) {
  .dynamic-content__box_overide {
    overflow: visible;
    height: auto;
    min-height: 580px;
    padding: 40px 19px 0;
    display: block;
    text-align: center;
  }
  .dynamic-content__box_overidetall {
    overflow: visible;
    height: auto;
    min-height: 790px;
    padding: 40px 19px 0;
    display: block;
    text-align: center;
  }
  .dynamic-content__box_overide_hero {
    overflow: visible;
    height: auto;
    min-height: 700px;
    padding: 40px 19px 0;
    display: block;
    text-align: center;
  }
  .mobile_blanco {
    color: #ffffff !important;
  }
}

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

  .hero-banner__container {
    max-height: none; /* Removes height restriction */
    min-height: 500px; /* Adjust this to fit your design needs */
    background-size: contain; /* Fit the image within the container without stretching */
    background-position: top center; /* Ensure the top of the image is visible */
  }

  .hero-banner--video .hero-banner__container video {
    height: auto;
  }
  .noshow-mobile {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .noshow-desktop {
    display: none;
  }
  .margin120 {
    margin-right: 120px !important;
  }
}
