.gallery-v3 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 10px;
  width: 100%; }
  .gallery-v3__main {
    position: relative;
    width: 100%;
    height: 462px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #f0f0f0;
    cursor: zoom-in; }
  .gallery-v3__main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    cursor: zoom-in; }
  .gallery-v3__thumbnails {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    gap: 10px;
    width: 100%; }
  .gallery-v3__thumbnail {
    position: relative;
    -ms-flex: 1 0 0px;
        flex: 1 0 0;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    background: none;
    cursor: pointer;
    transition: border-color 0.2s ease; }
    .gallery-v3__thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 6px;
      display: block; }
    .gallery-v3__thumbnail--active {
      border-color: #1a191a; }
    .gallery-v3__thumbnail:hover:not(.gallery-v3__thumbnail--active) {
      border-color: rgba(26, 25, 26, 0.4); }
  .gallery-v3__thumbnail-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    pointer-events: none; }
  .gallery-v3__thumbnail-see-more {
    position: absolute;
    inset: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 6px; }
    .gallery-v3__thumbnail-see-more span {
      color: #fff;
      font-family: 'Roboto', sans-serif;
      font-size: 18px;
      font-weight: 400;
      line-height: 1; }
  .gallery-v3 .best-of-redballoon-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 1;
    pointer-events: none; }
  .gallery-v3__modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1060;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
  .gallery-v3__modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    cursor: pointer; }
  .gallery-v3__modal-inner {
    position: relative;
    z-index: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    gap: 16px;
    padding: 32px 16px;
    max-width: 96vw;
    max-height: 100vh; }
  .gallery-v3__modal-image-wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    max-width: calc(96vw - 144px);
    max-height: calc(96vh - 64px); }
  .gallery-v3__modal-image {
    max-width: 100%;
    max-height: calc(96vh - 64px);
    object-fit: contain;
    border-radius: 8px;
    display: block;
    will-change: transform;
    transform: translateZ(0); }
  .gallery-v3__modal-close {
    position: absolute;
    top: 8px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 8px;
    line-height: 0; }
    .gallery-v3__modal-close:hover {
      opacity: 0.75; }
  .gallery-v3__modal-prev, .gallery-v3__modal-next {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    cursor: pointer;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    transition: background-color 0.15s ease; }
    .gallery-v3__modal-prev:hover:not(:disabled), .gallery-v3__modal-next:hover:not(:disabled) {
      background: rgba(255, 255, 255, 0.35); }
    .gallery-v3__modal-prev:disabled, .gallery-v3__modal-next:disabled {
      opacity: 0.3;
      cursor: not-allowed; }
  .gallery-v3__modal-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap; }
  @media (max-width: 768.98px) {
    .gallery-v3__main {
      height: 280px; }
    .gallery-v3__thumbnails {
      display: none; }
    .gallery-v3__modal-image-wrap {
      max-width: calc(100vw - 112px); }
    .gallery-v3__modal-image {
      max-height: calc(100vh - 96px); } }

body.gallery-v3-modal-open {
  overflow: hidden; }

.pdp-v3-section-heading {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 24px; }

