.primary-sidebar.widget-area .widget, #filter-drawer .widget {
    border: 0px solid var(--global-gray-400);
}

.wc-block-components-sidebar-layout.wc-block-cart {
    padding-left: 20px;
    padding-right: 20px;
}

.woocommerce-page form .show-password-input, .woocommerce form .show-password-input {
    position: absolute;
    right: 3px;
    top: auto;
    cursor: pointer;
}
.woocommerce-checkout .single-product-payments {
    display: none;
}


/* Checkout payment to none */
.woocommerce div.product div.summary .single-product-payments {
    display:none;
}

/* logout border color */
.select2-container--default .select2-selection--single, input[type=color], input[type=date], input[type=datetime-local], input[type=datetime], input[type=email], input[type=month], input[type=number], input[type=password], input[type=range], input[type=search], input[type=tel], input[type=text], input[type=time], input[type=url], input[type=week], textarea {
	border: 1px solid black !important;
}



.woocommerce ul.products:not(.products-list-view) li.product:not(.product-item, .product-cat):hover .price {
    opacity: 1 !important;
}


.woocommerce div.product div.summary form.cart .button.button-buy-now {
    background-color: #6D0E2C;
    color: #ffffff;
}

@media screen and (min-width: 769px) {
  .woocommerce ul.products:not(.products-list-view) li.product:not(.product-item, .product-cat) .product-details.entry-content-wrap .product-action-wrap {
    margin-bottom: auto;
    margin-top: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 50%;
  }
}

@media screen and (max-width: 480px) {
  .woocommerce ul.products:not(.products-list-view) li.product:not(.product-item, .product-cat) .product-details.entry-content-wrap .product-action-wrap {
    margin-bottom: auto;
    margin-top: 8%;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
  }
}



/*Custom CSS by RJ*/
#jp-relatedposts, .sharedaddy, .entry-footer .entry-tags{
	display:none !important;
}
.awpf-price-inputs {
    display: block !important;
}



/* ===== Parent <p> becomes the grid container ===== */
#tab-description p {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 10px !important;
  align-items: start;
  margin: 0 !important;
}

/* ===== Images ===== */
#tab-description p img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  margin: 0 !important;
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

/* ===== Hover Zoom ===== */
#tab-description p img:hover {
  transform: scale(1.5);
  z-index: 10;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  #tab-description p {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }
}

@media (max-width: 480px) {
  #tab-description p {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
  }
}

@media (max-width: 360px) {
  #tab-description p {
    grid-template-columns: repeat(1, 1fr) !important;
    gap: 6px !important;
  }
}