@import url(https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@400;600;700&display=swap);

* {
  font-family: "Josefin Sans", sans-serif;
  padding: 0;
  margin: 0;
  font-size: 18px;
}

html {
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-weight: normal;
}

body {
  background-image: url(/assets/css-coffee/src/images/coffe-overlay.png);
}

.screen {
  position: relative;
}

.our-link-wrapper {
  background-image: url(/assets/css-coffee/src/images/coffe-overlay.png);
}

.button {
  height: 48px;
  background: #3e4444;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 18px;
  line-height: 18px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  padding: 0 16px;
}

.container-coffee {
  overflow-x: hidden;
  box-sizing: border-box;
}

.screen {
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* top nav hybrid */
.top-nav {
  z-index: 3;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.06);
  padding: 8px 24px;
  position: sticky;
  top: 0;
  background: rgba(62, 68, 68, 1);
}

.top-nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.top-nav .logo-wrapper {
  height: 40px;
}

.top-nav .logo-wrapper img {
  height: 100%;
  border-radius: 8px;
}

.top-nav .hamburger-menu {
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #3e4444;
  box-sizing: border-box;
  border-radius: 8px;
  font-size: 24px;
  padding-bottom: 3px;
  color: #3e4444;
  background-color: #7e7e7e;
  cursor: pointer;
}

.top-nav .menu-list {
  display: none;
  gap: 4px;
}

.top-nav .menu-item {
  padding-bottom: 4px;
}

.top-nav .menu-item a {
  padding: 8px 8px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.15s;
  text-decoration: none;
  color: white;
  font-size: 22px;
}

/* side drawer */
#side-drawer {
  z-index: 10;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
}

#side-drawer .drawer-left {
  background-color: #ffffff;
  border-right: 1px solid #ffffff;
  width: 60%;
  height: 100%;
  box-shadow: 3px 4px 4px rgb(0 0 0 / 6%);
  position: fixed;
}

#side-drawer .drawer-right {
  position: fixed;
  width: 40%;
  right: 0;
  height: 100%;
  background: #000000;
  opacity: 0.2;
}

#side-drawer .drawer-logo {
  margin-top: 40px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#side-drawer .menu-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#side-drawer .menu-item {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  margin: 4px auto;
  text-decoration: none;
  color: #1f1f1f;
  text-align: center;
}

#side-drawer .menu-item.active {
  background-color: #e5e5e5;
  border-radius: 8px;
}

#side-drawer .drawer-logo img {
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* bottom nav for mobile */
.bottom-nav {
  display: flex;
  padding: 8px 24px;
  box-shadow: 0px -4px 4px rgba(0, 0, 0, 0.04);
  position: fixed;
  bottom: 0;
  width: 100vw;
  background: #ffffff;
  box-sizing: border-box;
  z-index: 10;
}

.bottom-nav .nav-item {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border-radius: 4px;
  padding: 4px 0 2px;
  text-decoration: none;
}

.bottom-nav .nav-item.active {
  background-color: #e5e5e5;
}

.bottom-nav .img-wrapper {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bottom-nav img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.8;
}

.bottom-nav .title {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 4px;
  color: #606060;
  margin-top: 4px;
  text-align: center;
}

/* footer */

footer {
  background-color: rgba(62, 68, 68, 1);
  margin-top: -10px;
  display: none;
}

footer .container-coffee {
  padding-bottom: 0;
  max-width: 1200px;
  margin: auto;
}

footer .footer-content {
  padding: 20px 24px 16px;
  display: grid;
  grid-gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  margin: auto;
  max-width: 1200px;
}

footer .icon-grid {
  display: grid;
  grid-gap: 8px;
  grid-column-gap: 8px;
  grid-template-columns: repeat(auto-fit, minmax(98px, 1fr));
  gap: 8px;
  box-sizing: border-box;
}

footer .icon-grid img {
  border-radius: 2px;
  margin-right: 2px;
}

footer .copyright .container-coffee {
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  margin: auto;
  color: #ffffff;
  max-width: 1200px;
}

footer .copyright .container-coffee div {
  text-align: center;
  width: 100%;
}

footer .footer-section {
  max-width: 400px;
}

