/* disable native styles  */

/* Remove the up/down arrows (spinners) in WebKit browsers (Chrome, Safari, Edge) */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove the up/down arrows in Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/* end of disable  */

.add-basket-sticky-bar-wrapper {
    box-shadow: 0px -8px 8px 0px rgba(0, 0, 0, .25);
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    position: fixed;
    width: 100%;
  	z-index: 2;
  	display: none;
}

.add-basket-sticky-bar-wrapper .added_to_cart.wc-forward {
	display: none!important;
}

.add-basket-sticky-bar-inner {
    padding: 24px 32px;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
    border-bottom: 1px solid black;
}

.basket-sticky-product {
    display: flex;

}

.basket-sticky-product-img img {
    width: 64px;
    height: 64px;
    max-width: 100%;
    object-fit: contain;
}

.basket-sticky-product-name {
    padding-left: 16px;
}

.basket-sticky-product-name p {
    margin-bottom: 0px;
}

.basket-sticky-product-name span {
    font-size: 20px;
    font-weight: bold;
}


/* add to cart  */

.basket-sticky-add-to-cart {
    gap: 16px;
    display: flex;
    flex-direction: row;
}

.basket-sticky-add-to-cart form  {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
}

.basket-sticky-add-to-cart form fieldset {
    display: flex;
    flex-direction: row;
}

.basket-sticky-add-to-cart form .reduce-quantity-button, .basket-sticky-add-to-cart form .increase-quantity-button {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 44px;
    width: 44px;
    border-color: #8a9092!important;
    border-radius: 0px !important;
}

.basket-sticky-add-to-cart form .reduce-quantity-button {
    border-left: 1px solid;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-right: 1px solid;
}

.basket-sticky-add-to-cart form .increase-quantity-button {
    border-left: 1px solid;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-right: 1px solid;
}


.basket-sticky-add-to-cart form .reduce-quantity-button span {
    display: block;
    align-items: center;
    justify-content: center;
    background-image: url('https://sheethaus.com/wp-content/uploads/2025/06/minus-sh-edited.png');
    background-size: 24px 24px;
    background-repeat: no-repeat;
    width: 16px;
    height: 24px;
    
}

.basket-sticky-add-to-cart form .increase-quantity-button span {
    display: block;
    align-items: center;
    justify-content: center;
    background-image: url('https://sheethaus.com/wp-content/uploads/2025/06/plus-sh-edited.png');
    background-size: 16px 16px;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}

.basket-sticky-add-to-cart form input {
    width: 44px;
    height: 44px;
	text-align: center;
    border-left: none;
    border-right: none;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #8a9092!important;
}

.add-to-sticky-basket-button {
    border-radius: 8px;
    padding: 0 24px;
    height: 44px;
    background-color: #7b5642;
    border: 1px solid transparent;
    flex-grow:  1;
    color: #fff;
    /* max-width: 200px; */
    transition: 0.3s ease-in-out;
    cursor: pointer;
    font-family: "Bitsumishi", sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
}

.add-to-sticky-basket-button:hover {
    background-color: #fff;
    border: 1px solid #7b5642;
    color: #344343;
}


/* nav  */

@media (max-width: 767px) {
    .add-basket-sticky-bar-wrapper nav {
        display: none;
    }
    .add-basket-sticky-bar-inner {
        border-bottom: none;
    }
    .basket-sticky-product {
        display: none;
    }
    .basket-sticky-add-to-cart form, .basket-sticky-add-to-cart {
        width: 100%;
    }
    .add-to-sticky-basket-button {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-grow: 1;
    }
}

@media (max-width: 576px) {
    .add-basket-sticky-bar-inner {
        padding: 12px 8px;
    }
    .add-to-sticky-basket-button {
        padding: 0 12px;
        font-size: 14px;
    }
    .basket-sticky-add-to-cart form {
        gap: 8px;
    }
}

.add-basket-sticky-bar-wrapper nav {
    padding: 0px 32px;
}

.add-basket-sticky-bar-wrapper nav ul {
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    align-items: center;
    list-style-type: none;
}

.add-basket-sticky-bar-wrapper nav ul li {
    padding: 8px 0; 
}

.add-basket-sticky-bar-wrapper nav ul li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #344343;
}

.add-basket-sticky-bar-wrapper ul li a:hover {
    text-decoration: underline;
	color: #344343!important;
}


.single-add-basket-nav {

}

.single-add-basket-nav-list img {
    width: 20px;
    height: auto;
    max-width: 100%;
}


/* success popup  */
/* ───────── Success Popup Styles ───────── */
.custom-shop-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 10001;
}

.custom-shop-success-popup {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #ffffff;
	color: #333;
	border-radius: 0px;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
	z-index: 10002;
	width: 100%;
	max-width: 720px;
	padding: 0;
	font-family: "Gotham", sans-serif;
}

.popup-header {
	display: flex;
	align-items: center;
	padding: 15px 20px;
	
}

.popup-success-icon {
	color: #4CAF50;
	font-size: 20px;
	margin-right: 10px;
	line-height: 1;
}

.popup-title {
	font-size: 18px!important;
	font-weight: 600;
	margin: 0;
	flex-grow: 1;
	color: #202020;
	font-family: "Bitsumishi", sans-serif;
	letter-spacing: 2px;
}

.popup-close-button {
	background: none;
	border: none;
	font-size: 28px;
	color: #777;
	cursor: pointer;
	padding: 0 5px;
	line-height: 1;
}

.popup-close-button:hover {
	color: #333;
}

.popup-product-info {
	display: flex;
	align-items: center;
	padding: 20px;
	gap: 15px;
}

.popup-product-image img {
	width: 60px;
	height: auto;
	max-height: 60px;
	object-fit: contain;
	border: 1px solid #eee;
	border-radius: 4px;
}

.popup-product-name {
	font-size: 15px;
	line-height: 1.4;
	color: #333;
	font-family: "Gotham", sans-serif;
}

.popup-actions {
	display: flex;
	justify-content: flex-start;
	padding: 15px 20px;
	gap: 10px;
	
}

.popup-actions button {
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out;
	cursor: pointer;
	text-decoration: none;
	box-sizing: border-box;
	text-align: center;
}

.popup-continue-shopping {
	padding: 16px 20px;
	border-radius: 8px;
	font-family: "Bitsumishi", sans-serif;
	font-size: 20px;
	letter-spacing: 2px;
	background-color: #fff;
	color: #344343;
	border: 1px solid #7b5642;
}

.popup-continue-shopping:hover {
	background-color: #7b5642;
	color: #fff;
}

.popup-go-to-basket {
	border-radius: 8px;
	padding: 16px 20px;
	background-color: #7b5642;
	border: 1px solid transparent;
	color: #fff !important;
	font-family: "Bitsumishi", sans-serif;
	font-size: 20px;
	letter-spacing: 2px;
}

.popup-go-to-basket:hover {
	background-color: #fff;
	color: #344343 !important;
	border: 1px solid #7b5642;
}
/* ───── End Success Popup Styles ───── */