body{
	margin:0;
	padding:0;
	font-family:gotham;
	transition:all .8s ease;
}
@font-face{
    font-family:'gotham';
    src:url('Fonts/Gotham-Medium.otf');
}
section{
	width:100%;
}
.inner_section{
	width:90%;
	max-width:1400px;
	margin:auto;
}
.hero .inner_section{
    background: linear-gradient(340deg,rgba(133, 20, 24, 1) 1%, rgba(213, 32, 38, 1) 100%);
	padding:40px 0px;
	border-radius:20px;
}
section .column{
	display:flex;
	flex-direction:row;
	justify-content:space-between;
	align-items:center;
}
.hero .column .left, .hero .column .right{
width:50% !important;}

.hero .column .right{
	font-size:50pt;
}
#cycle-word{
	color:#fff;
}
    .viewer-section {
        width: 100%;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .viewer-container {
        height: 600px;
        border-radius: 20px;
        overflow: hidden;
        background: none;
        position: relative;
    }

    canvas {
        display: block;
    }

    .viewer-title {
        position: absolute;
        top: 20px;
        left: 20px;
        color: #fff;
        font-size: 18px;
        opacity: 0.8;
    }
	.buttons{
		margin-top:-70px;
	}
	.buttons a{
		text-decoration:none;
		color:#000;
		background:#fff;

		font-size:17pt;
		padding:10px;
	}
	.categories .inner_section{
		align-items:start;
		justify-content:space-between;
	}
	.categories .inner_section .left{
		display:block;
		height:100%;
		top:120px;
		position:sticky;
	}
	.categories .inner_section .left{
		width:20%;
	}
	.categories .inner_section .right{
		width:80%;
	}
	.categorybox, .cart_button{
		width:90%;
		padding:10px;
		margin-bottom:10px;
		outline:none;
		border:none;
		position:relative;
		font-size:17pt;
	}
	.categories .column .right{
		    display: grid;
			grid-template-columns: 1fr 1fr 1fr 1fr;
			gap: 30px;
	}
	.product{
		padding:20px 10px;
		box-shadow:2px 4px 10px rgba(0,0,0,.2);
		border-radius:10px;
		transition: all 0.3s ease;
	}
	.product h2, .product p{
		font-size:17px;
	}
	.product .details button{
		width:100%;
		padding:10px 0px;
		margin-bottom:5px;
		outline:none;
		border:none;
		background:#ce222a;
		color:#fff;
	}
	.product:hover{
		transform:scale(1.05);
		transition:.8s ease;
	}
	.product .viewer img{
		width:150px;
	}
	.categorybox.active {
    background-color: #ce222a;
    color: #fff;
	transition:.8s ease;
}
.cart_button{
	background:#000;
	color:#fff;
}
#search-input {
    width: 300px;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 8px;
    border: 1px solid #ccc;
}
.search{
	padding:20px 0px;
}
.search{
	position: sticky;
	background:#fff;
	top:0;
	z-index:9999;
}
button{
	cursor:pointer;
}
.button{
	text-decoration:none;
	color:#fff;
	box-shadow:2px 4px 8px rgba(0,0,0,.3);
	background:#ce222a;
	padding:10px 20px;
	outline:none;
	border:none;
	font-size:17px;
}
.product_section .inner_section{
	align-items:start;
}
.other_imgs{
	display:flex;
	flex-wrap:wrap;
	width:100%;
	align-items:center;
	justify-content:space-between;
}
.other_imgs .box{
	width:22%;
	height:150px;
}
.other_imgs .box img{
    width:200px;
}
.product_section .inner_section .left, .product_section .inner_section .right {
	width:49%;
}
.related-products {
    margin-top: 50px;
    padding: 20px;
    border-radius: 12px;
}

.related-products h2 {
    color: #fff;
    margin-bottom: 20px;
}

.swiper-slide {
    background: #fff;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
	width:200px !important;
	height:150px !important;
	box-shadow:none;
	border:1px solid #ce222a;
}

.swiper-slide h3 {
    font-size: 16px;
    margin-top: 10px;
}

