/* GLOBAL_CSS_CHANGES_START_FROM_HERE */
* {
    margin: 0px;
    padding: 0px;
	box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, p, span, ul, li, a, .btn-default, textarea, label {
    margin: 0;
    padding: 0;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: none;
}
a:focus {
    text-decoration: none;
}
button, input, textarea,select {
    outline: none !important;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}
select.minimal {
    background-image: url(../images/selectArrow.png);
    background-position: calc(100% - 15px) calc(1em + 15px);
    background-repeat: no-repeat;
}
/* GLOBAL_CSS_CHANGES_END_HERE */

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
/* Chrome, Safari, Edge, Opera */

/* GLOBAL_VAR_CSS_START_FROM_HERE */
:root {
    --white: #ffffff;
    --black1: #0e0e0e;
    --black: #000000;
    --main-color: #d5ad17;
    --michroma-regular: "Michroma-Regular";
    --interDisplay-regular: "InterDisplay-Regular";
}
/* GLOBAL_VAR_CSS_CSS_HERE */

/* FONT_CSS_START_FROM_HERE */
@font-face {
    font-family: "Michroma-Regular";
    src: url("../webfonts/Michroma-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
@font-face {
    font-family: "InterDisplay-Regular";
    src: url("../webfonts/InterDisplay-Regular.ttf");
    font-weight: regular;
    font-style: normal;
}
/* FONT_CSS_END_HERE */

/* SCROLL-CSS */
body::-webkit-scrollbar {
    width: 5px;
}
body::-webkit-scrollbar-track {
    background: var(--white); 
}
body::-webkit-scrollbar-thumb {
	background-color: var(--black);
}
/* SCROLL-CSS */

/* LOADER-CSS */
/* LOADER-CSS */

/* COMMON-CSS */

.main_heading{
    font-size: 38px;
    color: var(--white);
    font-family: var(--michroma-regular);
}
.desc{
    font-size: 18px;
    color: var(--white);
    font-family: var(--interDisplay-regular);
}
.desc span{
    font-weight: 600;
}
.common_light_btn{
    font-size: 18px;
    color: var(--white);
    background-color: transparent;
    font-family: var(--interDisplay-regular);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 33px;
    border: 1px solid var(--white);
    transition: 0.4s ease;
}
.common_light_btn:hover{
    background-color: var(--white);
    color: var(--black);
    border: 1px solid var(--black);
    transform: scale(0.92);
}
.common_dark_btn{
    font-size: 18px;
    color: var(--black);
    background-color: var(--white);
    font-family: var(--interDisplay-regular);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    border: 1px solid var(--black);
    transition: 0.4s ease;
}
.common_dark_btn:hover{
    background-color: var(--main-color);
    color: var(--white);
    border: 1px solid var(--white);
    transform: scale(0.92);
}
/* COMMON-CSS */

/* HEADER-CSS */

.header_wrapper{
    padding: 20px 0px;
    background-color: var(--white);
}
.header_wrap_main_flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 25px 0px;
    gap: 20px;    
}
.header_wrap_logo{
    max-width: 220px;
}
.header_wrap_logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header_wrap_search{
    width: 900px;
    position: relative;
}
.header_wrap_search input{
    font-size: 15px;
    color: #555555;
    font-family: var(--interDisplay-regular);
    width: 100%;
    height: 45px;
    border: 1px solid lightgray;
    background-color: transparent;
    padding: 10px 40px 10px 20px;
}
.header_wrap_search button {
    font-size: 18px;
    background-color: transparent;
    border: none;
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 99;
    width: 40px;
    height: 45px;
    border-radius: 50px;
    transition: 0.3s ease;
}
.header_wrap_search button:hover{
    background-color: var(--main-color);
    color: var(--white);
}
.header_wrap_btns {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header_wrap_btn_f{
    display: flex;
    align-items: center;
    gap: 20px;
}
.header_wrap_main_links ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header_wrap_main_links ul li a{
    font-size: 16px;
    color: var(--black);
    font-family: var(--michroma-regular);
}
.header_wrap_main_links ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .5s ease;
}
.header_wrap_main_links ul li a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}
.SMN_effect-31 a {
	position: relative;
	overflow: hidden;
	display: block;
	text-align: center;
	-webkit-box-flex: 1;
	-webkit-flex-grow: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	padding: 0;
}
.SMN_effect-31 a span {
	display: block;
	-webkit-transition: -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.SMN_effect-31 a:after {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	content: attr(data-hover);
	display: inline;
	text-align: center;
	-webkit-transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
	transition: top 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.SMN_effect-31 a:hover span {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}
.SMN_effect-31 a:hover:after {
	top: 0;
}
.SMN_effect-31 a:active {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}
/* HEADER-CSS */

/* INDEX-CSS */

.index_banner_wrapper{
    padding: 120px 0px 250px 0px;
    background-color: #0e0e0e;
    position: relative;
}
.index_banner_wrapper::before,
.index_banner_wrapper::after {
    background-repeat: repeat-y;
    background-position: center center;
    background-size: cover;
    z-index: 111;
    content: '';
    position: absolute;
    width: 30%;
    height: 100%;
    top: 0;
    animation: scroll 3000s infinite linear;
}
.index_banner_wrapper::before {
    left: 0;
    background-image: url(../images/slide_img.jpeg);
    animation-direction: reverse;
}
.index_banner_wrapper::after {
    right: 0;
    background-image: url(../images/slide_img.jpeg);
}
.index_banner_wrap_text{
    text-align: center;
}
.index_banner_wrap_text h1{
    margin: 0px 0px 20px 0px;
}
.index_banner_wrap_text p{
    margin: 0px 0px 30px 0px;
}
.index_banner_wrap_btns{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.scroll_btn {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    z-index: 999;
}
.scroll_btn i {
    background-color: var(--main-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    border-radius: 50px;
    font-size: 33px;
}
.scroll_btn i::after {
    content: '';
    background: url(../images/scroll_bg.png) no-repeat center center white;
    background-size: 88%;
    aspect-ratio: 1/1;
    width: 180%;
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    translate: -50% -50%;
    z-index: -1;
    animation: spin 10s infinite linear reverse;
    filter: drop-shadow(0px 0px 5px #00000050);
}
.index_first_wrapper{
    padding: 100px 0px 130px 0px;
    position: relative;
}
.index_first_wrap_ttext_f{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px 0px 60px 0px;
}
.index_first_wrap_ttext_f h6{
    color: var(--black);
}
.index_first_cr_box_img{
    margin: 0px 0px 20px 0px;
    height: 350px;
    overflow: hidden;
    position: relative;
}
.index_first_cr_box_text{
    text-align: center;
}
.index_first_cr_box_text h5{
    font-size: 24px;
    color: var(--black);
    font-family: var(--michroma-regular);
    margin: 0px 0px 10px 0px;
}
.index_first_cr_box_text p{
    font-size: 25px;
    color: var(--black);
}
.index_first_cr_box_img_hov{
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;
    transition: 0.5s ease;
}
.index_first_cr_box1:hover .index_first_cr_box_img_hov{
    opacity: 1;
}
.marquee_wrapper {
    position: absolute;
    left: 0px;
    bottom: 0px;
    z-index: 99;
}
.marquee_wrapper ul {
    display: flex;
    align-items: center;
    gap: 15px;
    animation: marquee 30s linear infinite;
    overflow: hidden;
    width: 600vw;
}
.marquee_wrapper ul li{
    font-size: 35px;
    color: var(--black);
    font-family: var(--michroma-regular);
    display: flex;
    align-items: center;
    gap: 20px;
    text-transform: uppercase;
}
.marquee_wrapper ul li img{
    animation: rotate 10s linear infinite;
}
.index_second_wrapper{
    padding: 100px 0px;
}
.index_second_main_box{
    background-color: #f8f8f8;
}
.index_second_box_text {
    padding: 0px 20px 0px 0px;
}
.index_second_box_text h6{
    color: var(--black);
    margin: 0px 0px 15px 0px;
}
.index_second_box_text p{
    color: #111111;
    opacity: 0.6;
    margin: 0px 0px 20px 0px;
}
.index_second_box_btn{
    display: flex;
}
.index_second_box_img{
    overflow: hidden;
    width: 100%;
    height: 650px;
}
.index_second_box_img img{
    transition: 0.8s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_second_box_img:hover img{
    transform: scale(1.1);
}
.index_third_wrapper{
    padding: 100px 0px;
    background-color: var(--black);
}
.index_third_wrap_ttext_f{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0px 150px;
    margin: 0px 0px 60px 0px;
}
.index_third_cr_box_img{
    width: 100%;
    overflow: hidden;
    margin: 0px 0px 20px 0px;
}
.index_third_cr_box_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.index_third_cr_box_img img{
    transition: 0.8s ease;
}
.index_third_cr_box:hover .index_third_cr_box_img img{
    transform: scale(1.1);
}
.index_third_cr_box_text{
    text-align: center;
}
.index_third_cr_box_text h5 {
    font-size: 24px;
    color: var(--white);
    font-family: var(--michroma-regular);
}
.swiper_button_f{
    display: flex;
    align-items: center;
    gap: 20px;
}
.swiper_button_f i{
    font-size: 40px;
    color: var(--white);
}
.swiper_button_f .swiper-button-disabled {
    opacity: 0.5 !important;
}
.index_fourth_wrapper {
    padding: 50px 0px;
}
.index_fourth_wrap_text {
    text-align: center;
    margin: 0px 0px 30px 0px;
}
.index_fourth_wrap_box_bg {
    background-color: #f8f8f8;
    padding: 20px 20px;
    text-align: center;
}
.index_fourth_wrap_box_bg h6 {
    font-size: 19px;
    font-family: var(--michroma-regular);
    color: var(--black);
}
.index_fourth_wrap_box_bg h5 {
    font-size: 30px;
    font-family: var(--michroma-regular);
    color: var(--black);
}
.index_fourth_wrap_text h6 {
    font-size: 35px;
    font-family: var(--michroma-regular);
    color: var(--black);
}
.index_fourth_wrap_box_bg p {
    font-size: 19px;
    font-family: var(--michroma-regular);
    color: #7c7c7c;
    margin: 0px 0px 10px 0px;
}
.index_fifth_wrapper {
    background-color: var(--black1);
    padding: 50px 0px;
}
.index_fifth_wrap_text {
    text-align: center;
    margin: 0px 0px 30px 0px;
}
.index_fifth_wrap_text h6 {
    font-size: 35px;
    font-family: var(--michroma-regular);
    color: var(--white);
    margin: 0px 0px 5px 0px;
}
.index_fifth_wrap_text p {
    font-size: 19px;
    font-family: var(--michroma-regular);
    color: var(--white);
}
.index_fifth_wrap_box {
    background-color: var(--white);
    padding: 30px 40px;
}
.index_fifth_wrap_star ul {
    display: flex;
    gap: 5px;
    margin: 0px 0px 10px 0px;
}
.index_fifth_wrap_star ul li {
    color: #ffc247;
}
.index_fifth_wrap_content p {
    font-size: 18px;
    font-family: var(--michroma-regular);
    color: #7c7c7c;
    margin: 0px 0px 30px 0px;
}
.index_fifth_wrap_heading h6 {
    font-size: 16px;
    font-family: var(--michroma-regular);
    color: var(--black);
}
.index_sixth_wrapper {
    padding: 50px 0px 0px 0px;
}
.index_sixth_wrap_text {
    text-align: center;
    margin: 0px 0px 30px 0px;
}
.index_sixth_wrap_text h6 {
    font-size: 35px;
    font-family: var(--michroma-regular);
    color: #111111;
    margin: 0px 0px 5px 0px;
}
.index_sixth_wrap_text h5 {
    font-size: 19px;
    font-family: var(--michroma-regular);
    color: #5c5c5c;
}
#marquee .pic-container {
    display: flex;
    animation: marquee 15s infinite linear;
}

#marquee .pic-container .pic {
    flex-basis: 20%;
    flex-shrink: 0;
}

#marquee img {
    width: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    #marquee .pic-container .pic {
        flex-basis: 25%;
    }
}

@media (max-width: 768px) {
    #marquee .pic-container .pic {
        flex-basis: 33.33%;
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@media (max-width: 1024px) {
    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-125%);
        }
    }
}

@media (max-width: 768px) {
    @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-186.65%);
        }
    }
}
/* INDEX-CSS */

