/* ===============================
   GLOBAL
================================ */
.shop-layout {
    padding-bottom: 60px;
}

a {
    text-decoration: none;
}

.woocommerce-breadcrumb {
    font-size: 13px;
    color: #777;
}

/* ===============================
   BANNER
================================ */
/* ================= CATEGORY BANNER ================= */

.cat-banner {
    position: relative;
    width: 100%;
    min-height: 500px;
    overflow: hidden;
    background-size: cover;
}

/* Background image layer */
.cat-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.05);
}

/* Optional dark overlay for text readability */
.cat-banner::after {
    content: "";
    position: absolute;
    inset: 0;
/*     background: linear-gradient(
        rgba(0,0,0,0.35),
        rgba(0,0,0,0.35)
    ); */
	
}

/* Keep text above overlay */
.cat-banner .container {
    position: relative;
    z-index: 2;
}

/* ---------- TABLET ---------- */
@media (max-width: 992px) {
    .cat-banner {
        min-height: 240px;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 576px) {
    .cat-banner {
        min-height: 119px;
    }
}

/* ===============================
   CATEGORY HEADER
================================ */
.category-desc {
	font-family: 'Work Sans';
    /* max-width: 900px; */
    margin: 0 auto;
    color: #555;
    font-size: 15px;
    line-height: 1.7;
	
	
}

/* ===============================
   SUB CATEGORY GRID
================================ */
.subcategory-box {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eee;
    transition: all .35s ease;
}

.subcategory-box img {
    height: 220px;
    object-fit: contain;
    padding: 20px;
    background: #fafafa;
}

.subcategory-box .card-body {
    padding: 18px;
}

.subcategory-box h5 {
    font-size: 17px;
    font-weight: 600;
    color: #222;
}

.subcategory-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

/* ===============================
   SIDEBAR FILTER
================================ */
.shop-sidebar form {
    background: #f9f9f9;
    border-radius: 14px;
}

.shop-sidebar h6 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 12px;
    color: #111;
}

.shop-sidebar .form-check {
    margin-bottom: 10px;
}

.shop-sidebar input[type="checkbox"] {
    cursor: pointer;
}

.shop-sidebar label {
    font-size: 14px;
    color: #444;
    cursor: pointer;
}

.shop-sidebar label:hover {
    color: #000;
}










/* ===============================
   TOP BAR
================================ */
.shop-top-bar {
    border-bottom: 1px solid #eee;
    padding-bottom: 12px;
    margin-bottom: 25px;
}

.woocommerce-result-count {
    font-size: 14px;
    color: #555;
}

.woocommerce-ordering select {
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
}

/* ===============================
   PRODUCTS GRID
================================ */
#ajax-products ul.products {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

@media (max-width: 991px) {
    #ajax-products ul.products {
        grid-template-columns: repeat(2,1fr);
    }
}

@media (max-width: 575px) {
    #ajax-products ul.products {
        grid-template-columns: repeat(1,1fr);
    }
}

/* ===============================
   PRODUCT CARD
================================ */
.woocommerce ul.products li.product {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    overflow: hidden;
    padding: 15px 0px 15px 15px;
    transition: all .35s ease;
}

.woocommerce ul.products li.product img {
    height: 220px;
    object-fit: contain;
    margin-bottom: 12px;
}

.woocommerce ul.products li.product h2 {
    font-size: 15px;
    font-weight: 600;
    color: #222;
    min-height: 42px;
}

.woocommerce ul.products li.product .price {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,.12);
}

/* ===============================
   AJAX LOADING EFFECT
================================ */
#ajax-products.loading {
    opacity: .5;
    pointer-events: none;
}

/* ===============================
   MOBILE FILTER
================================ */
@media (max-width: 767px) {
    .shop-sidebar {
        margin-bottom: 30px;
    }
    /* .cat-banner {
        min-height: 240px;
    } */
    .cat-banner h1 {
        font-size: 26px;
    }
}



