#product-page .sidebar {
  background: #FFFFFF;
  min-height: 100vh;
  color: #000000;
}
#product-page .sidebar .nav-link {
  color: #000000;
  padding: 12px 20px;
  margin: 5px 0;
  border-radius: 8px;
  transition: all 0.3s ease;
}
#product-page .sidebar .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.2);
  color: #4971AF;
  transform: translateX(5px);
}
#product-page .sidebar .nav-link.active {
  background-color: rgba(255, 255, 255, 0.3);
  color: #4971AF;
  transform: translateX(5px);
}
#product-page .search-container {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}
#product-page .search-input-group {
  position: relative;
}
#product-page .search-input-group .form-control {
  padding-right: 50px;
  border-radius: 25px;
  border: 2px solid #e9ecef;
  transition: all 0.3s ease;
}
#product-page .search-input-group .form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
#product-page .search-btn {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #4971AF;
  color: white;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#product-page .cart-info {
  background: #4971AF;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}
#product-page .cart-info:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
#product-page .product-card {
  background: white;
  border: none;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}
#product-page .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
#product-page .product-image {
  padding: 20px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
#product-page .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease;
}
#product-page .product-card:hover .product-image img {
  transform: scale(1.1);
}
#product-page .product-card .card-body {
  background: linear-gradient(45deg, #f8f9fa, #e9ecef);
}
#product-page .product-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #28a745;
  color: white;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
}
#product-page .product-badge.sale {
  background: #fd7e14;
}
#product-page .product-badge.new {
  background: #6610f2;
}
#product-page .price {
  font-size: 15px;
  font-weight: 700;
  color: #667eea;
}
#product-page .sku {
  color: #6c757d;
  font-size: 0.9rem;
  font-weight: 500;
}
#product-page .qty-input {
  max-width: 80px;
  text-align: center;
  border-radius: 8px;
  border: 2px solid #e9ecef;
}
#product-page .qty-input:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}
#product-page .btn-add-cart {
  background: #4971af;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  padding: 10px 20px;
  transition: all 0.3s ease;
}
#product-page .btn-add-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}
#product-page .category-title {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}
#product-page .main-content {
  padding: 30px;
}
#product-page .category-count {
  background: rgba(255, 255, 255, 0.3);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-left: 10px;
}
@keyframes addToCart {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
#product-page .adding {
  animation: addToCart 0.3s ease;
}
#product-page .cart-modal {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
#product-page .cart-item {
  border-bottom: 1px solid #f8f9fa;
  padding: 15px 0;
}
#product-page .cart-item:last-child {
  border-bottom: none;
}
#product-page .cart-item-image {
  width: 60px;
  height: 60px;
  background: #f8f9fa;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#product-page .cart-total {
  border: 1px solid #4971AF;
  color: #4971AF;
  padding: 20px;
  border-radius: 15px;
  margin-top: 20px;
}
#product-page .checkout-btn {
  background: #4971AF;
  border: none;
  border-radius: 8px;
  color: white;
  font-weight: 600;
  padding: 12px 30px;
  width: 100%;
  margin-top: 15px;
  transition: all 0.3s ease;
}
#product-page .checkout-btn:hover {
  background: #218838;
  transform: translateY(-2px);
  color: white;
}
@media (max-width: 768px) {
  #product-page .sidebar {
    min-height: auto;
    margin-bottom: 20px;
  }
  #product-page .main-content {
    padding: 15px;
  }
  #product-page .product-card {
    margin-bottom: 20px;
  }
}
#product-page input[type=number] {
  width: 100%;
}
#product-page .price-text {
  display: block;
  margin-top: 8px;
  padding: 10px;
  background-color: #efefef;
  border-radius: 8px;
  text-align: center;
}
#product-page .form-check label {
  font-size: 14px;
}
#product-page .form-check label .badge.bg-secondary {
  display: block;
}
#product-page .form-check.out-of-stock {
  opacity: 0.5;
}
#product-page .form-check.out-of-stock label {
  color: #999;
  cursor: not-allowed;
}
#product-page .form-check.out-of-stock input:disabled {
  cursor: not-allowed;
}
#product-page table tr td {
  position: relative;
}
@media (max-width: 768px) {
  #product-page .out-of-stock img {
    max-width: 70%;
  }
}
#product-page #description {
  border-radius: 0px 0px 8px 8px;
}

/* Style the tab */
.tab {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  border-bottom: 2px solid transparent;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #4971AF;
  border-bottom: 2px solid #4971AF;
  color: #FFF;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  text-align: center;
}
.woocommerce ul.products li.product a.woocommerce-loop-product__link img {
  margin: 0 auto;
}

li.type-product {
  transition: all 0.3s ease;
}
li.type-product:hover {
  box-shadow: #4971af 0px 0px 13px 0px;
}

.woocommerce ul.products li.product a img {
  width: auto !important;
  max-height: 200px !important;
}

.product-img-wrap {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/*

Product Listing

*/
.custom-sale-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  display: block;
  color: #FFF;
  background-color: #CC0000;
  padding: 5px 10px;
  border-radius: 5px;
}

.premium-woocommerce .woocommerce-loop-product__title {
  min-height: 40px;
  color: #2F2F2F !important;
  font-family: "Montserrat", Sans-serif !important;
  font-size: 13px;
  font-weight: 500 !important;
}

.premium-woo-products-details-wrap .woocommerce-Price-amount bdi {
  color: #4971af !important;
}

.my-account #customer_login {
  padding: 0 50px 50px 50px;
}

/*

	BREAD CRUMBS
*/
.woocommerce-breadcrumb {
  margin-bottom: 2em;
  font-size: 14px;
  color: #555;
}

