.custom-cat {
	/* BACK SIDE */
	/* Overlay content (same on both sides) */
}
 .custom-cat .category-row {
	 display: flex;
	 justify-content: center;
	 flex-wrap: wrap;
	 gap: 30px;
	 perspective: 1000px;
}
 .custom-cat .card {
	 position: relative;
	 flex: 1 1 300px;
	/* Responsive, not fixed width */
	 aspect-ratio: 1;
	/* Keeps it square */
}
 .custom-cat .card-inner {
	 position: relative;
	 width: 100%;
	 height: 100%;
	 transition: transform 0.8s ease;
	 transform-style: preserve-3d;
}
 .custom-cat .card:hover .card-inner {
	 transform: rotateY(180deg);
}
 .custom-cat .card-front, .custom-cat .card-back {
	 position: absolute;
	 inset: 0;
	 overflow: hidden;
	 backface-visibility: hidden;
	 border-radius: 10px;
}
 .custom-cat .card-front img, .custom-cat .card-back img {
	 width: 100%;
	 height: 100%;
	 object-fit: cover;
}
 .custom-cat .card-back {
	 background: #03446a;
	 transform: rotateY(180deg);
}
/* .custom-cat .card:hover .category-overlay {
	 background: rgba(3, 68, 106, 1);
} */

.custom-cat *{
    font-family: "Open Sans", sans-serif !important;
}

.custom-cat .card:not(:hover) *{
    color: rgba(3, 68, 106, 1);
}

.custom-cat .card:not(:hover) h3 {
    margin-bottom: 8px;
}

.custom-cat .card:not(:hover) .btn {
    padding: 0 0 4px 0;
    border: none;
    background-color: transparent;
    border-bottom: 1px solid rgba(3, 68, 106, 1);
    border-radius: 4px;
}

 .custom-cat .category-overlay {
	 position: absolute;
	 inset: 0;
	 color: #fff;
	 display: flex;
	 flex-direction: column;
	 justify-content: center;
	 align-items: center;
	 text-align: center;
	 z-index: 2;
	 transition: background 0.3s;
}
.custom-cat .card:not(:hover) .category-overlay {
    top: unset;
    text-align: left;
    justify-content: flex-start;
    align-items: flex-start;
}

.custom-cat .card .btn {
    border: none;
    border-radius: 0 !important;
    margin-top: 5px;
} 

.custom-cat .category-overlay {
    background-color: rgb(255 255 255 / 80%);
}

 .custom-cat .category-overlay h3 {
	 font-size: 1.5rem;
	 margin-bottom: 0.5rem;
}
 .custom-cat .category-overlay .btn {
	 background: #fff;
	 color: #03446a;
	 padding: 10px 20px;
	 border-radius: 4px;
	 text-decoration: none;
	 transition: background 0.3s;
}
 .custom-cat .category-overlay .btn:hover {
	 background: #eaeaea;
}
/* .custom-cat .card:hover .category-overlay {
	 background: rgba(3, 68, 106, 0.8);
} */
 

/* end */

.category-item .category-overlay {
    backdrop-filter: blur(10px);
    background: none;
    text-align: left;
}

.category-item .category-overlay .btn {
    padding: 0 0 4px 0;
    border: none;
    border-bottom: 1px solid;
}

.category-item .category-overlay * {
    text-align: left;
}

.category-item:hover .category-overlay {
    position: absolute;
    backface-visibility: visible
}

body{
    background-color: #fff !important;
	overflow-x: hidden;
}
.btn {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 20px 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background 0.3s;
    display: inline-block;
    text-decoration: none;
	border-radius: 5px;
}
.btn:hover {
    background: #000;
    color: #fff;
}
/* Header Styles */
.header {
    background: white;
    
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}
.header.sticky{

}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left {
    display: flex;
    gap: 2rem;
}
.nav-left{
    list-style: none;
    padding: 0;
    margin: 0;
}
/* .nav-left li {
    margin-bottom: 20px;
} */
.nav-left a {
    text-decoration: none;
    color: #fff;
    font-weight: 400;
    font-size: 18px;
    text-transform: uppercase;
}
.logo a{
    display: block;
}

