/*!
Theme Name: cabinetbazaar
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cabinetbazaar
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

*/
.woocommerce-breadcrumb{
	display: none;
}
.woocommerce-result-count,
.woocommerce-ordering {
    display: none !important;
}
.border-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.border-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.product-name {
    background-color: #f8f8f8;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    text-transform: capitalize;
}

.imgArea img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
}

.btn2 {
    background-color: #b30000;
    color: #fff !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 10px 0;
    display: inline-block;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.btn2:hover {
    background-color: #8b0000;
}

.section-title {
  position: relative;
  font-size: 20px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  display: inline-block;
  padding-bottom: 10px;
}

.section-title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 40px;
  background-color: #1d7070; /* main underline color */
}

.section-line {
  position: relative;
  margin-bottom: 30px;
}

.section-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #ccc; /* thin gray line */
  z-index: -1;
}
#cart-popup {
  position: fixed;
  top: 20px;
  right: 20px;
  background: #f7f7f7;
  color: #2d662d;
  border-left: 5px solid #46b450;
  padding: 15px 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  border-radius: 4px;
  z-index: 9999;
  display: none;
}
.custom-error-box {
    padding: 15px;
    border-radius: 8px;
    background: #ffe5e5;
    border-left: 5px solid #ff4d4d;
    color: #b30000;
    font-size: 15px;
    margin-bottom: 20px;
}

.custom-success-box {
    padding: 15px;
    border-radius: 8px;
    background: #e6ffec;
    border-left: 5px solid #28a745;
    color: #0f6b30;
    font-size: 15px;
    margin-bottom: 20px;
}
.error-box {
    background: #ffe6e6;
    border-left: 5px solid #ff4d4d;
    color: #b30000;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 6px;
    font-size: 15px;
    display: block;
}

.user-menu {
    position: relative;
    display: inline-block;
}

.user-menu-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.user-icon {
    width: 24px;
    height: 24px;
}

.user-dropdown {
    position: absolute;
    right: 0;
    top: 40px;
    background: #fff;
    border: 1px solid #ddd;
    list-style: none;
    padding: 10px 0;
    margin: 0;
    display: none;
    min-width: 180px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 6px;
    z-index: 9999;
}

.user-dropdown li {
    padding: 0;
    margin: 0;
}

.user-dropdown li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
}

.user-dropdown li a:hover {
    background: #f2f2f2;
}
.cb-login-btn {
    background: #b21c11;   /* Red color */
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    text-decoration: none;
    transition: 0.3s ease;
}

.cb-login-btn:hover {
    background: #8f120b;  /* darker red on hover */
    color: #fff;
}

.login-btn-wrap .login-btn {
    background-color: #b21c11;
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.login-btn-wrap .login-btn:hover {
    background-color: #8f120b;
    color: #ffffff !important;
}
.login-btn-wrap {
    margin-right: 15px; /* Space between Login and Book Time */
    display: inline-block;
}

.login-btn-wrap .login-btn,
.book-btn-wrap .book-btn {
    background-color: #b21c11;
    color: #ffffff !important;
    padding: 10px 25px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.login-btn-wrap .login-btn:hover,
.book-btn-wrap .book-btn:hover {
    background-color: #8f120b;
}

.login-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
}

.login-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 600;
}

.login-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.login-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
}

.login-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn {
    background: #b40000;
    color: white;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn:hover {
    background: #8e0000;
}
/* Fix file upload design */
.custom-file-wrap {
    width: 100%;
    margin-bottom: 20px;
}

.custom-file-wrap label {
    display: block;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    padding: 12px 15px;
    border-radius: 5px;
    color: #555;
    cursor: pointer;
}

/* Hide ugly default file input */
.custom-file-wrap input[type="file"] {
    display: none;
}

/* Show selected file name */
#selected-file-name {
    margin-top: 5px;
    display: block;
    font-size: 14px;
    color: #333;
}

#sendOtpBtn {
    background-color: red;
    color: white;       /* text color */
    border: none;       /* remove border */
    padding: 10px 20px; /* button padding */
    cursor: pointer;    /* pointer on hover */
    border-radius: 5px; /* optional rounded corners */
}
#sendOtpBtn:hover {
    background-color: darkred; /* hover effect */
}


/* ==== Category Card Style ==== */
.border-card {
    border: 1px solid #ddd;
    border-radius: 4px;
    background: #ffffff;
    padding: 0;
    overflow: hidden;
    transition: all .3s ease;
}

.border-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Header Title Bar */
.border-card .product-name {
    background: #d9d9d9;
    padding: 12px 0;
    font-size: 18px;
    font-weight: 600;
    color: #000;
}

/* Image Area */
.border-card .imgArea {
    display: block;
    text-align: center;
    padding: 20px;
}

.border-card .imgArea img {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Explore Button */
.border-card .btnArea .btn {
    background: #c62828;
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    display: block;
    width: 100%;
    transition: 0.3s;
}

.border-card .btnArea .btn:hover {
    background: #b71c1c;
}

.countertop-card {
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    background: #fff;
    overflow: hidden;
    transition: all 0.3s ease;
}

.countertop-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Product Name Area */
.product-name {
    background: #f2f2f2;
    padding: 12px 5px;
    font-size: 18px;
    font-weight: 600;
}

/* Image Area */
.imgArea {
    padding: 10px;
}

.imgArea img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 5px;
}

