@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}
@keyframes pulseScale {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@keyframes floatBounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
body.page-template {
  font-family: "Inter", var(--base-font-family), -apple-system, BlinkMacSystemFont, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-text-primary);
  background: #f8fafc;
}

.product-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  animation: fadeInUp 0.5s ease both;
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.product-card:hover .product-card-top .product-image img {
  transform: scale(1.08);
}
.product-card:hover .product-card-top .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-card:hover .product-card-top .product-image-layer {
  opacity: 1;
}
.product-card:hover .product-card-bottom .btn-add-to-cart {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-primary);
}
.product-card .product-card-top {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
  background: #f9fafb;
}
.product-card .product-card-top .product-image {
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.product-card .product-card-top .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card .product-card-top .product-image img.image-placeholder {
  object-fit: contain;
  padding: 24px;
  opacity: 0.5;
}
.product-card .product-card-top .product-image-layer {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.06) 100%);
  opacity: 0;
  transition: opacity var(--transition-300);
  pointer-events: none;
}
.product-card .product-card-top .product-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-300);
  z-index: 3;
}
.product-card .product-card-top .product-card-actions .btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-200);
  padding: 0;
  cursor: pointer;
}
.product-card .product-card-top .product-card-actions .btn svg {
  width: 16px;
  height: 16px;
}
.product-card .product-card-top .product-card-actions .btn svg path {
  transition: all var(--transition-200);
}
.product-card .product-card-top .product-card-actions .btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-primary);
  transform: scale(1.1);
}
.product-card .product-card-top .product-card-actions .btn:hover svg path {
  stroke: white;
}
.product-card .product-card-top .product-card-actions .btn.added {
  background: var(--color-primary);
  border-color: var(--color-primary);
}
.product-card .product-card-top .product-card-actions .btn.added svg path {
  stroke: white;
  fill: white;
}
.product-card .product-card-top .product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.product-card .product-card-top .product-badge .badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: 20px;
  color: white;
  line-height: 1.4;
  text-transform: uppercase;
  border: none;
}
.product-card .product-card-top .product-badge .badge.badge-danger {
  background: var(--gradient-badge-oos);
}
.product-card .product-card-top .product-badge .badge.badge-info {
  background: var(--gradient-badge-new);
}
.product-card .product-card-top .product-badge .badge.badge-success {
  background: var(--gradient-badge-sale);
}
.product-card .product-card-middle {
  padding: 14px 16px 6px;
}
.product-card .product-card-middle .product-name {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-primary);
  text-decoration: none;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition-200);
  margin-bottom: 6px;
}
.product-card .product-card-middle .product-name:hover {
  color: var(--color-primary);
}
.product-card .product-card-middle .product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-card .product-card-middle .product-rating .back-stars {
  position: relative;
  display: inline-flex;
  gap: 1px;
}
.product-card .product-card-middle .product-rating .back-stars i {
  font-size: 13px;
  color: var(--color-star-empty);
}
.product-card .product-card-middle .product-rating .back-stars .front-stars {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  overflow: hidden;
}
.product-card .product-card-middle .product-rating .back-stars .front-stars i {
  color: var(--color-star);
}
.product-card .product-card-middle .product-rating .rating-count {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  background: #f3f4f6;
  padding: 1px 6px;
  border-radius: 10px;
}
.product-card .product-card-middle .product-rating .reviews {
  font-size: 11px;
  color: var(--color-text-muted);
}
.product-card .product-card-bottom {
  padding: 4px 16px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-card .product-card-bottom .product-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-card .product-card-bottom .product-price .special-price {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.2;
}
.product-card .product-card-bottom .product-price .previous-price {
  font-size: 13px;
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-weight: 400;
  line-height: 1.2;
}
.product-card .product-card-bottom .btn-add-to-cart {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: all var(--transition-300);
  padding: 0;
  flex-shrink: 0;
}
.product-card .product-card-bottom .btn-add-to-cart svg {
  width: 18px;
  height: 18px;
}
.product-card .product-card-bottom .btn-add-to-cart:hover {
  transform: scale(1.08);
}
.product-card .product-card-bottom .btn-add-to-cart:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.product-card .product-card-bottom .btn-add-to-cart.btn-loading {
  pointer-events: none;
  opacity: 0.7;
}

.product-card .product-card-bottom .product-price .previous-price:only-child {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: none;
}

.vertical-product-card {
  display: flex;
  gap: 14px;
  padding: 14px;
  background: var(--color-surface);
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-300);
}
.vertical-product-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.vertical-product-card:hover .product-image img {
  transform: scale(1.05);
}
.vertical-product-card .product-image {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #f9fafb;
}
.vertical-product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-300);
}
.vertical-product-card .product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 0;
}
.vertical-product-card .product-info .product-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-decoration: none;
  line-height: 1.4;
}
.vertical-product-card .product-info .product-name:hover {
  color: var(--color-primary);
}
.vertical-product-card .product-info .product-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-primary);
}

