/**
 * Theme Name: Blocksy Child
 * Description: Blocksy Child theme
 * Author: Creative Themes
 * Template: blocksy
 * Text Domain: blocksy
 */

.woocommerce-shipping-destination{
	display: "none" !important;
}
.select2-dropdown {
	z-index: 999999;
}

/* MINI Cart Start */
.woocommerce-mini-cart__buttons{
	display: flex !important; 
	flex-direction: column;
	gap: 12px;
}
/* MINI Cart END */

/* Loop Product Start */

[data-products=type-2] .ct-woo-card-actions>* {
    flex: 1 0 0;
    padding: 5px 12px !important;
    min-height: auto !important;
	max-width: fit-content;
    margin: auto;
}



[data-products=type-2] .ct-woo-card-actions .button,[data-products=type-2] .ct-woo-card-actions .added_to_cart {
    
    background-color: var(--theme-button-background-initial-color) !important;
	color: white;
	
}
[data-products=type-2] .ct-woo-card-actions .button,[data-products=type-2] .ct-woo-card-actions .added_to_cart:hover{
	background: var(--theme-link-hover-color);
}


@media(max-width: 767px){
	.ct-woo-card-actions{
		display: flex !important;
		flex-direction: column !important;
	}

}
/* Loop Product END */

.ct-module-title{
	color: white !important;
}

/* Sidebar */
.sidebar-toggle-btn {
	display: none;
}
@media (max-width: 767px) {

  #sidebar.ct-hidden-sm,
  #sidebar.ct-hidden-md {
    display: block !important;
  }

  #sidebar {
    position: fixed;
    top: 80px;
    right: 0;
    width: 80%;
    max-width: 320px;
    height: 100%;
    overflow-y: auto;
    background: #fff;
    box-shadow: -2px 0 12px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 9999;
	padding: 12px;
  }

  #sidebar.is-open {
    transform: translateX(0);
  }

  .sidebar-toggle-btn {
	display: block;
    position: fixed;
    bottom: 16px;
    right: 16px;
    z-index: 10000;
    padding: 10px 16px;
    border-radius: 999px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    background: #000;
    color: #fff;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  }

  .sidebar-toggle-btn:active {
    transform: scale(0.97);
  }

  .sidebar-backdrop {
    display: none;
  }

  .sidebar-backdrop.is-active {
    display: none;
	position: fixed;
    inset: 0;
	z-index: -1;
    background: rgba(0, 0, 0, 0.4);
  }
}