/* ===================================================
   JSM Footer
   Version: 2.0
=================================================== */

:root{

    --jsm-primary:#22c55e;
    --jsm-primary-dark:#16a34a;

    --jsm-text:#d7d7d7;
    --jsm-heading:#fff;

    --jsm-border:#e5e7eb;

    --jsm-bg:#fff;

}

/* ==========================================
   Wrapper
========================================== */

.jsm-footer-wrapper{

    width:100%;

    background:transparent;

    color:inherit;

}

/* ==========================================
   Grid
========================================== */

.jsm-footer{

    display:grid;

    grid-template-columns:repeat(4,minmax(220px,1fr));

    gap:40px;

    align-items:flex-start;

}

/* ==========================================
   Columns
========================================== */

.jsm-footer-column{

    min-width:0;

    position:relative;

}

.jsm-footer-column h4{

    margin:0 0 18px;

    font-size:18px;

    font-weight:700;

    color:var(--jsm-heading);

}

/* Divider */

@media(min-width:991px){

.jsm-footer-column:not(:last-child)::after{

    content:"";

    position:absolute;

    right:-20px;

    top:0;

    width:1px;

    height:100%;

    background:rgba(255,255,255,.12);

}

}

/* ==========================================
   Paragraph
========================================== */

/* .jsm-footer-column p{

    margin:0 0 20px;

    line-height:1.8;

    font-size:14px;

} */

/* ==========================================
   Lists
========================================== */

.jsm-footer-column ul{

    margin:0;

    padding:0;

    list-style:none;

}

.jsm-footer-column li{

    margin-bottom:12px;

    line-height:1.45;

    font-size:14px;
    text-align:left !important;

}

/* ==========================================
   Links
========================================== */

.jsm-footer-column a{

    color:var(--jsm-text);

    text-decoration:none;

    transition:all .25s ease;

}

.jsm-footer-column a:hover{

    color:var(--jsm-primary);

    padding-left:5px;

}

/* ==========================================
   About
========================================== */

.jsm-footer-about p{

    max-width:280px;
    text-align:left !important;


}

/* ==========================================
   Contact
========================================== */

.jsm-footer-contact li{

    margin-bottom:6px;

    line-height:1.45;

}

.jsm-footer-contact strong{

    display:inline;

    margin:0;

    color:#fff; /* or #222 depending on footer */

}

/* ==========================================
   Footer Bottom
========================================== */

.jsm-footer-bottom{

    margin-top:45px;

    padding-top:25px;

    border-top:1px solid var(--jsm-border);

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:20px;

    flex-wrap:wrap;

    font-size:14px;

}

.jsm-footer-bottom strong{

    color:var(--jsm-heading);

}

.jsm-footer-bottom-right{

    display:flex;

    align-items:center;

    gap:12px;

    flex-wrap:wrap;

}

.jsm-footer-bottom-right span{

    color:#bbb;

}

.jsm-footer-bottom-right a{

    color:var(--jsm-text);

    text-decoration:none;

    transition:.25s;

}

.jsm-footer-bottom-right a:hover{

    color:var(--jsm-primary);

}

/* ==========================================
   Tablet
========================================== */

@media(max-width:991px){

    .jsm-footer{

        grid-template-columns:repeat(2,1fr);

        gap:35px;

    }

    .jsm-footer-bottom{

        flex-direction:column;

        text-align:left !important;

    }

}

/* ==========================================
   Mobile
========================================== */

@media(max-width:640px){

    .jsm-footer{

        grid-template-columns:1fr;

        gap:30px;

    }

    .jsm-footer-column{

        text-align:left !important;

    }

    .jsm-footer-column p{

        margin-left:auto;

        margin-right:auto;
        text-align:left !important;

    }

    .jsm-footer-column ul{

        display:inline-block;

        text-align:left !important;

    }

    .jsm-footer-bottom{

        text-align:left !important;

    }

}

/* =========================================
   SubKhuch Shop Introduction
   ========================================= */

.jsm-shop-introduction {
	margin: 0 0 35px;
}

.jsm-shop-banner {
	width: 100%;
	overflow: hidden;
	border-radius: 12px;
	margin-bottom: 0px;
}

.jsm-shop-banner img {
	display: block;
	width: 100%;
	height: auto;
	max-width: 100%;
}

.jsm-shop-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: left;
}

.jsm-shop-content h1 {
    text-align: left;
    margin-bottom: 20px;
}

.jsm-shop-content h2 {
    text-align: left;
    margin-top: 30px;
    margin-bottom: 12px;
}

.jsm-shop-content p {
    text-align: left;
    line-height: 1.45;
    margin-bottom: 16px;
}

/* .jsm-shop-content {
	max-width: 900px;
	margin: 0 auto 30px;
	text-align: center;
}

.jsm-shop-content h1 {
	margin: 0 0 12px;
	font-size: 32px;
	line-height: 1.25;
	font-weight: 700;
}

.jsm-shop-content p {
	margin: 0;
	font-size: 16px;
	line-height: 1.7;
} */



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

	.jsm-shop-introduction {
		margin-bottom: 25px;
	}

	.jsm-shop-banner {
		border-radius: 8px;
		margin-bottom: 20px;
	}

	.jsm-shop-content {
		margin-bottom: 25px;
		padding: 0 10px;
	}

	.jsm-shop-content h1 {
		font-size: 25px;
		line-height: 1.3;
	}

	.jsm-shop-content p {
		font-size: 15px;
		line-height: 1.45;
	}

}

/* Full-width contact row */

.jsm-footer-contact-row {
	width: 100%;
	padding: 30px 0;
	border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.jsm-footer-contact-row h4 {
	margin: 0 0 20px;
}

.jsm-footer-contact-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
	align-items: start;
}

.jsm-footer-contact-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.jsm-footer-contact-item strong {
	font-weight: 600;
}

.jsm-footer-contact-item a {
	text-decoration: none;
}

.jsm-footer-contact-item a:hover {
	text-decoration: underline;
}

/* Tablet */

@media (max-width: 900px) {

	.jsm-footer-contact-grid {
		grid-template-columns: repeat(2, 1fr);
	}

}

/* Mobile */

@media (max-width: 600px) {

	.jsm-footer-contact-grid {
		grid-template-columns: 1fr;
	}

}