/* INNER-CSS */

.inner_common_banner {
    padding: 130px 0px 130px 0px;
    background-color: #0e0e0e;
    position: relative;
}
.inner_common_banner_text {
    text-align: center;
}

/* INNER-CSS */

/* FOOTER-CSS */
.footer_wrapper {
    background-color: var(--black1);
    padding: 50px 0px;
}
.footer_wrap_logo {
    margin: 0px 0px 10px 0px;
}
.footer_wrap_linkh h6 {
    font-size: 25px;
    color: var(--white);
    font-family: var(--michroma-regular);
    margin: 0px 0px 15px 0px;
}
.footer_wrap_text1 p {
    font-size: 18px;
    color: var(--white);
    font-family: var(--interDisplay-regular);
}
.footer_wrap_link1 ul li a {
    font-size: 18px;
    font-family: var(--interDisplay-regular);
    color: var(--white);
}
.footer_wrap_link1 ul li {
    line-height: 2;
}
.footer_wrap_social1 ul {
    display: flex;
    gap: 10px;
}
.footer_wrap_social1 ul li a {

}
/* FOOTER-CSS */
/* SHOP-PAGE-CSS */
.shop_first_wrapper {
    padding: 100px 0px;
}
.shop_first_wrap_breadcrumbs ul {
    display: flex;
    gap: 10px;
}
.shop_first_wrap_breadcrumbs ul li a {
    font-size: 18px;
    font-family: var(--interDisplay-regular);
}
.shop_first_wrap_breadcrumbs ul li a.breadcrumbs_dark {
    color: var(--black);
}
.shop_first_wrap_breadcrumbs ul li a.breadcrumbs_light {
    color: #767676;
    opacity: 0.55;
}
.shop_first_wrap_tflex {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}
.shop_first_wrap_ttext h6 {
    font-size: 14px;
    font-family: var(--interDisplay-regular);
    color: var(--black);
}
.shop_first_wrap_toptions select {
    font-size: 14px;
    font-family: var(--interDisplay-regular);
    color: var(--black);
    outline: none;
    padding: 10px 15px;
    background-color: hsl(0deg 0% 55% / 40%);
    opacity: 0.55;
    border: none;
}
/* SHOP-PAGE-CSS */
/* PRODUCT-DETAIL-CSS */
.product_detail_first_wrapper {
    padding: 50px 0px;
}
.product_detail_first_wrap_t {
    margin: 0px 0px 20px 0px;
}
.product_detail_first_wrap_t h5 {
    font-size: 38px;
    color: var(--black);
    font-family: var(--michroma-regular);
    margin: 0px 0px 10px 0px;
}
.product_detail_first_wrap_t h6 {
    font-size: 22px;
    color: var(--black);
    font-family: var(--interDisplay-regular);
}
.product_detail_first_wrap_btn {
    margin: 0px 0px 20px 0px;
}
.product_detail_first_wrap_anchor span {
    font-size: 14px;
    font-family: var(--interDisplay-regular);
    color: var(--black);
}
.product_detail_first_wrap_anchor a {
    font-size: 14px;
    font-family: var(--interDisplay-regular);
    color: var(--black);
}
.product_detail_second_wrapper {
    padding: 0px 0px 50px 0px;
}
.product_detail_second_wrap_review_t h6 {
    font-size: 38px;
    color: var(--black);
    font-family: var(--michroma-regular);
    margin: 0px 0px 10px 0px;
}
.product_detail_second_wrap_review_t p {
    font-size: 18px;
    color: var(--black);
    font-family: var(--michroma-regular);
}
.product_detail_second_wrap_review_r {
    margin: 0px 0px 20px 0px;
}
.product_detail_second_wrap_review_r h6 {
    font-size: 18px;
    font-family: var(--michroma-regular);
    margin: 0px 0px 2px 0px;
}
.product_detail_second_wrap_review_r ul {
    display: flex;
    gap: 5px;
}
.product_detail_second_wrap_review_r ul i {
    font-size: 12px;
}
.product_detail_second_wrap_review_t {
    margin: 0px 0px 10px 0px;
}
.product_detail_second_wrap_review_t h6 {
    font-size: 18px;
    font-family: var(--michroma-regular);
    margin: 0px 0px 10px 0px;
}
.product_detail_second_wrap_review_t textarea {
    width: 100%;
    height: 120px;
    padding: 15px 15px;
    border: 1px solid #000;
    font-size: 14px;
    font-family: var(--interDisplay-regular);
    color: var(--black);
    resize: none;
    background-color: hsl(0deg 0% 35% / 9%);
    border: none;
}
.product_detail_second_wrap_review_t input {
    font-size: 14px;
    font-family: var(--interDisplay-regular);
    color: var(--black);
    resize: none;
    background-color: hsl(0deg 0% 35% / 9%);
    border: none;
    padding: 15px 15px;
    width: 100%;
}
.product_detail_second_wrap_review_t {
    font-size: 14px;
    font-family: var(--interDisplay-regular);
    color: var(--black);
}
.product_detail_second_wrap_review_btn button {
    background-color: var(--black);
    font-size: 14px;
    font-family: var(--michroma-regular);
    color: var(--white);
    padding: 10px 20px;
    border: none;
}
.product_detail_second_wrap_box {
    height: 100%;
    width: 100%;
    border: 1px solid #000;
}
/* PRODUCT-DETAIL-CSS */
.cart_first_wrapper {
    padding: 50px 0px;
}
.cart_first_wrap_table_hflex {
    display: flex;
    justify-content: space-between;
    margin: 0px 0px 15px 0px;
    border: 1px solid #d3d3d3;
    padding: 15px 15px;
}
.cart_first_wrap_table_tflex {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 15px;
    border: 1px solid #d3d3d3;
}
.cart_first_wrap_table_tflex1 {
    display: flex;
    gap: 15px;
}
.cart_first_wrap_table_tflex2 h6 {
    font-size: 16px;
    font-family: var(--interDisplay-regular);
}
.cart_first_wrap_table_title h6 {
    font-size: 18px;
    font-family: var(--interDisplay-regular);
    margin: 0px 0px 4px 0px;
}
.cart_first_wrap_table_title h5 {
    font-size: 16px;
    font-family: var(--interDisplay-regular);
}
.cart_first_wrap_table_h h6 {
    font-size: 18px;
    font-family: var(--interDisplay-regular);
}
.cart_first_wrap_table_img {
    width: 100px;
    height: 100px;
}
.cart_first_wrap_table_img img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}
.cart_first_wrap_subt1_flex {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: space-between;
}
.cart_first_wrap_subt1_feild {
    width: 70%;
}
.cart_first_wrap_subt1_btn {
    width: 30%;
}
.cart_first_wrap_subt1_btn button {
    background: #000;
    color: #FFF;
    display: inline-flex;
    border: none;
    width: 100%;
    height: 50px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: var(--interDisplay-regular);
}
.cart_first_wrap_subt1_feild input {
    width: 100%;
    height: 50px;
    outline: none;
    font-size: 16px;
    font-family: var(--interDisplay-regular);
    color: #000;
    border: 1px solid #d3d3d3;
    padding: 0px 15px;
}
.cart_first_wrap_subt h6 {
    font-size: 18px;
    font-family: var(--interDisplay-regular);
}
.cart_first_wrap_subt1 h6 {
    font-size: 18px;
    font-family: var(--interDisplay-regular);
    margin: 0px 0px 5px 0px;
}
.cart_first_wrap_subt {
    margin: 0px 0px 5px 0px;
}
.cart_first_wrap_subt2_flex {
    display: flex;
    justify-content: space-between;
    padding: 20px 15px;
    border-bottom: 1px solid #d3d3d3;
}
.cart_first_wrap_subt2 h6 {
    font-size: 18px;
    font-family: var(--interDisplay-regular);
}
.cart_first_wrap_subt2 h6 {
    font-size: 18px;
    font-family: var(--interDisplay-regular);
}
.cart_first_wrap_btn1 button {
    background: #000;
    color: #FFF;
    display: inline-flex;
    border: none;
    width: 100%;
    height: 50px;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-family: var(--interDisplay-regular);
}
.cart_first_wrap_subt1 {
    padding: 20px 15px;
    border-bottom: 1px solid #d3d3d3;
    border-top: 1px solid #d3d3d3;
}
.cart_first_wrap_sub_table {
    border: 1px solid #d3d3d3;
    padding: 20px 0px;
}
.cart_first_wrap_btn1 {
    padding: 0px 15px;
}
.cart_first_wrap_subt1_feild {
    width: 67%;
}
.cart_first_wrap_subt {
    padding: 0px 15px;
}
.quantity {
    display: flex;
    border: 2px solid #000000;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.quantity button {
    background-color: #000000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    width: 30px;
    height: auto;
    text-align: center;
    transition: background-color 0.2s;
}
.quantity button:hover {
    background-color: #000000;
}
.input-box {
    width: 40px;
    text-align: center;
    border: none;
    padding: 4px 10px;
    font-size: 14px;
    font-family: var(--interDisplay-regular);
    outline: none;
}
/* Hide the number input spin buttons */
.input-box::-webkit-inner-spin-button,
.input-box::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.input-box[type="number"] {
  -moz-appearance: textfield;
}
.checkout_first_wrap_ht h6.main_heading {
    color: var(--black);
}
.checkout_first_wrap_ht {
    margin: 0px 0px 20px 0px;
}
.checkout_first_wrap_feild p {
    font-size: 16px;
    font-family: var(--interDisplay-regular);    
    color: color(--black);
}
.checkout_first_wrap_feild input {
    width: 100%;
    height: 50px;
    border: 1px solid #d3d3d3;
    outline: none;
    padding: 0px 15px;
    font-family: var(--interDisplay-regular);
    color: #555555;
    font-size: 15px;    
}
.checkout_first_wrap_feild select {
    width: 100%;
    height: 50px;
    border: 1px solid #d3d3d3;
    outline: none;
    color: #555555;
    padding: 0px 15px;
    font-family: var(--interDisplay-regular);
    border-radius: 0px;
}
.checkout_first_wrap_feild {
    margin: 0px 0px 10px 0px;
}
.checkout_first_wrap {
    margin: 0px 0px 35px 0px;
}
.checkout_first_wrap_radio [type="radio"]:checked,
.checkout_first_wrap_radio [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.checkout_first_wrap_radio [type="radio"]:checked + label,
.checkout_first_wrap_radio [type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-flex;
    color: #000000;
    font-size: 15px;
    font-family: var(--michroma-regular);
    align-items: center;
}

.checkout_first_wrap_radio [type="radio"]:checked + label:before,
.checkout_first_wrap_radio [type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border: 2px solid #555555;
    border-radius: 100%;
    background: #fff;
}

.checkout_first_wrap_radio [type="radio"]:checked + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: #555555;
    position: absolute;
    top: 6px;
    left: 4px;
    border-radius: 100%;
    transition: all 0.2s ease;
}

