/********************
Theme Name: SM Theme
Theme URI: http://shamweb.net
Author: Shamweb
Author URI: http://shamweb.net
Version: 1.0
Description: Welcome to chose my theme.
Tags: No tags available
License: Unlimited
License URI: http://www.fb.com/shamolsudakar
Text Domain: Default English(USA)
=====================================
font-family: "Jost", sans-serif;
=====================================
********************/
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary: #168A4B;
    --secondary: #FFF;
    --accent: #147C43;
    --text-heading-color: #2A4350;
    --text-color: #1b1b28;   
    --picms-sidebar-width: 270px; 
}

body {
    font-family: "Jost", sans-serif;
    font-style: normal;
    font-weight: 400;
    font-optical-sizing: auto;
    font-size: 0.9rem;
}
header {
	position: sticky;
	z-index: 100;
	top: -150px;
}
.picms-header-top {
    background-color: #fff;
}
.picms-header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-block: 20px;
}
.picms-header-box .logo-box, .picms-categories {
    flex: 0 0 var(--picms-sidebar-width);
}
.picms-logo {
    display: inline-flex;
    align-items: center;
    height: 42px;
    max-width: var(--picms-sidebar-width);
}
.picms-logo img {
    display: inline-block;
    max-height: 100%;
}
.picms-header-box .search-box {
    flex: 1;
}
.picms-header-box .nav-box {
    display: flex;
    gap: 16px;
    align-items: center;
}

.picms-navbar {
    background-color: var(--primary);
    color: var(--secondary);    
}
.picms-navbar-box {
    display: flex;
    gap: 30px;
}
.picms-nav {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    flex: 1;
}

/****************************
    START MENU
****************************/
.picms-menu {
    --menu-base-bg: var(--primary, var(--app-primary));
    --menu-base-color: var(--secondary, var(--app-secondary));
    --menu-sarface: #FFF;
    --menu-text-color: var(--text-heading-color, var(--app-text-heading-color));
    --menu-sub-text-color: var(--text-color, var(--app-text-color));
    --menu-item-min-height: 40px;
    --menu-item-min-expand-height: 60px;
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
    flex-wrap: wrap;
	gap: 0 16px;
}
.picms-menu ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}
.picms-menu > li {
	display: inline-flex;
	align-items: center;
}
.picms-menu li {
    position: relative;
}
.picms-menu > li > a {
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--menu-text-color);
}

.picms-menu > li.active > a,
.picms-menu > li:hover > a {
    color: var(--accent, var(--app-accent));    
}
.picms-nav .picms-menu > li {
    min-height: 50px;
    z-index: 1;
}
.picms-nav .picms-menu > li::after {
    position: absolute;
    content: "";
    inset: auto -8px;
    background-color: var(--accent);
    z-index: -1;
    height: 30px;
    border-radius: 2px;
    opacity: 0;
}
.picms-nav .picms-menu > li.active::after,
.picms-nav .picms-menu > li:hover::after {
    opacity: 1;
}