.nav-right ul{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0;
}
.nav-right ul li {
    display: inline-flex;
    align-items: center;
}
.nav-right ul li a, .nav-right ul li > span {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
}
.search-item span::after, .wishlist-item a::after, .account-item a::after, .cart-item a::after {
    content: '';
    height: 32px;
    width: 32px;
}
.search-item span::after{
    background: url(../images/search-icon.svg);
}
.wishlist-item a::after{
    background: url(../images/wishlist-icon.svg);
}
.account-item a::after{
    background: url(../images/user-icon.svg);
}
.cart-item a::after{
    background: url(../images/bag-icon.svg);
}
a.cart-link, a.wishlist-link {
    position: relative;
}
span.cart-count, span.wishlist-count, .new-count {
    position: absolute;
    top: -8px;
    background: #000;
    color: #fff;
    font-size: 12px;
    line-height: normal;
    right: -8px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.search-box {
    position: absolute;
    width: 100%;
    background: #fff;
    padding: 20px 100px;
	z-index: 1;
	box-shadow: 0px 4px 15px rgba(0, 0, 0, .1);
}
.search-box form {
    margin: auto;
    display: flex;
}
.search-box form button {
    height: 54px;
    padding: 10px 25px;
    background: #000 !important;
    color: #fff !important;
    font-weight: 400;
    font-size: 16px;
    margin: 0 !important;
}
.search-box form input {
    width: 100%;
    border-bottom: 1px solid;
    height: 54px;
    margin: 0;
    font-size: 16px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 3px;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
}

/* Hero Section */
.hero {
    background-size: cover;
    padding: 200px 50px;
	border-radius: 10px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.hero-text h1, .summer-text h2 {
    font-size: 50px;
    font-weight: 500;
    text-transform: uppercase;
    color: #000;
}
.hero-text .subtitle, .summer-text p {
    color: #000;
    margin-bottom: 2rem;
    text-transform: uppercase;
    text-decoration: underline;
    font-size: 22px;
}
.hero-content .btn, .summer-text .btn{
    margin-top: 50px;
}


.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

/* Category Grid */

.category-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.category-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    
}
.cat .category-item {
    transition: 0.3s ease-in-out;
}
.cat .category-item:hover {
    box-shadow: 0px 4px 35px rgba(0, 0, 0, .2);
    transform: scale(1.05);
}
.category-item img {
    width: 100%;
    object-fit: cover;
}
.category-item figure {
    overflow: hidden;
	border-radius: 10px;
}
.category-item figure img {
    transition: 0.3s ease-in-out;
	
}
.category-item:hover figure img {
    transform: scale(1.2);
}
.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #000;
    padding: 2rem;
    text-align: center;
}
.category-overlay h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 20px;
    text-transform: uppercase;
}
.category-overlay a.btn{
    padding: 18px 35px;
}

