/* @import url(../global-css/global.css); */
/* @import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap"); */
figure {
  margin: 0;
  font-size: 0;
  position: relative;
}

ins {
  text-decoration: none;
}

.unlockafe-product-slide-box {
  font-family: "Inter", sans-serif;
}

figure img {
  transition: opacity 300ms ease 0s;
  -webkit-transition: opacity 300ms ease 0s;
  -moz-transition: opacity 300ms ease 0s;
  -ms-transition: opacity 300ms ease 0s;
  -o-transition: opacity 300ms ease 0s;
}

figure img:last-child {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.product-label {
  position: absolute;
  right: auto;
  left: 15px;
  top: 15px;
  bottom: auto;
  z-index: 3;
}

.product-label span {
  padding: 4px 4px 4px calc(4px + 0.05em);
  max-width: 54px;
  max-height: 20px;
  width: 100%;
  text-align: center;
  display: inline-block;
  font-size: 12px;
  line-height: 1 !important;
  text-transform: uppercase;
  border-radius: 0;
  font-weight: normal;
  color: #fff;
  background-color: #000;
  display: grid;
  place-content: center;
}

.product-slide .meta-wrapper {
  margin-top: 17px;
  transition: transform 0.3s ease;
}

.product-slide .product-wrapper:hover .meta-wrapper {
  transform: translateY(-3px);
}

.product-slide .meta-wrapper .product-name {
  font-size: 15px;
  letter-spacing: 0.375px;
  font-weight: normal;
  margin-bottom: 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.product-slide .meta-wrapper .product-name a {
  display: inline-block;
  transition: all 0.3s ease;
}

.product-slide .meta-wrapper .product-name a:hover {
  color: rgba(209, 2, 2, 1);
  transform: translateX(5px);
}

.product-slide .thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
}

.product-slide .thumbnail-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
  border-radius: 12px;
  pointer-events: none;
}