.picms-menu > li:has(> ul) > a::after {
    position: relative;
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    right: 0;
    z-index: 1;
}
.picms-menu > li:has(> ul).active > a::after,
.picms-menu > li:has(> ul):hover > a::after {
    content: "\f106";
}
.picms-menu.picms-uppercase > li > a {
    text-transform: uppercase;
}
.picms-menu li a {
	display: flex;
	justify-content: space-between;
	gap: 5px;
	align-items: center;
	text-decoration: none;	
	padding-block: 8px;
    position: relative;
}
.picms-menu.picms-divider > li:not(:last-child)::after, .picms-menu.picms-divider:has(+ ul.picms-menu) > li:last-child::after {
    position: absolute;
    content: "";
    top: 10px;
    bottom: 10px;
    right: -8px;
    width: 1px;
    background-color: var(--app-border-color);
}
.picms-menu ul > li:hover > a,
.picms-menu ul > li.active > a {
    background-color: var(--menu-base-bg);
    color: var(--menu-base-color);
}
/****************************
    VERTICAL DROPDOWN
****************************/
.picms-menu li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    white-space: nowrap;
    background-color: var(--menu-sarface);
    z-index: 10;
    display: none;
}
.picms-menu li:hover > ul {
    display: block;
}
.picms-menu li > ul {    
    padding-block: 10px;
    box-shadow: 0 30px 90px -15px rgba(0,0,0,0.5);
    border-radius: 2px;
}
.picms-menu > li > ul li{
    position: relative;
}
.picms-menu li > ul > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
    text-decoration: none;
    color: var(--menu-sub-text-color);
    min-height: var(--menu-item-min-height);
}
.picms-menu li > ul > li > a > :first-child i {
	width: 16px;
	height: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 5px;
}
.picms-menu > li > ul a {
    opacity: 0;
    height: 0;
    min-height: 0;
    -webkit-animation: drop_bounce 0.5s forwards ease-in-out;
    animation: drop_bounce 0.5s forwards ease-in-out;
}
@keyframes drop_bounce {
    0% { opacity: 0; min-height: 0;}
    50% { opacity: 1; min-height: var(--menu-item-min-expand-height);}
    100% { opacity: 1; min-height: var(--menu-item-min-height);}
}
.picms-menu li.divider > a {
    border-top: 1px solid var(--app-border-color);
}
.picms-menu > li > ul ul {
    top: -10px;
    left: 100%;
}
.picms-menu ul > li:has(> ul) > a::after {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    right: 0;
    z-index: 1;
}
.picms-menu ul > li:has(> ul).active > a::after,
.picms-menu ul > li:has(> ul):hover > a::after {
    content: "\f104";
}
/****************************
    END MENU
****************************/
header[scroll-top="true"] .picms-categories > .picms-menu > li > ul {
    display: none !important;
}
header[scroll-top="true"] .picms-menu > li:has(> ul):hover > a::after {
    content: "\f107" !important;
}
.picms-nav .picms-menu > li > a,
.picms-nav .picms-menu > li.active > a,
.picms-nav .picms-menu > li:hover > a,
.picms-categories .picms-menu > li > a {
    color: var(--secondary);
    font-weight: 500;
}
.picms-categories .picms-menu > li {
    width: 100%;
    box-sizing: border-box;
}
.picms-categories .picms-menu > li > a {
    padding-inline: 20px;
    width: 100%;
    box-sizing: border-box;
}
.picms-categories .picms-menu > li > ul > li:not(:last-child) {
    border-bottom: 1px solid var(--app-border-light-x);
}
.picms-categories .picms-menu > li:has(> ul) > a::after {
    font-size: 22px;
}
.picms-categories .picms-menu > li > ul {
    min-width: var(--picms-sidebar-width);
}

.picms-hero-box {
    display: flex;
}
.picms-hero-box .picms-hero-category {
    flex: 0 0 var(--picms-sidebar-width);
    background-color: #fff;    
}