/* Focus Section */
.focus-section {
    padding: 0 0 50px;
}
.focus-section .focus-text {
    padding: 50px 30px;
/*     background: #000; */
    color: #fff;
	border-radius: 10px;
}
.focus-section .focus-text h2 {
    color: #fff;
}
.focus-section .focus-text p{
    text-decoration: underline;
    font-size: 22px;
}
.focus-section .focus-text h2 {
    font-size: 40px;
    margin-top: 25px;
    font-weight: 500;
}
.focus-section .focus-text a.btn{
    color: #fff;
    border-color: #fff;
    padding: 18px 40px;
    margin-top: 100px;
}
.focus-section .focus-text a.btn:hover{
    background: #fff;
    color: #000;
}
.focus-section .category-item a, .category-grid .category-item a {
    text-decoration: none;
}
.focus-section .category-item h3, .category-grid .category-item h3 {
    font-size: 22px;
    font-weight: 500;
    margin-top: 10px;
    font-family: "Open Sans", sans-serif !important;
}
.focus-section .category-item a span , .category-grid .category-item a span{
    font-size: 15px;
}
.product-item{
/*     height: 546px; */
    overflow: hidden;
}
.products .product {
    display: flex;
}
.product-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
}
@media (max-width: 480px){
    .product-item {
        box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
    }
    .product-item .content-box{
        padding: 15px 15px !important;
    }
    .product-item .content-box h3{
        margin-right: 0 !important;
        margin-bottom: 5px;
    }
}
.product-item a{
    text-decoration: none;
}
.product-item .img-box {
    height: auto;
    background: #F1F2F4;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.product-item .img-box  a{
    display: flex;
}
.product-item .img-box img{
    width: 100%;
	height: auto !important;
    object-fit: cover;
}
.product-item .img-box .add-cart {
    font-size: 16px;
    font-weight: 500;
    position: absolute;
    bottom: -60px;
    left: 25px;
    right: 25px;
    text-align: center;
    background: #fff;
    padding: 15px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: 0.2s ease-in-out;
    opacity: 0;
}
.product-item:hover .img-box .add-cart {
    bottom: 20px;
    opacity: 1;
    text-decoration: none;
}
.product-item .img-box .add-cart:hover{
    background: #000; color: #fff; text-decoration: none !important;
}
.product-item .img-box .add-cart.added, a.added_to_cart {
    display: none;
}
.product-item .content-box{
    padding: 15px 10px;
    background: #fff;
    position: relative;
    transition: 0.2s ease;
}
.product-item:hover .content-box {
/*     margin-top: -40px; */
}
.product-item .content-box h3 {
    font-size: 20px;
    font-weight: 600;
    margin-right: 20px;
	margin-top: 5px;
}
.product-item .content-box .product-price, .amount {
    font-size: 16px;
    margin-top: 10px;
    font-weight: 500;
    line-height: normal;
}
.product-item .content-box .product-price .price, span.woocommerce-Price-amount.amount {
    color: #696969;
    text-decoration: line-through;
    margin-right: 5px;
    font-weight: 600;
}
ins{
    text-decoration: none;
}
ins span.woocommerce-Price-amount.amount {
    color: #000;
    font-weight: 500;
    text-decoration: none;
}
.product-actions .float-icons {
    position: absolute;
    right: -50px;
    top: 10px;
    transition: 0.2s ease-in-out;
    opacity: 0;
}
.product-item:hover .product-actions .float-icons{
    right: 10px;
    opacity: 1;
}
.product-actions .float-icons .yith-wcwl-add-to-wishlist-button, .product-actions .float-icons  a.quick-view {
    height: 45px;
    width: 45px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, .15);
    transition: 0.1s ease-in-out;
}
.product-actions .float-icons .yith-wcwl-add-to-wishlist-button:hover, .product-actions .float-icons  a.quick-view:hover{
    background: #000;
}

.product-actions .float-icons .yith-wcwl-add-to-wishlist-button:hover svg, .product-actions .float-icons  a.quick-view:hover img{
    filter: invert(1);
}
.product-actions .float-icons .yith-wcwl-add-to-wishlist-button svg{
    width: 32px;
    height: 32px;
}
.product-actions .float-icons a.quick-view img {
    height: 24px;
    width: 24px;
}
.product-actions .float-icons .yith-wcwl-add-to-wishlist-button span {
    display: none;
}

.cat-banner h1 {
    font-size: 36px;
    font-weight: 600;
}
.cat-banner p{font-size: 15px; margin-top: 15px; line-height: 1.5em}

.filter-box {
    padding: 15px;
    border: 1px solid #ddd;
}
.filter-box > h3 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid #ddd;
}
h4.filter-title {
    font-size: 16px;
    color: #000;
    margin-bottom: 15px;
}
.filter-content ul.filter-items li label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}
.filter-content ul.filter-items li label a {
    line-height: normal;
    color: #999 !important;
}
.filter-content ul.filter-items li.active label a {
    color: #000 !important;
}
.filter-content ul.filter-items li label input {
    border: 1px solid #000;
    height: 20px;
    width: 20px;
}

.filter-box h3.wp-block-heading {
    font-size: 16px !important;
    color: #000;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label .term-label{
	min-width: 25px;
}
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label:not(.with-image):not(.disabled):hover, .yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.label.active:not(.with-image){
	background: #000;
	border-color: #000;
	box-shadow: none
}

/* Container */
.lk-container {
  margin-inline: auto;
}

.lk-related .yith-add-to-wishlist-button-block{display: none}

/* Grid */
.lk-product-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: start;
}

@media (max-width: 480px){
    .lk-product-grid{
        gap: 10px !important;
    }
}

