@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");

:root {
    --swiper-navigation-color: #000;
}

body {
    font-family: "Outfit";
    background-color: #dadada;
}

.no-focus {
    border: none;
}

.no-focus:focus {
    outline: none;
    box-shadow: none;
}

.dropdown-menu .dropdown-submenu:hover>.dropdown-menu {
    display: block;
}

.dropdown-submenu>.dropdown-item::after {
    content: "\203A";
    position: absolute;
    right: 15px;
    font-size: 1.2em;
}

/* Header Styling */

.navbar form {
    width: 100%;
}

/* Banner Styling */
.banner {
    height: 35vh;
}

.banner .swiper-pagination-bullet {
    width: 15px;
    height: 6px;
    border-radius: 0;
    background-color: #ffc107;
    border: 1px solid white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.banner .swiper-pagination-bullet-active {
    opacity: 1;
    width: 22px;
}

/* Cards Styling */

.card-title,
.product-slider h2 {
    font-size: 1rem;
}

.card-img {
    height: 200px;
    object-position: center;
}

/* Product Slider Styling */

@media only screen and (min-width: 768px) {

    .banner {
        height: 50vh;
    }

    .banner .swiper-pagination-bullet {
        width: 30px;
    }

    .banner .swiper-pagination-bullet-active {
        width: 45px;
    }

    .card-img {
        height: 180px;
    }
}

@media only screen and (min-width: 1024px) {
    .navbar form {
        width: 50%;
    }

    .card-title {
        font-size: 1.25rem;
    }

    .product-slider h2 {
        font-size: 1.5rem;
    }

    .card-img {
        height: 220px;
    }
}


/* Product Page Styling */
.thumb-imgs {
    width: 100px !important;
    min-width: 100px !important;
    flex: 0 0 100px !important;
    height: 50vh;
}

.option-item {
    cursor: pointer;
    transition: all 0.2s;
    background-color: #fff;
    min-width: 45px;
    justify-content: center;
}

.option-item:hover {
    border-color: #ffc107;
}

.option-item.active {
    border: 2px solid #000 !important;
    background-color: #fff9e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.color-option {
    cursor: pointer;
    transition: all 0.2s;
}

.color-option:hover {
    border-color: #ffc107;
}

.color-option.active {
    border: 2px solid #000 !important;
    background-color: #fff9e6;
}

/* Auth Page Styling */
body.auth-page {
    background-color: #fff;
}

.auth-container {
    max-width: 400px;
}

.auth-page .container a>img {
    max-height: 100px;
}

.password-requirements ul li {
    margin-bottom: 4px;
    transition: color 0.2s;
}

.password-requirements ul li i {
    margin-right: 6px;
    font-size: 0.875rem;
}

@media (max-width: 991.98px) {
    .glass-nav {
        height: 65px;
        z-index: 1050;
        background: rgba(255, 255, 255, 0.85) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
        box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.08);
    }
    .mobile-nav-link {
        color: #6c757d;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        font-size: 0.7rem;
        font-weight: 500;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        opacity: 0.7;
        text-decoration: none;
    }
    .mobile-nav-link i {
        font-size: 1.4rem;
        margin-bottom: 2px;
        transition: transform 0.3s ease;
    }
    .mobile-nav-link:hover, .mobile-nav-link.active {
        color: #000;
        opacity: 1;
    }
    .mobile-nav-link.active i {
        transform: translateY(-2px);
        color: #ffc107;
    }
    .mobile-nav-link .badge {
        font-size: 0.65rem;
        padding: 0.35em 0.6em;
        top: 5px !important;
        right: 15% !important;
    }
}