.checkout_first_wrap_radio [type="radio"]:not(:checked) + label:after {
    content: '';
    width: 10px;
    height: 10px;
    background: transparent;
    position: absolute;
    top: 6px;
    left: 4px;
    border-radius: 100%;
    transition: all 0.2s ease;
}
.checkout_first_wrap_radio p {
    font-size: 15px;
    color: #555555;
    font-family: var(--interDisplay-regular);
    margin: 8px 0px 0px 0px;
}
.checkout_first_wrap_radio {
    margin: 0px 0px 10px 0px;
    border: 1px solid #000;
    padding: 15px 15px;
}
.checkout_first_wrap1 input {
    width: 100%;
    height: 50px;
    border: 1px solid #d3d3d3;
    outline: none;
    padding: 0px 15px;
    font-family: var(--interDisplay-regular);
    color: #555555;
    font-size: 15px;
}
.checkout_first_wrap1 h6 {
    font-size: 15px;
    font-family: var(--michroma-regular);
    margin: 0px 0px 5px 0px;
}
.checkout_first_wrap1 {
    margin: 0px 0px 20px 0px;
}
.checkout_first_wrap_ht p {
    font-size: 15px;
    color: #000;
    font-family: var(--interDisplay-regular);
}
.checkout_first_wrap_btn {
    text-align: right;
}
.checkout_first_wrap_btn button {
    background-color: #000;
    color: #FFF;
    font-size: 14px;
    width: 160px;
    height: 50px;
    font-family: var(--interDisplay-regular);
    border: none;
}
.contact-first-wrapper {
    padding: 50px 0px;
}
.contact-first-wrap-feild {
    margin: 0px 0px 15px 0px;
}
.contact-first-wrap-feild span {
    display: flex;
    font-size: 16px;
    margin: 0px 0px 5px 0px;
}
.contact-first-wrap-feild input {
    width: 100%;
    height: 45px;
    border: 1px solid #000;
    padding: 0px 15px;
    font-size: 14px;
}
.contact-first-wrap-feild textarea {
    width: 100%;
    height: 120px;
    border: 1px solid #000;
    font-size: 14px;
    resize: none;
    padding: 15px 15px;
}
.contact-first-wrap-feild button {
    background: #000;
    font-size: 14px;
    color: #FFF;
    border: none;
    width: 120px;
    height: 50px;
}
.blog-first-wrapper {
    padding: 50px 0px;
}
.blog-inner-first-wrap-text h6 {
    font-size: 24px;
    font-family: var(--michroma-regular);
    color: var(--black);
    margin: 10px 0px 10px 0px;
}
.blog-inner-first-wrap-text p {
    font-size: 15px;
    font-family: var(--interDisplay-regular);    
    margin: 0px 0px 10px 0px;
}
.collection_first_wrapper {
    padding: 50px 0px;
}
.collection_first_wrapper .index_third_cr_box_text h5 {
    font-size: 18px;
    color: #000;
}
.index_second_box_text h6.main_heading {
    font-size: 26px;
}