.title-box {
    display: flex;
    gap: 30px;
    justify-content: space-between;
}
.title-box > a {
    margin-bottom: 15px;
    text-decoration: none;
	width: 185px;
}
a.try-btn span {
    background: #80cbe6;
    padding: 10px 10px;
    font-weight: 500;
	font-size: 15px;
	text-align: center;
	border-radius: 5px;
}
.title-box img {
    width: 100%;
}
.woocommerce-tabs #tab-description p, table.woocommerce-product-attributes {
    font-size: 14px;
}
.yith-add-to-wishlist-button-block.yith-add-to-wishlist-button-block--single {
    position: absolute;
    top: 15px;
}
.quantity-wrapper {
    height: 58px;
}
.single-product form.cart input[type=number]{
    height: 54px;
}
.quantity-wrapper button.qty-btn.qty-minus {
    margin-left: 5px !important;
}
.quantity-wrapper button.qty-btn.qty-plus {
    margin-left: 5px !important;
}

.custom-cat .card:hover .card-front .category-overlay {
	opacity: 0;
}
.lk-summary .woocommerce-product-rating {
    margin-top: 20px !important;
}
.lk-summary .woocommerce-product-rating .star-rating {
    margin-left: 0 !important;
	font-size: 16px;
}
.single-product .woocommerce-product-rating a.woocommerce-review-link {
    font-size: 16px;
}
.single-product .woocommerce-product-rating .star-rating {
    margin-top: 5px;
}

/* Gallery */
.lk-gallery{
    position: relative;
}
.lk-gallery .onsale {
    right: auto;
    left: 1.5em;
    top: 1.5em;
    background: #e72828;
}
.lk-gallery .woocommerce-product-gallery {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.06);
  width: 100% !important;
}
.woocommerce-product-gallery img.wp-post-image {
    width: 100%;
    max-width: unset !important;
}
.woocommerce-product-gallery .zoomImg {
    width: 200% !important;
    height: auto !important;
}
/* Product Meta Box */
.lk-product-meta {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 16px;
  margin: 20px 0 0;
  background: #fff;
}

.lk-product-meta p {
  margin: 8px 0;
  font-size: 15px;
  color: #333;
}

.lk-product-meta .lk-label {
  font-weight: 600;
  margin-right: 6px;
  width: 100px;
    display: inline-block;
}

.lk-product-meta a {
  color: #444;
  text-decoration: none;
  transition: color 0.2s;
}

.lk-product-meta a:hover {
  color: #d62828; /* red hover */
}

/* Action Buttons (Share / Compare / Details) */
.lk-product-actions {
  display: flex;
  gap: 20px;
  margin: 20px 0;
}

.lk-product-actions a {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  gap: 6px;
}

.lk-product-actions a:hover {
  color: #d62828;
}

/* Guarantee Box */
.lk-guarantee-box {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  margin-top: 0px;
}

.lk-guarantee-box h4 {
  margin-bottom: 6px;
  font-size: 16px;
  font-weight: 600;
  color: #111;
	font-family: 'Open Sans' !important;
}

.lk-guarantee-box p {
  font-size: 14px;
  color: #555;
  margin-bottom: 12px;
}

.lk-payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.lk-payment-icons img {
  height: 32px;
  display: block;
}
h2 {
    color: #000;
}
nav.woocommerce-MyAccount-navigation {
    padding: 25px 15px;
    border: 1px solid #ccc;
    background: #fbfbfb;
}
.woocommerce-page .entry-content {
    background: transparent;
}
ol.flex-control-nav.flex-control-thumbs {
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}
ol.flex-control-nav.flex-control-thumbs::after{
	display: none
}
ol.flex-control-nav.flex-control-thumbs li {
    margin-bottom: 0;
}
ol.flex-control-nav.flex-control-thumbs li:last-child {
    margin-right: 0;
}
ol.flex-control-nav.flex-control-thumbs li:not(:last-child) {
    margin-right: 5px;
}
ol.flex-control-nav.flex-control-thumbs li img {
    max-width: 100%;
    width: 100%;
	height: 100px !important;
}

