
/** products-section **/

.products-section{
  position: relative;
  background: #f5f5f5;
}

.products-section .products-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.products-section .product-card{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.products-section .product-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.products-section .product-image{
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.products-section .product-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;

  transition: transform 0.3s ease;
}

.products-section .product-card:hover .product-image img{
  transform: scale(1.05);
}

.products-section .product-content{
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.products-section .product-category{
  font-size: 10px;
  line-height: 14px;
  color: #FFD700;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  font-family: var(--title-font);
}

.products-section .product-name{
  font-size: 20px;
  line-height: 28px;
  color: #222;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: var(--title-font);
}

.products-section .product-description{
  font-size: 14px;
  line-height: 22px;
  color: #666;
  margin-bottom: 20px;
  flex: 1;
}

.products-section .product-content .product-price{
  font-size: 28px;
  line-height: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--title-font);
  background: linear-gradient(11deg, rgba(0, 0, 0, 1) 30%, rgba(194, 148, 56, 1) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent !important;
  display: inline-block;
}

.products-section .product-actions{
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.products-section .btn-view-details,
.products-section .btn-add-cart{
  flex: 1;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: var(--title-font);
}

.products-section .btn-view-details{
  background: #fff;
  color: #222;
  border: 1px solid #ddd;
}

.products-section .btn-view-details:hover{
  background: #f9f9f9;
  border-color: #ccc;
}

.products-section .btn-add-cart{
  background: #222;
  color: #fff;
  border: 1px solid #222;
}

.products-section .btn-add-cart:hover{
  background: #000;
  border-color: #000;
}

.products-section .products-footer{
  text-align: center;
  margin-top: 40px;
}

.products-section .btn-view-all{
  display: inline-block;
  padding: 16px 40px;
  background: var(--gradient-color-btn);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-family: var(--title-font);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.products-section .btn-view-all:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/** responsive-css **/

@media only screen and (max-width: 991px){
  .products-section .products-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media only screen and (max-width: 767px){
  .products-section{
    padding: 60px 0;
  }

  .products-section .products-grid{
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }

  .products-section .product-image{
    height: 220px;
  }

  .products-section .product-content{
    padding: 20px;
  }

  .products-section .product-name{
    font-size: 18px;
    line-height: 26px;
  }

  .products-section .product-price{
    font-size: 24px;
    line-height: 30px;
  }

  .products-section .product-actions{
    flex-direction: column;
    gap: 8px;
  }

  .products-section .btn-view-details,
  .products-section .btn-add-cart{
    width: 100%;
  }
}

/** products-page-section **/

.products-page-section{
  position: relative;
  display: block;
  background: #f5f5f5;
}

.products-page-section .sec-title{
  text-align: center;
  margin-bottom: 50px;
}

.products-page-section .sec-title h2{
  font-size: 42px;
  line-height: 52px;
  font-weight: 700;
  color: #5C4033;
  margin-bottom: 15px;
  font-family: var(--title-font);
}

.products-page-section .sec-title .subtitle{
  font-size: 16px;
  line-height: 26px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  font-family: var(--text-font);
}

.products-category-tabs{
  position: relative;
  margin-bottom: 50px;
}

.category-tabs-list{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  
  padding: 15px;
  border-radius: 12px;

}

.category-tab{
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  background: #e8e8e8;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--title-font);
  white-space: nowrap;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}

.category-tab:hover{
  color: #222;
  background: #e0e0e0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.category-tab.active{
  color: #fff;
  background: var(--gradient-color-btn);
  border: none;
  position: relative;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.category-tab.active::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
 

  border-radius: 0 0 8px 8px;
}

.products-page-section .products-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.products-page-section .product-card{
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0px 2px 15px 0px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.products-page-section .product-card:hover{
  box-shadow: 0px 8px 30px 0px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.products-page-section .product-image-box{
  position: relative;
  width: 100%;
  height: 250px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 20px;
}

.products-page-section .product-image-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
}

.products-page-section .product-card:hover .product-image-box img{
  transform: scale(1.05);
}

.products-page-section .product-badge{
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: #FF6B35;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--title-font);
  z-index: 2;
}

.products-page-section .product-badge.pro{
  background: #FF6B35;
}

.products-page-section .product-content{
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.products-page-section .product-title{
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 12px;
  font-family: var(--title-font);
}

.products-page-section .product-description{
  font-size: 14px;
  line-height: 22px;
  color: #666;
  margin-bottom: 20px;
  flex: 1;
  font-family: var(--text-font);
}

.products-page-section .product-price{
  font-size: 24px;
  line-height: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--title-font);
  color: #222;
  display: inline-block;
}

.products-page-section .product-actions{
  display: flex;
  gap: 10px;
  margin-top: auto;
  position: relative;
  z-index: 5;
  pointer-events: auto;
}

.products-page-section .btn-view-details{
  flex: 1;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #222;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--title-font);
  cursor: pointer !important;
  display: inline-block !important;
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
}

.products-page-section .btn-view-details:hover{
  background: #f9f9f9;
  border-color: #ccc;
}

.products-page-section .btn-add-cart{
  flex: 1;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--gradient-color-btn);
  border: none;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: var(--title-font);
  position: relative;
  overflow: hidden;
}

.products-page-section .btn-add-cart::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-color-btn);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.products-page-section .btn-add-cart:hover::after{
  transform: scaleX(1);
}

.products-page-section .btn-add-cart:hover{
  background: linear-gradient(135deg, rgba(0, 0, 0, 1) 0%, rgba(36, 50, 67, 1) 100%);
}

@media only screen and (max-width: 991px){
  .products-page-section .products-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  
  .category-tabs-list{
    padding: 12px;
    gap: 8px;
  }
  
  .category-tab{
    padding: 10px 16px;
    font-size: 13px;
  }
}

@media only screen and (max-width: 767px){
  .products-page-section .products-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .category-tabs-list{
    flex-direction: column;
    gap: 8px;
  }
  
  .category-tab{
    width: 100%;
    text-align: center;
  }
  
  .products-page-section .product-image-box{
    height: 220px;
  }
  
  .products-page-section .product-content{
    padding: 20px;
  }
  
  .products-page-section .product-actions{
    flex-direction: column;
  }
}

/** Product Detail Modal Styles **/

.product-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
  overflow-y: auto;
}

.product-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.product-modal-container {
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
  position: relative;
  margin: auto;
}

.product-modal-content {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-modal-header {
  background: var(--gradient-color-btn);
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.product-modal-header-title {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  font-family: var(--title-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-modal-close {
  width: 30px;
  height: 30px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  padding: 0;
}

.product-modal-close:hover {
  color: #FFD700;
  transform: rotate(90deg);
}

.product-modal-body {
  padding: 30px;
  overflow-y: auto;
  flex: 1;
}

.product-modal-row {
  display: flex;
  gap: 30px;
  margin-bottom: 0;
}

.product-modal-image-col {
  flex: 0 0 45%;
  max-width: 45%;
}

.product-modal-info-col {
  flex: 1;
  min-width: 0;
}

.product-modal-image-gallery {
  width: 100%;
}

.product-main-image-wrapper {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  margin-bottom: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.product-main-image-wrapper:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-main-image-wrapper:hover .image-zoom-icon {
  opacity: 1;
}

.product-main-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  display: block;
}

.image-zoom-icon {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 3;
  cursor: pointer;
}

.image-zoom-icon:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: scale(1.1);
}

.product-main-image-wrapper .product-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.product-thumbnails-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.product-thumbnail {
  width: 80px;
  height: 80px;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumbnail:hover {
  border-color: #FFD700;
  transform: translateY(-2px);
}

.product-thumbnail.active {
  border-color: #FFD700;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.product-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.product-modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  font-family: var(--title-font);
  line-height: 1.4;
}

.product-modal-price {
  font-size: 28px;
  font-weight: 700;
  color: #FFA500;
  margin-bottom: 20px;
  font-family: var(--title-font);
}

.product-modal-short-desc {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.product-modal-features {
  margin-top: 25px;
  margin-bottom: 20px;
}

.product-modal-features .features-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
  font-family: var(--title-font);
}

.product-modal-features .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-modal-features .features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.product-modal-features .features-list li i {
  color: #4CAF50;
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.product-modal-features .features-list li span {
  flex: 1;
}

.product-modal-features .features-list li strong {
  color: #000;
  font-weight: 600;
}

.product-modal-actions {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.btn-add-cart-modal {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(11deg, rgba(0, 0, 0, 1) 30%, rgba(194, 148, 56, 1) 100%);
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--title-font);
}

.btn-add-cart-modal:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(194, 148, 56, 0.4);
  opacity: 0.95;
}

/* Modal Amperage Selection */
.product-modal-amperage-selection {
  margin-top: 20px;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 2px solid #FFD700;
}

.product-modal-amperage-selection h4 {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin-bottom: 12px;
}

.amperage-ratings-list-modal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.amperage-rating-checkbox-label-modal {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 70px;
  user-select: none;
}

.amperage-rating-checkbox-label-modal:hover {
  border-color: #FFD700;
  color: #000;
}

.amperage-rating-checkbox-label-modal input[type="checkbox"] {
  margin-right: 6px;
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #FFD700;
}

.amperage-rating-checkbox-label-modal.checked {
  background: #fff9e6;
  border-color: #FFD700;
  color: #000;
  box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

/* Modal Full Description */
.product-modal-full-desc {
  margin-top: 20px;
}

.product-modal-full-desc h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.product-modal-full-desc p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Modal Specifications */
.product-modal-specs {
  margin-top: 20px;
}

.product-modal-specs h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.specs-grid-modal {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.spec-item-modal {
  padding: 12px;
  background: #f9f9f9;
  border-radius: 5px;
  font-size: 14px;
}

.spec-item-modal strong {
  display: block;
  margin-bottom: 5px;
  color: #000;
}

.spec-item-modal ul {
  margin: 5px 0 0 0;
  padding-left: 20px;
}

.spec-item-modal li {
  margin-bottom: 3px;
  color: #666;
}

/* Modal Contact Info */
.product-modal-contact {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.product-modal-contact h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.product-modal-contact .contact-details p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}

.product-modal-contact .contact-details a {
  color: #FFD700;
  text-decoration: none;
}

.product-modal-contact .contact-details a:hover {
  text-decoration: underline;
}


/** Responsive Modal Styles **/

@media only screen and (max-width: 991px) {
  .product-modal-row {
    flex-direction: column;
  }
  
  .product-modal-image-col {
    flex: 1;
  }
  
  .product-modal-image {
    min-height: 300px;
  }
  
  .product-modal-image img {
    max-height: 300px;
  }
}

@media only screen and (max-width: 767px) {
  .product-modal-body {
    padding: 20px;
  }
  
  .product-modal-header {
    padding: 12px 15px;
  }
  
  .product-modal-header-title {
    font-size: 16px;
  }
  
  .product-modal-title {
    font-size: 20px;
  }
  
  .product-modal-price {
    font-size: 24px;
  }
  
  .product-modal-close {
    width: 28px;
    height: 28px;
    font-size: 18px;
  }
  
  .product-thumbnail {
    width: 60px;
    height: 60px;
  }
}

/** Image Lightbox Styles **/

.image-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-lightbox-overlay.active {
  opacity: 1;
}

.image-lightbox-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

.lightbox-close {
  top: 20px;
  right: 20px;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-prev:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .lightbox-close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
  
  .lightbox-counter {
    bottom: 10px;
    padding: 8px 15px;
    font-size: 12px;
  }
}

/** Amperage Rating Selection Styles **/

.product-amperage-selection {
  margin-top: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 8px;
}

.product-amperage-selection h4 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.amperage-ratings-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.amperage-rating-checkbox-label {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 80px;
  user-select: none;
  position: relative;
}

.amperage-rating-checkbox-label:hover {
  border-color: #FFD700;
  color: #000;
  transform: translateY(-2px);
}

.amperage-rating-checkbox-label input[type="checkbox"] {
  margin-right: 8px;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #FFD700;
}

.amperage-rating-checkbox-label input[type="checkbox"]:checked {
  accent-color: #FFD700;
}

.amperage-rating-checkbox-label.checked {
  background: #fff9e6;
  border-color: #FFD700;
  color: #000;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Fallback for browsers that support :has() */
.amperage-rating-checkbox-label:has(input[type="checkbox"]:checked) {
  background: #fff9e6;
  border-color: #FFD700;
  color: #000;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.amperage-rating-text {
  pointer-events: none;
}

