.woocommerce-ordering{
	margin-bottom: 20px;
}
/* Product Grid */

ul.products{
    display:flex;
    flex-wrap:wrap;
    margin:0 -10px;
    padding:0;
    list-style:none;
}

ul.products li.product-item{
    width:25%;
    padding:10px;
    margin:0 !important;
}

/* Card */

.product-card{
    border:0;
    transition:.35s;
}

.product-card a{
    text-decoration:none;
    color:#222;
}

.product-image img{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius: 6px;
}

.product-info{
    padding:12px 5px;
	text-align: center;
}

.product-info h3{
    font-size: 1.25rem;
	font-weight: 500px;
}

.product-info .price{
    font-size:16px;
}
.term-description{
	display: none;
}

/* Tablet */

@media(max-width:991px){

    ul.products li.product-item{
        width:33.333%;
    }

}

/* Mobile */

@media(max-width:767px){

    ul.products li.product-item{
        width:50%;
    }

    .product-image img{
        height:220px;
    }

    .product-info h3{
        font-size:12px;
    }

}


/* Cart Container */
.woocommerce-cart .woocommerce {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Hide default table look */
.woocommerce-cart table.shop_table {
    border: 0;
}

.woocommerce-cart table.shop_table td,
.woocommerce-cart table.shop_table th {
    border: 0;
}

/* Product rows */
.woocommerce-cart .cart_item {
    display: grid;
    grid-template-columns: 90px 1fr 150px;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    align-items: center;
}

/* Product image */
.product-thumbnail img {
    width: 70px;
    height: auto;
}

/* Product title */
.product-name a {
    color: #222;
    text-decoration: none;
}

/* Cart Totals Card */
.cart_totals {
    background: #f7f7f7;
    padding: 40px;
    border-radius: 6px;
    border: none;
}

/* Checkout Button */
.wc-proceed-to-checkout a.checkout-button {
    background: #222;
    color: #fff;
    border-radius: 4px;
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
}

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

/* Contact form */
.contact-page{
    background:#f7f7f7;
}

.contact-form-wrapper{
    background:#fff;
    border:1px solid #ddd;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    margin-bottom:15px;
}

.contact-form-wrapper input[type="submit"]{
    background:#7ab648;
    color:#fff;
    border:none;
    padding:14px 35px;
    font-weight:600;
}

.map-box{
    overflow:hidden;
    border-radius:8px;
}

.location-info li{
    line-height:1.8;
}

/* checkout page */
/* Page Background */
.woocommerce-checkout {
    background: #f5f5f5;
}

/* Main Checkout Container */
.woocommerce-checkout form.checkout {
    max-width: 1100px;
    margin: 40px auto;
}

/* Sections */
.woocommerce-billing-fields,
.woocommerce-shipping-fields,
.woocommerce-additional-fields,
#order_review {
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
}

/* Inputs */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
    height: 54px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    padding: 0 16px;
    font-size: 15px;
}

/* Labels */
.woocommerce form .form-row label {
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    color: #222;
}

/* Section Headings */
.woocommerce-checkout h3,
.woocommerce-checkout h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Order Review */
#order_review {
    background: #fff;
    border-radius: 12px;
}

/* Payment Box */
#payment {
    background: #fff !important;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
}

/* Place Order Button */
#place_order {
    width: 100%;
    background: #7ab83f !important;
    border: none !important;
    border-radius: 10px;
    padding: 18px !important;
    font-size: 20px !important;
    font-weight: 700;
    color: #fff !important;
}

#place_order:hover {
    background: #6aa332 !important;
}

/* Order Summary Table */
.shop_table {
    border: none !important;
}

.shop_table th,
.shop_table td {
    padding: 15px !important;
}

/* Checkbox Green */
input[type="checkbox"]:checked {
    accent-color: #7ab83f;
}

/* =========================
   SHOP SIDEBAR
========================= */

.shop-sidebar {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    position: sticky;
    top: 20px;
}

/* Widget */
.shop-sidebar .widget {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.shop-sidebar .widget:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* Widget Title */
.shop-sidebar .widget-title,
.shop-sidebar h2,
.shop-sidebar h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Category Lists */
.shop-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-sidebar ul li {
    margin-bottom: 10px;
}

.shop-sidebar ul li a {
    color: #333;
    text-decoration: none;
    display: block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: .3s;
}

.shop-sidebar ul li a:hover,
.shop-sidebar .current-cat > a {
    background: #7ab83f;
    color: #fff;
}

/* Product Count */
.shop-sidebar .count {
    float: right;
    color: #999;
    font-size: 13px;
}

/* Price Filter */
.shop-sidebar .price_slider_wrapper {
    padding-top: 10px;
}

.shop-sidebar .ui-slider {
    background: #ddd;
    height: 6px;
    border-radius: 20px;
}

.shop-sidebar .ui-slider-range {
    background: #7ab83f;
}

.shop-sidebar .ui-slider-handle {
    width: 18px;
    height: 18px;
    background: #7ab83f;
    border-radius: 50%;
    border: none;
    top: -6px;
}

/* Filter Button */
.shop-sidebar button,
.shop-sidebar .button,
.shop-sidebar input[type="submit"] {
    width: 100%;
    background: #7ab83f;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
}

.shop-sidebar button:hover,
.shop-sidebar .button:hover {
    background: #689e34;
}

/* Checkbox Filters */
.shop-sidebar input[type="checkbox"] {
    accent-color: #7ab83f;
}

/* Search */
.shop-sidebar input[type="search"],
.shop-sidebar input[type="text"],
.shop-sidebar select {
    width: 100%;
    height: 45px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 12px;
}

/* Mobile */
@media(max-width:991px){

    .shop-sidebar{
        border:none;
        padding:0;
        box-shadow:none;
    }

    .shop-sidebar .widget-title{
        margin-top:15px;
    }

}