.woocommerce-account nav.woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px !important;
    margin-right: 0 !important;
	margin-right: 0 !important;
    padding-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child{
	padding-bottom: 0;
	border-bottom: none;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation ul li a{
	font-size: 18px;
}
.woocommerce-account nav.woocommerce-MyAccount-navigation ul li.is-active a {
    color: #000 !important;
	text-decoration: none;
}

.woocommerce-MyAccount-content p {
    font-size: 18px !important;
    color: #000;
}

#sb_instagram #sbi_images .sbi_item {
    display: flex;
    border-radius: 10px;
}
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap {
    width: 100%;
    display: flex;
}
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap a.sbi_photo {
    width: 100%;
    display: flex;
}
#sb_instagram #sbi_images .sbi_item .sbi_photo_wrap a.sbi_photo img {
    width: 100%;
    object-fit: cover;
}
#sb_instagram #sbi_images .sbi_item:hover {
    box-shadow: 0px 4px 25px rgba(0, 0, 0, .25);
}
#sb_instagram .sbi_photo {
    height: auto !important;
}
#sb_instagram .sbi_photo img {
    height: auto;
}
#sb_instagram #sbi_images .sbi_item:hover {
    box-shadow: 0px 4px 25px rgba(0, 0, 0, .25);
}

.footer-section ul li a {
    font-size: 16px;
}
.footer-section ul li:not(:last-child) {
    margin-bottom: 10px;
}

/* Quantity Box */
.qty-btn {
  border: 1px solid #333;
  background: #f5f5f5;
  padding: 6px 12px;
  font-size: 18px;
  cursor: pointer;
}

.quantity .qty {
  width: 50px;
  text-align: center;
  border: 1px solid #333;
  margin: 0 5px;
}
nav.woocommerce-breadcrumb {
    font-weight: 500;
}
nav.woocommerce-breadcrumb a {
    color: #696969;
    text-decoration: none;
    font-weight: 400;
}


/* Summary */
.lk-summary {
  display: grid;
  gap: 18px;
}
.lk-summary p.p-sku {
    margin-top: 0;
    margin-bottom: 15px;
    background: #000;
    display: inline-block;
    padding: 3px 15px;
    color: #fff;
    border-radius: 3px;
}
.lk-title {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1em;
  margin: 0;
}

.lk-price {
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 700;
}

.lk-short-desc {
  color: #434343;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}

.lk-extra {
  background: #f7f7f8;
  border: 1px solid #eee;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
}

.lk-cart form.cart {
  display: grid;
  gap: 12px;
  align-items: center;
}

.lk-meta {
  font-size: 13px;
  color: #666;
}

.lk-share {
  border-top: 1px dashed #e6e6e6;
  padding-top: 12px;
}

.lk-trust ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
}

/* Tabs / Related / Upsells spacing */
.lk-tabs,
.lk-related,
.lk-upsells {
  margin-top: 56px;
}

/* Sticky Add to Cart */
.lk-sticky-atc {
  position: fixed;
  left: 0; right: 0; bottom: -120px;
  background: #fff;
  box-shadow: 0 -10px 30px rgba(0,0,0,.08);
  border-top: 1px solid #eee;
  transition: bottom .25s ease;
  z-index: 40;
}
.lk-sticky-atc__inner {
  width: min(1200px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
}
.lk-sticky-atc__title {
  font-weight: 600;
  font-size: 14px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.lk-sticky-atc__price {
  font-weight: 700;
  font-size: 14px;
}
.lk-sticky-atc__btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 999px;
}

/* Breadcrumb spacing */
.lk-breadcrumbs {
  margin: 25px auto 10px;
}

/* Responsive */
@media (max-width: 1024px) {
  .lk-product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .lk-sticky-atc__inner {
    grid-template-columns: 1fr auto;
  }
  .lk-sticky-atc__price {
    display: none;
  }
	.lk-gallery{
		width: 100% !important;
		overflow: hidden;
	}
	.woo-variation-gallery-wrapper {
		min-width: 100% !important;
		min-height: auto !important;
	}
	.woocommerce-breadcrumb {
        margin-bottom: 3rem !important;
    }
}
@media only screen and (min-width: 1168px) {
    .woocommerce-breadcrumb {
        margin-bottom: 3rem;
    }
}

/* Show sticky ATC after scrolled past gallery */
body.lk-show-sticky-atc .lk-sticky-atc { bottom: 0; }



/* Summer Sale Section */
.summer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
    padding: 150px 75px;
    background-size: cover;
	border-radius: 10px
}
.summer-text h2{
    font-size: 46px;
}