.swiper-slide img {
    display: block;
    margin: 0 auto;
	width:100px !important;
}
.product_btn{
	color:#000;
	text-decoration:none;
}
.bi-star-fill{
	color:#ce222a;
	font-size:20pt;
	margin-right:10px;
}
.other_imgs .box img{
	width:100%;
}
.cart_page .inner_section{
	width:50%;

}
.cart_items .column{
	width:100%;
	border:1px solid red;
	border-radius:10px;
	position:relative;
	margin-bottom:10px;
	padding:10px;
}
.cart_items .column .left{
	width:25%;
}
.cart_items .column .right{
	width:65%
}
.cart_items .inner_section form input{
	padding:10px;
	margin:5px 0px;
}
.size input, .quantity{
	width:70px !important;
	padding:10px;
}
.size select{
	width:70px !important;
	padding:10px;
}
select{
	padding:10px;
	width:100%;
	margin:10px 0px;
}
textarea{
	width:100%;
	height:100px;
}
.remove{
	background:none;
	outline:none;
	border:none;
	font-size:30pt;
	color:#ce222a;
	position:absolute;
	top:10px;
	right:10px;
}
.empty_cart{
	position:absolute;
	top:35%;
	left:50%;
	transform:translate(-50%, -50%);
}
.empty_cart h2{
	font-size:30pt;
	color:#ce222a;
	text-align:center;
}
.empty_cart h3{
	text-align:center;
}
.empty_cart a{
	text-decoration:none;
	color:#fff;
	background:#ce222a;
	padding:10px;
	justify-content:center;
	display:flex;
}
footer{
	background:#ce222a;
	overflow:hidden;
	margin-top:100px;
}
footer h2{
	margin-top:0;
}
footer .inner_section{
	display:flex;
	align-items:start;
	justify-content:space-between;
	padding:20px 0px;
}
footer .inner_section .left{
width:30%;
color:#fff;
padding:0px 10px;
}
footer .inner_section .middle{
	width:50%;
	color:#fff;
	padding:0px 10px;
}
footer .inner_section .right a{
	text-decoration:none;
	color:#fff;
	padding:0px 10px;
}
footer .inner_section .right{
	width:20%;
	color:#fff;
}
footer .inner_section{
	padding:20px;
}
footer .inner_section .left img, .navigation .inner_section .left img{
	width:150px;
	margin-left:-7px;
}
footer .inner_section .middle a{
	background:#000;
	color:#fff;
	padding:10px;
	text-decoration:none;
}
.lower_footer{
	width:100%;
	background:#000;
	color:#fff;
	padding:5px;
	text-align:center;
}
form .cart_col{
	width:100% !important;
	margin-left:-10px;
}
form .column .left, form .column .right{
	width:49% !important;
}
.quotation_form .inner_section{
	width:60%;
	max-width:600px;
	border:1px solid #ce222a;
	border-radius:15px;
	padding:50px;
	background:#fff;
}
.quotation{
	background:url('IMGS/Checkout.jpg');
	background-size:cover;
}
.quotation_form{
	margin:auto;
}
.quotation_form input, textarea{
	width:100%;
	padding:10px;
}
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}