/* ANIMATIONS */
@keyframes scroll {
    to {
      background-position: 0px 100000px;
    }
  }
  @keyframes marquee {
    0% {
        transform: translateX(0px)
    }
    50%{
        transform: translateX(-1100px)
    }
    100%{
        transform: translateX(0px)
    }
}
@keyframes rotate {
    to {
      transform: rotate(360deg);
    }
  }
  @keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(359deg);
    }
}
/* ANIMATIONS */

/*ADDITIONAL CSS*/

section.index_fifth_wrapper #marquee .pic-container .pic {
    flex-basis: 90%;
}

section.index_fifth_wrapper #marquee .pic-container {
    gap: 40px;
}

/*ADDITIONAL CSS*/

.edit_main_wrap_f{
    display: flex;
    width: 100vw;
    height: calc(-160.5156px + 100vh);
    overflow: hidden;
}
.edit_main_left_box {
    width: 30vw;
    min-width: 30vw;
    max-width: 30vw;
    padding: 20px 20px 0px 20px;
    background-color: var(--black);
    position: relative;
}
.edit_main_mid_box {
    width: 80vw;
    min-width: 80vw;
    max-width: 80vw;
    display: flex;
    text-align: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 20px 20px 0px 20px;
    box-shadow: inset 4px 0 6px -2px #00000038, inset -4px 0 6px -2px #0000003b;
}
.edit_main_right_box {
    width: 25vw;
    min-width: 25vw;
    max-width: 25vw;
    padding: 20px 20px 0px 20px;
    background-color: var(--black);
}
.edit_main_left_box li.breadcrumb-item a {
    font-size: 12px;
    color: #ffffffd6;
    font-family: var(--interDisplay-regular);
}
.edit_main_left_box .breadcrumb-item+.breadcrumb-item::before {
    color: #ffffffd6;
    content: var(--bs-breadcrumb-divider, ">");
}
.edit_main_left_box .breadcrumb-item.active {
    color: var(--white);
}
.edit_main_left_box_breadcrumb{
    margin: 0px 0px 30px 0px;
}
.edit_main_left_box_tabs .nav-tabs {
    justify-content: space-around;
    border: none;
    margin: 0px 0px 60px 0px;
}