/* Product Grid */
.grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

/* Banner Grid */
.banner-grid {
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.banner-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.banner-item img {
    width: 100%;
    object-fit: cover;
}

/* Footer */
.footer {
    color: #000;
    padding-top: 5rem;
}
.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 20px;
    margin-top: 5px;
}
.footer-section h4::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #000;
    margin-top: 15px;
}
.footer-menu {
    list-style: none;
    padding: 0;
    font-size: 16px;
    font-weight: 300;
}
.footer-menu li:not(:last-child){
    margin-bottom: 10px;
}
.footer-menu a, .footer-section a {
    color: #000;
    text-decoration: none;
    display: block;
}
.footer-menu a:hover{
    text-decoration: underline;
}
.footer-section p {
    font-size: 16px;
    line-height: 1.5em;
}
.sub-form {
    border: 1px solid #BCBCBC;
    margin-top: 15px;
    display: flex;
}
.sub-form input {
    border: none !important;
    width: 100%;
    height: 50px;
    background: transparent;
    outline: none !important;
    margin: 0 !important;
}
.sub-form button {
    height: 50px;
    padding: 5px 10px;
    background: transparent !important;
    outline: none !important;
    box-shadow: unset !important;
    border: none !important;
}
.footer-bottom {
    border-top: 1px solid #555;
    margin-top: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
    color: #000;
    font-size: 16px;
}
.policy-menu {
    list-style: none;
    padding: 0;
    font-size: 16px;
}
.policy-menu li:not(:last-child){padding-right: 15px}
.policy-menu li a{text-decoration: none;}
.policy-menu li a:hover{text-decoration: underline;}

.lk-gallery{
	width: 600px;
    position: sticky;
    top: 140px;
}
span.search-icon {
    cursor: pointer;
}
.aws-search-result {
    max-width: 600px;
    transform: translateX(-50%);
    left: 50% !important;
}

.sp-testimonial-item {
    display: flex;
    height: auto;
}
.sp-testimonial-item .sp-testimonial-free {
    padding: 20px;
}
#sp-testimonial-free-wrapper-17331 .sp-testimonial-free-section .testimonial-pagination span.swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #000;
}

article#post-23138 .entry-content {
    background: transparent;
    padding-top: 0;
}
.woocommerce.columns-4 {
    width: 100%;
    max-width: 1240px !important;
}

.product-short-desc {
    font-size: 14px;
    color: #555;
    margin-top: 5px;
}

.product-brand {
    font-size: 14px;
    color: #333;
    margin-top: 6px;
	font-weight: 500;
}

.product-attribute-group {
    margin-top: 10px;
}

.attr-label {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 5px;
    color: #000;
}