.product-card-skeleton {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-card);
}
.product-card-skeleton .skeleton-image,
.product-card-skeleton .skeleton-line {
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite ease-in-out;
  border-radius: 6px;
}
.product-card-skeleton .skeleton-image {
  aspect-ratio: 1/1;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}

.header-wrap .header-wrap-inner {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: all var(--transition-300);
}
.header-wrap .header-wrap-inner.sticky.show {
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.92);
}
.header-wrap .header-logo img {
  transition: opacity var(--transition-200);
}
.header-wrap .header-logo img:hover {
  opacity: 0.85;
}
.header-wrap .header-column-right .icon-wrap {
  position: relative;
  transition: all var(--transition-200);
}
.header-wrap .header-column-right .icon-wrap:hover {
  transform: translateY(-2px);
}
.header-wrap .header-column-right .icon-wrap:hover svg path {
  stroke: var(--color-primary);
}
.header-wrap .header-column-right .icon-wrap .count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gradient-primary);
  color: white;
  font-size: 10px;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid white;
  line-height: 1;
}

.top-nav-wrap {
  background: var(--gradient-dark);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.top-nav-wrap .top-nav {
  padding: 6px 0;
}
.top-nav-wrap .top-nav .top-nav-left span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 400;
}
.top-nav-wrap .top-nav .top-nav-right-list li a, .top-nav-wrap .top-nav .top-nav-right-list li .btn {
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  transition: color var(--transition-200);
}
.top-nav-wrap .top-nav .top-nav-right-list li a:hover, .top-nav-wrap .top-nav .top-nav-right-list li .btn:hover {
  color: white;
}
.top-nav-wrap .top-nav .top-nav-right-list li a i, .top-nav-wrap .top-nav .top-nav-right-list li .btn i {
  color: rgba(255, 255, 255, 0.6);
}

.navigation-wrap {
  background: var(--color-surface);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);
}