.edit_main_left_box_tabs .nav-tabs .nav-link {
    font-size: 16px;
    color: var(--white);
    font-family: var(--michroma-regular);
    border: none;
    border-bottom: 1px solid transparent;
    border-radius: 0 !important;
}
.edit_main_left_box_tabs .nav-tabs .nav-item.show .nav-link, .edit_main_left_box_tabs .nav-tabs .nav-link.active{
    background-color: #d5ad17;
}
.edit_main_left_box_tabs .nav-tabs .nav-link:focus,.edit_main_left_box_tabs .nav-tabs .nav-link:hover {
    border-bottom: 1px solid var(--white);
}

.product_box_main{
    position: relative;
    padding: 5px;
    height: 140px;
    text-align: center;
}
.product_box_main_wrap {
    overflow-y: scroll;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-height: 580px;
    margin: 0px 0px 30px 0px;
}
.product_box_main_wrap::-webkit-scrollbar {
    width: 0px;
}
.product_box_main_radio input{
    position: absolute;
    z-index: -111111;
    left: -1000%;
}
.product_box_main_radio label{
    position: absolute;
    top: 41%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 80%;
    z-index: 99;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .5s ease;
}
.product_box_main_radio input:checked + label{
    border-color: var(--white);
}
.product_box_main_text p{
    font-size: 12px;
    color: var(--white);
    font-family: var(--interDisplay-regular);
}
.product_box_main_img{
    margin: 0px 0px 5px 0px;
}
.product_box_main_img img{
    margin: 0px 0px 5px 0px;
    width: 112px;
    height: 102px;
    object-fit: cover;
}
.edit_main_left_box_btn {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
}

