/* Minimal Custom CSS to supplement Bootstrap Utilities */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    letter-spacing: -0.01em;
    background: #FAFAFB !important;
    margin: 0 !important;
   
}

.custom-bg{
    background: #FAFAFB !important;
}

/* Subtle hover lift effect for cards */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1) !important;
}

/* Custom Pill colors to match a minimal/dark aesthetic */
.nav-pills .nav-link {
    color: #495057;
    border-radius: 50rem;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    transition: all 0.2s ease;

}

.nav-pills .nav-link:hover {
    background-color: #e9ecef;
}

.nav-pills .nav-link.active {
    background-color: #212529 !important;
    color: #fff !important;
}

/* Aspect ratio trick for product images to ensure uniformity */
.product-img-wrapper {
    position: relative;
    padding-top: 100%;
    /* 1:1 Aspect Ratio */
    overflow: hidden;
    background-color: #f8f9fa;
}

.product-img-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Slight image zoom on card hover */
.hover-lift:hover .product-img-wrapper img {
    transform: scale(1.05);
}



/* Thumbnail images gallery */
.thumbnail {
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s ease, border 0.2s ease;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: #212529;
}


/* Footer link hover state */
/* .hover-white {
            transition: color 0.2s ease, opacity 0.2s ease;
        }
        .hover-white:hover {
            color: #ffffff !important;
            opacity: 1 !important;
        }
		 */



/* WooCommerce default empty cart hide */
.wp-block-woocommerce-empty-cart-block {
    display: none !important;
}


/* price handle */
.custom-price ins {
    background: #fff3a6;
    padding: 3px 8px;
    border-radius: 8px;
    text-decoration: none !important;
}

.custom-price del {
    opacity: 0.7;
    margin-right: 6px;
}

/* price handle end */






.navbar .navbar-nav .nav-link {
    padding: 20px 25px;
    color: #12141D !important;
    font-size: 18px;
    font-weight: 600;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #0d6efd !important;
}

.navbar-toggler {
    border-radius: 10px !important;
}






@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}


.navbar-toggler:focus {
    text-decoration: none !important;
    outline: 0 !important;
    box-shadow: 0 0 0 .1rem !important;
}







/* Quantity selector minimal styling */
.quantity-wrapper {
    display: inline-flex;
    border: 1px solid #dee2e6;
    border-radius: 0.375rem;
    overflow: hidden;
}

.quantity-btn {
    width: 44px !important;
    height: 44px !important;
    ;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.quantity-btn:hover {
    background: #e9ecef;
}

.quantity-input {
    width: 50px !important;
    height: 44px !important;
    text-align: center;
    border: none;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input:focus {
    outline: none;
}

/* Color Swatches */
.color-swatch {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 2px solid #fff;
    box-shadow: 0 0 0 1px #dee2e6;
    margin-right: 0.5rem;
    transition: box-shadow 0.2s ease;
}

.color-swatch.active {
    box-shadow: 0 0 0 2px #212529;
}




/* space reserve for loading spinner */
#addToCartBtn,
#buyNowBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

#addToCartBtn .spinner-border,
#buyNowBtn .spinner-border {
    width: 1rem;
    height: 1rem;
    opacity: 1;
    transition: opacity 0.2s ease;
}

#addToCartBtn .spinner-border.d-none,
#buyNowBtn .spinner-border.d-none {
    display: inline-block !important;
    /* override Bootstrap d-none */
    opacity: 0;
    visibility: hidden;
}





/* toast mesg */
.cart-notice {
    z-index: 1080;
    width: 320px;
    max-width: 100%;
}




/*hero shop page*/
.shop-hero{
    background:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        url('/site/img/bg.jpg');

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-text{
    color: rgba(255,255,255,0.9);
}

.shop-hero .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
/*hero shop page end*/


.offwhite-text{
    color:#f5f5f0;
}



/*additional info*/
.gpsr-info {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
   
}

