.header {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

header .promo-bar {
  height: 45px;
  background-color: var(--primary);
  overflow: hidden;
  position: relative;
  width: 100%;
}

header .promo-message {
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  max-width: 60%;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
}

header .country-info {
  font-size: 0.875rem;
  gap: 6px;
  white-space: nowrap;
}

.promo-bar .country-info-wrapper {
  position: absolute;
  left: 75%;
  top: 50%;
  transform: translateY(-50%);
}

.custom-modal .modal-header,
.custom-modal .modal-footer {
  border-bottom: none !important;
  border-top: none !important;
}

/* Main header */
.main-header {
  height: 125px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Logo */
header .logo {
  background-color: var(--primary);
  color: #fff;
  font-size: 1rem;
  width: 150px;
  height: 40px;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  display: inline-block;
}

/* Search */
header .search-input.form-control {
  border: 1px solid var(--primary) !important;
  border-radius: 999px;
  padding-right: 3rem;
}

header .search-input::placeholder {
  color: #bbb;
}

header .btn-search {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}
header .btn-search:focus,
header .btn-search:active,
header .btn-search:focus-visible {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

header .menu-item {
  position: relative;
  color: var(--primary);
  font-weight: 600;
  display: inline-block;
  padding: 8px 12px;
  z-index: 1;
  transition: 0.3s;
}
header .menu-item::before {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -8px;
  right: -8px;
  background-color: #ff5b6b;
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
  transition: 0.3s ease;
  transform: scale(0.9);
}
header .menu-item:hover::before {
  opacity: 1;
  transform: scale(1.05);
}
header .menu-item:hover {
  color: #fff;
}
.text-color {
  color: var(--primary);
}

.cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 12px;
  background-color: #4bb232;
  color: white;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.title-section-home {
  font-size: 35px;
}

.title-section {
  font-size: 25px;
}

.footer-links li a {
  text-transform: capitalize;
  transition: all 0.4s ease;
  padding-left: 0;
}

.footer-links li a:hover {
  padding-left: 8px;
  color: #444444;
}

.trustpilot-stars i {
  color: #00b67a;
  font-size: 1.5rem;
  margin-right: 4px;
}

.testimonial-card {
  border-radius: 12px;
  padding: 20px;
  background-color: #fff;
  height: 100%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.testimonial-card .name {
  font-weight: 700;
  font-size: 20px;
}

.testimonial-card .location {
  font-size: 14px;
  color: #565656;
  font-style: italic;
}
.testimonial-card .stars-icon > img {
  height: 22px;
}
.testimonial-card .text {
  font-style: italic;
  font-size: 15px;
  color: #444444;
}

.testimonial-swiper .swiper-slide {
  height: auto;
}
.news-navigation,
.testimonial-navigation {
  position: absolute;
  top: -40px;
  right: 12px;
  display: flex;
  gap: 10px;
}
.news-navigation .btn-nav,
.testimonial-navigation .btn-nav {
  width: 30px;
  height: 30px;
  border-radius: 5px;
  background-color: var(--text-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}
.news-navigation .btn-nav:hover,
.testimonial-navigation .btn-nav:hover {
  background-color: white;
  color: var(--text-color);
  border: 1px solid var(--text-color);
}

.trustpilot-logo h3 {
  font-size: 35px;
}

.card-custom {
  border-radius: 16px;
  /* overflow: hidden; */
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-img-fixed {
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.card-custom .card-body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.btn-discover {
  font-size: 20px;
  height: 50px;
  padding: 13px 30px;
}

.section-product {
  font-size: 35px;
}

/* Product Categories */
.category-slide {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
}
.category-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  display: none !important;
  content: none !important;
}
.swiper-button-next,
.swiper-button-prev {
  margin-top: 0;
}
.category-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
  z-index: 1;
  border-radius: 0 0 20px 20px;
}
.overlay-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
}
.swiper-category-wrapper {
  position: relative;
}
.swiper-category-wrapper:hover .category-nav {
  opacity: 1;
  visibility: visible;
}
.category-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 2;
}
.swiper-category-wrapper .category-nav:hover {
  background-color: var(--text-color);
  color: white;
}
.swiper-button-prev.category-nav {
  left: -12px;
}
.swiper-button-next.category-nav {
  right: -12px;
}
.sub-section {
  background-image: url("../images/Rectangle 79.png");
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  height: 235px;
}
.sub-section .sub-title {
  font-size: 30px;
}
.sub-section .sub-desc {
  font-size: 20px;
}
.sub-section::after,
.buy-more::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: inherit;
  z-index: 1;
}
.sub-section,
.buy-more > div {
  z-index: 2;
  position: relative;
}
.sub-section .btn-pink {
  background-color: var(--text-color);
  color: white;
  border: none;
}
.sub-section .btn-pink:hover {
  background-color: #f76c9f;
}
.sub-section .sub-form {
  max-width: 50%;
}
.custom-form-control-focus .form-control {
  border: 1px solid var(--text-color) !important;
}
.custom-form-control-focus .form-control::placeholder {
  color: #8f8f8f;
}
.custom-form-control-focus .form-control:focus {
  box-shadow: none;
  border: 2px solid var(--text-color) !important;
}
.certificate h6 {
  font-size: 20px !important;
}
.footer-style h6 {
  font-size: 18px;
}

/** Product **/
.btn-pink {
  background-color: var(--text-color);
  color: white;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
}
.btn-pink:hover {
  background-color: var(--text-color);
}
.custom-select-wrapper {
  display: inline-flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 999px;
  padding: 6px 10px 6px 16px;
  background-color: white;
  font-size: 14px;
  position: relative;
  white-space: nowrap;
}
.custom-select-wrapper:hover {
  border: 1px solid var(--text-color);
}
.custom-select-wrapper select {
  font-weight: normal !important;
}
.custom-select label {
  margin-bottom: 0;
  font-weight: 600;
  font-size: 14px;
}
.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 0;
  padding: 6px 30px 6px 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.pagination {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.pagination li {
  display: inline-block;
  height: 30px;
}
.page-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  text-align: center;
  color: var(--text-color);
  background-color: transparent;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  transition: 0.2s;
  padding: 0;
}
.page-btn img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.page-btn.active {
  background-color: var(--text-color);
  color: white;
}
.page-btn.disabled {
  color: #fbcacac2;
  pointer-events: none;
}
.page-btn:hover:not(.active):not(.disabled) {
  background-color: #fcd5d5;
}

/** Cart **/
.cart-card,
.summary-card {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 20px;
}
.cart-title h5 {
  font-size: 20px;
}
.cart-price .price-sale {
  font-size: 25px;
}
.cart-price span {
  color: #9d9b9b;
}
.checkout-btn span {
  font-size: 25px;
}
.cart-meta {
  font-size: 13px;
  color: #9d9b9b;
}
.cart-image {
  width: 250px;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}
.cart-image img {
  width: 100%;
  object-fit: contain;
  border-radius: 20px;
}
.cart-remove {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent !important;
}
.cart-remove i {
  font-size: 20px;
  color: #444444;
}
.cart-remove i:hover {
  color: #000000;
}
.summary-checkout {
  font-size: 1rem;
}
.cart-meta {
  font-size: 13px;
  color: #9d9b9b;
}
.vertical-rounded-bar {
  position: relative;
  height: 55px;
  padding-left: 13px;
}
.vertical-rounded-bar::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 1px;
  background-color: #9d9b9b;
  border-radius: 50px;
}
.cart-delivery {
  font-size: 13px;
}
.checkout-container {
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.checkout-container .btn-paypal {
  font-size: 28px;
  background: #ffc43a;
  color: #444444;
  border-radius: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.checkout-form-control button {
  border-radius: 10px;
}
.btn-paynow {
  background-color: #4bb232;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn-paynow:hover {
  color: #4bb232 !important;
  border: 1px solid #4bb232;
}
.checkout-meta {
  border-left: 1px solid #9d9b9b;
  padding-left: 12px;
  font-size: 12px;
  color: #9d9b9b;
}
.icon-social {
  min-width: 60px;
  display: flex;
  justify-content: center;
}
.icon-wrapper {
  position: relative;
}
.icon-wrapper::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 5px;
  left: 49%;
  width: 1px;
  background-color: #d7d7d7;
}
.secure-checkout-box {
  border: 1px solid #d7d7d7;
  border-radius: 20px;
  padding-top: 32px;
  padding-bottom: 25px;
  background-color: #fff;
}
.secure-checkout-label {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0 12px;
}
.qty-custom .btn {
  border-radius: 12px;
}
.qty-custom .btn:hover {
  background-color: var(--text-color) !important;
  border-color: var(--text-color) !important;
}
.collection-section {
  background-image: url("../images/Rectangle 95.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.collection-section .collection-title {
  font-size: 40px;
}
.certificate-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.certificate-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
}

/* Product */
.product-fomo .product-title {
  font-size: 30px;
}
.filter-section .overflow-auto::-webkit-scrollbar {
  display: none;
}

/* Checkout */

/* Checkout Success */
.thanks-section .thanks-text {
  font-size: 20px;
}

/* Blog */
.blog-card:hover {
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}
#blog-container .blog-card .blog-title {
  font-size: 20px;
}
#blog-container .blog-card .blog-meta {
  font-size: 13px;
}
#blog-container .blog-card .blog-desc {
  font-size: 15px;
}

