@font-face {
	font-weight: normal;
	font-style: normal;
	font-family: "woodmart-font";
	src: url("//www.shopines.in/wp-content/themes/woodmart/fonts/woodmart-font-2-400.woff2?v=7.6.0") format("woff2");
}

:root {
	--wd-text-font: "Poppins", Arial, Helvetica, sans-serif;
	--wd-text-font-weight: 400;
	--wd-text-color: #767676;
	--wd-text-font-size: 15px;
	--wd-title-font: "Poppins", Arial, Helvetica, sans-serif;
	--wd-title-font-weight: 500;
	--wd-title-color: #242424;
	--wd-entities-title-font: "Poppins", Arial, Helvetica, sans-serif;
	--wd-entities-title-font-weight: 500;
	--wd-entities-title-color: #333333;
	--wd-entities-title-color-hover: rgb(51 51 51 / 65%);
	--wd-alternative-font: "Poppins", Arial, Helvetica, sans-serif;
	--wd-widget-title-font: "Poppins", Arial, Helvetica, sans-serif;
	--wd-widget-title-font-weight: 500;
	--wd-widget-title-transform: capitalize;
	--wd-widget-title-color: #333;
	--wd-widget-title-font-size: 16px;
	--wd-header-el-font: "Poppins", Arial, Helvetica, sans-serif;
	--wd-header-el-font-weight: 600;
	--wd-header-el-transform: capitalize;
	--wd-header-el-font-size: 13px;
	--wd-brd-radius: 10px;
	--wd-primary-color: rgb(84,0,0);
	--wd-alternative-color: rgb(251,188,52);
	--wd-link-color: rgb(255,255,255);
	--wd-link-color-hover: rgb(255,255,255);
	--btn-default-bgcolor: rgb(84,0,0);
	--btn-default-bgcolor-hover: rgba(221,51,51,0.83);
	--btn-accented-bgcolor: rgb(84,0,0);
	--btn-accented-bgcolor-hover: rgba(84,0,0,0.7);
	--btn-transform: capitalize;
	--wd-form-brd-width: 1px;
	--notices-success-bg: #459647;
	--notices-success-color: #fff;
	--notices-warning-bg: #E0B252;
	--notices-warning-color: #fff;
}
.woodmart-woocommerce-layered-nav .wd-scroll-content {
	max-height: 223px;
}
.wd-popup.wd-age-verify {
	--wd-popup-width: 500px;
}
.wd-popup.wd-promo-popup {
	background-color: #111111;
	background-image: none;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
	--wd-popup-width: 800px;
}
.page-title-default {
	background-color: rgb(91,196,125);
	background-image: none;
	background-size: cover;
	background-position: center center;
}
.footer-container {
	background-color: #ffffff;
	background-image: none;
}
html .wd-nav-mobile > li > a {
	text-transform: capitalize;
}
html .post.wd-post .post-title {
	font-size: 18px;
}
.page .main-page-wrapper {
	background-color: rgb(255,255,255);
	background-image: none;
}
.woodmart-archive-shop:not(.single-product) .main-page-wrapper {
	background-color: rgb(255,255,255);
	background-image: none;
}
.single-product .main-page-wrapper {
	background-color: rgb(255,255,255);
	background-image: none;
}
.woodmart-archive-blog .main-page-wrapper {
	background-color: rgb(255,255,255);
	background-image: none;
}
.single-post .main-page-wrapper {
	background-color: rgb(255,255,255);
	background-image: none;
}
html .wd-buy-now-btn {
	background: rgb(84,0,0);
}
html .wd-buy-now-btn:hover {
	background: rgba(84,0,0,0.79);
}
body, [class*=color-scheme-light], [class*=color-scheme-dark], .wd-search-form[class*="wd-header-search-form"] form.searchform, .wd-el-search .searchform {
	--wd-form-bg: rgb(255,255,255);
}
.wd-popup.popup-quick-view {
	--wd-popup-width: 920px;
}
:root{
--wd-container-w: 1400px;
--wd-form-brd-radius: 5px;
--btn-default-color: #fff;
--btn-default-color-hover: #fff;
--btn-accented-color: #fff;
--btn-accented-color-hover: #fff;
--btn-default-brd-radius: 5px;
--btn-default-box-shadow: none;
--btn-default-box-shadow-hover: none;
--btn-accented-brd-radius: 5px;
--btn-accented-box-shadow: none;
--btn-accented-box-shadow-hover: none;
}