.attr-options {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.attr-option {
    border: 1px solid #ccc;
    background: #fff !important;
    color: #999 !important;
    font-size: 13px;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.2s ease;
	margin-left: 0 !important;
}

.attr-option:hover,
.attr-option.active {
    border-color: #000;
    background: #fff !important;
    color: #000 !important;
	outline: none;
}

.product-item .content-box th label {
    font-size: 12px;
    padding-top: 0;
    padding-bottom: 5px;
    font-weight: 500;
}
.product-item .content-box th label span {
    display: none;
}
.product-item .content-box th, .product-item .content-box td {
    border: none;
    padding: 0;
    display: block;
}
.product-item .content-box table.variations tr {
    margin-bottom: 3px !important;
}
.product-item .single_variation_wrap p, .single_variation_wrap .single_variation {
    display: none;
}
.product-item button.wpcbn-btn.wpcbn-btn-single.wpcbn-btn-variable {
    display: none;
}
.product-item .woocommerce-variation-add-to-cart.variations_button.woocommerce-variation-add-to-cart-enabled{
	flex-wrap: nowrap;
}
.product-item .quantity-wrapper{
	width: 120px
}
.product-item .quantity input.qty {
    width: 31px !important;
    padding: 5px 0 5px 4px !important;
	font-size: 16px;
    margin: 0 0 0 10px ;
	height: 100%;
}
.product-item button.qty-btn.qty-plus {
    margin-left: 0 !important;
}
.product-item button.single_add_to_cart_button.button {
    width: 100% !important;
    font-size: 16px !important;
    padding: 10px;
}
.product-item button.single_add_to_cart_button.button:hover {
    border: 1px solid #000;
	outline: none !important
}
.product-item a.reset_variations {
    font-size: 14px;
    margin-left: 0;
}
.product-item .add-to-cart-wrap .button {
    font-size: 16px;
    padding: 10px 25px !important;
    margin-left: 0 !important;
    border: 1px solid #000;
	background: #fff !important;
    color: #000 !important;
	border-radius: 5px;
	outline: none !important;
}
.product-item .add-to-cart-wrap .button:hover {
	background: #000 !important;
    color: #fff !important;
}
.product-item {
    border-radius: 10px;
}
.lk-summary .product-brand {
    font-size: 18px;
}
.product-item .add-to-cart-wrap {
    text-align: right;
}
.woocommerce .lk-related ul.products.columns-4 li.product {
    width: calc(25% - 30px) !important;
	border-radius: 10px;
}

.lk-related ul.products li.product .button {
    margin-top: 25px;
    border: 1px solid #000;
    background: transparent !important;
    color: #000 !important;
    border-radius: 5px;
	margin-left: auto;
	margin-right: 15px;
}
.lk-related ul.products li.product .button:hover{
	background: #000 !important;
    color: #fff !important;
}
.lk-summary span.woocommerce-Price-amount.amount bdi {
    font-size: 32px;
}
.lk-related .related.products ul.products {
/*     padding-top: 35px;
    border-radius: 10px; */
}
.woo-variation-gallery-thumbnail-slider {
    margin-top: 10px !important;
    border-radius: 10px !important;
    overflow: hidden;
}
#yith-wcwl-form{
	max-width: unset !important;
	margin-bottom: 50px;
}
.wishlist-title-container {
    display: none;
}
body.woocommerce-cart .woocommerce{
	max-width: unset !important;
}
.woocommerce .cart-collaterals .cart_totals h2 {
    color: #000;
    font-size: 24px;
}

.woocommerce-account .woocommerce {
    display: flex;
    flex-wrap: wrap;
}

.woocommerce-account .woocommerce-MyAccount-content form label, .woocommerce-account .woocommerce-MyAccount-content form input {
    font-size: 16px !important;
}
.woocommerce-account .woocommerce-MyAccount-content p {
    margin-bottom: 15px !important;
    margin-top: 0;
    padding: 0;
}
span#account_display_name_description {
    font-size: 14px !important;
}
.woocommerce-account .woocommerce-MyAccount-content button.woocommerce-Button.button {
    margin: 0;
    border: 1px solid #000;
    background: transparent;
    color: #000;
    font-size: 18px;
    padding: 15px 40px;
}
.woocommerce-account .woocommerce-MyAccount-content button.woocommerce-Button.button:hover{
	background: #000;
    color: #fff;
}
.woocommerce-billing-fields h3 {
    border-bottom: 1px solid #000;
}
.woocommerce form .form-row .input-text, .woocommerce form .form-row select {
    border: 1px solid #000;
    padding: 15px;
}
body .select2-container span.select2-selection {
    border: 1px solid #000 !important;
    padding: 8px 5px;
    overflow: hidden;
    font-size: 16px;
    background: #f7f7f7;
}
body .select2-container .select2-selection--single .select2-selection__rendered{
    background: #f7f7f7 !important;
}
.select2-container.select2-container--open .select2-dropdown--below {
    background: #f7f7f7;
    border: 1px solid #000 !important;
}
.woocommerce-account .woocommerce-MyAccount-content p .button {
    margin: 0 !important;
    background: #000;
    font-size: 18px;
    color: #fff;
    border-radius: 5px;
    border: 1px solid #000 !important;
}
ul#select2-billing_state-results {
    background: #eee;
}
body .select2-container--default .select2-results__option--highlighted[aria-selected], body .select2-container--default .select2-results__option--highlighted[data-selected] {
    background: #000;
}
table.shop_table.woocommerce-checkout-review-order-table td.product-total, table.shop_table.woocommerce-checkout-review-order-table tr.cart-subtotal td, table.shop_table.woocommerce-checkout-review-order-table tr.order-total td, table.shop_table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping td {
    text-align: right;
}
.woocommerce-checkout form.checkout{
	flex-wrap: wrap
}
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
    width: 100%;
}


