

body{font-family:Montserrat,sans-serif}.center{margin:auto;background-color:#fff;z-index:100;position:relative;height:100px;width:100%;box-shadow:0 1px 15px rgb(0 0 0 / 8%);border-bottom:none;border-bottom-width:1px;border-bottom-style:solid;border-bottom-color:#eee}.igetlogo{width:auto;height:100px;margin:auto;display:block}#cart{padding-bottom:20px;margin:auto}#content{flex:1 0 auto}.input-text{padding:.84em .77em;pointer-events:none;position:absolute;left:0;top:0;transition:.2s;transition-timing-function:ease;opacity:.5;width:100%}.link{text-decoration:none;color:#212121;-webkit-transition:color .2s ease-in-out;transition:color .2s ease-in-out}@media (max-width:500px){.cart{padding-left:10px;padding-right:10px}#jcart{padding:0;margin:0}}
 
.header {
    display: flex;
    align-items: center; /* Align items vertically center */
    justify-content: center; /* Horizontally center items */
    margin-top: 20px;
    max-width: 1500px;
    margin: auto;
    position: relative;
    height: 80px;
}
.header h1{
    margin: 7px 0 0 10px;
    font-size: 30px;
    font-weight: 700;
}
.carticon{
    height: 50px;
}
.goback img{
    height: 20px;
    margin-right: 5px;
    margin-bottom: 2px;
}
.goback{
    background: transparent;
    border: none;
    position: absolute;
    left: 0;
    opacity: 0.6;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    padding-left: 20px;
    top:40px;
}


.container{
    display: grid;
    grid-template-columns: 60% 0% 40%;
    max-width: 1500px;
}
.container .cart{
    width: 100%;
}

.mayalso{
    text-align: center;
    margin-top: 60px
}
.mayhead h2{
    font-weight: 600;
    font-size: 27px;
}
.mayalsoslides{
     position: relative;
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    max-width: 1400px;
    margin: auto;
}
.separator {
    z-index: 100;
    width: 1px; /* Adjust the width of the separator */
        background-color: rgba(252, 231, 242, 0.4);

    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1); /* Box shadow on both sides */
    height: 50%;

    position: absolute;
    right: 0;
    top: 30%
    
}

.swiper-slide{
    padding: 20px;
    position: relative;
    height: auto;
    
        
}
.swiper-slide:last-child > .separator {
    display: none;
}

.mayalsoslides{
    grid-gap: #000;
}
.product{
    
}
.product img{
    width: 60%;
}
.product h3{
    font-size: 17px;
}
.product h4{
    font-size: 15px;
    font-weight: 400;
    opacity: 0.5;
}
.add-to-cart {
    bottom: 5px;
    background-color: #fff;
    border: 1px solid #000;
    height: 30px;
    width: 50%;
    min-width: 110px;
    right: 10%;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: background-color 0.3s, color 0.3s;
}

.add-to-cart:hover {
    background-color: #000;
    color: #fff;
}

.totals{
    min-width: 200px !important;
    padding: 15px 20px 35px 50px;
}
.totals table{
    height: auto;
}
.cart{
    max-height: 60vh;
    overflow-y: scroll;
    padding-right: 10px;
}

/* For WebKit-based browsers (Chrome, Safari) */
.cart::-webkit-scrollbar {
    width: 8px; /* Adjust the width as needed */
}

.cart::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.23); /* Adjust the color as needed */
    border-radius: 6px; /* Adjust the border-radius as needed */
}

.cart::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.7); /* Adjust the hover color as needed */
}

.jcart-item-image {
  padding: 10px;

  position: relative;
  max-height: 130px;
    max-width: 130px;
}
.pimage {
  display: inline-block;
  height: 120px;
  vertical-align: center;
  border: none;
  border: 1px solid;
  border-color: #fad9d9;
  border-radius: 8px;
  text-align: center;
  vertical-align: middle;
  margin: auto;
  background-color: #fff;
    padding: 15px;
}
.jcart-item-name {
  font-size: 20px;
  font-weight: 400;
  line-height: 20px;
  position: relative;
    padding-left: 10px;
    
}
.jcart-item-name p1 {
  padding: 0;
  margin: 0;
  font-weight: 500;
  font-size: 18px;
}
.jcart-item-name p2 {
  font-size: 16px;
  font-weight: 300;
}
.jcart-item-price{
    text-align: center;
}