.picms-categories {
    background-color: var(--accent);
    display: flex;
    align-items: center;
    min-height: 50px;
}
.picms-categories > ul {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
}
.picms-hero-category {
    position: relative;
    z-index: 10;
}
.picms-hero-category > ul {
    height: 100%; 
}
.picms-hero-category .app-mega-menu-x > li > a {
    height: clamp(41px, 3vw, 50px);
}
.picms-area-hero {
    background-color: #fff;    
}
.picms-hero-carousel {
    background-color: #f8f7ff;
}
.picms-area-hero .carousel-item {
	display: block;
	overflow: hidden;
	aspect-ratio: 1/.45;
}
.picms-area-hero .carousel-item img {
	width: 100%;
	min-height: 100%;
}
.picms-hero-carousel .carousel-item:has(.carousel-caption)::before {
	position: absolute;
	content: "";
	inset: 0;
	background-image: linear-gradient(transparent, #000);
	z-index: 0;
	opacity: .7;
}
.picms-hero-carousel .carousel-item .carousel-caption {
    bottom: 35px;    
}
.picms-hero-carousel .carousel-item .carousel-caption h3 {
    font-size: clamp(1.4rem, 9.5vw, 3.5rem);
    color: #FFE802;
    font-weight: 600;
}
.picms-hero-carousel .carousel-item .carousel-caption p {
    color: #fff;
}
.picms-bg-pattern {
    background-image: url(../images/circle-bg.png);
    background-size: cover;
    background-position: center center;
}
.picms-area-feauters {
    padding-block: 50px;
    background-color: var(--primary);
}
.picms-section-title {
    margin-bottom: 20px;
}
.picms-title, .store-carousels-title {
	font-size: clamp(1.2rem, 4.5vw, 2rem);	
    font-weight: 400;
	color: var(--text-heading-color, var(--app-text-heading-color));
}

.picms-area-ads {
    padding-block: 50px;
    background-color: var(--primary);
}

.product-card .product-card-price {
	padding-block: 10px;
}

.picms-product-grid {
    display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 20px;
}
.app-shop-content .picms-product-grid {
    grid-template-columns: repeat(4, 1fr);
}
.store-sticker {
	top: 0;
	right: 10px;
	padding: 5px 7px 1px;
	border-radius: 0;
	filter: drop-shadow(0px 5px 0px rgba(0, 0, 0, 0.1));
    background-color: transparent;
	background-image: linear-gradient(#ff8080, var(--sticker-color));
    
	font-size: 12px;
	line-height: 1;
}
.store-sticker::before {
	width: auto;
	position: absolute;
	content: "";
	z-index: -1;
	background-color: var(--sticker-color);
	top: 100%;
	right: 0;
	height: 10px;
	left: 0;
	clip-path: polygon(100% 0, 0 0, 50% 100%);
}
.product-card {
	position: relative;
	z-index: 1;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.10196078431372549);
    border-top: 1px solid #f6f6f6;
}
.product-card .product-card-thumb {
	width: calc(100% - 20px);
	margin: 10px auto 0;
}
.product-card .card-title {
    font-weight: 400;
    font-size: inherit;
}

.product-card::before,
.product-card::after {
	position: absolute;
	content: "";
	inset: -2px;
	border: 2px solid transparent;
	z-index: -1;
    width: 0;
    height: 0;
}
.product-card:hover::before {
    border-top-color: var(--primary);
    border-right-color: var(--primary);
    transition: width 0.3s ease-out, height 0.3s ease-out 0.3s;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
}
.product-card:hover::after {
    border-left-color: var(--primary);
    border-bottom-color: var(--primary);
    transition: height 0.3s ease-out, width 0.3s ease-out 0.3s;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
}
.picms-pro-quick-view {
	position: absolute;
	color: var(--secondary);
	padding: 8px 20px;
	inset: auto 20px -90px;
	text-transform: uppercase;
	text-align: center;
	cursor: pointer;
	backdrop-filter: blur(10px);
	background-color: rgb(from var(--primary) r g b / 0.7);
	z-index: 5;
	-moz-user-select: none;
	-webkit-user-select: none;
	user-select: none;
	font-size: 14px;
	font-weight: 500;
}
.product-card:hover .picms-pro-quick-view {
	bottom: 20px;
}

.picms-area-brands {
    padding-block: 50px;
    background-color: #F5F5F5;
}
.store-brand-carousel .store-ct-item {
	box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.101) !important;
}

footer {
    --footer-text-color: #919199;
    position: relative;
    z-index: 1;  
    background-color: #212129;    
}
footer::after {    
    position: absolute;
    content: "";
    inset: 0;
    z-index: -1;
    background: url(../images/ft-bg.webp) no-repeat center bottom;
	background-size: 100%;
    opacity: .15;
}