.pdp-v3-highlights {
  margin-bottom: 32px; }
  .pdp-v3-highlights__list {
    margin-bottom: 24px; }
    .pdp-v3-highlights__list ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-direction: column;
          flex-direction: column;
      gap: 8px; }
      .pdp-v3-highlights__list ul li {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        gap: 8px;
        min-height: 32px;
        font-size: 16px;
        line-height: 1.4;
        color: #000; }
        .pdp-v3-highlights__list ul li::before {
          content: "";
          display: block;
          -ms-flex-negative: 0;
              flex-shrink: 0;
          width: 32px;
          height: 32px;
          background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'><path d='M21.7075 12.2925C21.8005 12.3854 21.8742 12.4957 21.9246 12.6171C21.9749 12.7385 22.0008 12.8686 22.0008 13C22.0008 13.1314 21.9749 13.2615 21.9246 13.3829C21.8742 13.5043 21.8005 13.6146 21.7075 13.7075L14.7075 20.7075C14.6146 20.8005 14.5043 20.8742 14.3829 20.9246C14.2615 20.9749 14.1314 21.0008 14 21.0008C13.8686 21.0008 13.7385 20.9749 13.6171 20.9246C13.4957 20.8742 13.3854 20.8005 13.2925 20.7075L10.2925 17.7075C10.1049 17.5199 9.99944 17.2654 9.99944 17C9.99944 16.7346 10.1049 16.4801 10.2925 16.2925C10.4801 16.1049 10.7346 15.9994 11 15.9994C11.2654 15.9994 11.5199 16.1049 11.7075 16.2925L14 18.5863L20.2925 12.2925C20.3854 12.1995 20.4957 12.1258 20.6171 12.0754C20.7385 12.0251 20.8686 11.9992 21 11.9992C21.1314 11.9992 21.2615 12.0251 21.3829 12.0754C21.5043 12.1258 21.6146 12.1995 21.7075 12.2925ZM29 16C29 18.5712 28.2376 21.0846 26.8091 23.2224C25.3806 25.3603 23.3503 27.0265 20.9749 28.0104C18.5994 28.9944 15.9856 29.2518 13.4638 28.7502C10.9421 28.2486 8.62569 27.0105 6.80761 25.1924C4.98953 23.3743 3.7514 21.0579 3.24979 18.5362C2.74818 16.0144 3.00563 13.4006 3.98957 11.0251C4.97351 8.64968 6.63975 6.61935 8.77759 5.1909C10.9154 3.76244 13.4288 3 16 3C19.4467 3.00364 22.7512 4.37445 25.1884 6.81163C27.6256 9.24882 28.9964 12.5533 29 16ZM27 16C27 13.8244 26.3549 11.6977 25.1462 9.88873C23.9375 8.07979 22.2195 6.66989 20.2095 5.83733C18.1995 5.00476 15.9878 4.78692 13.854 5.21136C11.7202 5.6358 9.7602 6.68345 8.22183 8.22183C6.68345 9.7602 5.6358 11.7202 5.21136 13.854C4.78692 15.9878 5.00476 18.1995 5.83733 20.2095C6.66989 22.2195 8.07979 23.9375 9.88873 25.1462C11.6977 26.3549 13.8244 27 16 27C18.9164 26.9967 21.7123 25.8367 23.7745 23.7745C25.8367 21.7123 26.9967 18.9164 27 16Z' fill='%23EE3124'/></svg>");
          background-repeat: no-repeat;
          background-size: contain; }
  .pdp-v3-highlights__body {
    font-size: 16px;
    line-height: 1.6;
    color: #000; }
    .pdp-v3-highlights__body p {
      margin: 0; }

.pdp-v3-whats-included {
  background: #f3f3f3;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 32px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 24px; }
  .pdp-v3-whats-included .pdp-v3-section-heading {
    margin: 0; }
  .pdp-v3-whats-included__list ul {
    list-style: disc;
    padding-left: 24px;
    margin: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 16px; }
    .pdp-v3-whats-included__list ul li {
      font-size: 16px;
      line-height: 1.4;
      color: #000; }
  .pdp-v3-whats-included__list .pdp-v3-whats-included__body {
    margin-top: 16px; }
  .pdp-v3-whats-included__list + .pdp-v3-whats-included__body {
    margin-top: 8px; }
  .pdp-v3-whats-included__body {
    font-size: 16px;
    line-height: 1.6;
    color: #000; }
    .pdp-v3-whats-included__body p {
      margin: 0; }

.pdp-v3-accordion {
  margin-bottom: 32px; }
  .pdp-v3-accordion__item {
    border-bottom: 1px solid #e9e9e9; }
  .pdp-v3-accordion__trigger {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    width: 100%;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left; }
    .pdp-v3-accordion__trigger:focus {
      outline: none; }
    .pdp-v3-accordion__trigger .caret-icon {
      -ms-flex-negative: 0;
          flex-shrink: 0;
      transition: transform 0.2s ease; }
    .pdp-v3-accordion__trigger[aria-expanded="true"] .caret-icon {
      transform: rotate(180deg); }
  .pdp-v3-accordion:focus {
    outline: none; }
  .pdp-v3-accordion .caret-icon {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    transition: transform 0.2s ease; }
  .pdp-v3-accordion__label {
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #000; }
  .pdp-v3-accordion__body {
    font-size: 16px;
    line-height: 1.6;
    color: #000;
    padding-bottom: 24px; }
    .pdp-v3-accordion__body p {
      margin: 0 0 8px; }
      .pdp-v3-accordion__body p:last-child {
        margin-bottom: 0; }
    .pdp-v3-accordion__body ul,
    .pdp-v3-accordion__body ol {
      padding-left: 20px;
      margin: 0; }

.pdp-v3-reviews {
  margin-bottom: 32px; }
  .pdp-v3-reviews__heading {
    margin-bottom: 16px; }
  .pdp-v3-reviews__content .bv-custom-rating-summary {
    margin-bottom: 16px; }

.product-detail-v3 .product-add-cart-panel .product-quantity-con .price-quantity-con .attribute-container .attribute .attribute-options .attribute-option > input:checked + label {
  background-color: #FFFBFB !important;
  color: #ee3124 !important;
  border-color: #ee3124 !important; }
  .product-detail-v3 .product-add-cart-panel .product-quantity-con .price-quantity-con .attribute-container .attribute .attribute-options .attribute-option > input:checked + label .checked-icon {
    background: #ee3124 !important; }

.product-detail-v3 .product-add-cart-panel .product-quantity-con .price-quantity-con .attribute-container .attribute .attribute-options .attribute-option .attribute-option-label:hover {
  background-color: #FFF5F5 !important;
  border-color: #ee3124 !important; }

.product-detail-v3 .icon-btn.ion-ios-add {
  border: 1px solid #ee3124 !important;
  color: #ee3124 !important; }

.product-detail-v3 .icon-btn.ion-ios-remove.qty-active {
  border-color: #ee3124 !important;
  color: #ee3124 !important; }

.product-detail-v3 .add-cart-part {
  position: sticky;
  top: 24px;
  -ms-flex-item-align: start;
      align-self: flex-start; }
  @media (max-width: 768.98px) {
    .product-detail-v3 .add-cart-part {
      position: static; } }

@media (max-width: 768.98px) {
  .product-detail-v3 #image-gallery-container .best-of-redballoon-badge {
    bottom: 8px;
    right: 8px;
    top: unset; } }

.product-detail-v3 .product-add-cart-panel > .product-add-cart-section {
  border-radius: 12px; }

.product-detail-v3 .product-add-cart-panel .v3-pricing-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 8px;
  width: 100%; }

.product-detail-v3 .product-add-cart-panel .buy-now-pay-later-inline {
  text-align: left;
  margin-top: 0;
  white-space: nowrap; }
  .product-detail-v3 .product-add-cart-panel .buy-now-pay-later-inline a {
    text-decoration: underline; }

.product-detail-v3 .prices-add-to-cart-actions .explore-con .explore-link {
  color: #2e2e2e;
  text-decoration: underline; }
  .product-detail-v3 .prices-add-to-cart-actions .explore-con .explore-link:hover, .product-detail-v3 .prices-add-to-cart-actions .explore-con .explore-link:focus {
    color: #2e2e2e;
    text-decoration: underline; }

@media (max-width: 768.98px) {
  .product-detail-v3 #image-gallery-container .best-of-redballoon-badge {
    bottom: 8px;
    right: 8px;
    top: unset; } }

@media (max-width: 768.98px) {
  .product-detail-v3 .product-details-body #image-carousel-container {
    margin-left: 0;
    margin-right: 0; }
    .product-detail-v3 .product-details-body #image-carousel-container .primary-images .carousel .carousel-inner {
      border-radius: 8px; }
    .product-detail-v3 .product-details-body #image-carousel-container .primary-images .carousel .carousel-control-prev {
      border-radius: 0 0 0 0; }
      .product-detail-v3 .product-details-body #image-carousel-container .primary-images .carousel .carousel-control-prev .carousel-btn {
        border-radius: 0 8px 8px 0; }
    .product-detail-v3 .product-details-body #image-carousel-container .primary-images .carousel .carousel-control-next .carousel-btn {
      border-radius: 8px 0 0 8px; }
    .product-detail-v3 .product-details-body #image-carousel-container .primary-images .carousel .carousel-indicators li {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      margin: 0 3px;
      -ms-flex-negative: 0;
          flex-shrink: 0; } }

@media (max-width: 768.98px) {
  .product-detail-v3 {
    padding-left: 16px !important;
    padding-right: 16px !important; }
    .product-detail-v3 .description-and-detail-v3 {
      padding: 0;
      margin-left: 0;
      margin-right: 0; }
    .product-detail-v3 .pdp-v3-highlights,
    .product-detail-v3 .pdp-v3-whats-included,
    .product-detail-v3 .pdp-v3-accordion,
    .product-detail-v3 .pdp-v3-reviews {
      margin-bottom: 24px; }
    .product-detail-v3 .description-and-detail-v3 .pdp-v3-highlights:first-child {
      margin-top: 24px; }
    .product-detail-v3 .pdp-v3-section-heading {
      font-size: 20px;
      margin-bottom: 16px; } }

#live-datepicker,
#time-select {
  background-color: #ffffff;
  border: 1px solid #E5E7EB; }