.footer-wrap {
  background: var(--gradient-footer);
  color: var(--color-footer-text);
  padding-top: 60px;
}
.footer-wrap .footer .footer-top {
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-wrap .footer .footer-top .title {
  color: var(--color-footer-heading);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-wrap .footer .footer-top .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}
.footer-wrap .footer .footer-top .contact-info li {
  color: var(--color-footer-text);
  margin-bottom: 10px;
}
.footer-wrap .footer .footer-top .contact-info li a {
  color: var(--color-footer-text);
  transition: color var(--transition-200);
}
.footer-wrap .footer .footer-top .contact-info li a:hover {
  color: white;
}
.footer-wrap .footer .footer-top .contact-info li i {
  color: var(--color-primary);
}
.footer-wrap .footer .footer-top .social-links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all var(--transition-300);
}
.footer-wrap .footer .footer-top .social-links li a i, .footer-wrap .footer .footer-top .social-links li a svg {
  color: var(--color-footer-text);
  fill: var(--color-footer-text);
  font-size: 16px;
  transition: all var(--transition-200);
}
.footer-wrap .footer .footer-top .social-links li a:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
}
.footer-wrap .footer .footer-top .social-links li a:hover i, .footer-wrap .footer .footer-top .social-links li a:hover svg {
  color: white;
  fill: white;
}
.footer-wrap .footer .footer-top .footer-links ul li a {
  color: var(--color-footer-text);
  font-size: 14px;
  transition: all var(--transition-200);
  padding: 4px 0;
  display: inline-block;
}
.footer-wrap .footer .footer-top .footer-links ul li a:hover {
  color: white;
  padding-left: 4px;
}
.footer-wrap .footer .footer-top .footer-tags ul li a {
  color: var(--color-footer-text);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 12px;
  transition: all var(--transition-200);
}
.footer-wrap .footer .footer-top .footer-tags ul li a svg path {
  stroke: var(--color-footer-text);
}
.footer-wrap .footer .footer-top .footer-tags ul li a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
  border-color: rgba(255, 255, 255, 0.2);
}
.footer-wrap .footer .footer-bottom {
  padding: 20px 0;
}
.footer-wrap .footer .footer-bottom .footer-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.footer-wrap .footer .footer-bottom .footer-text a {
  color: var(--color-primary);
}
.footer-wrap .footer .footer-bottom .footer-text a:hover {
  text-decoration: underline;
}

.home-section-wrap .home-slider-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.home-section-wrap .home-slider-wrap .slider-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-hero-overlay);
  opacity: 0.3;
}
.home-section-wrap .home-slider-wrap .slide-content .captions .caption-1 {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.home-section-wrap .home-slider-wrap .slide-content .captions .caption-2 {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}
.home-section-wrap .home-banner-wrap .banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-300);
}
.home-section-wrap .home-banner-wrap .banner:hover {
  transform: scale(1.02);
}

.features-wrap .single-feature {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: var(--radius-card);
  padding: 20px 16px;
  transition: all var(--transition-300);
}
.features-wrap .single-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-alpha-15);
}
.features-wrap .single-feature:hover .feature-icon i {
  color: var(--color-primary);
  animation: floatBounce 0.6s ease;
}
.features-wrap .single-feature .feature-icon i {
  font-size: 28px;
  color: var(--color-primary);
  transition: all var(--transition-200);
}
.features-wrap .single-feature .feature-details h6 {
  font-weight: 600;
  font-size: 14px;
  color: var(--color-text-primary);
}
.features-wrap .single-feature .feature-details span {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.featured-categories-wrap .featured-categories-header .title {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-primary);
  letter-spacing: -0.3px;
}
.featured-categories-wrap .featured-categories-header .excerpt {
  color: var(--color-text-secondary);
  font-size: 14px;
}
.featured-categories-wrap .featured-categories-header .tab-item {
  border-radius: var(--radius-card);
  padding: 12px 16px;
  transition: all var(--transition-300);
  border: 1px solid transparent;
}
.featured-categories-wrap .featured-categories-header .tab-item:hover, .featured-categories-wrap .featured-categories-header .tab-item.active {
  border-color: var(--color-primary-alpha-15);
  background: var(--color-primary-alpha-10);
}
.featured-categories-wrap .featured-categories-header .tab-item .featured-category-image {
  border-radius: 12px;
  overflow: hidden;
}
.featured-categories-wrap .featured-categories-header .tab-item .featured-category-image img {
  transition: transform var(--transition-300);
}
.featured-categories-wrap .featured-categories-header .tab-item:hover .featured-category-image img {
  transform: scale(1.08);
}

.subscribe-wrap .subscribe {
  background: var(--gradient-primary);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-primary);
  position: relative;
  overflow: hidden;
}
.subscribe-wrap .subscribe::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  pointer-events: none;
}
.subscribe-wrap .subscribe::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
.subscribe-wrap .subscribe .subscribe-text .title {
  color: white;
  font-weight: 700;
  font-size: 22px;
}
.subscribe-wrap .subscribe .subscribe-text .sub-title {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
}
.subscribe-wrap .subscribe .btn-subscribe {
  background: white;
  color: var(--color-primary);
  font-weight: 600;
  border: none;
  border-radius: 12px;
  transition: all var(--transition-200);
}
.subscribe-wrap .subscribe .btn-subscribe:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section-title,
.tab-products-header .tabs .tab-item {
  font-weight: 600;
  color: var(--color-text-primary);
}