.quantity{
    display: flex;
    justify-content: center;
}
.plus, .minus{
    height: 30px;
    width: 30px;
    text-align: center;
    background-color: #fff;
    border: 1px solid rgba(0,0,0,.2);
}
.plus{
    border-bottom-right-radius: 1px;
    border-top-right-radius: 1px;
	border-left: none;
	transform: translate(-17px,0);
	-webkit-border-top-left-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
	border: 1px solid #ccc;
	z-index: 1;
	height: 35px;
}
.minus{
    border-top-left-radius: 1px;
    border-bottom-left-radius: 1px;
	border: 1px solid #ccc;
	border-right: none;
	z-index: 1;
	height: 35px;
}
.minus::before{
	content: "";
	position: absolute;
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px solid #000;
	border-radius: 1px;
	border-left: 1px solid #000;
	z-index: 1;
	transform: translateY(-50%) rotate(-45deg);
	cursor: pointer;
}
.plus::before{
	content: "";
	position: absolute;
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px solid #000;
	border-left: 1px solid #000;
	border-radius: 1px;
	z-index: 1;
	transform: translateY(-50%) rotate(135deg);
	cursor: pointer;
}

.quantitycart{
    width: 30px;
	height: 35px;
	transform: translate(-8px,0);
    font-size: 12px;
    text-align: center;
    border: 1px solid #ccc;
    border-left: none;
    -webkit-border-left: 0px;
    border-right: none;
    -webkit-border-right: 0px;
	padding: 2px;
	font-weight: 600;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	-webkit-border-radius: 0px;

	z-index: 2;
	position: relative;
}
.quantitycart:focus{
	outline: none;
}
.jcart-item-remove{
    max-width: 100px
}
.jcart-remove{
    color: #bbb;
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 20px
}
.jcart-remove:hover{
    text-decoration: none;
    color: #000;
    transition: 0.5s;
}
.content{
    position: relative;
}
.border{
    background-color: #000;
    height: 1px;
}
.bottom{
    font-weight: 500;
    position: sticky;
    bottom: 0;  
    background-color: #fff;
    z-index: 10;
}
.bottom td{
    padding-top: 10px;
}
.bottom::after {
    content: '';
    position: absolute;
    top: 0px; /* Adjust as needed */
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}


.jcart-promo span{
    font-size: 12px;
    color: #aaa;
    letter-spacing: 1px;
}
.promocode{
    display: flex;
    margin-bottom: 20px;
    width: 100%;
}
.promocode input{
    width: 60%;
    border-radius: 0;
    height: 45px;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 13px;
    
}
.promocode input:focus{
  outline: 2px solid #6E67F1; /* Example outline */
  border-right: none;
  outline-offset: -2px; /* Optional, adjust offset as needed */
  border-radius: 0px; /* Adjust the border radius as needed */
}
.promocode button{
    width: 40%;
    border: 1px solid #182b43;
    background-color: #182b43;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 10px;
    height: 45px;
}


.totals table{
    table-layout: fixed;
    width: 100%;
}
.totals table td:nth-child(2){
    text-align: right;

}
.totals a{
	text-decoration: none;
	color: inherit;
}
.checkoutr{

}
.checkout{
    width: 100%;
    display: flex;
    align-items: center; /* Align items vertically center */
    justify-content: center; /* Horizontally center items */
    height: 45px;
    color: #fff;
    background-color: #d6ab67;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    border: 1px solid #d6ab67;
    bottom: 0;
	margin-top: 20px;
}
.continue{
    width: 100%;
    display: flex;
    align-items: center; /* Align items vertically center */
    justify-content: center; /* Horizontally center items */
    height: 45px;
    color: #000;
    background-color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    border: 1px solid #000;
    margin-top: 10px;
}
.checkout svg{
    height: 15px;
    margin-right: 5px;
    margin-bottom: 2px
}