/* Product Enquiry Button */
.product-enquiry-btn {
    background-color: #d60000 !important;
    color: #ffffff !important;
    padding: 7px 7px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Hover Effect */
.product-enquiry-btn:hover {
    background-color: #b50000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(214, 0, 0, 0.25);
}



.shop-sidebar input[type="checkbox"] {
    accent-color: #d60000;
}






/* ===============================
   SINGLE PRODUCT LAYOUT-------------------------------------------------------------------------------
================================ */

.single-product-wrap {
    padding: 60px 0;
    background: #fff;
}

.single-product-wrap .container {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

/* LEFT IMAGE */


/* Product Image Box */
.product-image-box {
    width: 100%;
    height: 420px;                 /* 🔧 FIXED HEIGHT */
    /* background: #f8f9fa; */
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
}

/* Image */
.product-main-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    transform: scale(1.08);
}

/* Hover Effect */
.product-image-box:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Zoom Image on Hover */
.product-image-box:hover .product-main-img {
/*     transform: scale(1.50); */
}



/* ================= IMAGE PATCH INSIDE MAIN BOX ================= */

.product-image-box {
    position: relative;
}

/* Small patch */
.product-image-patch {
    position: absolute;
    top: 10px;
    left: 10px;

    width: 122px;
    height: 70px;

    background: #fff;
    border-radius: 10px;
   /* border: 1px solid #e5e5e5;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);*/

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 5;
}

.product-image-patch img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 991px) {
    .product-image-patch {
        width: 60px;
        height: 60px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .product-image-patch {
        width: 110px;
        height: 55px;
        top: 8px;
        left: 8px;
    }
}




/* RIGHT CONTENT */


.product-content-scroll {
    max-height: 455px;
    overflow-y: auto;
    padding-right: 12px;
    scrollbar-width: thin;
}

/* Disable scroll on mobile */
@media (max-width: 767px) {
    .product-content-scroll {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

/* Modern headings */
.product-content-scroll h5 {
    font-size: 15px;
    letter-spacing: .4px;
    margin-bottom: 8px;
}

/* Compact sections */
.product-content-scroll section {
    padding: 14px;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 16px;
    background: #fff;
}

/* Attributes compact */
.product-content-scroll .border-bottom {
    font-size: 14px;
    padding: 6px 0 !important;
}

/* Thumbnail images */
.product-content-scroll img {
    transition: transform .2s ease;
}
.product-content-scroll img:hover {
    transform: scale(1.05);
}

/* Sticky enquiry button */
.product-enquiry-btn,
.product-content-scroll button {
    /* position: sticky; */
    bottom: 10px;
    width: 100%;
    border-radius: 1px 1px 20px 20px;
    font-weight: 600;
    background: linear-gradient(20deg, #bf1c2a 0%, #0d1f3e 100%);
    z-index: 10;
}

/* Product title */
.product-content-scroll h1 {
font-size: 55px;
    font-family: 'Roboto Condensed';
    font-weight: 300;
    text-transform: uppercase;
    line-height: 1.3;
    background: linear-gradient(20deg, #bf1c2a 0%, #0d1f3e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Compact muted text */
.product-content-scroll p {
	font-size: 16px;
	line-height: 1.6;
	font-weight: bold;
	margin-top: -8px;
	margin-left: 6px;

}

/* Color name smaller */
.product-content-scroll small {
    font-size: 12px;
    color: #555;
}








/* ENQUIRY BUTTON */
.enquiry-btn {
    margin-top: 30px;
    padding: 14px 35px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.enquiry-btn:hover {
    background: #e53935;
}

/* ===============================
   MODAL POPUP
================================ */

.enquiry-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 9999;
}

.enquiry-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-modal .modal-box {
    background: #fff;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    border-radius: 6px;
    position: relative;
}

.modal-box h3 {
    margin-bottom: 20px;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {
    .single-product-wrap .container {
        flex-direction: column;
    }

    .product-left,
    .product-right {
        width: 100%;
    }
}




/* Enquiry button */
.shop-products .enquiry-btn,
.shop-products a.button {
    background: #000;
    color: #fff;
    padding: 8px 18px;
    font-size: 13px;
    text-transform: uppercase;
    margin-top: 10px;
    display: inline-block;
}

.shop-products a.button:hover {
    background: #e53935;
}



.shop-sidebar {
    position: sticky;
    top: 120px;
}

/* Remove bullets */
.shop-sidebar ul,
.shop-sidebar li {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Filter box spacing */
.shop-sidebar .wpc-filters-section,
.shop-sidebar .wpc-filter {
    margin-bottom: 25px;
}

/* Filter title (RED) */
.shop-sidebar .wpc-filter-title,
.shop-sidebar h4 {
    background: #e53935;
    color: #fff;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 10px;
}

/* Checkbox label */
.shop-sidebar label {
    font-size: 13px;
    color: #333;
}

/* single product end ------------------------------------------------------------------------------- */






/* =========================
   RECENT PRODUCTS SLIDER
========================= */


.reletd-prodt{

font-size: 30px;
text-transform: uppercase;
font-family: 'Roboto Condensed';
line-height: 1.3;
font-weight: 300;
background: linear-gradient(20deg, #bf1c2a 0%, #0d1f3e 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;

}


.recentProducts .card {
    height: 100%;
    border-radius: 10px;
    border: 1px solid #ddd;
    transition: all 0.3s ease;
    overflow: hidden;
    background: #fff;
}

/* SAME IMAGE HEIGHT */
.recentProducts .card img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

/* CONTENT ALIGNMENT */
.recentProducts .card h6 {
    min-height: 45px;
    font-weight: 600;
    margin-top: 15px;
}

/* BUTTON */
.recentProducts .btn-outline-danger {
/*     border-radius: 30px; */
	border-radius: 1px 1px 20px 20px;
	background: linear-gradient(20deg, #bf1c2a 0%, #0d1f3e 100%);
	Color:white;
	border:0px;
    padding: 6px 20px;
    transition: all 0.3s ease;
	
}

/* HOVER EFFECT */
.recentProducts .card:hover {
    box-shadow: 0 12px 25px rgba(229,57,53,0.25);
    transform: translateY(-6px);
}

.recentProducts .card:hover img {
    transform: scale(1.08);
}

.recentProducts .card:hover .btn-outline-danger {
    background-color: black;
/*     color: #fff; */
}

/* SLIDER ARROWS */
.swiper-button-next,
.swiper-button-prev {
    color: red !important;;
}

/* MOBILE FIX */
@media (max-width: 576px) {
    .recentProducts .card img {
        height: 180px;
    }
}





/* show styling Color Options------------------------------ */


.color-box img {
    max-height: 120px;
    object-fit: contain;
}

.color-box {
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 6px;
    background: #fff;
}


/* end ----------------------------------------------------- */






/* ===========================
   REVIEW FORM STYLING
=========================== */

.custom-reviews-box {
    max-width: 900px;
}

.woocommerce-Reviews {
    border-top: 1px solid #eee;
    padding-top: 30px;
}

/* Star Rating */
.comment-form-rating {
    margin-bottom: 20px;
}

.comment-form-rating label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.stars {
    font-size: 26px;
}

.stars a {
    color: #ccc !important;
}

.stars a:hover,
.stars a.active {
    color: #e63946 !important;
}

/* Inputs */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit Button */
.comment-form .submit {
    background: #e63946;
    color: #fff;
    padding: 10px 30px;
    border-radius: 6px;
    border: none;
    font-weight: 600;
    transition: 0.3s;
}

.comment-form .submit:hover {
    background: #c92c3b;
}

/* Review List */
.commentlist {
    list-style: none;
    padding-left: 0;
}

.commentlist li {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.comment-text {
    margin-top: 10px;
}

.comment-text .meta {
    font-size: 14px;
    color: #666;
}

.star-rating {
    color: #f4c150;
}

/* Mobile */
@media (max-width: 768px) {
    .stars {
        font-size: 22px;
    }
}



/* =========================
   FIX WOOCOMMERCE STAR ICONS
========================= */


/* Conatc Form styling start ------------------------------------------------------- */


/* CF7 Wrapper */
.cf7-form {
    max-width: 100%;
}

/* Form group */
.cf7-form .form-group {
    margin-bottom: 15px;
}

/* Labels */
.cf7-form label {
    font-weight: 600;
    font-size: 14px;
    /* margin-bottom: 6px; */
    display: block;
    color: #222;
}

/* Inputs & textarea */
.cf7-form input[type="text"],
.cf7-form input[type="email"],
.cf7-form input[type="tel"],
.cf7-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Focus */
.cf7-form input:focus,
.cf7-form textarea:focus {
    border-color: #d60000;
    outline: none;
    box-shadow: 0 0 0 2px rgba(214, 0, 0, 0.15);
}

/* Textarea */
.cf7-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* Submit button */
.cf7-form .product-enquiry-btn {
    background-color: #d60000;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Submit hover */
.cf7-form .product-enquiry-btn:hover {
    background-color: #b50000;
    box-shadow: 0 6px 16px rgba(214, 0, 0, 0.25);
    transform: translateY(-2px);
}

/* Error message */
.wpcf7-not-valid-tip {
    color: #d60000;
    font-size: 13px;
}

/* Success message */
.wpcf7-response-output {
    margin-top: 15px;
    border-radius: 6px;
    font-size: 14px;
}

/* Conatc Form styling End ------------------------------------------------------- */