.product-slide .product-wrapper:hover .thumbnail-wrapper {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-slide .product-wrapper:hover .thumbnail-wrapper::before {
  opacity: 1;
}

.product-slide .thumbnail-wrapper figure img {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(1);
}

.product-slide .product-wrapper:hover .thumbnail-wrapper figure img:first-child {
  opacity: 0;
  transform: scale(1.1);
}

.product-slide .product-wrapper:hover .thumbnail-wrapper figure img:last-child {
  opacity: 1;
  transform: scale(1.05);
}

.product-slide .product-wrapper .product-group-button>div {
  font-size: 0;
  line-height: 0;
  padding: 0;
  min-width: 0;
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  letter-spacing: 0;
  text-align: center;
  bottom: 20px;
  right: 10px;
  /*rtl*/
  z-index: 6;
  display: none;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: scale(0.8);
  opacity: 0;
}

.product-slide .product-wrapper .product-group-button>div a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.product-slide .product-wrapper .product-group-button>div a::after {
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 6 free";
  font-size: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.product-wrapper .thumbnail-wrapper img{
	min-height: 220px;
	width: 100%;
	height: auto;
	object-fit: cover;
	transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-slide .product-wrapper:hover .thumbnail-wrapper img {
	transform: scale(1.05);
}
/* hover effects  */
.product-slide .product-wrapper .product-group-button>div:hover {
  background-color: rgba(209, 2, 2, 1);
  color: #fff;
  transform: scale(1.1) !important;
  box-shadow: 0 6px 20px rgba(209, 2, 2, 0.4);
}

.product-slide .product-wrapper:hover .product-group-button>div {
  display: block;
  opacity: 1;
  transform: scale(1);
  -webkit-animation-duration: 400ms;
  -moz-animation-duration: 400ms;
  animation-duration: 400ms;
  animation-delay: 100ms;
  -webkit-animation-delay: 100ms;
  -moz-animation-delay: 100ms;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: slidebottomtotop;
  -moz-animation-name: slidebottomtotop;
  animation-name: slidebottomtotop;
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
}

@keyframes slidebottomtotop {
  0% {
    transform: translateY(15px) scale(0.8);
    opacity: 0;
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

/* Product Card Animation */
.product-slide {
  animation: fadeInUp 0.6s ease-out;
  animation-fill-mode: both;
}

.product-slide:nth-child(1) { animation-delay: 0.1s; }
.product-slide:nth-child(2) { animation-delay: 0.2s; }
.product-slide:nth-child(3) { animation-delay: 0.3s; }
.product-slide:nth-child(4) { animation-delay: 0.4s; }
.product-slide:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Product Wrapper Hover Effect */
.product-slide .product-wrapper {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  padding: 5px;
}

.product-slide .product-wrapper:hover {
  transform: translateY(-5px);
}

/* Pricing Animation */
.product-slide .pricing {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}

.product-slide .product-wrapper:hover .pricing {
  transform: translateY(-2px);
}

.product-slide .pricing .amount,
.product-slide .pricing .updated-amount {
  color: black;
  font-size: 16px;
  font-weight: 700;
  transition: color 0.3s ease, transform 0.3s ease;
}

.product-slide .product-wrapper:hover .pricing .amount,
.product-slide .product-wrapper:hover .pricing .updated-amount {
  color: rgba(209, 2, 2, 1);
  transform: scale(1.05);
}

/* hover effects  */
.product-slide .product-wrapper:hover .product-group-button>div:nth-child(2) {
  animation-delay: 150ms;
}

.product-slide .product-wrapper:hover .product-group-button>div:nth-child(3) {
  animation-delay: 200ms;
}

.product-slide .product-wrapper:hover .product-group-button>div:nth-child(4) {
  animation-delay: 250ms;
}

.product-slide .product-wrapper:hover .product-group-button>div:nth-child(2),
.product-slide .product-wrapper .product-group-button>div:nth-child(2) {
  bottom: 70px;
}

.product-slide .product-wrapper:hover .product-group-button>div:nth-child(3),
.product-slide .product-wrapper .product-group-button>div:nth-child(3) {
  bottom: 120px;
}

.product-slide .product-wrapper:hover .product-group-button>div:nth-child(4),
.product-slide .product-wrapper .product-group-button>div:nth-child(4) {
  bottom: 170px;
}

.product-slide .product-wrapper .product-group-button>div,
.main-products.list .product-slide .product-wrapper:hover .product-group-button>div.wishlist,
.product-slide .product-wrapper .product-group-button>div.wishlist {
  bottom: 10px;
}

.main-products.list .product-slide .product-wrapper:hover .product-group-button>div:nth-child(3),
.product-slide .product-wrapper:hover .product-group-button>div.wishlist:nth-child(2) {
  bottom: 60px;
  background-color: #fff;
}

.main-products.list .product-slide .product-wrapper .product-group-button>div:nth-child(3):hover,
.product-slide .product-wrapper .product-group-button>div.wishlist:nth-child(2):hover {
  background-color: rgba(209, 2, 2, 1);
}

.main-products.list .product-slide .product-wrapper:hover .product-group-button>div:nth-child(4),
.product-slide .product-wrapper:hover .product-group-button>div.loop-add-to-cart~div:nth-child(3) {
  bottom: 110px;
}

.product-slide .product-wrapper:hover .product-group-button>div.loop-add-to-cart~div:nth-child(4) {
  bottom: 160px;
}

.product-slide .product-wrapper .product-group-button>div.wishlist,
.product-slide .product-wrapper:hover .product-group-button>div.wishlist {
  display: block;
  background: transparent;
}

/* .product-slide .product-wrapper div.add-to-cart-2 {
  border: 1px solid rgba(0, 0, 0, 0.5);
} */
.product-slide .product-wrapper .product-group-button div.add-to-cart {
  height: 50px;
  line-height: 50px;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  padding: 0;
  border-radius: 0;
  transition: 250ms ease;
}

.product-slide .product-wrapper div.add-to-cart-2 a {
  color: #000;
  border: 1px solid black;
  border-radius: 50px;
  background-color: #fff;
  overflow: hidden;
  display: inline-block;
  /* width: 100%; */
}

.product-slide .product-wrapper div.add-to-cart-2 a:hover {
  color: #ffffff;
  border: 1px solid black;
  border-radius: 50px;
  background-color: green;
}

.product-slide .product-wrapper .product-group-button div.add-to-cart a {
  display: block;
  padding: 0;
  margin: 0;
  min-width: 0;
  border-width: 0;
  position: relative;
  letter-spacing: 0;
  background: transparent;
  color: inherit;
  line-height: inherit;
  overflow: hidden;
}

.product-slide .product-wrapper .product-group-button div.wishlist a::after {
  content: "\f004";
  font-weight: 400;
}

.product-slide .product-wrapper .product-group-button div.compare a::after {
  content: "\e13a";
  font-weight: 600;
}

.product-slide .product-wrapper .product-group-button div.quickshop a::after {
  content: "\f002";
  font-weight: 600;
}

a.button {
  padding: 12px 26px;
  box-shadow: none;
  text-shadow: none;
  line-height: 24px;
  filter: none;
  cursor: pointer;
  text-align: center;
  background-image: none;
  text-align: center;
  border-width: 1px;
  border-style: solid;
  border-radius: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1.05;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.product-slide .pricing {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.product-slide .pricing .amount,
.product-slide .pricing .updated-amount,
.product-slide .pricing .deleted-amount {
  display: inline-flex;
}

.product-slide .pricing .amount,
.product-slide .pricing .updated-amount {
  color: black;
  font-size: 16px;
  font-weight: 700;
}

.product-slide .pricing .deleted-amount {
  color: #959595;
}

.unlockafe-product-slide-wrap {
  position: relative;
  z-index: 0;
  width: 100%;
  overflow: hidden;
}

.unlockafe-product-slide {
  width: 100%;
  overflow: hidden;
}

.unlockafe-product-slide .swiper-wrapper {
  display: flex;
  width: 100%;
}

.unlockafe-product-slide .swiper-slide {
  width: auto;
  flex-shrink: 0;
  display: block;
  height: auto;
}

.unlockafe-product-button-prev,
.unlockafe-product-button-next {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  z-index: 1;
  display: grid !important;
  place-content: center;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  -ms-border-radius: 100%;
  -o-border-radius: 100%;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 1 !important;
  z-index: 9;
  visibility: visible !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.unlockafe-product-button-prev img,
.unlockafe-product-button-next img {
  transition: transform 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.unlockafe-product-button-prev.swiper-button-disabled,
.unlockafe-product-button-next.swiper-button-disabled {
  opacity: 0.3 !important;
  cursor: not-allowed;
  pointer-events: none;
}

.unlockafe-product-button-prev {
  left: 10px;
}

.unlockafe-product-button-next {
  right: 10px;
}

.unlockafe-product-button-prev:hover,
.unlockafe-product-button-next:hover {
  background-color: rgba(209, 2, 2, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 25px rgba(209, 2, 2, 0.3);
}

.unlockafe-product-button-prev:hover img,
.unlockafe-product-button-next:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.3));
}

.unlockafe-product-button-prev:active,
.unlockafe-product-button-next:active {
  transform: translateY(-50%) scale(0.95);
}

.unlockafe-product-slide-wrap:hover .unlockafe-product-button-prev,
.unlockafe-product-slide-wrap:hover .unlockafe-product-button-next {
  opacity: 1 !important;
  background-color: rgba(255, 255, 255, 1);
}

@import url(../global-css/global.css);

/* Woo Product */
.unlockafe-product-wrap .unlockafe-product-img-wrap {
  height: 382px;
  overflow: hidden;
}

.unlockafe-product-wrap .unlockafe-product-img-wrap .product-img {
  position: absolute;
  left: 0;
  top: 0;
  transition: all 300ms linear 0ms;
}

.unlockafe-product-wrap .unlockafe-product-img-wrap .product-img.product-img-1 {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.unlockafe-product-wrap .unlockafe-product-img-wrap .product-img.product-img-2 {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.2);
}

.unlockafe-product-wrap .unlockafe-product-img-wrap .unlockafe-product-img-hover {
  text-transform: uppercase;
  letter-spacing: 0.6px;
  text-align: center;
  font-size: 15px;
  white-space: nowrap;
  background-color: #fff;
  color: #222222;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 94%;
  width: 100%;
  bottom: 10px;
  left: 50%;
  transform: translate(-50%, 100%);
  opacity: 0;
  visibility: hidden;
  padding: 20px 0;
  transition: all 300ms linear 0ms;
}

.unlockafe-product-wrap .unlockafe-product-img-wrap .unlockafe-product-img-hover:hover {
  background-color: #222222;
  color: #fff;
}

.unlockafe-product-wrap .unlockafe-product-info {
  text-align: center;
  margin-top: 20px;
}

.unlockafe-product-wrap .unlockafe-product-info .unlockafe-product-meta {
  color: #9b9b9b;
  font-size: 14px;
  line-height: 1.25;
  position: relative;
  display: inline-flex;
  --cms-hover-underline-position-y: calc(100% - 1px);
  --cms-hover-underline-height: 1px;
  background-repeat: no-repeat;
  background-image: linear-gradient(90deg, currentColor 0, currentColor 100%);
  background-position: 0 var(--cms-hover-underline-position-y);
  background-size: 0 var(--cms-hover-underline-height);
  transition: background-size 0.5s cubic-bezier(0.25, 0.46, 0.35, 0.94),
    color 0.2s ease-out, background-color 0.2s ease-out,
    border-color 0.2s ease-out;
}

.unlockafe-product-wrap .unlockafe-product-info .unlockafe-product-meta:hover {
  background-size: 100% var(--cms-hover-underline-height);
}

.unlockafe-product-wrap .unlockafe-product-info .unlockafe-product-title {
  margin: 10px 0 15px;
}

.unlockafe-product-wrap .unlockafe-product-info .unlockafe-product-price {
  display: flex;
  font-size: 15px;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.unlockafe-product-wrap .unlockafe-product-info .unlockafe-product-price del {
  opacity: 0.4;
}

.unlockafe-product-wrap .unlockafe-product-info .unlockafe-product-price .new {
  color: #ff0000;
}

.unlockafe-product-wrap:hover .unlockafe-product-img-wrap .product-img.product-img-1 {
  opacity: 0;
  visibility: hidden;
  transform: scale(1.2);
}

.unlockafe-product-wrap:hover .unlockafe-product-img-wrap .product-img.product-img-2 {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.unlockafe-product-wrap:hover .unlockafe-product-img-wrap .unlockafe-product-img-hover {
  transform: translate(-50%, 0);
  opacity: 1;
  visibility: visible;
}

.unlockafe-product-wrap.unlockafe-product-wrap-slide .unlockafe-product-img-wrap .unlockafe-product-sale-hover {
  position: absolute;
  right: auto;
  left: 20px;
  top: 20px;
  z-index: 12;
  background: #ba933e;
  line-height: 1;
  color: #fff;
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
  font-weight: 700;
  min-height: unset;
  line-height: unset;
  padding: 3px 10px;
  line-height: 20px;
  pointer-events: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.unlockafe-product-wrap.unlockafe-product-wrap-slide .unlockafe-product-info {
  text-align: left;
}

.unlockafe-product-wrap.unlockafe-product-wrap-slide .unlockafe-product-info .unlockafe-product-price {
  justify-content: start;
  gap: 10px;
}

.unlockafe-product-wrap.unlockafe-product-design-two .unlockafe-product-info {
  text-align: left;
}

.unlockafe-product-wrap.unlockafe-product-design-two .unlockafe-product-info .rating {
  display: flex;
  gap: 5px;
  cursor: pointer;
}

.unlockafe-product-wrap.unlockafe-product-design-two .unlockafe-product-info .unlockafe-product-price {
  justify-content: start;
  gap: 10px;
  margin-bottom: 20px;
}

.unlockafe-pagination {
  margin-top: 60px;
}

.unlockafe-pagination .swiper-pagination-bullet {
  margin: 0 !important;
  height: 1.5px;
  width: 100%;
  max-width: 100%;
  opacity: 1;
  background: #ceced3;
  border-radius: unset;
}

.unlockafe-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #000;
  height: 1.5px;
}

.unlockafe-align-center {
  text-align: center;
  font-weight: 400;
}

/* Woo Product End */
.unlockafe-product-slide-wrap {
  position: relative;
}

/* Ensure buttons are always visible - override any duplicate styles */
.unlockafe-product-slide-wrap .unlockafe-product-button-prev,
.unlockafe-product-slide-wrap .unlockafe-product-button-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  -webkit-transform: translateY(-50%) !important;
  z-index: 10 !important;
  display: grid !important;
  visibility: visible !important;
  opacity: 1 !important;
  cursor: pointer !important;
}

.unlockafe-product-slide-wrap .unlockafe-product-button-prev {
  left: 10px !important;
}

.unlockafe-product-slide-wrap .unlockafe-product-button-next {
  right: 10px !important;
}

.added_to_cart {
  text-align: center;
}

.add-to-cart-2 {
  text-align: center;
}

.thumbnail-wrapper {
  margin-bottom: 10px;
}

a.button {
  padding: 5px 15px 5px 16px;
}

a.added_to_cart {
  margin-top: 0 px;
}

a.added_to_cart.wc-forward {
  padding: 5px 10px 6px 10px;
  text-decoration: none;
}

.product-slide .product-wrapper .product-group-button div.add-to-cart {
  height: auto;
}

/* ============================================
   Responsive Design - Tablet (768px and below)
   ============================================ */

@media (max-width: 768px) {
  /* Container adjustments */
  .unlockafe-container {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Product slide wrap */
  .unlockafe-product-slide-wrap {
    padding: 0 10px;
  }

  /* Navigation buttons */
  .unlockafe-product-button-prev,
  .unlockafe-product-button-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
    opacity: 1 !important;
    visibility: visible !important;
    display: grid !important;
  }

  .unlockafe-product-button-prev {
    left: 5px;
  }

  .unlockafe-product-button-next {
    right: 5px;
  }

  /* Product wrapper */
  .product-wrapper .thumbnail-wrapper img {
    min-height: 180px;
  }

  /* Product label */
  .product-label {
    left: 10px;
    top: 10px;
  }

  .product-label span {
    max-width: 45px;
    max-height: 18px;
    font-size: 11px;
    padding: 3px 3px 3px calc(3px + 0.05em);
  }

  /* Product meta */
  .product-slide .meta-wrapper {
    margin-top: 12px;
  }

  .product-slide .meta-wrapper .product-name {
    font-size: 14px;
    margin-bottom: 12px;
  }

  /* Pricing */
  .product-slide .pricing {
    gap: 8px;
    margin-bottom: 10px;
  }

  .product-slide .pricing .amount,
  .product-slide .pricing .updated-amount {
    font-size: 14px;
  }

  /* Product group buttons */
  .product-slide .product-wrapper .product-group-button > div {
    width: 35px;
    height: 35px;
    bottom: 15px;
    right: 8px;
  }

  .product-slide .product-wrapper .product-group-button > div a::after {
    font-size: 16px;
  }

  .product-slide .product-wrapper:hover .product-group-button > div:nth-child(2),
  .product-slide .product-wrapper .product-group-button > div:nth-child(2) {
    bottom: 60px;
  }

  .product-slide .product-wrapper:hover .product-group-button > div:nth-child(3),
  .product-slide .product-wrapper .product-group-button > div:nth-child(3) {
    bottom: 105px;
  }

  .product-slide .product-wrapper:hover .product-group-button > div:nth-child(4),
  .product-slide .product-wrapper .product-group-button > div:nth-child(4) {
    bottom: 150px;
  }

  /* Add to cart button */
  .product-slide .product-wrapper .product-group-button div.add-to-cart {
    height: 45px;
    line-height: 45px;
  }

  a.button {
    padding: 10px 20px;
    font-size: 13px;
  }

  /* Product wrap styles */
  .unlockafe-product-wrap .unlockafe-product-img-wrap {
    height: 300px;
  }

  .unlockafe-product-wrap .unlockafe-product-info {
    margin-top: 15px;
  }

  .unlockafe-product-wrap .unlockafe-product-info .unlockafe-product-meta {
    font-size: 13px;
  }

  .unlockafe-product-wrap .unlockafe-product-info .unlockafe-product-title {
    margin: 8px 0 12px;
    font-size: 16px;
  }

  .unlockafe-product-wrap .unlockafe-product-info .unlockafe-product-price {
    font-size: 14px;
    gap: 15px;
  }

  .unlockafe-product-wrap .unlockafe-product-img-wrap .unlockafe-product-img-hover {
    font-size: 13px;
    padding: 15px 0;
    max-width: 90%;
  }

  .unlockafe-product-wrap.unlockafe-product-wrap-slide .unlockafe-product-img-wrap .unlockafe-product-sale-hover {
    left: 15px;
    top: 15px;
    font-size: 12px;
    padding: 2px 8px;
    line-height: 18px;
  }

  /* Pagination */
  .unlockafe-pagination {
    margin-top: 40px;
  }
}

/* ============================================
   Responsive Design - Mobile (480px and below)
   ============================================ */

@media (max-width: 480px) {
  /* Container adjustments */
  .unlockafe-container {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    padding-left: 10px;
    padding-right: 10px;
  }

  /* Product slide wrap */
  .unlockafe-product-slide-wrap {
    padding: 0 5px;
  }

  /* Navigation buttons - smaller on mobile */
  .unlockafe-product-button-prev,
  .unlockafe-product-button-next {
    width: 35px;
    height: 35px;
    font-size: 14px;
    opacity: 1 !important;
    visibility: visible !important;
    display: grid !important;
  }

  .unlockafe-product-button-prev {
    left: 0;
  }

  .unlockafe-product-button-next {
    right: 0;
  }

  /* Show navigation buttons on mobile (always visible for touch) */
  .unlockafe-product-slide-wrap .unlockafe-product-button-prev,
  .unlockafe-product-slide-wrap .unlockafe-product-button-next {
    opacity: 1 !important;
    visibility: visible !important;
    display: grid !important;
  }

  .unlockafe-product-slide-wrap:hover .unlockafe-product-button-prev,
  .unlockafe-product-slide-wrap:hover .unlockafe-product-button-next {
    opacity: 1 !important;
    background-color: rgba(255, 255, 255, 1);
  }

  /* Product wrapper */
  .product-wrapper .thumbnail-wrapper img {
    min-height: 150px;
  }

  /* Product label */
  .product-label {
    left: 8px;
    top: 8px;
  }

  .product-label span {
    max-width: 40px;
    max-height: 16px;
    font-size: 10px;
    padding: 2px 2px 2px calc(2px + 0.05em);
  }

  /* Product meta */
  .product-slide .meta-wrapper {
    margin-top: 10px;
  }

  .product-slide .meta-wrapper .product-name {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.3;
  }

  /* Pricing */
  .product-slide .pricing {
    gap: 6px;
    margin-bottom: 8px;
    flex-wrap: wrap;
  }

  .product-slide .pricing .amount,
  .product-slide .pricing .updated-amount {
    font-size: 13px;
  }

  .product-slide .pricing .deleted-amount {
    font-size: 11px;
  }

  /* Product group buttons - smaller on mobile */
  .product-slide .product-wrapper .product-group-button > div {
    width: 32px;
    height: 32px;
    bottom: 10px;
    right: 5px;
  }

  .product-slide .product-wrapper .product-group-button > div a::after {
    font-size: 14px;
  }

  .product-slide .product-wrapper:hover .product-group-button > div:nth-child(2),
  .product-slide .product-wrapper .product-group-button > div:nth-child(2) {
    bottom: 50px;
  }

  .product-slide .product-wrapper:hover .product-group-button > div:nth-child(3),
  .product-slide .product-wrapper .product-group-button > div:nth-child(3) {
    bottom: 90px;
  }

  .product-slide .product-wrapper:hover .product-group-button > div:nth-child(4),
  .product-slide .product-wrapper .product-group-button > div:nth-child(4) {
    bottom: 130px;
  }

  /* Add to cart button */
  .product-slide .product-wrapper .product-group-button div.add-to-cart {
    height: 40px;
    line-height: 40px;
  }

  a.button {
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  a.added_to_cart.wc-forward {
    padding: 4px 8px 5px 8px;
    font-size: 11px;
  }

  /* Product wrap styles */
  .unlockafe-product-wrap .unlockafe-product-img-wrap {
    height: 250px;
  }

  .unlockafe-product-wrap .unlockafe-product-info {
    margin-top: 12px;
  }

  .unlockafe-product-wrap .unlockafe-product-info .unlockafe-product-meta {
    font-size: 12px;
  }

  .unlockafe-product-wrap .unlockafe-product-info .unlockafe-product-title {
    margin: 6px 0 10px;
    font-size: 14px;
    line-height: 1.3;
  }

  .unlockafe-product-wrap .unlockafe-product-info .unlockafe-product-price {
    font-size: 13px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .unlockafe-product-wrap.unlockafe-product-wrap-slide .unlockafe-product-info .unlockafe-product-price {
    justify-content: flex-start;
  }

  .unlockafe-product-wrap .unlockafe-product-img-wrap .unlockafe-product-img-hover {
    font-size: 12px;
    padding: 12px 0;
    max-width: 85%;
    bottom: 8px;
  }

  .unlockafe-product-wrap.unlockafe-product-wrap-slide .unlockafe-product-img-wrap .unlockafe-product-sale-hover {
    left: 10px;
    top: 10px;
    font-size: 11px;
    padding: 2px 6px;
    line-height: 16px;
  }

  /* Pagination */
  .unlockafe-pagination {
    margin-top: 30px;
  }

  /* Swiper slide adjustments */
  .swiper-slide {
    padding: 0 5px;
  }

  /* Thumbnail wrapper */
  .thumbnail-wrapper {
    margin-bottom: 8px;
  }
}

/* ============================================
   Extra Small Mobile (360px and below)
   ============================================ */

@media (max-width: 360px) {
  .unlockafe-container {
    padding-left: 8px;
    padding-right: 8px;
  }

  .product-slide .meta-wrapper .product-name {
    font-size: 12px;
  }

  .product-slide .pricing .amount,
  .product-slide .pricing .updated-amount {
    font-size: 12px;
  }

  .unlockafe-product-wrap .unlockafe-product-img-wrap {
    height: 220px;
  }

  .unlockafe-product-wrap .unlockafe-product-info .unlockafe-product-title {
    font-size: 13px;
  }

  a.button {
    padding: 7px 14px;
    font-size: 11px;
  }
}

/* ============================================
   Advanced Animations & Effects
   ============================================ */

/* Swiper Slide Transition Animation */
.unlockafe-product-slide .swiper-slide {
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
}

.unlockafe-product-slide .swiper-slide-active {
  z-index: 2;
}

/* Loading Skeleton Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.product-slide.loading .thumbnail-wrapper {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Product Label Animation */
.product-label {
  animation: slideInFromTop 0.5s ease-out;
}

@keyframes slideInFromTop {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-label span {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-slide .product-wrapper:hover .product-label span {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Add to Cart Button Animation */
.product-slide .product-wrapper .product-group-button div.add-to-cart {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.product-slide .product-wrapper .product-group-button div.add-to-cart::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.product-slide .product-wrapper .product-group-button div.add-to-cart:hover::before {
  width: 300px;
  height: 300px;
}

.product-slide .product-wrapper .product-group-button div.add-to-cart a {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.product-slide .product-wrapper .product-group-button div.add-to-cart:hover a {
  transform: scale(1.05);
}

/* Smooth Swiper Container Animation */
.unlockafe-product-slide {
  transition: opacity 0.3s ease;
}

.unlockafe-product-slide.swiper-container-initialized {
  opacity: 1;
}

/* Product Card Shadow Animation */
.product-slide .product-wrapper {
  background: transparent;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-slide .product-wrapper:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Image Overlay Effect */
.product-slide .thumbnail-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  border-radius: 12px;
  pointer-events: none;
}

.product-slide .product-wrapper:hover .thumbnail-wrapper::after {
  opacity: 1;
}

/* Button Icon Animation */
.product-slide .product-wrapper .product-group-button>div a::after {
  transition: transform 0.3s ease, color 0.3s ease;
}

.product-slide .product-wrapper .product-group-button>div:hover a::after {
  transform: translate(-50%, -50%) scale(1.2) rotate(5deg);
}

/* Price Pulse Animation */
@keyframes pricePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.product-slide .product-wrapper:hover .pricing .amount {
  animation: pricePulse 1.5s ease-in-out infinite;
}

/* Smooth Scroll Indicator */
.unlockafe-product-slide-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(209, 2, 2, 0.5), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 10;
  pointer-events: none;
}

.unlockafe-product-slide-wrap:hover::before {
  opacity: 1;
  animation: slideIndicator 2s linear infinite;
}

@keyframes slideIndicator {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Active Slide Pulse Animation */
.slide-active-pulse {
  animation: slidePulse 2s ease-in-out infinite;
}

@keyframes slidePulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Initial Slide Animation */
.slide-initial-animate {
  animation: slideInitial 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInitial {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Swiper Touch Feedback */
.swiper-touching .swiper-slide {
  transition: transform 0.2s ease-out;
}

.swiper-touching .swiper-slide-active {
  transform: scale(0.98);
}

/* Smooth Slide Entry */
.unlockafe-product-slide .swiper-slide {
  will-change: transform, opacity;
}

.unlockafe-product-slide .swiper-slide.swiper-slide-next,
.unlockafe-product-slide .swiper-slide.swiper-slide-prev {
  opacity: 0.7;
}

.unlockafe-product-slide .swiper-slide.swiper-slide-active {
  opacity: 1;
}

/* Enhanced Button Animation */
.unlockafe-product-button-prev:not(.swiper-button-disabled):hover,
.unlockafe-product-button-next:not(.swiper-button-disabled):hover {
  animation: buttonBounce 0.6s ease;
}

@keyframes buttonBounce {
  0%, 100% {
    transform: translateY(-50%) scale(1);
  }
  50% {
    transform: translateY(-50%) scale(1.15);
  }
}

/* Product Card Entrance Animation */
.unlockafe-product-slide .swiper-slide {
  animation: cardEntrance 0.6s ease-out backwards;
}

.unlockafe-product-slide .swiper-slide:nth-child(1) { animation-delay: 0.1s; }
.unlockafe-product-slide .swiper-slide:nth-child(2) { animation-delay: 0.2s; }
.unlockafe-product-slide .swiper-slide:nth-child(3) { animation-delay: 0.3s; }
.unlockafe-product-slide .swiper-slide:nth-child(4) { animation-delay: 0.4s; }
.unlockafe-product-slide .swiper-slide:nth-child(5) { animation-delay: 0.5s; }

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) rotateY(10deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotateY(0);
  }
}

/* Responsive Animation Adjustments */
@media (prefers-reduced-motion: reduce) {
  .product-slide,
  .product-slide .product-wrapper,
  .product-slide .thumbnail-wrapper,
  .unlockafe-product-button-prev,
  .unlockafe-product-button-next,
  .unlockafe-product-slide .swiper-slide {
    animation: none !important;
    transition: none !important;
  }
}