.woocommerce-breadcrumb a {
  color: #0073aa;
  text-decoration: none;
  display: inline-block;
  padding: 0 5px;
}

.woocommerce-breadcrumb a:hover {
  text-decoration: underline;
}

/*
	REGISTER
*/
.my-account .woocommerce-form-register {
  margin: 0 !important;
  padding: 30px;
  border: 1px solid #ddd;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  border-radius: 8px;
}

.my-account .woocommerce-form-register .woocommerce-button {
  font-size: 15px;
  padding: 15px;
  background-color: #4971AF;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
}

.my-account .woocommerce-form-register .woocommerce-button:hover {
  background-color: #2f2f2f;
  color: #FFFFFF;
}

/*
	TABS
*/
/* Style the tab */
.vertical-tabs {
  border-right: 1px solid #ccc;
}
.vertical-tabs button {
  display: block;
  background-color: #333333;
  border: none;
  border-bottom: 1px solid #666;
  color: #FFFFFF;
  padding: 16px;
  width: 100%;
  outline: none;
  text-align: left;
  cursor: pointer;
  transition: 0.3s;
}
.vertical-tabs button:hover {
  background-color: #666;
}
.vertical-tabs button.active {
  background-color: #666;
}

.vertical-tabcontent {
  display: none;
  padding: 0px 12px;
  border: 1px solid #ccc;
  border-left: none;
}
.vertical-tabcontent.active {
  display: block;
}

/* Force 4 products per row inside the shortcode */
.vertical-tabcontent ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  .vertical-tabcontent ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .vertical-tabcontent ul.products {
    grid-template-columns: 1fr;
  }
}
.vertical-tabcontent ul.products li.product {
  margin: 0;
  text-align: center;
}
@media (max-width: 768px) {
  .vertical-tabcontent ul.products li.product {
    text-align: center;
  }
}
.vertical-tabcontent ul.products li.product h2.woocommerce-loop-product__title {
  min-height: 40px;
  color: #2F2F2F !important;
  font-family: "Montserrat", Sans-serif !important;
  font-size: 13px;
  font-weight: 500 !important;
  padding-top: 20px;
}
.vertical-tabcontent ul.products li.product .price {
  padding-bottom: 5px;
  display: block;
}
.vertical-tabcontent ul.products li.product .price .woocommerce-Price-amount.amount bdi {
  color: #4971af !important;
}
.vertical-tabcontent ul.products li.product .button {
  display: block;
  background-color: #4971AF;
  display: inline-block;
  color: #fff;
  padding: 10px 40px;
  cursor: pointer;
  text-decoration: none;
  overflow: visible;
  font-weight: 700;
  background-image: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  transition: all 0.3s ease-in-out;
}
.vertical-tabcontent ul.products li.product .button:hover {
  background-color: #2f2f2f;
}
.vertical-tabcontent ul.products li.product .added_to_cart {
  display: block;
  color: #333;
  padding: 10px 0;
}
.vertical-tabcontent ul.products li.product .added_to_cart:hover {
  text-decoration: underline;
}
.vertical-tabcontent ul.products li.product .woocommerce-loop-product__link img {
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.vertical-tabcontent ul.products .type-product {
  padding: 20px;
}

.product_list_widget {
  display: grid;
  grid-template-columns: 1fr;
  list-style: none;
  padding: 0;
  margin: 0;
}
.product_list_widget li {
  margin: 0;
  background-color: #FFF;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .product_list_widget li {
    text-align: center;
  }
}
.product_list_widget li .product-title {
  display: block;
  min-height: 40px;
  color: #2F2F2F !important;
  font-family: "Montserrat", Sans-serif !important;
  font-size: 13px;
  font-weight: 500 !important;
  padding-top: 20px;
}
.product_list_widget li .woocommerce-Price-amount.amount {
  padding-bottom: 5px;
}
.product_list_widget li .woocommerce-Price-amount.amount bdi {
  color: #4971af !important;
}
.product_list_widget li .button {
  display: block;
  background-color: #4971AF;
  display: inline-block;
  color: #fff;
  padding: 10px 40px;
  cursor: pointer;
  text-decoration: none;
  overflow: visible;
  font-weight: 700;
  background-image: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  text-shadow: none;
  transition: all 0.3s ease-in-out;
}
.product_list_widget li .button:hover {
  background-color: #2f2f2f;
}
.product_list_widget li .woocommerce-loop-product__link img {
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product_list_widget .type-product {
  padding: 20px;
}

.wl-filterable-products-content li {
  text-align: center;
}

/*

    GALLERY

*/
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 999999;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background: #fff;
  width: 90%;
  max-width: 1400px;
  height: 85%;
  max-height: 900px;
  padding: 0;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
  display: flex;
  overflow: hidden;
}

.gallery-container-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  gap: 0;
  padding: 20px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  z-index: 10;
  color: #666;
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.modal-close:hover {
  background: #f0f0f0;
  color: #333;
}

.gallery-thumbs {
  width: 120px;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 20px;
}

.gallery-thumbs .swiper-slide {
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s;
  height: auto !important;
  border-radius: 4px;
  overflow: hidden;
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border: 2px solid #007bff;
}

.gallery-thumbs .swiper-slide:hover {
  opacity: 1;
}

.gallery-thumbs img {
  border: 1px solid #e0e0e0;
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.gallery-top {
  flex: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  border-radius: 8px;
}

.gallery-top .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.gallery-top .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

/* Style the navigation buttons */
.gallery-top .swiper-button-next,
.gallery-top .swiper-button-prev {
  color: #333;
  background: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-top .swiper-button-next:after,
.gallery-top .swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.gallery-top .swiper-button-next:hover,
.gallery-top .swiper-button-prev:hover {
  background: #f0f0f0;
}/*# sourceMappingURL=products.css.map */