/* Header */

#header {
  display: none;
}
.pagination-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  position: static;
  padding-top: 1.25rem;
}
.swiper-pagination-bullet {
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin: 0 0.313rem !important;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s;
  opacity: 1 !important;
}
.swiper-pagination-bullet span {
  color: #fff;
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5rem;
  height: 0.5rem;
  display: flex;
  border-radius: 50%;
  background-color: white;
}
/* button circle */
.progress {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.circle-origin {
  fill: transparent;
  stroke: #fff;
  stroke-width: 1;
  stroke-linecap: round;
  stroke-dasharray: 125.664px;
  stroke-dashoffset: 125.664px;
}

.swiper-pagination-bullet-active .circle-origin {
  animation: progress 12s;
}
@media (min-width: 768px) and (max-width: 1200px) {
  .swiper-pagination-bullet {
    width: 2.25rem;
    height: 2.25rem;
    margin: 0 0.5rem !important;
  }
  .swiper-pagination-bullet span {
    width: 0.75rem;
    height: 0.75rem;
  }
}
@keyframes progress {
  0% {
    stroke-dashoffset: 125.664px;
  }

  90% {
    stroke-dashoffset: 0;
  }

  100% {
    stroke-dashoffset: -125.664px;
  }
}
/* home-banner */
.home-banner {
  overflow: hidden;
  height: 41.0625rem;
}
@media (max-width: 767.98px) {
  .home-banner {
    height: 12.5rem;
  }
  .home-banner .img,
  .home-banner .sec-container {
    height: 100%;
  }
  .home-banner img {
    height: 100%;
    object-fit: cover;
  }
}
/* product-home */
.product-home {
  padding: 5.13rem var(--section) 0;
  background: #f5f5f5;
}
.product-home .grid-cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 9.3rem;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 3.69rem;
}
.product-home .grid-cols-2 .col-1 .title-main h2 {
  margin-bottom: 0;
}
.product-home .grid-cols-2 .col-1 .title-main p {
  margin-bottom: 0;
}
.product-home .grid-cols-2 .col-1 .title-main p > strong {
  color: #2c2c2c;
  font-size: 1.5rem;
  font-weight: 600;
  position: relative;
  padding-left: 4rem;
}
.product-home .grid-cols-2 .col-1 .title-main p > strong::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 3rem;
  height: 1.9535rem;
  background-image: url("/wp-content/uploads/2025/06/tikket.png");
  background-repeat: no-repeat;
  background-size: contain;
}
.product-home .col-2 .desc p {
  font-size: 1.25rem;
  font-style: italic;
  font-weight: 500;
  margin-bottom: 0;
  line-height: normal;
}
.product-home__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem 1.87rem;
}
.tabbed-content .nav.nav-line {
  display: none;
  padding-bottom: 1.25rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid #e8e8e8;
}
.tabbed-content .nav.nav-line.show-cat {
  display: block;
}
.tabbed-content__new .tab a::before {
  display: none;
}
.tab-panels {
  padding: 0;
}
.tabbed-content__new .tab a {
  display: flex;
  align-items: center;
  padding: 0.313rem 1.25rem;
  border-radius: 6.25rem;
  border: 1px solid #e8e8e8;
  font-weight: 600;
  font-size: 1rem;
}
.tabbed-content__new .tab a:hover,
.tabbed-content__new .tab.active a {
  border-color: var(--theme-color);
  color: var(--theme-color);
}
.box-products {
  background: white;
  border-radius: 0.9375rem;
}
.box-products:hover {
  box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}