/* Explore Button */
.explore-btn {
    background: #c21807;
    color: #fff;
    padding: 12px 0;
    border-radius: 6px;
    font-weight: bold;
    margin: 15px 12px;
}

.explore-btn:hover {
    background: #a51205;
    color: #fff;
}

.border-card {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.border-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.imgArea img.category-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 4px;
}

.explore-btn {
    background: #c42117 !important;
    color: #fff !important;
    font-size: 16px;
    padding: 10px 0;
    border-radius: 6px;
}

.explore-btn:hover {
    opacity: 0.9;
}

.single_add_to_cart_button:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
}

.variations_form select {
    display: none !important;
}

.custom-cart-container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
}

.custom-cart-container table {
    width: 100%;
    border-collapse: collapse;
}

.custom-cart-container th, .custom-cart-container td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.cart-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.wc-proceed-to-checkout .checkout-button {
    background: #c01604;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}

.wc-proceed-to-checkout .checkout-button:hover {
    background: #e65c00;
}


/* ---------------------------------
   PRODUCT TITLE
-----------------------------------*/
.product_title {
    font-size: 24px !important;
    font-weight: 700 !important;
    margin-bottom: 20px !important;
}

/* ---------------------------------
   VARIATION LABEL (Colors text UP)
-----------------------------------*/
.variations label,
label[for*="attribute_"] {
    font-weight: 700 !important;
    font-size: 16px !important;
    display: block !important;
    margin-bottom: 10px !important;
}

/* ---------------------------------
   VARIATION WRAPPER (Swatches)
-----------------------------------*/
.custom-wc-variations {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 25px;
    margin: 10px 0 20px 0;
}

/* Hide default radio */
.custom-wc-variations input[type="radio"] {
    display: none;
}

/* Each swatch box */
.custom-wc-variations label {
    width: 150px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    transition: 0.2s ease;
}

/* Variation images */
.custom-wc-variations label img {
    width: 100%;
    height: 90px;
    object-fit: contain;
    margin-bottom: 10px;
    border-radius: 6px;
}

/* Hover */
.custom-wc-variations label:hover {
    border-color: #999;
}

/* Selected variation */
.custom-wc-variations input[type="radio"]:checked + label {
    border-color: #cc0000;
    background: #fff5f5;
}

/* ---------------------------------
   CLEAR BUTTON
-----------------------------------*/
.reset_variations {
    display: inline-block !important;
    margin-left: 0 !important;
    margin-top: -5px !important;
    color: #cc0000 !important;
    font-weight: 600 !important;
}

/* ---------------------------------
   QTY + ADD TO CART → RIGHT SIDE
-----------------------------------*/
.single-product form.cart {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important; /* RIGHT SIDE */
    gap: 25px !important; /* space between qty + button */
    margin-top: 15px !important;
}

/* Quantity box */
.quantity input.qty {
    height: 45px !important;
    width: 70px !important;
    font-size: 16px !important;
    text-align: center !important;
}

/* ---------------------------------
   ADD TO CART BUTTON
-----------------------------------*/
.single_add_to_cart_button {
    background-color: #c70000 !important;
    color: #ffffff !important;
    padding: 14px 35px !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border: none !important;
    text-transform: uppercase !important;
    transition: 0.2s ease;
}

.single_add_to_cart_button:hover {
    background-color: #a30000 !important;
    transform: scale(1.05);
}


.gallery-section .imgArea img {
	object-fit:contain;
	height:373px;
}

.our-cabinets h3 {
    background: #c1c1c1;
    margin-bottom: 4px;
    margin-top: 4px;
    padding: 12px;
}

.btn2 {
    background: #c01604;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 10px;
    border: 10px;
    outline: #fff solid 1px;
    outline-offset: 0;
    transition: 1.25s 
	cubic-bezier(.19, 1, .22, 1);
    letter-spacing: 2px;
    text-transform: capitalize;
    margin-top: 20px;
}
.btn2:hover {
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    background: #f33333;
}

.our-showrooms .mainArea .item {
	height:100%;
}

@media(max-width:575px) {
.our-showrooms .mainArea .row .col-sm-4 {
	margin-bottom:30px;
}
}

.info-area .row .table .btn {
	padding: .55rem .75rem;
}

.wc-block-cart-item__prices{
    display: none!important;
}
.wc-block-components-panel__button{
    display: none !important;
}
.wp-block-woocommerce-cart-order-summary-coupon-form-block{
     display: none !important;
}
.screen-reader-response{
    display: none !important;
}


/* Responsive Fix */
@media (max-width: 991px) {
.login-btn-wrap {
    width: 100%;
    margin-top: 10px;
}
	.login-btn-wrap .login-btn {
    padding: 10px 14px;
    font-size: 15px;
    line-height: 1;
	}
	.cart_accordian {
		right:-72px;
	}
	 .sec-tb {
        padding: 50px 15px;
    }

}


/* ---------------------------------
   MOBILE FIXES
-----------------------------------*/
@media (max-width: 480px) {
    .custom-wc-variations label {
        width: 45%;
    }

    .single-product form.cart {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 15px !important;
    }

    .single_add_to_cart_button {
        width: 100% !important;
        text-align: center !important;
    }
}





/* Responsive Fix */
@media (max-width: 768px) {
    .login-row {
        flex-direction: column;
    }
    .login-buttons {
        flex-direction: column;
        gap: 15px;
    }
}