.landscape-tab-products-wrap .tab-products-header hr,
.grid-products-wrap .tab-products-header hr {
  border-color: rgba(0, 0, 0, 0.06);
}
.landscape-tab-products-wrap .tab-products-header .tabs .tab-item,
.grid-products-wrap .tab-products-header .tabs .tab-item {
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition-200);
}
.landscape-tab-products-wrap .tab-products-header .tabs .tab-item.active, .landscape-tab-products-wrap .tab-products-header .tabs .tab-item:hover,
.grid-products-wrap .tab-products-header .tabs .tab-item.active,
.grid-products-wrap .tab-products-header .tabs .tab-item:hover {
  background: var(--color-primary-alpha-10);
  color: var(--color-primary);
}

.banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-300), box-shadow var(--transition-300);
}
.banner:hover {
  transform: scale(1.01);
  box-shadow: var(--shadow-md);
}
.banner img {
  transition: transform 0.5s ease;
}
.banner:hover img {
  transform: scale(1.03);
}

.breadcrumb-wrap {
  background: transparent;
}
.breadcrumb-wrap .breadcrumb li a {
  color: var(--color-text-secondary);
  font-size: 13px;
}
.breadcrumb-wrap .breadcrumb li a:hover {
  color: var(--color-primary);
}
.breadcrumb-wrap .breadcrumb li.active {
  color: var(--color-text-primary);
  font-weight: 500;
}

.blog-post-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--color-surface);
  transition: all var(--transition-300);
}
.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.brands-wrap .brand-item,
.top-brands-wrap .brand-item {
  border-radius: var(--radius-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all var(--transition-200);
}
.brands-wrap .brand-item:hover,
.top-brands-wrap .brand-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary-alpha-15);
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px !important;
  height: 40px !important;
  background: var(--glass-bg) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50% !important;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  box-shadow: var(--shadow-sm) !important;
  transition: all var(--transition-200) !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--color-text-primary) !important;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  box-shadow: var(--shadow-primary) !important;
}
.swiper-button-next:hover::after,
.swiper-button-prev:hover::after {
  color: white !important;
}

.btn-primary {
  background: var(--color-primary);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all var(--transition-200);
}
.btn-primary:hover {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-primary);
  transform: translateY(-1px);
}

.scroll-to-top {
  border-radius: 14px !important;
  box-shadow: var(--shadow-lg);
  background: var(--gradient-primary);
  transition: all var(--transition-200);
}
.scroll-to-top:hover {
  transform: translateY(-3px) scale(1.05);
}

@media screen and (max-width: 767px) {
  .product-card .product-card-top .product-card-actions {
    opacity: 1;
    transform: translateX(0);
  }
  .product-card .product-card-middle {
    padding: 10px 12px 4px;
  }
  .product-card .product-card-middle .product-name {
    font-size: 13px;
  }
  .product-card .product-card-bottom {
    padding: 4px 12px 12px;
  }
  .product-card .product-card-bottom .product-price .special-price {
    font-size: 15px;
  }
  .product-card .product-card-bottom .btn-add-to-cart {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
  }
  .subscribe-wrap .subscribe {
    padding: 24px;
    border-radius: var(--radius-lg);
  }
  .footer-wrap {
    padding-top: 40px;
  }
}
@media screen and (max-width: 576px) {
  .product-card .product-card-bottom .product-price .special-price {
    font-size: 14px;
  }
  .product-card .product-card-bottom .product-price .previous-price {
    font-size: 11px;
  }
}

/*# sourceMappingURL=nishbuy_overrides.css.map */