.edit_main_left_box_btn button {
    width: 100%;
}
.frame_box_main_sizes_text {
    margin: 0px 0px 15px 0px;
}
.frame_box_main_sizes_text p{
    font-size: 10px;
    color:var(--white);
    font-family: var(--interDisplay-regular);
    display: flex;
    align-items: center;
    gap: 10px;
}
.frame_box_main_size_f {
    display: flex;
    width: max-content;
    gap: 14px;
    padding: 0px 0px 10px 0px;
}
.frame_box_main_size{
    position: relative;
    width: 45px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: 1px solid #eee;
    border-radius: 2px;
    overflow: hidden;
    z-index: 3;
}
.frame_box_main_size_radio {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 0px;
    transition: .3s ease;
}
.frame_box_main_size_radio input {
    display: none;
}
.frame_box_main_size_radio input:checked + .frame_box_main_size_text {
    background-color: var(--main-color);
}
.frame_box_main_size_text {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.frame_box_main_size_text p {
    font-size: 10px;
    color: var(--white);
    font-family: var(--interDisplay-regular);
}
.frame_box_main_sizes_wrap {
    overflow-x: scroll;
    margin: 0px 0px 20px 0px;
}
.frame_box_main_sizes_wrap::-webkit-scrollbar {
    width: 1px;
    height: 7px;
    border-radius: 20px;
}
.frame_box_main_sizes_wrap::-webkit-scrollbar-track {
    background: var(--white); 
    border-radius: 20px;
}
.frame_box_main_sizes_wrap::-webkit-scrollbar-thumb {
	background-color: var(--main-color);
    border-radius: 20px;
}
.frame_box_main_frames_text p{
    font-size: 16px;
    color: var(--white);
    font-family: var(--interDisplay-regular);
    margin: 0px 0px 10px 0px;
}
.frame_box_main_frames_wrap {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.frame_box_main_frames{
    position: relative;
    width: 99px;
    height: 99px;
}
.frame_box_main_frames_radio input{
    position: absolute;
    z-index: -111111;
    left: -1000%;
}
.frame_box_main_frames_radio label{
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 99;
    border: 2px solid #ababab;
    cursor: pointer;
    transition: .5s ease;
}
.frame_box_main_frames_radio input:checked + label{
    border-color: var(--main-color);
}
.frame_box_main_frames_img {
    width: 99px;
    height: 99px;
}
.frame_box_main_frames_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.frame_box_frames_wrap_m {
    display: flex;
    flex-wrap: wrap;
    margin: 0px 0px 40px 0px;
}
.frame_box_main_sizes_text1 h6{
    font-size: 20px;
    color: var(--white);
    font-family: var(--interDisplay-regular);
    margin: 0px 0px 15px 0px;
}
.frame_box_main_sizes_text1 p{
    font-size: 12px;
    color: var(--white);
    font-family: var(--interDisplay-regular);
    margin: 0px 0px 20px 0px;
}
.frame_box_main_sizes_text1 p span{
    font-weight: 600;
}
.frame_box_main_sizes_text1 p a{
    text-decoration: underline;
}
.frame_box_main_sizes_text1 ul{
    padding: 0px 0px 0px 30px;
}
.frame_box_main_sizes_text1 ul li{
    font-size: 11px;
    color: var(--white);
    font-family: var(--interDisplay-regular);
    list-style: disc;
    line-height: 22px;
}
.frame_box_main_sizes_text1 ul li span{
    font-weight: 600;
}
.frame_box_main_sizes_text1 ul li a{
    text-decoration: underline;
}
.frame_box_main_wrap {
    overflow-y: scroll;
    max-height: 590px;
}
.frame_box_main_wrap::-webkit-scrollbar {
    width: 0px;
}
.edit_main_mid_box_text p{
    font-size: 12px;
    color: var(--black);
    font-family: var(--interDisplay-regular);
}
.edit_main_mid_box_text{
    margin: 0px 0px 15px 0px;
}
.edit_main_right_del_btn .outline_btn svg{
    width: 15px;
    height: 16px;
    fill: var(--white);
    stroke-width: 2px;
    stroke: var(--white);
}
.product_box_main.upload_img_box {
    height: 85px;
    border: 1px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
}
.product_box_main_text1 i {
    font-size: 12px;
    color: var(--white);
}

.product_box_main_text1 p {
    font-size: 12px;
    color: var(--white);
    font-family: var(--interDisplay-regular);
}
.edit_main_right_box .edit_main_left_box_tabs{
    margin: 0px 0px 40px 0px;
}
.edit_main_right_box .edit_main_left_box_tabs .nav-tabs .nav-link {
    font-size: 13px;
}
.edit_main_right_box .product_box_main_wrap{
    margin: 0px 0px 40px 0px;
}
.align_btns a {
    font-size: 16px;
    color: var(--white);
    font-family: var(--interDisplay-regular);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: auto;
}
.align_btns a svg {
    width: 24px;
    height: 24px;
    fill: var(--black);
    stroke: var(--white);
    transition: 0.5s ease;
}
.align_btns a:hover svg {
    transform: scale(0.96);
}
.align_btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}
.flip_btn_main p {
    font-size: 16px;
    color: var(--white);
    font-family: var(--interDisplay-regular);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    width: auto;
    margin: 0px 0px 6px 0px;
}
.flip_btn_f {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.edit_main_right_del_btn button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
}
button.outline_btn {
    border: 1px solid var(--white);
}
.edit_main_right_del_btn {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0px 0px 10px 0px;
}
.right_box_edit_panel {
    display: flex;
    gap: 8px;
    max-width: 340px;
    margin: 0 auto 15px auto;
}
.right_box_edit_panel select {
    font-size: 12px;
    background-color: transparent;
    color: var(--white);
    font-family: var(--interDisplay-regular);
    width: 140px !important;
}
.right_box_edit_panel select option{
    background-color: var(--black);
}
.right_box_edit_panel_st_btn button{
    background-color: transparent;
    border: none;
}
.right_box_edit_panel_st_btn button svg{
    height: 18px;
    width: 18px;
    stroke: var(--white);
    fill: var(--white);
    stroke-width: 1px;
}
.right_box_edit_panel_st_btn {
    display: flex;
    align-items: center;
    gap: 15px;
}
.input-group.w-auto button {
    color: var(--white);
    border: 1px solid var(--white);
}
.input-group.w-auto input {
    font-size: 14px;
    background: transparent;
    color: var(--white);
    font-family: var(--interDisplay-regular);
}
.right_box_edit_panel_range label{
    font-size: 14px;
    color: var(--white);
    font-family: var(--interDisplay-regular);
    margin: 0px;
}
.right_box_edit_heading{
    font-size: 16px;
    color: var(--white);
    font-family: var(--interDisplay-regular);
    text-decoration: underline;
    margin: 0px 0px 15px 0px;
}
.custom-range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: linear-gradient(to right, #0a2a2f 0%, #0a2a2f var(--value, 0%), #ccc var(--value, 0%), #ccc 100%);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    outline: none;
}
.custom-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--main-color);
    cursor: pointer;
    margin-top: -6px;
}
.right_box_edit_panel_rangef {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0px 40px 0px 0px;
}
.right_box_edit_color{
    position: relative;
}
.right_box_edit_color_radio input{
    position: absolute;
    z-index: -111111;
    left: -1000%;
}
.right_box_edit_color_radio label{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 99;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .5s ease;
}
.right_box_edit_color_radio input:checked + label{
    border-color: var(--white);
}
.right_box_edit_color_bg {
    width: 20px;
    height: 20px;
    box-shadow: 0px 0px 1px 1px #ffffff63;
}
.right_box_edit_color_m {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    overflow: hidden;
    padding: 5px 40px 5px 0px;
}
.edit_main_right_box_top_btn button {
    background-color: transparent;
    border: none;
    color: var(--white);
    font-size: 24px;
}

