@font-face {
  font-family: Dana;
  src: url("../font/dana-regular.woff2");
}

:root {
  --color-primary-red: #900028;
  --color-primary-red-hover: #a01038;
  --color-primary-red-dark: #7a0021;
  --color-dark: #212121;
  --color-white: #fff;
  --color-black: #000;
  --color-background-body: #f0f0f0;
  --color-text-primary: #333;
  --color-text-secondary: #666;
  --color-text-tertiary: #888;
  --color-border: #eee;
  --color-border-light: #e5e7eb;
  --color-border-medium: rgb(232, 232, 232);
  --color-gray-light: #ccc;
  --color-gray-medium: rgb(216, 216, 216);
  --color-background-light: #f8f8f8;
  --color-background-hover: #f3f4f6;
  --color-stock-available: #28a745;
  --color-white-80: rgba(255, 255, 255, 0.8);
  --color-white-50: rgba(255, 255, 255, 0.5);
  --color-white-30: rgba(255, 255, 255, 0.3);
  --color-white-20: rgba(255, 255, 255, 0.2);
  --color-black-60: rgba(0, 0, 0, 0.6);
  --color-black-10: rgb(0 0 0 / 0.1);
  --color-gray-dark-80: rgba(154, 154, 154, 0.8);
  --color-energy-a: #179647;
  --color-energy-b: #68ac43;
  --color-energy-c: #cddc39;
  --color-energy-d: #ffeb3b;
  --color-energy-e: #ffc107;
  --color-energy-f: #ff9800;
  --color-energy-g: #e52920;

  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-md: 0.8rem;
  --fs-lg: 0.9rem;

  --fs-px-6: 6px;
  --fs-px-8: 8px;

  --border-r: 5px;
}

body {
  background-color: var(--color-background-body);
  color: var(--color-text-primary);
  font-family: "Dana", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: var(--fs-md);
}
body * {
  font-family: "Dana" !important;
}

main {
  padding-top: 80px;
}

/* Apply root font sizes to Tailwind text classes */
.text-xs {
  font-size: var(--fs-xs);
}
.text-sm {
  font-size: var(--fs-sm);
}
.text-base {
  font-size: var(--fs-md);
}
.text-lg,
.text-xl,
.text-2xl,
.text-3xl,
.text-4xl,
.text-5xl {
  font-size: var(--fs-lg);
}

.bg-aplus-dark {
  background-color: var(--color-dark);
}
.bg-aplus-maroon {
  background-color: var(--color-primary-red);
}
.text-aplus-maroon {
  color: var(--color-primary-red);
}
.border-aplus-maroon {
  border-color: var(--color-primary-red);
}

header {
  position: absolute;
  width: 100%;
  z-index: 20;
}

header.dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

#main-nav {
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
}
#main-nav:hover {
  background-color: var(--color-dark);
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--color-primary-red);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-primary-red-hover);
}

.hero-slider {
}

.hero-swiper {
  width: 100%;
  height: 100%;
}
.hero-swiper .swiper-slide {
  position: relative;
  color: var(--color-white);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-content {
  position: absolute;
  top: 30%;
  left: 10%;
  right: auto;
  z-index: 5;
  max-width: 50%;
  text-align: right;
  color: var(--color-white);
}
.hero-subtitle {
  margin-bottom: 0.5rem;
}
.hero-title {
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero-cta {
  display: inline-block;
  border: 1px solid var(--color-white);
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--color-white);
  transition: background-color 0.3s, color 0.3s;
}
.hero-cta:hover {
  background-color: var(--color-white);
  color: var(--color-dark);
}
.hero-controls {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-swiper-button-prev,
.hero-swiper-button-next {
  position: static;
  margin: 0;
  width: 32px;
  height: 32px;
  background-color: var(--color-white-80);
  border-radius: 50%;
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-swiper-button-prev svg,
.hero-swiper-button-next svg {
  width: 20px;
  height: 20px;
}

.hero-swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  gap: 0.5rem;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 80px;
  height: 4px;
  background-color: var(--color-white-50);
  border-radius: 2px;
  opacity: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.hero-swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-white);
}
.hero-pagination-bullet-active-loading {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--color-primary-red);
  transform-origin: left;
}