.empty{
    text-align: center;
    color: #5e6175;
    margin: auto;
}
.empty h1{
    position: relative;
    top: -60px;

    margin: 0
}
.emptycart{
    width: 50vw;
    max-width: 800px;
}
@media(max-height: 1200px){
    .emptycart{
        width: auto;
        height: 60vh;
    }
    .empty h1{
        top: -50px;
        font-size: 35px;
    }
}
@media(max-width: 1200px){
    .emptycart{
        width: 60vw;
    }
    .empty h1{
        top: -50px;
        font-size: 35px;
    }
}
@media(min-width: 1000px){
	    .container .cart{
        margin-left: auto;
    }
}
@media(max-width: 1000px){
    .emptycart{
        width: 70vw;
    }
    .empty h1{
        top: -40px;
        font-size: 32px;
    }
    .totals{
        padding: 30px;
    }
    .mayalsoslides{
        grid-template-columns: 33.3% 33.3% 33.3%
    }
    .swiper-slide:last-child{
        display: none;
    }
    .container .cart{
        padding-right: 0px !important;
        margin-right: 0px;
        max-height: 10000px;
    }
}

.continueshopping{
    width: 300px;
    margin: auto;
    height: 45px;
    color: #fff;
    background-color: #5e6175;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid #5e6175;
    margin-top: 10px;
}
.continueshopping img{
    height: 20px;
    margin-left: 10px;
}
@media(max-width: 1000px){
    .container{
        grid-template-columns: 100%;
    }
    .checkout{
        position: inherit;
    }
    .cart{
        overflow-x: hidden;
       
    }
}
@media(max-width: 800px){
    .mayalsoslides{
        grid-template-columns: 50% 50% ;
    }
    .swiper-slide:nth-child(3){
        display: none;
    }
    .swiper-slide:nth-child(3) > .separator {
        display: none;
    }
    .jcart-item-remove a{
        padding: 0px;
    }
	.jcart-item-name{
        padding-right: 10px;
        padding-left: 0px;
    }
    .jcart-item-price{
        padding-right: 10px;
    }
    .bottom td:first-child{
        display: none;
    }
    .bottom td:nth-child(2){
        padding-left: 30px;
    }
    .bottom td{
        white-space: nowrap;
    }
}
/* Base styles */

@media(min-width: 650px){
    .remove{
        display: inherit;
    }
    .x{
        display: none;
    }
    .jcart-item-image {
        width: 15%;
    }
    .jcart-item-qty {
        width: 15%;
    }
    .jcart-item-price {
        width: 15%;
    }
    .jcart-item-remove {
        width: 10%;
    }
}

@media(max-width: 650px){
    .remove{
        display: none;
    }
    .x{
        display: inherit;
        float: right;
    }
    .jcart-item-image {
        width: 20%;
    }
    .jcart-item-name {
        width: 40%;
    }
    .jcart-item-qty {
        width: 15%;
    }
    .jcart-item-price {
        width: 20%;
    }
    .jcart-item-remove{
        width: 5%;
    }
	.header h1{
		font-size: 22px;
		font-weight: 600;
	}
	.carticon{
		height: 30px;
	}
}

@media(max-width: 520px){
    .jcart-item-image {
        width: 25%;
    }
    .jcart-item-name {
        width: 45%;
    }
    .jcart-item-qty {
        width: 10%;
    }
    .jcart-item-price {
        width: 15%;
    }
    .jcart-item-remove {
        width: 5%;
    }
    .jcart-item-name p1{
        font-size: 14px !important;
        line-height: 16px;
    }
    .jcart-item-price{
        font-size: 12px;
        padding: 0;
        font-weight: 500;
    }
    .pimage{
        height: 100px;
        padding: 5px;
    }
    .quantitycart{
        height: 30px;
        width: 40px;
        border-right: 1px solid #ccc;
        border-left: 1px solid #ccc;
    }
    .plus, .minus{
        display: none;
    }
    .bottom td:nth-child(2){
        padding-left: 20px;
    }
    .totals{
        padding-left: 0;
        padding-right: 0;
    }
}

@media(max-width: 450px){
    .jcart-item-image {
        width: 22%;
				padding-left: 0;
    }
    .jcart-item-name {
        width: 48%;
    }
    .jcart-item-qty {
        width: 10%;
    }
    .jcart-item-price {
        width: 20%;
    }
    .jcart-item-remove {
        width: 5%;
    }
    .jcart-item-name p1{
        font-size: 13px !important;
        line-height: 16px;
    }
    .jcart-item-name p2{
        font-size: 13px;
        line-height: 16px;
    }
	.pimage{
		height: 80px;

	}
}

