/* Product Archive Styles */
.products-grid {
    margin: 1.875rem 0;
}
.archive-custom-product{
    padding-left: 2rem;
    padding-right: 2rem;
	padding-top:3rem;
	padding-bottom:3rem;
}

.archive-custom-product-container{
	padding-left:0px;
	padding-right:0px;
}
.woocommerce-products-header__title{
	 font-family:'Merriweather';
		font-weight:400;
}
.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
    display: none !important;
}

.woocommerce .woocommerce-result-count {
    display: none !important;
}

.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.875rem !important;
    direction: ltr !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.woocommerce ul.products li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
    list-style: none !important;
}

/* Product Card Styles */
.custom-product-card {
	cursor:pointer;
    height: 100%;
    background: #F9F9F9;
    border-radius: 0.5rem;
    overflow: hidden;
/*     box-shadow: 0 2px 10px rgba(0,0,0,0.1); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}




.custom-product-card:hover {
    transform: translateY(-0.313rem);
/*     box-shadow: 0 5px 20px rgba(0,0,0,0.15); */
}

.product-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Product Image */
.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-image:hover img {
    transform: scale(1.05);
}

/* Product Content */
.product-content {
    padding: 1.25rem;
    flex: 1;
}

.product-title {
    font-size: 1.375rem !important;
	font-family:'Bahnschrift';
		font-weight: 400;
		line-height:1.5;
    margin: 0 0 0.625rem 0;
  
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #007cba;
}

.product-excerpt {
    font-size: 1rem;
	font-family:'Bahnschrift';
		font-weight: 300;
		line-height:1.5;
    color: #666;
   
    margin: 0.625rem 0;
}

/* Product Footer/Button Area */
.product-footer {
    padding: 0 1.25rem 1.25rem 1.25rem;
}

.woocommerce.archive .product-card-inner .price,
.woocommerce-shop .product-card-inner .price {
    
    font-family: 'Bahnschrift';
    font-weight: 400 !important;
    line-height: 1;
    color: #2E2E2E !important;
	text-align:right !important;
    margin: 0.625rem 0;
	margin-bottom:0px !important;
}
@media (min-width:768px){
	.woocommerce.archive .product-card-inner .price,
	.woocommerce-shop .product-card-inner .price {
		font-size: 2.5rem !important;
	}
}

.price del {
    color: #999;
    font-size: 0.875rem;
    margin-right: 0.313rem;
}

.price ins {
    text-decoration: none;
}

.onsale {
    position: absolute;
    top: 0.625rem;
    right: 0.625rem;
    background: #ff0000;
    color: #fff;
    padding: 0.313rem 0.625rem;
    border-radius:0.188rem;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 1;
}

.button {
    display: inline-block;
    padding: 0.625rem 1.25rem;
    background: #333;
    color: #fff;
    text-decoration: none;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    transition: background 0.3s ease;
}

.button:hover {
    background: #007cba;
    color: #fff;
}

.added_to_cart {
    display: inline-block;
    margin-left: 0.625rem;
    padding: 0.625rem 1.25rem;
    background: #007cba;
    color: #fff;
    text-decoration: none;
    border-radius: 0.25rem;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 576px) {
    .woocommerce ul.products {
        grid-template-columns: repeat(1, 1fr) !important;
        gap: 15px !important;
    }
}

/* Force LTR */
.woocommerce,
.woocommerce *,
.products-grid,
.custom-product-card {
    direction: ltr !important;
    text-align: left !important;
}

/* Remove any default floats */
.woocommerce .products ul::after,
.woocommerce .products ul::before,
.woocommerce ul.products::after,
.woocommerce ul.products::before {
    display: none !important;
}


@media (max-width:767px){
	.woocommerce.archive .product-card-inner .price,
	.woocommerce-shop .product-card-inner .price{
		font-size:30px !important;
	}
	.woocommerce-products-header__title{
		font-size:30px !important;
	}
}
/* Product Archive Styles end */
/**single productpage **/
.custom-single-product{
	    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.custom-single-product-container{
    padding-left: 0px;
    padding-right: 0px;
}
.custom-product-gallery{
	margin-right:3rem;
}
.custom-single-product-title{
	font-family: 'Merriweather';
    font-size: 2.5rem;
    font-weight: 400;
    color: #B62025;
	 max-width: 21.25rem;
}
.woocommerce #content div.product div.images, .woocommerce div.product div.images, .woocommerce-page #content div.product div.images, .woocommerce-page div.product div.images{
	width:100%;
	
}
.custom-author{
	  font-size: 1.25rem !important;
    font-family: 'Bahnschrift';
    font-weight: 400 !important;
    line-height: 1.5;
}
.custom-product-description{
	  font-size: 1rem !important;
    font-family: 'Bahnschrift';
    font-weight: 300 !important;
    line-height: 1.5;
}
.custom-product-price{
	   
    font-family: 'Bahnschrift';
    font-weight: 400 !important;
    line-height: 1;
    color: #2E2E2E !important;
}
@media (min-width:768px){
	.custom-product-price{
	    font-size: 2.5rem !important;
	}
}
.single-product-enqire-button{
	position: relative;
    display: inline-block;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1rem 1rem 1rem;
	margin-top:1.25rem;
    border-radius: 1.875rem;
    border: 0.063rem solid #ffffff;
	color:#fff;
    background-color: #B62025;
    cursor: pointer;
    overflow: hidden;
    z-index: 0;
	 font-size: 1.125rem !important;
    font-family: 'Bahnschrift';
    font-weight: 400 !important;
	width:100%;
	max-width:16.5rem;
	text-align:center !important;
	   
}
.single-product-enqire-button:hover{
	color:#fff;
}
.custom-product-details{
	    border-top:  0.063rem solid #D6D6D6;
    padding-top: 1.25rem;
    margin-top: 2.5rem;
	    border-bottom: 0.063rem solid #D6D6D6;
    padding-bottom: 1.25rem;
}
.custom-product-details-heading{
		 font-size: 1.375rem ;
    font-family: 'Bahnschrift';
    font-weight: 400;
	line-height:1.5;
	margin-top:0.5rem;
}
.custom-product-details-heading:after{
	content: ""; /* pseudo-element is required */
    display: inline-block;
    width: 1.125rem;   /* width of your arrow image */
    height: 1.125rem;  /* height of your arrow image */
    background-image: url('../../uploads/2026/03/down-arrow.svg'); /* replace with your image URL */
    background-size: contain;  /* scale image to fit */
    background-repeat: no-repeat;
    margin-left: 0.313rem;  /* spacing from text */
    margin-top: 0.625rem;   /* vertical alignment */
    float: right;      /* moves arrow to the right */
    transition: transform 0.3s ease-in-out; /* for rotation on hover */
}
.custom-product-details-grid-inner{
	display:grid;
	  display: grid;
   grid-template-columns: 9.375rem minmax(0, 1fr);
	gap:0.313rem;
  
}
.custom-product-details-grid-inner p{
	margin-bottom:0px;
	padding:0.625rem;
	 font-size: 1.125rem ;
    font-family: 'Bahnschrift';
    font-weight: 300;
	line-height:1.5;
	
}
.custom-product-details-grid-inner div:first-child p{
	
    font-weight: 400;
	
	
}
@media (max-width: 767px) {
	.custom-product-price{font-size:30px !important;}
	.custom-product-gallery{
		margin-right:0px;
	}
	.custom-single-product{
		padding-left:15px;
		padding-right:15px;
	}
	.custom-single-product-title{
		font-size:30px;
	}
	
}
@media (max-width: 576px) {
	.single-product-enqire-button{
		max-width:100%
	}
}