.light-swiper-button-prev,
.light-swiper-button-next {
  background: var(--color-black-60);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.light-swiper-button-prev:hover,
.light-swiper-button-next:hover {
  background: var(--color-gray-dark-80);
}

.light-swiper-button-prev.swiper-button-disabled,
.light-swiper-button-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.light-swiper .swiper-pagination-bullet {
  background-color: var(--color-gray-light);
  opacity: 1;
}
.light-swiper .swiper-pagination-bullet-active {
  background-color: var(--color-dark);
}

.hero-slider {
  position: relative;
  overflow: hidden;
  height: 80vh;
}

.hero-controls button {
  background: var(--color-black-60);
  color: var(--color-white);
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 50%;
  font-size: var(--fs-md);
}
/*
========================================
============== homepage ===============
========================================
 */

.hero-swiper-pagination {
  display: flex;
  gap: 8px;
}

.hero-swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-white);
  opacity: 0.5;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
  width: 60px;
  height: 4px;
  border-radius: 3px;
  background-color: var(--color-white-30);
}

.hero-swiper-pagination .swiper-pagination-bullet-active .progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--color-white);
  transition: width linear;
}

.bx-chevron-left,
.bx-chevron-right,
.bx-pause,
.bx-play {
  color: var(--color-white) !important;
  fill: var(--color-white) !important;
  stroke: var(--color-white) !important;
  font-size: var(--fs-lg);
}

.best-sellers button {
  background-color: var(--color-gray-medium);
}

.best-sellers button i {
  color: var(--color-black) !important;
}

#main-nav.sticky-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  animation: slideDown 0.35s ease-out;
  box-shadow: 0 4px 6px -1px var(--color-black-10),
    0 2px 4px -2px var(--color-black-10);
  background-color: var(--color-dark);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

.pause {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 30px;
  height: 30px;
}

.hero-controls .hero-swiper-pagination {
  padding: 10px;
  background-color: var(--color-black-60);
  border-radius: 50px;
}

.latest-offers-swiper-button-prev,
.latest-offers-swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: var(--color-gray-medium);
}
.latest-offers-swiper-button-prev {
  left: -10px;
}
.latest-offers-swiper-button-next {
  right: -10px;
}
@media (min-width: 768px) {
  .latest-offers-swiper-button-prev {
    left: 8px;
  }
  .latest-offers-swiper-button-next {
    right: 8px;
  }
}
/*
========================================
========== NEW PRODUCT CARD STYLES =====
========================================
*/

.product-card {
  text-align: right;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--color-border);
  padding: 1rem;
  transition: box-shadow 0.3s ease-in-out;
}

.product-card:hover {
  box-shadow: 0 4px 12px var(--color-black-10);
}

.product-card .save-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  left: auto;
  background-color: var(--color-primary-red);
  color: var(--color-white);
  padding: 0.25rem 0.5rem;
  font-size: var(--fs-xs);
  font-weight: bold;
  z-index: 10;
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
}

.product-info-wrapper {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}

.star-rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.star-rating i {
}

.product-title {
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--color-dark);
}
.product-title:hover {
  color: var(--color-primary-red);
}

.price-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  margin-bottom: 0.75rem;
}

.price-details .current-price {
  font-size: var(--fs-md);
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
}

.old-price-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.old-price-wrapper .old-price {
  text-decoration: line-through;
  color: var(--color-text-tertiary);
  font-size: var(--fs-sm);
}

.old-price-wrapper .save-tag {
  background-color: var(--color-primary-red);
  color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 3px;
}

.vat-info {
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
  margin-top: 0.25rem;
}

.add-to-cart-btn {
  background-color: var(--color-primary-red);
  color: var(--color-white);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}
.add-to-cart-btn:hover {
  background-color: var(--color-primary-red-dark);
}
.add-to-cart-btn i {
  font-size: var(--fs-lg);
}

.stock-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  color: var(--color-stock-available);
  margin-bottom: 1rem;
}

.stock-status .stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-stock-available);
}

.info-sheet-link {
  font-size: var(--fs-sm);
  text-decoration: underline;
  color: var(--color-text-primary);
}

.info-sheet-link:hover {
  color: var(--color-primary-red);
}

.energy-badge-new {
  display: flex;
  height: 28px;
  width: 90px;
  font-family: Arial, sans-serif;
  margin-bottom: 0.75rem;
  direction: ltr;
  margin-right: auto;
}

.energy-scale-new {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 0 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-px-8);
  font-weight: bold;
  line-height: 1;
  border-radius: 3px 0 0 3px;
}
.energy-scale-new span {
  display: block;
}
.energy-scale-new .bxs-up-arrow {
  font-size: var(--fs-px-6);
  margin: 1px 0;
}

.energy-rating-new {
  position: relative;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: bold;
  font-size: var(--fs-md);
  width: 80px;
}

.energy-rating-new::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 14px;
  border-color: transparent transparent transparent var(--badge-color);
}

