:root {
    --main-color: #f3a83b;
    --bg-color: #000000;
    --text-color: #ffffff;
}

*,
*::after,
*::before {
    margin: 0;
    padding: 0;
    outline: 0;
    border: none;
    text-decoration: none !important;
    list-style: none;
    box-sizing: border-box;
    transition: all 0.2s ease-in-out;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--bg-color);
}

::-webkit-scrollbar-thumb {
    background: var(--main-color);
    border-radius: 20px;
}

img,
video {
    width: 100%;
}

body {
    overflow: hidden;
    overflow-y: auto;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
}

/* Global Styles */
body {
    color: var(--text-color);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

.bg-dark {
    background-color: var(--bg-color) !important;
}

.text-gold {
    color: var(--main-color);
}

.border-gold {
    border: 1px solid var(--main-color) !important;
}

/* Header & Navbar */
.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--main-color) !important;
}

.input-group-text,
.form-control::placeholder {
    color: var(--text-color);
    font-weight: 300;
}

/* Swiper Slider */
.swiper {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 300px;
    height: 500px;
    /* transition: transform 0.3s; */
}

.swiper-slide img {
    display: block;
    width: 100%;
    object-fit: contain;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-justify {
    text-align: justify;
}

.max-w-85 {
    max-width: 85% !important;
}

.bg-after-holding {
    position: relative;
}

.bg-after-holding::after {
    content: '';
    position: absolute;
    top: -25%;
    left: -25%;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    z-index: -1;
}

.fs-11-sm {
    font-size: 11px !important;
}

footer .list-inline-item:not(:last-child) {
    margin-right: 0 !important;
}

.div-swiper-footer .swiper-button-next,
.div-swiper-footer .swiper-button-prev {
    width: 50px;
    height: 50px;
    border: 1px solid var(--main-color);
    border-radius: 50%;
    background-color: transparent;
    color: var(--main-color);
    transition: all 0.3s ease;
}

.div-swiper-footer .swiper-button-next:after,
.div-swiper-footer .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: bold;
}

.div-swiper-footer .swiper-button-next:hover,
.div-swiper-footer .swiper-button-prev:hover {
    background-color: var(--main-color);
    color: var(--bg-color);
}

@media (max-width: 768px) {
    .fs-11 {
        font-size: 11px !important;
    }

    .fs-12 {
        font-size: 12px !important;
    }

    .fs-13 {
        font-size: 13px !important;
    }

    .fs-14 {
        font-size: 14px !important;
    }

    .fs-15 {
        font-size: 15px !important;
    }

    .fs-16 {
        font-size: 16px !important;
    }

    .fs-17 {
        font-size: 17px !important;
    }

    .fs-18 {
        font-size: 18px !important;
    }

    .fs-19 {
        font-size: 19px !important;
    }

    .fs-20 {
        font-size: 20px !important;
    }

    .a_arrow_up {
        position: absolute;
        top: -30px;
        right: 0;
        background: var(--bg-color) !important;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 35px;
        height: 35px;
    }

    .div-swiper-footer {
        max-height: 300px !important;
    }

    .div-swiper-footer .swiper-button-next,
    .div-swiper-footer .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .div-swiper-footer .swiper-button-next:after,
    .div-swiper-footer .swiper-button-prev:after {
        font-size: 14px !important;
    }
}