.picms-footer-content {
    padding-block: 40px;
}
.picms-widgets {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}
.picms-footer-content .picms-widgets {
    gap: 60px;
} 
.picms-widget {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 380px;
}
.picms-footer-devs {
	padding-block: 20px;
}
.picms-footer-devs .picms-widget {
    max-width: initial;
}
.picms-logo-footer {
	max-height: 50px;
}
.picms-logo-footer img {
    max-height: 50px;
}
.picms-widget p {
    margin-bottom: 0;
    color: var(--footer-text-color);
}
.picms-widget-title {
	font-size: 20px;
    margin-bottom: 0;
    white-space: nowrap;
    color: var(--secondary);
}
.picms-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px;
}
.picms-links li a {
    display: inline-block;
    text-decoration: none;
    color: var(--footer-text-color);
    position: relative;
}
.picms-links li a:hover {
    color: var(--primary);
}
.picms-links li a::after {
    position: absolute;
    content: "";
    inset: auto 0 0 0;
    height: 1px;
    background-color: var(--primary);
    width: 0;    
}
.picms-links li a:hover::after {
    width: 100%;
}
.picms-footer-devs {
    background-color: #17171FB5;
}
.picms-devops a:hover, .picms-address a:hover {
    color: var(--primary);
}

#picms-search-button {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	border-radius: 50%;
	background-color: var(--primary);
	color: var(--secondary);
	cursor: pointer;
}
.picms-show-on {
    display: none !important;
}

.picms-search-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    overflow: hidden;
    display: none;
}
.picms-search-popup::after {
    position: absolute;
    content: "";
    top: -30px;
    right: -30px;
    z-index: -1;
    width: 30px;
    height: 30px;
    clip-path: circle(50% at 50% 50%);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s;  
    background-color: rgba(255,255,255,.3);
	backdrop-filter: blur(10px);  
}
.picms-popup-open::after {
    transform: scale(200);
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    transition: all 1s;
}
.picms-search-panel {
    display: none;
	max-width: 600px;
	margin: 100px auto 0;
	padding-bottom: 50px;
}
.picms-search-panel .store-searchbar-panel {
    box-shadow: var(--app-shadow);
}
.picms-search-close {
	padding: 0;
	border: none;
	width: 70px;
	height: 70px;
	font-size: 30px;
	position: absolute;
	top: 0;
	right: 0;
	background-color: transparent;
	color: #000;
	z-index: 5;
    display: none;
}
.picms-search-close:active {
    top: 1px;
}

.app-button {
    position: relative;
    z-index: 1;
}
.app-button::after {
    position: absolute;
    content: "";
    inset: auto 0 0 0;
    background-color: var(--accent);
    z-index: -1;
    height: 0;
    border-radius: 2px;
}
.app-button:hover {
    background-color: var(--primary);
}
.app-button:hover::after {
    height: 100%;
}

.store-carousels .slick-track {
    padding-top: 10px;
}
.relatedPrducts .slick-track {
    padding-top: 5px;
}

.picms-page {
    padding-bottom: 40px;
}
.page-picms-hero {
	margin-block: 0 40px;
	padding-block: 20px;
	width: 100%;
	aspect-ratio: 1/.2;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	position: relative;
	z-index: 1;
}
.page-picms-hero::after {
	position: absolute;
	content: "";
	inset: 0;
	background-image: linear-gradient(transparent, #000);
	z-index: -1;
}
.picms-page-title {
	color: #fff;
	text-decoration: none;
	font-size: clamp(1rem, 5vw, 3rem);
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 0;
}
.picms-pro-quick-view {
    inset: auto 15px -90px;
}
.product-card:hover .picms-pro-quick-view {
    bottom: 15px;
}
.picms-sec-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
    margin-bottom: 8px;
}
.picms-sec-title .picms-title {
    margin-bottom: 0;
}

.store-carousels-section .store-carousels-heading {
	margin-bottom: 10px;
}

.app-area-shop .app-shop-filter {
	flex: 0 0 var(--picms-sidebar-width);
}