.energy-badge-new[data-rating="A"] {
  width: 95px;
}
.energy-badge-new[data-rating="A+"] {
  width: 105px;
}
.energy-badge-new[data-rating="A++"] {
  width: 110px;
}
.energy-badge-new[data-rating="A+++"] {
  width: 115px;
}

.energy-badge-new[data-rating="A"],
.energy-badge-new[data-rating="A+"],
.energy-badge-new[data-rating="A++"],
.energy-badge-new[data-rating="A+++"] .energy-rating-new {
  --badge-color: var(--color-energy-a);
  background-color: var(--color-energy-a);
}
.energy-badge-new[data-rating="B"] .energy-rating-new {
  --badge-color: var(--color-energy-b);
  background-color: var(--color-energy-b);
}
.energy-badge-new[data-rating="C"] .energy-rating-new {
  --badge-color: var(--color-energy-c);
  background-color: var(--color-energy-c);
  color: var(--color-black);
}
.energy-badge-new[data-rating="D"] .energy-rating-new {
  --badge-color: var(--color-energy-d);
  background-color: var(--color-energy-d);
  color: var(--color-black);
}
.energy-badge-new[data-rating="E"] .energy-rating-new {
  --badge-color: var(--color-energy-e);
  background-color: var(--color-energy-e);
  color: var(--color-black);
}
.energy-badge-new[data-rating="F"] .energy-rating-new {
  --badge-color: var(--color-energy-f);
  background-color: var(--color-energy-f);
}
.energy-badge-new[data-rating="G"] .energy-rating-new {
  --badge-color: var(--color-energy-g);
  background-color: var(--color-energy-g);
}

@media (max-width: 768px) {
  .hero-title {
    font-size: var(--fs-lg);
  }

  .hero-subtitle {
    font-size: var(--fs-xs);
  }
  .hero-cta {
    font-size: var(--fs-sm);
    padding: 0.6rem 1.2rem;
  }
  .product-title {
    font-size: var(--fs-sm);
    min-height: 40px;
  }
  .product-meta,
  .vat-info {
    font-size: var(--fs-xs);
  }
  .stock-status,
  .info-sheet-link,
  .old-price {
    font-size: var(--fs-sm);
  }
  .current-price {
    font-size: var(--fs-xs);
  }
  #search-overlay input {
    font-size: var(--fs-lg);
  }
  .save-badge,
  .old-price-wrapper .save-tag {
    font-size: var(--fs-xs);
    padding: 0.2rem 0.4rem;
  }
  .newsletter-text {
    font-size: var(--fs-sm);
  }
  .newsletter-legal {
    font-size: var(--fs-xs);
  }
}

#search-overlay {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#search-overlay input {
  font-size: var(--fs-lg);
}
@media (max-width: 768px) {
  #search-overlay h2 {
    font-size: var(--fs-lg);
  }
  #search-overlay input {
    font-size: var(--fs-md);
  }
  .current-price {
    font-size: var(--fs-xs);
  }
}

.body-no-scroll {
  overflow: hidden;
}

#cart-drawer button:hover {
  opacity: 0.8;
}

#cart-drawer .quantity-btn {
  width: 28px;
  height: 28px;
  border: 1px solid var(--color-border-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}
#cart-drawer .quantity-btn:hover {
  background-color: var(--color-background-hover);
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-dark);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  visibility: visible;
  opacity: 1;
}

#preloader.preloader-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo {
  width: 150px;
  margin-bottom: 20px;
}

.spinner {
  position: relative;
  width: 50px;
  height: 50px;
}

.spinner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 4px solid rgba(255, 255, 255, 0.2); /* light track */
  border-left-color: var(--color-primary-red); /* accent color */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.footer-payment-svg {
  height: 20px;
}

.support-swiper,
.for-you-swiper {
  height: 600px;
}

.support-swiper .swiper-slide a {
  height: 100%;
}

.for-you-swiper .swiper-slide a {
  height: 100%;
}

.custom-payment {
  background: var(--color-background-light);
  border-radius: 100px;
  padding: 10px 30px;
  width: fit-content;
  margin: 20px auto;
}

/*
========================================
========== PRODUCT PAGE STYLES =========
========================================
*/

.gallery-thumbs .swiper-slide {
  opacity: 0.6;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.3s, border-color 0.3s;
}
.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--color-dark);
}

.option-header .icon-toggle svg {
  transition: transform 0.3s ease-in-out;
}