.edit_main_right_box_top_btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.pro_main_box {
    overflow-y: scroll;
    max-height: 580px;
}
.pro_main_box::-webkit-scrollbar {
    width: 0px;
}
.pro_main_box {
    overflow-y: scroll;
    max-height: 580px;
}
.pro_main_box::-webkit-scrollbar {
    width: 0px;
}
.edit_main_right_box1 {
    padding: 0px 20px 100px 20px;
    overflow-y: scroll;
    max-height: 650px;
}
.edit_main_right_box1::-webkit-scrollbar {
    width: 0px;
}
.frame_box_main_frames_text {
    height: 300px;
    overflow-y: auto;
}
.frame_box_main_frames_text::-webkit-scrollbar {
    width: 7px;
    border-radius: 20px;
}
.frame_box_main_frames_text::-webkit-scrollbar-track {
    background: var(--white); 
    border-radius: 20px;
}
.frame_box_main_frames_text::-webkit-scrollbar-thumb {
	background-color: var(--main-color);
    border-radius: 20px;
}
@keyframes spin {
    0% { transform: rotate(0deg);}
    100% { transform: rotate(360deg);}
}
/*ADDITIONAL CSS*/
.canvas-frame-wrap {

    min-width: 350px;
    min-height: 350px;
    max-width: 100%; /* don't let it overflow main area */
    overflow: auto;  /* scroll if necessary */
    background: transparent;
    padding: 16px 0;
    zoom: 0.8;
}

#container {
    display: block;
    background: white; /* fallback, actual frame renders over */
    /* Optional max size */
    max-width: 100vw;  /* or whatever max makes sense for your UI */
    max-height: 90vh;
    /* Remove these if JS sets canvas width/height directly */
}
.min_btn_f{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.min_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 45px;
    background-color: var(--main-color);
    color: var(--white);
    margin: 20px auto 0 auto;
    padding: 10px 15px;
}