/* Blog Detail */
.breadcrumb-style ol li {
  font-size: 15px;
  color: #444444 !important;
}
.breadcrumb-style ol li a {
  color: #9d9b9b !important;
  font-size: 15px;
}
.blog-detail .meta-data {
  font-size: 15px;
  color: #9d9b9b !important;
}

/* Introduce */
.introduce-content p {
  font-size: 15px;
  color: #444444 !important;
}
.introduce-content h3 {
  font-size: 30px;
  color: #444444 !important;
}

/* Product Detail */
.product-detail .product-name {
  font-size: 25px;
}
.product-detail .stars-icon img {
  height: 22px;
}
.product-detail .price-sale {
  font-size: 30px;
}
.product-detail .price-origin {
  font-size: 20px;
}
.product-detail .delivery-text {
  font-size: 15px;
}
.product-detail .payments-icon img {
  height: 39px;
}
.custom-tab .nav-link {
  border: 1px solid #d7d7d7;
  border-radius: 30px;
  padding: 6px 16px;
  color: #444444;
  background-color: #fff;
  font-weight: 500;
  transition: all 0.2s;
}
.custom-tab .nav-link.active {
  background-color: #ff939d;
  color: #fff;
  border: 1px solid #ff939d !important;
}
.custom-tab .nav-link:not(.active):hover {
  color: #ff939d;
  border: 1px solid #ff939d;
}
.tab-content .col img {
  border: 1px solid transparent;
  border-radius: 20px;
  cursor: pointer;
  border: solid 1px #dee2e6;
}
.product-option {
  cursor: pointer;
  transition: border 0.2s ease;
  border-radius: 10px;
}
.product-option.active {
  border: 1px solid #ff939d !important;
}
#countdown .count-time div {
  width: 40px;
  border-radius: 5px;
}
.count-time {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.count-time span {
  font-size: 13px;
}
.collection-thumb.active, .img-gallery.active {
  border: 2px solid #ff939d !important;
}

/* Navigation buttons */
.swiper-gallery-wrapper {
  position: relative;
}
.swiper-gallery-wrapper:hover .gallery-nav {
  opacity: 1;
  visibility: visible;
}
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 2;
}
.swiper-gallery-wrapper .gallery-nav:hover {
  background-color: var(--text-color);
  color: white;
}
.swiper-button-prev.gallery-nav {
  left: -12px;
}
.swiper-button-next.gallery-nav {
  right: -12px;
}
.artStyle-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: 0.3s ease;
  z-index: 2;
}
.swiperArtStyle-prev.artStyle-nav {
  left: -20px;
}
.swiperArtStyle-next.artStyle-nav {
  right: -20px;
}
.tab-policy-content {
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 17px 20px;
}
.cart-popup {
  border: 1px solid #ff5b6b;
  border-radius: 20px;
  padding: 12px;
  background-color: #fff;
  text-align: center;
}
.cart-popup .icon-check {
  width: 67px;
  height: 67px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.cart-popup .icon-check i {
  color: white;
  font-size: 32px;
}
.cart-popup h5 {
  color: #188654;
  font-weight: 600;
}
.cart-popup p {
  color: #999999;
  font-size: 14px;
  margin-bottom: 30px;
}
.cart-popup .btn {
  min-width: 160px;
  padding: 14px 20px;
  font-weight: 600;
  border-radius: 8px;
}
.btn-gray {
  background-color: #e6e6e6;
  color: #444444;
}
.btn-gray:hover {
  border: 1px solid #e6e6e6;
  color: #444444;
}
.btn-viewCart {
  background-color: #ff5b6b;
  color: #ffffff;
}
.btn-viewCart:hover {
  border: 1px solid #ff5b6b;
  color: #ff5b6b;
}
.custom-modal-width {
  max-width: 580px;
}

.product-detail-right .wcpa_form_outer {margin: 0;}
.product-detail-right .wcpa_price_summary {display: none;}
.product-gallery .wp-post-image {border-radius: 20px;}
#footer .payments img, .woocommerce-cart-form .payments img {height: 38px;}
.cart-details .amount, .cart-details .woocommerce-Price-currencySymbol {color: #444;}


img.img-fluid.w-100.h-100.object-fit-cover {
    border-radius: 20px;
}