.accordion-header i {
  transition: transform 0.3s ease-in-out;
}
.accordion-header.active i {
  transform: rotate(180deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
    transition: height 0.3s ease-in-out;

}

.tab-button {
  color: var(--color-text-tertiary);
  padding: 10px 30px;
  background-color: transparent;
  transition: color 0.3s ease;
  flex-shrink: 0;
  border: none;
  cursor: pointer;
}
.tab-button.active {
  background-color: transparent;
  color: var(--color-white);
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideOutToRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(30px);
  }
}
@keyframes slideOutToLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}

#tab-content-wrapper {
  position: relative;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.tab-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  visibility: hidden;
  opacity: 0;
}
.tab-content.active {
  position: relative;
  visibility: visible;
  opacity: 1;
}

.anim-in-from-right {
  animation: slideInFromRight 0.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  visibility: visible;
}
.anim-in-from-left {
  animation: slideInFromLeft 0.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  visibility: visible;
}
.anim-out-to-right {
  animation: slideOutToRight 0.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  visibility: visible;
}
.anim-out-to-left {
  animation: slideOutToLeft 0.4s cubic-bezier(0.65, 0, 0.35, 1) forwards;
  visibility: visible;
}

#gallery-modal .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
#gallery-modal .gallery-modal-thumbs .swiper-slide {
  opacity: 0.6;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity 0.3s, border-color 0.3s;
  height: 80px !important;
}

#gallery-modal .gallery-modal-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: var(--color-white);
}

.gallery-modal-prev,
.gallery-modal-next {
  display: flex;
  align-items: center;
  justify-content: center;
}

.content {
  padding-top: 100px;
}

.header-spec i {
  width: 20px;
  height: 20px;
  margin-top: 5px;
}

@media (min-width: 1024px) {
  #gallery-modal .gallery-modal-thumbs .swiper-wrapper {
    flex-direction: column;
    height: auto;
  }
  #gallery-modal .gallery-modal-thumbs .swiper-slide {
    width: 100% !important;
    height: 80px !important;
  }
}

#content-tabs {
  overflow-x: scroll;
  border-bottom-color: var(--color-gray-700);
}

#content-tabs::-webkit-scrollbar {
  display: none !important;
}

.spec-container {
  text-align: justify;
}

.spec-container h2 {
  font-size: var(--fs-lg);
  font-weight: 900;
  margin: 15px 0 10px 0;
}

.spec-container p {
  font-size: var(--fs-xs);
  font-weight: 100;
}

#spec-file {
  color: #000;
  fill: #000;
}

#spec-tech table {
  width: 100%;
}

#spec-tech table tr th {
  text-align: right;
}

#spec-tech table tr:nth-child(even) {
  background-color: #3c3c3c;
}

@media (max-width: 768px) {
  .hero-slider {
    height: 450px;
  }

  .current-price {
    font-size: var(--fs-xs);
  }
}

/*
========================================
========== CATEGORY PAGE STYLES ========
========================================
*/
.category-header {
  background-color: #1c1c1c;
  color: white;
}

.category-header a {
  color: white;
}

.category-header input[type="search"] {
  background-color: #333;
  border-color: #555;
}
.category-header input[type="search"]::placeholder {
  color: #999;
}

/* Custom Checkbox */
.custom-checkbox {
  appearance: none;
  -webkit-appearance: none;
  background-color: #fff;
  margin: 0;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.1em solid currentColor;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center;
  cursor: pointer;
}

.custom-checkbox::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--color-primary-red);
  background-color: var(--color-primary-red);
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
}

.custom-checkbox:checked::before {
  transform: scale(1);
}

/* Toggle Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: var(--color-primary-red);
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--color-primary-red);
}

input:checked + .slider:before {
  -webkit-transform: translateX(22px);
  -ms-transform: translateX(22px);
  transform: translateX(22px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* New Product Card */
.new-product-card {
  background-color: white;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease-in-out;
  padding: 1rem;
  position: relative;
  height: 100%;
}
.new-product-card:hover {
  box-shadow: 0 4px 12px var(--color-black-10);
}

.new-product-card .save-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-primary-red);
  color: var(--color-white);
  padding: 0.25rem 0.75rem;
  font-size: var(--fs-xs);
  font-weight: bold;
  z-index: 10;
}
.new-product-card .product-image-wrapper {
  text-align: center;
  margin-bottom: 1rem;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.new-product-card .product-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.new-product-card .product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.new-product-card .product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
}
.new-product-card .rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.new-product-card .rating-count {
  text-decoration: underline;
  color: var(--color-text-secondary);
}
.new-product-card .rating .bx {
  color: var(--color-primary-red);
}

.new-product-card .product-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: 1rem;
  min-height: 3rem;
}
.new-product-card .product-title a {
  color: inherit;
  text-decoration: none;
}
.new-product-card .product-title a:hover {
  color: var(--color-primary-red);
}