@media (min-width: 1417px) {
.platform-Windows .wd-section-stretch > .elementor-container {
margin-left: auto;
margin-right: auto;
}
}

@media (min-width: 1400px) {
html:not(.platform-Windows) .wd-section-stretch > .elementor-container {
margin-left: auto;
margin-right: auto;
}
}


.custom-product-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    padding: 20px;
}

@media (max-width: 768px) {
    .custom-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    transition: 0.3s ease-in-out;
}

.product-card:hover {
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
}

.product-info {
    padding: 10px;
    text-align: center;
}

.product-title {
    font-size: 14px;
    font-weight: bold;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price {
    font-size: 16px;
    color: green;
    font-weight: bold;
}

.product-rating {
    display: inline-block;
    background: green;
    color: white;
    padding: 4px 8px;
    border-radius: 5px;
    font-weight: bold;
}





.woocommerce-product-gallery img {
    width: 100%;
    border-radius: var(--wd-brd-radius);
    border: 1px solid #e0e0e0; /* Light gray border like Flipkart */
    padding: 5px; /* Adds spacing inside the border */
    background-color: #fff; /* Ensures a clean background */
}



.whb-x8jk23ixuw8cva23ei0i a:is(.btn-style-default, .btn-style-3d) {
    background-color: black;
}



.star-rating {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    letter-spacing: 2px;
    font-weight: 400;
    color: green;
    width: fit-content;
    font-family: "woodmart-font";
}





.amount {
    color: rgb(41 46 43);
    font-weight: 600;
}


.star-rating span, .star-rating span:before {
    color: green;
}


.wd-product.wd-hover-fw-button .wd-add-btn>a {
    width: 100%;
    border-radius: var(--btn-accented-brd-radius);
    color: var(--btn-accented-color);
    box-shadow: var(--btn-accented-box-shadow);
    background-color: blue;
    text-transform: var(--btn-accented-transform, var(--btn-transform));
    font-weight: var(--btn-accented-font-weight, var(--btn-font-weight));
    font-family: var(--btn-accented-font-family, var(--btn-font-family));
    font-style: var(--btn-accented-font-style, var(--btn-font-style));
}








.discount-label {
    background: #e6f4ea;
    color: #1a8917;
    font-weight: bold;
    font-size: 14px;
    padding: 5px 8px;
    border-radius: 5px;
    display: inline-block;
    margin-bottom: 5px;
    font-family: 'Poppins';
}




.price .amount {
    font-size: 16px;
    font-family: 'Poppins';
}


@media (max-width: 576px) {
	.wd-cart-totals.wd-btn-align-full-width .checkout-button {
    width: 100%;
    position: fixed;
    bottom: 0;
    right: 0;
}



.single_add_to_cart_button {
    border-radius: var(--btn-accented-brd-radius);
    color: var(--btn-accented-color);
    box-shadow: var(--btn-accented-box-shadow);
    background-color: var(--btn-accented-bgcolor);
    text-transform: var(--btn-accented-transform, var(--btn-transform));
    font-weight: var(--btn-accented-font-weight, var(--btn-font-weight));
    font-family: var(--btn-accented-font-family, var(--btn-font-family));
    font-style: var(--btn-accented-font-style, var(--btn-font-style));
    position: fixed;
    bottom: 0;
    z-index: 99;
    height: 50px;
    width: 100%;
    left: 0;
    border-radius: 0;
}



.main-page-wrapper {
    margin-top: -59px;
    padding-top: 40px;
    min-height: 50vh;
    background-color: var(--wd-main-bgcolor);
}







.wd-style-form .wd-pf-title {
    height: var(--wd-form-height);
    border: var(--wd-form-brd-width) solid var(--wd-form-brd-color);
    border-radius: 0px;
    background-color: var(--wd-form-bg);
    padding-inline: 15px 35px;
}
}

