body{
	margin:0;
	padding:0;
	font-family:gotham;
}
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;
	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;
		overflow:hidden;
		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;
	width:100%;
	align-items:center;
	justify-content:space-between;
}
.other_imgs .box{
	width:22%;
	height:150px;
	background:#000;
}
.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:600px;
	border:1px solid #ce222a;
	border-radius:15px;
	padding:50px;
	background:#fff;
}
.quotation{
	background:url('IMGS/Checkout.jpg');
	background-size:cover;
}
.quotation_form{
	width:40%;
	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;
}