.new-product-card .energy-saving-badge {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border-medium);
  padding: 0.5rem;
  margin-bottom: 1rem;
  position: relative;
  font-size: var(--fs-xs);
}
.new-product-card .energy-saving-badge:hover .tooltip {
  opacity: 1;
  visibility: visible;
}
.new-product-card .badge-icon {
  color: var(--color-primary-red);
  font-size: 1.5rem;
}
.new-product-card .badge-text {
  flex-grow: 1;
  margin: 0 0.5rem;
}
.new-product-card .badge-text p {
  margin: 0;
}
.new-product-card .badge-text span {
  color: var(--color-text-secondary);
}
.new-product-card .badge-dropdown {
  color: var(--color-text-tertiary);
}
.new-product-card .tooltip {
  position: absolute;
  bottom: 100%;
  right: 0;
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 0.5rem;
  border-radius: var(--border-r);
  font-size: var(--fs-xs);
  width: 100%;
  margin-bottom: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 10;
  text-align: right;
}

.new-product-card .specs {
  margin-bottom: 1rem;
  font-size: var(--fs-sm);
}
.new-product-card .specs div {
  display: flex;
  justify-content: space-between;
  padding: 0.25rem 0;
  border-bottom: 1px solid var(--color-border);
}
.new-product-card .specs dt {
  color: var(--color-text-secondary);
}

.new-product-card .icons {
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1rem;
  direction: rtl;
  margin: 0 auto;
}
.new-product-card .icon-wrapper {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--color-black);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-secondary);
}

.new-product-card .price-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.new-product-card .current-price {
  font-size: var(--fs-lg);
  font-weight: 900;
}
.new-product-card .old-price-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
}
.new-product-card .old-price {
  color: var(--color-text-tertiary);
}
.new-product-card .save-tag {
  background-color: var(--color-primary-red);
  color: var(--color-white);
  padding: 2px 6px;
  font-size: var(--fs-xs);
  border-radius: 3px;
}
.new-product-card .vat-info {
  font-size: var(--fs-xs);
  color: var(--color-text-secondary);
}
.new-product-card .stock-status {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: var(--fs-sm);
  color: var(--color-stock-available);
}
.new-product-card .stock-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-stock-available);
}
.new-product-card .add-to-cart-btn {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary-red);
  color: var(--color-white);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
}
.new-product-card .add-to-cart-btn:hover {
  background-color: var(--color-primary-red-dark);
}
.new-product-card .product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}
.new-product-card .footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}
.new-product-card .info-sheet-link {
  font-size: var(--fs-sm);
  text-decoration: underline;
}
.new-product-card .footer-right {
  display: flex;
  gap: 0.5rem;
}
.new-product-card .circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  border: 1px solid var(--color-border-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  cursor: pointer;
  transition: background-color 0.2s;
}
.new-product-card .circle-btn:hover {
  background-color: #e0e0e0;
}
.new-product-card .energy-badge-vertical {
  display: flex;
  font-family: Arial, sans-serif;
  border: 1px solid var(--color-border-medium);
  width: fit-content;
  direction: ltr;
}
.new-product-card .energy-badge-vertical[data-rating="A"] .energy-rating-val {
  background-color: #a3d038;
  color: var(--color-dark);
}
.new-product-card .energy-rating-val {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  font-weight: bold;
}
.new-product-card .energy-rating-scale {
  padding: 0.25rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  font-size: var(--fs-xs);
  font-weight: bold;
}
.new-product-card .energy-rating-scale .bx {
  font-size: 1rem;
}

.cashback-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: var(--color-primary-red);
  color: white;
  padding: 0.25rem 0.75rem;
  font-size: var(--fs-xs);
  border-radius: var(--border-r);
}

.shop-button {
  border-radius: var(--border-r);
  background-color: var(--color-primary-red);
}

#filter-sidebar-desktop .accordion-header i {
  transition: transform 0.3s ease-in-out;
}
#filter-sidebar-desktop .accordion-header.active i {
  transform: rotate(180deg);
}

#description-content {
  transition: all 1s ease-in-out;
}

#description-content > * {
  font-size: 15px !important;
  text-align: justify;
}

#description-content.deactive {
  position: relative;
}

#description-content.deactive::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(
    180deg,
    rgba(207, 46, 46, 0) 0%,
    rgba(255, 255, 255, 1) 70%
  );

  width: 100%;
  height: 60%;
}

#toggle-icon i {
  width: 20px;
  height: 20px;
}