.tag-sale {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.tag-sale .tag-sale__content {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.313rem 1.69rem;
  border-radius: 0rem 0rem 0.9375rem 0.9375rem;
  background: linear-gradient(90deg, #f40000 0%, #f60 100%);
  width: 100%;
  height: 100%;
}
.tag-sale .tag-sale__content .overlay-line {
  position: absolute;
  top: 50%;
  left: -200%;
  width: 5rem;
  height: 9rem;
  transform: translateY(-50%) rotateZ(50deg);
  background: linear-gradient(90deg, #fff0 0%, #fff 50%, #fff0 100%);
  opacity: 0.4;
  z-index: 1;
  pointer-events: none;
  animation: slideOverlay 2.5s linear infinite;
}
@keyframes slideOverlay {
  0% {
    left: -200%;
  }
  100% {
    left: 200%;
  }
}
.tag-sale .icon-box {
  display: flex;
  align-items: center;
  column-gap: 0.5rem;
}
.tag-sale .icon-box .img {
  flex-shrink: 0;
  width: auto;
}
.tag-sale .icon-box .img img {
  width: 0.875rem;
  height: 1.05631rem;
  object-fit: contain;
}
.tag-sale .icon-box .text span {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 600;
}
.tag-sale .countdown {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.box-products .image-cover {
  border-radius: 0.9375rem;
}
.box-products .sale-price {
  position: absolute;
  top: 1.1rem;
  right: 1rem;
  border-radius: 6.25rem;
  background: #f40000;
  width: 4.4375rem;
  height: 1.6875rem;
  text-align: center;
}
.box-products .sale-price .sale-percent {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}
.box-products {
  display: flex;
  flex-direction: column;
}
.box-products .box-image {
  margin: 0;
}
.box-products .box-text {
  padding: 1.87rem 1.69rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.box-products .box-text .review {
  display: flex;
  align-items: center;
  gap: 0.56rem;
}
.box-products .box-text .review svg {
  flex-shrink: 0;
  margin-bottom: 0.313rem;
}
.box-products .box-text .review span {
  line-height: normal;
}
.box-products .box-text .review .star {
  color: #2c2c2c;
  font-size: 1.125rem;
  font-weight: 700;
}
.box-products .box-text .review .count {
  color: #676767;
  font-size: 1rem;
  font-weight: 400;
}
.box-products .box-text .post-title {
  margin-top: 0.69rem;
  margin-bottom: 0.87rem;
  flex: 1;
}
.box-products .box-text .post-title a {
  color: #2c2c2c;
  font-size: 1.25rem;
  font-weight: 700;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.box-products .box-text .shipping {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.box-products .box-text .shipping svg {
  flex-shrink: 0;
}
.box-products .box-text .shipping .ship {
  color: #676767;
  font-size: 0.9375rem;
  font-weight: 400;
}
.box-products .box-text .shipping .date {
  color: #28a745;
  font-size: 0.9375rem;
  font-weight: 700;
}
.box-products .box-text .price-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  position: relative;
}
.box-products .box-text .price-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -1.69rem;
  width: calc(100% + 3.38rem);
  height: 1px;
  background: #e8e8e8;
}
.box-products .box-text .price-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 50%;
  transform: translateX(50%);
  width: 1px;
  height: calc(100% + 1.25rem);
  background: #e8e8e8;
}
.price-content {
  display: flex;
  flex-direction: column;
}
.price-content .price-start {
  color: #050c12;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}
.price-content .price-start .price {
  font-size: 1rem;
  text-decoration: none;
  text-decoration: line-through;
}
.price-content .price-end {
  color: #28a745;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0;
}
.price-content .price-end .price {
  font-size: 1.5rem;
  font-weight: 700;
}
.box-products .box-text .price-wrap .btn .button {
  margin: 0;
}
@media (max-width: 767.98px) {
  .product-home {
    padding: 2.25rem var(--section) 0;
  }
  .product-home .grid-cols-2 {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 1rem;
    margin-bottom: 1.88rem;
  }
  .product-home .grid-cols-2 .col-1 .title-main p > strong {
    font-size: 1rem;
    padding-left: 2rem;
  }
  .product-home .grid-cols-2 .col-1 .title-main p > strong::before {
    width: 2rem;
    height: 1rem;
  }
  .product-home .col-2 .desc p {
    font-size: 0.9375rem;
  }
  .product-home__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1rem;
    column-gap: 0.5rem;
  }
  .box-products .sale-price {
    top: 0.56rem;
    right: 0.56rem;
    width: 2.75rem;
    height: 1.1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .box-products .sale-price .sale-percent {
    font-size: 0.75rem;
  }
  .tag-sale .icon-box {
    column-gap: 0.313rem;
  }
  .tag-sale .countdown,
  .tag-sale .icon-box .text span {
    font-size: 0.75rem;
  }
  .tag-sale .icon-box .img img {
    width: 0.75rem;
    height: 0.9375rem;
  }
  .box-products {
    border-radius: 0.313rem;
  }
  .box-products .image-cover {
    border-radius: 0.313rem;
  }
  .tag-sale .tag-sale__content {
    padding: 0rem 0.5rem;
    border-radius: 0rem 0rem 0.313rem 0.313rem;
  }
  .tag-sale .icon-box .text {
    display: flex;
    align-items: center;
  }
  .box-products .box-text .post-title {
    margin-top: 0;
    margin-bottom: 0.313rem;
  }
  .box-products .box-text .post-title a {
    font-size: 0.8rem;
    font-weight: 500;
  }
  .box-products .box-text {
    padding: 1rem 0.5rem;
  }
  .box-products .box-text .review .count {
    font-size: 0.75rem;
  }
  .box-products .box-text .review .star {
    font-size: 0.75rem;
  }
  .box-products .box-text .review {
    column-gap: 0.313rem;
    order: 1;
  }
  .box-products .box-text .btn {
    display: none;
  }
  .box-products .box-text .review svg {
    margin-bottom: 0.1rem;
    height: 0.75rem;
    width: 0.75rem;
    object-fit: contain;
  }
  .box-products .box-text .shipping .date {
    font-size: 0.75rem;
  }
  .box-products .box-text .shipping .ship {
    font-size: 0.65rem;
  }
  .box-products .box-text .shipping {
    gap: 0rem;
    flex-wrap: wrap;
  }
  .box-products .box-text .shipping svg {
    margin-right: 0.2rem;
  }
  .box-products .box-text .price-wrap::before,
  .box-products .box-text .price-wrap::after {
    display: none;
  }
  .price-content .price-start span:first-child,
  .price-content .price-end span:first-child {
    display: none;
  }
  .price-content {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    padding: 0.313rem 0;
  }
  .price-content .price-end .price {
    font-size: 1.125rem;
    color: var(--theme-color);
  }
  .price-content .price-start .price {
    font-size: 0.875rem;
    color: #676767;
  }
  .price-content .price-start {
    order: 1;
  }
  .box-products .box-text .price-wrap {
    padding: 0;
    margin: 0;
    grid-template-columns: minmax(0, 1fr);
  }
  .tabbed-content .nav.nav-line.show-cat {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    overflow-x: auto;
  }
  .tabbed-content .nav.nav-line.show-cat li {
    flex-shrink: 0;
  }
}
/* review-home */
.review-home {
  padding: 4.63rem var(--section) 0;
  background: #f5f5f5;
}
.review-home .title-main h2 {
  margin-bottom: 3.56rem;
}

.review-home .grid.grid-cols-3 .col-1,
.review-home .grid.grid-cols-3 .col-3 {
  column-count: 2;
  column-gap: 1.25rem;
}
.item-review {
  background: white;
  padding: 1.4rem 1.25rem 1.56rem;
  border-radius: 0.9375rem;
  break-inside: avoid;
}
.item-review:nth-child(even) {
  margin-top: 1.25rem;
}

.item-review .icon-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.item-review .icon-box .img {
  width: 3.5rem;
}
.item-review .icon-box .image-cover {
  border-radius: 100%;
}
.item-review .icon-box .name {
  color: #2c2c2c;
  font-size: 1rem;
  font-weight: 700;
}
.item-review .icon-box .star img {
  width: 4.25rem;
  object-fit: contain;
}
.item-review .decription {
  padding-top: 1rem;
  color: #555;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.4;
}
.review-home .grid.grid-cols-3 {
  display: grid;
  grid-template-columns: 1fr 19rem 1fr;
  position: relative;
}
.review-home .grid.grid-cols-3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6rem;
  background: linear-gradient(
    0deg,
    rgba(245, 245, 245, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 10;
}
.review-home .grid.grid-cols-3 .col-2 .is-sticky-column {
  top: 50%;
}
.review-home .grid.grid-cols-3 .col-2 .img {
  margin-left: -2.5rem;
  width: 20rem;
  position: relative;
}
.review-home .grid.grid-cols-3 .col-2 .img svg {
  position: absolute;
  bottom: 5rem;
  left: 60%;
  animation: bounce 1s infinite;
  height: 1.25rem;
  width: 1.25rem;
  object-fit: contain;
}
@keyframes bounce {
  0%,
  to {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
  }

  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
  }
}
@media screen and (max-width: 767.98px) {
  .review-home {
    padding: 3.25rem var(--section) 0;
  }
  .review-home .title-main h2 {
    margin-bottom: 1.56rem;
  }
  .review-home .grid.grid-cols-3 .col-2 .img {
    margin-left: 0;
    width: 17rem;
  }
  .review-home .grid.grid-cols-3 {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }
  .review-home .grid.grid-cols-3 .col-2 {
    position: absolute;
    bottom: 0;
    left: 0%;
    height: 100%;
    width: 100%;
  }
  .review-home .grid.grid-cols-3 .col-2 .is-sticky-column {
    position: sticky;
    top: 52%;
  }
  .item-review .decription {
    font-size: 0.8rem;
  }
  .item-review .icon-box .star img {
    width: 2.75rem;
  }
  .item-review .icon-box .star {
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .item-review .icon-box .name {
    font-size: 0.875rem;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .item-review .icon-box .img {
    width: 2rem;
  }
  .item-review {
    padding: 1rem 0.5rem;
    border-radius: 0.5rem;
  }
  .review-home .grid.grid-cols-3 .col-1,
  .review-home .grid.grid-cols-3 .col-3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
  .item-review:nth-child(even) {
    margin-top: 0;
  }
}
/* what-home */
.what-home {
  padding: 3.44rem var(--section) 3.62rem;
  background: #f5f5f5;
}
.what-home .title-main h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 0.75rem;
}
.what-home .title-main .desc p {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.87rem;
}
.what-home .sec-container {
  border-radius: 0.9375rem;
  background: #ff6600;
  position: relative;
  overflow: hidden;
}
.what-home .sec-container .grid-cols-2 .col-1 .img {
  width: auto;
  height: auto;
  position: absolute;
  bottom: -0.313rem;
  left: 3.06rem;
}
.what-home .sec-container .grid-cols-2 .col-1 .img img {
  width: 24.75rem;
  height: 27.4375rem;
  object-fit: contain;
}
.what-home .sec-container .grid-cols-2 .col-2 {
  max-width: 40rem;
  margin-left: auto;
  margin-right: 0;
  padding: 3.3rem 0 2.31rem;
}
.gallery-content {
  padding-right: 0;
  position: relative;
}
.gallery-slider .image-cover {
  border-radius: 0.625rem;
}
.gallery-content .gallery-wrap {
  position: relative;
  padding: 1.69rem 0;
}
.gallery-content .gallery-wrap .line {
  height: 100%;
  width: 100%;
  background: transparent;
}
.gallery-content .gallery-wrap .line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    #fff 50.48%,
    rgba(255, 255, 255, 0) 100%
  );
}
.gallery-content .gallery-wrap .line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    #fff 50.48%,
    rgba(255, 255, 255, 0) 100%
  );
}
.gallery-content .gallery-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  right: -4.7rem;
  width: 55.3125rem;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 49.52%,
    rgba(255, 255, 255, 0) 100%
  );
}
.swiper-wrapper {
  transition-timing-function: linear !important;
}
@media screen and (max-width: 767.98px) {
  .what-home .sec-container .grid-cols-2 .col-2 {
    max-width: 100%;
    margin-left: auto;
    margin-right: 0;
    padding: 2rem 0 20rem;
  }
  .what-home .sec-container .grid-cols-2 .col-1 .img img {
    width: 100%;
    height: 18.4375rem;
  }
  .what-home .sec-container .grid-cols-2 .col-1 .img {
    bottom: -0.2rem;
    left: 50%;
    z-index: 9;
    transform: translateX(-50%);
    width: 100%;
  }
  .gallery-content .gallery-wrap::before {
    right: 0;
    width: 100%;
  }
  .gallery-content .gallery-wrap {
    padding: 0.69rem 0;
  }
  .gallery-content {
    padding-left: 0;
    padding-right: 0;
  }
  .what-home .sec-container .grid-cols-2 .col-2 .title-main {
    width: 100%;
    margin: auto;
    padding: 0 var(--section);
    text-align: center;
  }
  .what-home .title-main h2 {
    font-size: 1.5rem;
  }
  .what-home .title-main .desc p {
    font-size: 0.875rem;
  }
  .what-home .title-main .desc p br {
    display: none;
  }
  .pagination-progress {
    display: none;
  }
  .gallery-slider .image-cover {
    border-radius: 0.313rem;
  }
}