.productZoom .store-sticker {
	top: 0;
}
/********* ***************/
.picms-categories {
    position: relative;
}
.picms-menu-categories {
    list-style: none;
    margin: 0;
    padding: 0;
    white-space: nowrap;
}
.picms-menu-categories > li {
    height: inherit;
}
.picms-menu-categories > li > a {
    height: inherit;
    text-decoration: none;
    font-size: inherit;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: space-between;
    color: var(--secondary);
    text-transform: uppercase;
    font-weight: 500;
}
.picms-menu-categories > li > a:has(i:first-child)::after {
    flex: 1;
    text-align: right;
}
.picms-menu-categories > li:not(:has(> ul)) > a {
    justify-content: flex-start;
}
.picms-menu-categories > li > a:has(i:first-child) > i:first-child {
    flex: 0 0 20px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;	
}
.picms-menu-categories > li > a > i {
    font-size: 20px;
}
.picms-menu-categories > li:has(> ul) > a::after {
    position: relative;
    content: "\f107";
    font-family: "Font Awesome 6 Pro";
    font-weight: 300;
    right: 0;
    z-index: 1;
    font-size: 22px;
    line-height: 1;
}

.picms-menu-categories > li > ul {
	position: absolute;
	top: 100%;
	background-color: #fff;
	z-index: 100;
	min-width: var(--picms-sidebar-width);
	box-shadow: 0 0 90px -15px rgba(0,0,0,0.5);
    border: none;
	display: none;
}
header:not([scroll-top="true"]) .picms-menu-categories > li:hover > ul {
    display: block;
}
header:not([scroll-top="true"]) .picms-menu-categories > li:has(> ul):hover > a::after {
	content: "\f106";
}
/********* ***************/

.store-searchbar .store-searchbar-title {
	font-size: 14px;
	font-weight: 400;
}

.store-carousel-button-action .app-button {
    border-radius: 20px;
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;    
}
.store-carousel-button-action .app-button:hover {
    background-color: #fff;
    color: var(--text-heading-color);
}
.store-carousel-button-action .app-button::after {
    display: none;
}


.app-button::after,
header,
.picms-links li a,
.picms-links li a::after,
.picms-pro-quick-view,
.picms-menu li > a,
.picms-menu > li::after {
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    transition: all .3s;
}

/********************
    RESPONSIVE
********************/
@media (max-width: 1200px) {
    .picms-hero-category {
        display: none;
    }
    .picms-area-hero {
        margin-top: 30px;
    }    
}
@media (max-width: 1024px) {
    .store-carousels, .relatedPrducts {
        padding-top: 5px;
        padding-inline: 3px;
    }
}
@media (max-width: 992px) {
    .picms-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(max(15vw, 130px), 1fr)) !important;
    }
    footer.sticky-footer-menu-active,
    .picms-nav .picms-menu,
    .app-navbar .app-website,
    .picms-navbar, .search-box, .picms-hide-on {
        display: none !important;
    }
    .picms-show-on {
        display: inline-flex !important;
    }
    .picms-widgets {
        flex-wrap: wrap;
    }
    .app-navbar {
        justify-content: flex-end;
    }
    .app-nav-toggler {
        color: var(--secondary);
    }
    header {
        box-shadow: 0 0 26px -9px rgba(0, 0, 0, 0.21);
    }
    .mt-5 {
        margin-top: 2rem !important;
    }
    .picms-pro-quick-view {
        padding-inline: 15px;
        font-size: 12px;
        inset: auto 10px -90px;
    }
    .product-card:hover .picms-pro-quick-view {
        bottom: 10px;
    }
    .app-area-shop .app-shop-filter {
        flex: 0 0 100%;
    }
}
@media (max-width: 560px) {
    .picms-hero-carousel .carousel-item .carousel-caption {
        display: none;
    }
}
@media(max-width: 440px){
    .picms-footer-content .picms-widgets {
        flex-direction: column;
        gap: 30px;
    }
    .picms-categories {
        flex: 1;
    }
    .picms-nav {
        flex: initial;
    }
    .picms-header-box .logo-box {
        flex: 0 0 140px;
    }
    .picms-header-box {
        gap: 10px;
    }
}