body {
    top: 0px !important;
}
.skiptranslate{
	display:none !important;
}
.navigation{
	background:#fff;
}
nav ul{
	display:flex;
	list-style:none;
}
nav ul select{
	margin-right:10px;
}
nav ul button{
	background:none;
	outline:none;
	border:none;
	font-size:17pt;
	padding:0px 20px;
	transition:.8s ease;
}
nav ul button:hover{
	color:#ce222a;
}
.contact .column{
	height:300px;
	color:#fff;
	padding:0px 20px;
}
.contact .column .left h2{
	font-size:30pt;
}
.contact_us .column{
	padding:20px 0px;
	align-items:start;
}
.contact_us .column .left{
	width:35% !important;
}
.contact_us .column .right{
	width:66% !important;
}
.contact_us .column .right form{
	padding:0px 100px;
}
.contact_us .column .right form input, .contact_us .column .right form textarea{
	width:100%;
	padding:10px;
	margin:20px;
}
.contact_us .column .right form label{
	margin:0px 20px;
}
.submit{
	background:#ce222a;
	color:#fff;
	outline:none;
	border:none;
	cursor:pointer;
}
.success-box {
    font-weight: 500;
    text-align: center;
    width:100%;
    height:100%;
}
.whatsapp{
 position:fixed;
 bottom:20px;
 right:20px;
 z-index:999999;
 font-size:50pt;
 color:#000;
 animation:2s ease whatsapp infinite;
}
.whatsapp img{
 width:100px;   
}
@keyframes whatsapp{
 0%{
     bottom:20px;
 }   
 50%{
     bottom:50px;
 }
 100%{
     bottom:20px;
 }
}
#success-wrapper {
    text-align: center;
    margin: 30px auto;
    position:absolute;
    top:30%;
    left:50%;
    transform:translate(-50%, -50%);
    background: #fff;
    border: 1px solid #b7ebc6;
    padding: 35px 50px;
    height:auto;
    width:90%;
    max-width: 400px;
    border-radius: 6px;
    box-shadow:2px 4px 10px rgba(0,0,0,.4);
}
.close-btn{
 background:none;
 border:none;
 outline:none;
 float:right;
}
.close-btn i{
 color:#ce222a;
 font-size:20pt;
}
.burger-btn{
    display:none;
    border:none;
    background:none;
    font-size:32px;
    cursor:pointer;
}
#cart_button_2{
    background:none;
    border:none;
    outline:none;
    font-size:30px;
    display:none;
}
@media screen and (max-width:1480px){
    	.cart_items .column{
    	    flex-direction:column;
    	}
	.cart_items .column .left, .cart_items .column .right{
	    width:100%;
	}
}
@media screen and (max-width:1080px){
    	.categories .column .right{
		    display: grid;
			grid-template-columns: 1fr 1fr 1fr;
			gap: 30px;
	}
	footer .column .left{
	    width:40%;
	}
		footer .column .middle{
	    width:25%;
	}
		footer .column .right{
	    width:30%;
	}
		.categorybox, .cart_button{
		width:90%;
		padding:10px;
		margin-bottom:10px;
		outline:none;
		border:none;
		overflow:hidden;
		position:relative;
		font-size:15pt;
	}
	form .column .left, form .column .right{
	    width:100% !important;
	}
	.hero h2{
	    font-size:80px;
	}
}
@media screen and (max-width:800px){
    #cart_button_2{
    background:none;
    border:none;
    outline:none;
    font-size:30px;
    display:block;
}
    .product_section .column:nth-child(1){
        flex-direction:column;
    }
    .product_section .column .left, .product_section .column .right{
        width:100%;
    }
    .contact_us .column{
        flex-direction:column;
    }
    .contact_us .column .left, .contact_us .column .right{
        width:100% !important;
    }
    .contact_us .column .right form{
        padding:0px;
        width:80%;
    }
    	.categories .column .right{
		    display: grid;
			grid-template-columns: 1fr 1fr;
			gap: 30px;
	}
	footer .column{
	    flex-direction:column;
	}
	footer .column .left, footer .column .middle, footer .column .right{
	    width:100%;
	    margin-bottom:30px;
	}
	 .burger-btn{
        display:block;
        margin-bottom:5px;
    }

    .menu-items{
        display:none;
        width:100%;
    }
    .cart_page .inner_section{
        width:90%;
    }

.hero h2{
	    font-size:60px;
	}
    .menu-items.active{
        display:block;
        position:absolute;
        width:300px;
        background:#fff;
        padding:20px 20px;
        box-shadow:2px 8px 12px rgba(0,0,0, .4);
        transform-origin: 0% 0%;
        animation:.4s menu ease-in-out forwards;
    }

    .categorybox,
    .cart_button{
        width:100%;
    }
    .categories .column .left{
       width:10% !important; 
    }
    .category .column .right{
       width:90% !important; 
    }
}
   @keyframes menu{
       0%{
           transform:scale(0);
       }
       60%{
           transform:scale(1.03);
       }
       100%{
           transform:scale(1);
       }
   } 
@media screen and (max-width:650px){
   .hero h2{
       font-size:50px;
   } 
}
.cart_counter{
    position:relative;
}
.cart_counter span{
    color:#fff;
    background:#ce222a;
    font-size:14px;
    width:25px;
    height:25px;
    display:flex;
    align-items:center;
    border-radius:100%;
    text-align:center;
    justify-content:center;
    position:absolute;
    z-index:9999;
    top:-10px;
    right:-10px;
    transition:.8s ease;
} 
.notranslate {
    translate: no;
}