footer .footer-section.right {
  padding-right: 144px;
}

footer .footer-title {
  font-size: 25px;
  line-height: 25px;
  letter-spacing: 0.09em;
  color: #ffffff;
  margin-bottom: 20px;
}

footer .footer-content-text {
  font-size: 17px;
  line-height: 25px;
  letter-spacing: 0.09em;
  color: #ffffff;
}

/* footer */

footer .footer-content-text .bold {
  font-weight: bold;
}

footer .footer-content-text.sub-bold {
  margin-bottom: 12px;
}

footer .footer-content-text.sub-bold.working-hour div:last-child {
  font-size: 13px;
}

footer .social-media-kti {
  gap: 12px;
  display: flex;
  margin-top: 4px;
}

footer .copyright {
  padding: 12px 24px;
  border-top: 2px solid #ffffff;
  background-color: #363636;
}

footer .copyright .container-coffee {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.09em;
  color: #ffffff;
}

/* page title */

.page-title {
  padding: 8px 24px;
  background-color: #e5e5e5;
  font-weight: 600;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.06em;
  color: #000000;
  display: inline-flex;
  margin: 32px 0;
  border-radius: 0px 18px 18px 0px;
}

/* new porduct */

.new-product {
  padding: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.new-product > .title {
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #1f1f1f;
  text-align: center;
  margin: 12px 0 16px;
}

.new-product-card-wrapper {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

.new-product-card-wrapper .image-wrapper-desktop {
  width: 100%;
  height: 260px;
  border-radius: 8px;
  display: none;
  /* align-items: center; */
  margin-bottom: 24px;
  position: relative;
}

.new-product-card-wrapper .offset-bg {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: #f1fff3;
  z-index: 1;
  width: calc(50vw + 120px);
  max-width: 800px;
  padding-top: 76px;
  padding-bottom: 76px;
  padding-left: 96px;
  box-shadow: 0px 3px 8px 2px rgba(0, 0, 0, 0.11);
  border-radius: 8px;
}

.new-product-card-wrapper .offset-bg img {
  width: 380px;
  height: 380px;
  object-fit: contain;
  border-radius: 8px;
}

.new-product-card {
  background: #ffffff;
  border: 1px solid #ffffff;
  box-sizing: border-box;
  box-shadow: 0px 3px 8px 4px rgba(0, 0, 0, 0.11);
  border-radius: 8px;
  padding: 24px;
}

.new-product-card .image-wrapper-mobile {
  width: 100%;
  height: 260px;
  background: #f1fff3;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}

.new-product-card .image-wrapper-mobile img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.new-product-card .product-detail .title {
  font-size: 22px;
  line-height: 22px;
  letter-spacing: 0.04em;
  color: #1f1f1f;
  margin-bottom: 20px;
}

.new-product-card .product-detail .product-description {
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.04em;
  color: #1f1f1f;
  margin-bottom: 24px;
}

.pagination-desktop {
  display: flex;
  margin: 24px 16px 100px;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 26px;
  color: #ffffff;
  gap: 16px;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.pagination-desktop a {
  text-decoration: none;
}

.pagination-desktop .prev-next {
  padding: 8px 16px;
  background: #3e4444;
  border-radius: 4px;
  border: 1px solid #3e4444;
  cursor: pointer;
  color: #ffffff;
}

.pagination-desktop .page {
  border-radius: 4px;
  color: #1f1f1f;
  border: 1px solid #3e4444;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.pagination-desktop .page.active {
  color: #ffffff;
  background-color: #3e4444;
}

/* form input */

.input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 12px;
}

.input-wrapper label {
  font-size: 15px;
  letter-spacing: 0.09em;
  color: #1f1f1f;
}

.input-wrapper input {
  background: #fdfdfd;
  border: 2px solid #c0c0c0;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 8px 8px;
  height: 40px;
  color: #1f1f1f;
}

.input-wrapper textarea {
  background: #fdfdfd;
  border: 2px solid #c0c0c0;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 8px 8px;
  color: #1f1f1f;
}

.menu-wrapper {
  display: flex;
  align-items: center;
  gap: 52px;
  flex-direction: row-reverse;
}

.search-bar-wrapper {
  width: fit-content;
  height: 42px;
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 8px;
  padding: 4px 16px;
  display: none;
}

.search-bar-wrapper .search-box form {
  display: flex;
  align-items: center;
}

.search-bar-wrapper .select-search {
  height: 100%;
  border: none;
  height: 40px;
  cursor: pointer;
  max-width: 160px;
  border-right: 1px solid #e4e4e4;
  padding-right: 32px;
  padding-left: 4px;
  background: url(/assets/css-coffee/src/images/dropdown-icon.png) no-repeat calc(100% - 10px) !important;
  -webkit-appearance: none;
  color: #1f1f1f;
}

.search-bar-wrapper .input-search {
  padding: 12px 10px;
  border: none;
  margin-right: 4px;
}

.search-bar-wrapper .input-search::placeholder {
  color: #a1a1a1;
}

.search-bar-wrapper button {
  background: #efefef;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding-top: 5px;
}

.search-bar-wrapper button img {
  opacity: 0.2;
}

.search-bar-wrapper .submit-search {
  border: none;
  height: 100%;
}

.product-video-wrapper {
  background-color: #fdf4f4;
  padding: 24px 0;
  border-bottom: 12px solid #ebebeb;
}

.link-divider {
  margin-bottom: 60px;
}

.product-video-wrapper .container-coffee {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 24px;
}

.product-video-wrapper .video-wrapper {
  width: 100%;
}

.product-video-wrapper .video-wrapper .swiper-wrapper {
  width: 100%;
  height: 480px;
}

.product-video-wrapper .player-slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.product-video-wrapper .player-slide .video-list {
  width: 100%;
}

.product-video-wrapper .video-description {
  width: 100%;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0.04em;
  color: #1f1f1f;
}

.product-video-wrapper .video-description .button {
  margin-top: 24px;
  width: 100%;
  box-sizing: border-box;
}

.swiper {
  width: 100%;
  height: 100%;
  /* min-height: 360px; */
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fdf4f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.swiper-slide video {
  padding-bottom: 80px;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}

.swiper-pagination {
  width: fit-content;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  margin-left: calc(50% - 50px);
  display: flex;
  width: 100px !important;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border: 3px solid #b1b1b1;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  background: #3e4444 !important;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  color: #3e4444 !important;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  color: #3e4444 !important;
}

.image-product-modal {
  display: none;
}

/* detail product modal */

.detail-product-modal {
  display: none;
  height: 100vh;
  width: 100vw;
  position: fixed;
  z-index: 11;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 68px 24px 40px;
}

.detail-product-modal .modal-content {
  width: calc(100% - 48px);
  z-index: 12;
  background-color: #ffffff;
  padding: 8px;
  border-radius: 8px;
  box-sizing: border-box;
}

.detail-product-modal .close-button {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  cursor: pointer;
  color: #3e4444;
  font-weight: bold;
  margin-left: auto;
  margin-right: 8px;
}

.detail-product-modal .top-modal {
  width: calc(100% + 16px);
  margin-left: -8px;
  margin-top: -8px;
  box-shadow: 0px 4px 4px rgb(0 0 0 / 6%);
}

.detail-product-modal .modal-inner {
  overflow-y: scroll;
  height: calc(100vh - 160px);
}

.detail-product-modal .new-product-card {
  box-shadow: none;
  border-radius: 0;
  margin-top: 4px;
}

.detail-product-modal .image-wrapper-mobile img {
  width: 100%;
}

.detail-product-modal .product-detail .title {
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.04em;
  color: #1f1f1f;
  margin-bottom: 12px;
}

.detail-product-modal .product-detail .product-price {
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0.04em;
  color: #00cc5e;
  margin-bottom: 16px;
}

.detail-product-modal .product-detail .product-discount {
  font-size: 12px;
  line-height: 12px;
  letter-spacing: 0.04em;
  color: #656565;
  margin-top: 6px;
  text-decoration: line-through;
  margin-top: -12px;
  margin-bottom: 12px;
}

.detail-product-modal .product-detail .marketplaces {
  gap: 16px;
  display: flex;
  flex-direction: column;
}

.detail-product-modal .image-list {
  margin-top: 0;
  display: grid;
  grid-template-columns: 72px 72px 72px;
  column-gap: 12px;
  row-gap: 12px;
  margin-bottom: 28px;
}

.detail-product-modal .image-list .img-wrapper {
  width: 72px;
  min-width: 72px;
  height: 72px;
  max-height: 72px;
  background: #fdf4f4;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0px 3px 8px 2px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

.detail-product-modal .image-list .img-wrapper.active {
  border: 3px solid rgb(235, 235, 235);
}

.detail-product-modal .image-list img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pour-coffee {
  position: fixed;
  z-index: 2;
  top: 60px;
  right: 0;
  margin-right: 4px;
  display: flex;
  align-items: center;
  transition: all 0.35s ease-in-out;
}

.pour-coffee video {
  width: 100px;
  -webkit-box-shadow: -5px 14px 11px -9px rgba(0, 0, 0, 0.16);
  -moz-box-shadow: -5px 14px 11px -9px rgba(0, 0, 0, 0.16);
  box-shadow: -5px 14px 11px -9px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
  border: 1px solid #f7f7f7;
}

.pour-coffee button {
  margin-right: -10px;
  margin-top: 20px;
  border-radius: 25%;
  width: 25px;
  height: 30px;
  border: 2px solid #3d4444;
  background: #3d4444;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  padding-bottom: 1px;
  padding-left: 1px;
  font-size: 20px;
  transition: transform 0.35s ease-in-out;
  cursor: pointer;
  box-shadow: 0px 0px 15px -5px rgba(0, 0, 0, 0.85);
}

.pour-coffee a {
  cursor: default;
}

.footer-svg-wrapper {
  display: none;
}

@media screen and (min-width: 768px) {
  .page-title {
    background-color: transparent;
    padding: 0;
    font-size: 30px;
    letter-spacing: 0.04em;
    color: #000000;
    font-weight: bold;
    margin: 64px 0;
    background: url(/assets/css-coffee/src/images/blob-title.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 60px 40px 40px;
    color: #ffffff;
    text-align: center;
  }

  .top-nav {
    border-radius: 0 0 10px 10px;
    margin-bottom: -8px;
    height: 80px;
    box-sizing: border-box;
  }

  .top-nav .logo-wrapper {
    height: 60px;
  }

  .bottom-nav {
    display: none;
  }

  footer {
    display: block;
  }

  .new-product h2.title {
    font-size: 28px;
    line-height: 28px;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
  }

  .new-product-card {
    width: calc(100vw - 48px);
    max-width: calc(1200px / 2);
    z-index: 2;
    margin-top: 46px;
    padding: 46px;
  }

  .new-product-card-wrapper .image-wrapper-desktop {
    display: flex;
  }

  .new-product-card-wrapper .offset-bg {
    display: block;
  }

  .new-product-card .image-wrapper-mobile {
    display: none;
  }

  .new-product-card .product-detail .title {
    font-size: 28px;
    line-height: 28px;
  }

  .new-product-card .product-detail .product-description {
    font-size: 18px;
    line-height: 32px;
    letter-spacing: 0.04em;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 192px;
  }

  .top-nav ul {
    list-style-type: none;
  }

  .top-nav li {
    position: relative;
  }

  .top-nav .menu-item::after {
    position: absolute;
    content: "";
    top: 100%;
    left: 8%;
    width: 84%;
    height: 3px;
    border-radius: 10px;
    background-color: #ffffff;
    transform: scaleX(0);
    transition: 0.4s cubic-bezier(0.15, 0.8, 0.4, 1);
  }

  .top-nav .menu-item:hover::after {
    transform: scaleX(1);
  }

  .top-nav .menu-item.active::after {
    transform: scaleX(1);
  }

  .top-nav .menu-item.a {
    position: relative;
    display: flex;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .search-bar-wrapper {
    display: flex;
  }

  .image-product-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 3;
    box-sizing: border-box;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image-product-modal .modal-content {
    max-width: 1000px;
    width: calc(100% - 80px);
    background-color: #ffffff;
    height: fit-content;
    box-shadow: 0px 3px 8px 2px rgba(0, 0, 0, 0.11);
    border-radius: 16px;
    margin: auto;
    height: fit-content;
    margin-top: calc((100vh - 542px) / 2);
    padding: 24px;
    box-sizing: border-box;
    margin-bottom: 60px;
  }

  .image-product-modal .top-modal {
    display: flex;
    justify-content: space-between;
  }

  .image-product-modal .modal-name {
    font-size: 24px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 0.04em;
    color: #1f1f1f;
    margin-bottom: 36px;
  }

  .image-product-modal .close-button {
    font-size: 24px;
    line-height: 26px;
    color: rgba(119, 119, 119, 0.95);
    cursor: pointer;
    font-weight: bold;
    width: 40px;
    height: 40px;
    text-align: right;
  }

  .image-product-modal .modal-inner {
    display: flex;
    gap: 80px;
  }

  .image-product-modal .focused-img-wrapper {
    width: 400px;
    min-width: 400px;
    height: 400px;
    background: #fdf4f4;
  }

  .image-product-modal .focused-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .image-list-wrapper .title {
    font-size: 20px;
    letter-spacing: 0.04em;
    color: #1f1f1f;
    font-weight: 600;
  }

  .image-list-wrapper .title.description {
    margin: 36px 0 12px;
  }

  .image-list-wrapper .description-product {
    letter-spacing: 0.04em;
    color: #1f1f1f;
    font-size: 18px;
    line-height: 26px;
  }

  .image-product-modal .image-list {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 88px 88px 88px 88px;
    column-gap: 20px;
    row-gap: 20px;
  }

  .image-product-modal .image-list .img-wrapper {
    width: 88px;
    min-width: 88px;
    height: 88px;
    background: #fdf4f4;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0px 3px 8px 2px rgba(0, 0, 0, 0.11);
    box-sizing: border-box;
  }

  .image-product-modal .image-list .img-wrapper.active {
    border: 4px solid #ccc;
  }

  .image-product-modal .image-list img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .product-video-wrapper {
    padding: 60px 0;
  }

  .product-video-wrapper .container-coffee {
    flex-direction: row;
    gap: 60px;
  }

  .product-video-wrapper .video-wrapper {
    width: 50%;
  }

  .product-video-wrapper .video-wrapper .swiper-wrapper {
    width: 50%;
    height: 560px;
  }

  .product-video-wrapper .video-description {
    font-size: 18px;
    line-height: 26px;
  }

  .product-video-wrapper .video-description .button {
    display: flex;
    /* width: 50%; */
    /* min-width: 200px; */
  }

  .product-video-wrapper .video-description .row-button {
    display: flex;
    gap: 16px;
    text-align: center;
  }

  .pagination-desktop {
    margin: 68px auto 0;
  }

  .pour-coffee {
    margin-right: 40px;
    top: 144px;
  }

  .pour-coffee video {
    width: 160px;
  }

  .pour-coffee button {
    height: 48px;
    width: 32px;
  }

  .footer-svg-wrapper {
    width: 100%;
    height: 232px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    margin-top: 40px;
  }

  .footer-svg-wrapper svg {
    width: 100%;
    height: auto;
    margin-top: -450px;
  }
}

@media screen and (min-width: 992px) {
  .top-nav .menu-item {
    font-size: 24px;
  }
}

@media screen and (min-width: 1224px) {
  .top-nav .hamburger-menu {
    display: none;
  }

  .top-nav .menu-list {
    display: flex;
    margin-top: 4px;
  }

  .top-nav .menu-wrapper {
    flex-direction: row;
  }
}

@media screen and (min-width: 1440px) {
  .footer-svg-wrapper {
    height: 300px;
  }
}

@media screen and (min-width: 2040px) {
  .footer-svg-wrapper {
    height: 400px;
  }
}


.search-bar-wrapper .search-box {
  float: none !important;
  margin: 0 !important;
  border: none !important;
  padding: 0 !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  -webkit-box-sizing: unset !important;
  box-sizing: unset !important;
}

.search-bar-wrapper .input-search {
  padding: 10px 10px;
}

.input-wrapper select {
  background: #fdfdfd;
  border: 2px solid #c0c0c0;
  box-sizing: border-box;
  border-radius: 8px;
  padding: 8px 8px;
  height: 40px;
  color: #1f1f1f;
}