/* Responsive Design */

@media (min-width: 768px){
	.woocommerce-account .woocommerce-MyAccount-navigation{
/* 		float: left */
	}
	@media only screen and (min-width: 768px) {
		.woocommerce-breadcrumb {
			margin-bottom: 3rem !important;
		}
	}
}
@media (max-width: 991px){
    .footer-section h4::after {
        margin-left: auto;
        margin-right: auto;
    }
    .prod-details{
        padding-left: 25px !important;
         padding-right: 25px !important;
    }
}
@media (max-width: 768px) {
    .nav-left {
        display: none;
    }

    .burger-menu {
        display: block;
        position: relative;
        width: 34px;
        height: 34px;
        cursor: pointer;
        z-index: 1;
        
    }
    .burger-menu span, .burger-menu span::after, .burger-menu span::before {
        width: 34px;
        height: 2px;
        background-color: #000;
        border-radius: 4px;
        transition-property: transform;
        transition-duration: .15s;
        transition-timing-function: ease;
        position: absolute;
        top: 15px;
    }
    .burger-menu span::before, .burger-menu span::after {
        content: "";
        position: absolute;
    }
    .burger-menu span::before {
        top: -10px;
    }
    .burger-menu.active span {
        transform: translate3d(0, 10px, 0) rotate(45deg);
        top: 8px;
    }
    .burger-menu.active span::before {
        transform: translate3d(0, 10px, 0) rotate(45deg);
        opacity: 0;
    }
    .burger-menu.active span::after {
        transform: translate3d(0, -20px, 0) rotate(-90deg);
        top: 20px;
    }
    .burger-menu span::after {
        top: 10px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .category-row {
        grid-template-columns: 1fr;
    }

    .focus-content {
        grid-template-columns: 1fr;
    }

    .focus-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .summer-content {
        grid-template-columns: 1fr;
        padding: 50px 30px;
    }

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

    .banner-grid {
        grid-template-columns: 1fr;
    }
    .policy-menu {
        flex-wrap: wrap;
    }
    .lk-gallery{position: relative; top: unset; }
	.lk-product-grid {
        grid-template-columns: 1fr;
    }
	.yith-add-to-wishlist-button-block.yith-add-to-wishlist-button-block--single {
		top: 0px;
	}
	
	.woocommerce .related.products ul.products, .woocommerce-page .related.products ul.products{
		flex-direction: unset;
	}
	.woocommerce .lk-related ul.products.columns-4 li.product {
		width: calc(50% - 15px) !important;
	}

    .woocommerce-checkout form #order_review, .woocommerce-checkout form #order_review_heading{
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
	.nav-right{
		width: 50% !important;
	}
	.nav-right ul{
		gap: 10px !important
	}
    .hero {
        padding: 2rem 1rem;
    }

    .products {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    .related.products h2, .up-sells h2 {
        font-size: 24px;
    }
	.title-box {
        flex-wrap: wrap;
        justify-content: unset;
        flex-direction: column;
    }
	.lk-gallery{
		width: 100%
	}
	.woocommerce .lk-related ul.products.columns-4 li.product{
		
		margin-bottom: 0px;
	}
	.woocommerce .lk-related ul.products.columns-4 li.product:last-child{
		margin-bottom: 0
	}
    .cat-banner {
        padding: 15px 0 !important;
    }
    .cat-banner h1 {
        font-size: 24px;
    }
    .cat-banner p {
        margin: 0 !important;
    }
}

.gateway-modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}
.gateway-modal-content {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    width: 320px;
}
.gateway-select {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    font-size: 16px;
    cursor: pointer;
}
#gatewayChoiceModal button.gateway-select {
	margin-left: 0
}

.product-item .img-box img {
	aspect-ratio: 9/16;
}

/* .custom-cat .card:hover .category-overlay {
	background: #F5F5DC;
} */

.custom-cat .card:hover h3,
.custom-cat .card:not(:hover) *{
	color: #000;
}




