/*
|--------------------------------------------------------------------------
| AL-MEVA - Main Stylesheet
|--------------------------------------------------------------------------
*/


/*
|--------------------------------------------------------------------------
| Base
|--------------------------------------------------------------------------
*/

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #222222;
    line-height: 1.6;
}
.carousel-control-next, .carousel-control-prev {
    position: absolute;
    top: -29px;
    bottom: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 15%;
    padding: 0;
    color: #fff;
    text-align: center;
    background: 0 0;
    border: 0;
    opacity: .5;
    transition: opacity .15s ease;
}

.carousel-control-next {
    right: -15px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}


/*
|--------------------------------------------------------------------------
| Container
|--------------------------------------------------------------------------
*/

.container {
    width: min(1200px, calc(100% - 32px));
    margin: 0 auto;
}


/*
|--------------------------------------------------------------------------
| Accessibility
|--------------------------------------------------------------------------
*/

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/*
|--------------------------------------------------------------------------
| Top Bar
|--------------------------------------------------------------------------
*/
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: #ffffff;
}

.top-bar {
    background: #111111;
    color: #ffffff;
}

.top-bar-text {
    margin: 0;
    padding: 7px 0;
    text-align: center;
    font-size: 13px;
    letter-spacing: 0.2px;
}
.announcement-wrapper {
    width: 100%;
    height: 34px;

    overflow: hidden;

    display: flex;
    align-items: center;
}


.announcement-track {
    display: flex;
    align-items: center;

    width: max-content;

    white-space: nowrap;

    animation: announcementMove 15s linear infinite;
}


.announcement-track span {
    display: inline-flex;
    align-items: center;

    flex-shrink: 0;

    padding: 0 35px;

    font-size: 13px;
    font-weight: 500;

    line-height: 34px;
}


/*
|--------------------------------------------------------------------------
| Marquee Animation
|--------------------------------------------------------------------------
*/

@keyframes announcementMove {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-90%);
    }

}

/*
|--------------------------------------------------------------------------
| Main Header
|--------------------------------------------------------------------------
*/

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.header-inner {
    min-height: 76px;

    display: flex;
    align-items: center;

    gap: 20px;
}


/*
|--------------------------------------------------------------------------
| Logo
|--------------------------------------------------------------------------
*/

.site-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.site-logo-image {
    display: block;

    width: auto;
    height: 99px;

    max-width: 180px;

    object-fit: contain;

    transition: opacity 0.2s ease;
}


.header-logo {
    display: block;

    width: auto;
    height: 99px;

    max-width: 180px;

    object-fit: contain;
}


/*
|--------------------------------------------------------------------------
| Mobile Menu Button
|--------------------------------------------------------------------------
*/

.mobile-menu-button {
    display: none;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    padding: 0;

    border: 1px solid #dddddd;
    border-radius: 7px;

    background: #ffffff;
    color: #222222;

    cursor: pointer;

    transition: all 0.2s ease;
}

.mobile-menu-button:hover {
    background: #f5f5f5;
    border-color: #cccccc;
}

.mobile-menu-button svg {
    display: block;
}


/*
|--------------------------------------------------------------------------
| Search
|--------------------------------------------------------------------------
*/

.search-form {
    flex: 1;

    display: flex;

    max-width: 600px;

    margin: 0 auto;
}

.search-form input {
    width: 100%;
    min-width: 0;

    height: 42px;

    padding: 0 14px;

    border: 1px solid #dddddd;
    border-right: none;

    outline: none;

    background: #ffffff;

    color: #222222;

    font-size: 14px;

    transition: border-color 0.2s ease;
}

.search-form input::placeholder {
    color: #999999;
}

.search-form input:focus {
    border-color: #111111;
}

.search-button {
    width: 48px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 0;

    background: #111111;
    color: #ffffff;

    cursor: pointer;

    transition: background 0.2s ease;
}

.search-button:hover {
    background: #2b2b2b;
}

.search-button svg {
    display: block;
}


/*
|--------------------------------------------------------------------------
| Cart
|--------------------------------------------------------------------------
*/

.cart-link {
    display: flex;
    align-items: center;

    gap: 8px;

    white-space: nowrap;

    color: #222222;

    transition: opacity 0.2s ease;
}

.cart-link:hover {
    opacity: 0.7;
}

.cart-icon-wrapper {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-icon {
    display: block;
}

.cart-count {
    position: absolute;

    top: -9px;
    right: -10px;

    min-width: 18px;
    height: 18px;

    padding: 0 4px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #111111;
    color: #ffffff;

    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    border: 2px solid #ffffff;
}

.cart-text {
    font-size: 14px;
    font-weight: 500;
}


/*
|--------------------------------------------------------------------------
| Navigation
|--------------------------------------------------------------------------
*/

.main-navigation {
    position: relative;
    z-index: 100;

    background: #ffffff;

    border-bottom: 1px solid #e8e8e8;

    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navigation-list {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 4px;

    margin: 0;
    padding: 8px 0;

    list-style: none;
}

.navigation-list li {
    margin: 0;
    padding: 0;
}

.nav-link {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 20px;

    color: #222222;

    font-size: 14px;
    font-weight: 500;

    border-radius: 6px;

    transition:
        color 0.25s ease,
        background-color 0.25s ease,
        transform 0.25s ease;
}


/*
|--------------------------------------------------------------------------
| Navigation Hover
|--------------------------------------------------------------------------
*/

.nav-link:hover {
    color: #111111;

    background: #f5f5f5;

    transform: translateY(-1px);
}


/*
|--------------------------------------------------------------------------
| Active Navigation
|--------------------------------------------------------------------------
*/

.nav-link.active {
    color: #ffffff;

    

    font-weight: 600;

    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.12);
}

.nav-link.active:hover {
    color: #ffffff;

   

    transform: translateY(-1px);
}


/*
|--------------------------------------------------------------------------
| Navigation Hover Underline
|--------------------------------------------------------------------------
*/

.nav-link:not(.active)::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 4px;

    width: 0;
    height: 2px;

    background: #111111;

    transform: translateX(-50%);

    transition: width 0.25s ease;
}

.nav-link:not(.active):hover::after {
    width: 45%;
}


/*
|--------------------------------------------------------------------------
| Main Content
|--------------------------------------------------------------------------
*/

#main-content {
    min-height: 60vh;
}


/*
|--------------------------------------------------------------------------
| Flash Messages
|--------------------------------------------------------------------------
*/

.flash-message {
    width: min(700px, calc(100% - 32px));

    margin: 20px auto;

    padding: 12px 16px;

    border: 1px solid #dddddd;

    border-radius: 4px;
}

.flash-message.success {
    background: #f0fff4;
}

.flash-message.error {
    background: #fff5f5;
}

.flash-message.info {
    background: #f5f9ff;
}


/*
|--------------------------------------------------------------------------
| Footer
|--------------------------------------------------------------------------
*/

.site-footer {
    margin-top: 60px;

    background: #111111;

    color: #ffffff;
}

.footer-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 40px;

    padding: 50px 0;
}

.footer-column h3 {
    margin-top: 0;
    margin-bottom: 15px;

    font-size: 16px;
}

.footer-column p {
    color: #cccccc;
}

.footer-column ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.footer-column li {
    margin-bottom: 8px;
}

.footer-column a {
    color: #cccccc;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333333;
}

.footer-bottom p {
    margin: 0;

    padding: 18px 0;

    text-align: center;

    color: #bbbbbb;

    font-size: 13px;
}
.offcanvas-header {
    display: flex;
    align-items: center;
    --bs-offcanvas-padding-x: 1rem;
    --bs-offcanvas-padding-y: 0rem;
    /* padding: var(--bs-offcanvas-padding-y) var(--bs-offcanvas-padding-x); */
}

/*
|--------------------------------------------------------------------------
| Mobile Navigation
|--------------------------------------------------------------------------
*/
.start-100 {
    left: 83% !important;
}
@media (max-width: 768px) {

    /*
    ----------------------------------------------------------
    Header
    ----------------------------------------------------------
    */
    .main-header .container > .d-flex {
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .main-header form {
        order: 3;
        flex-basis: 100%;
        margin: 8px 0 0 !important;
    }

    .header-inner {
    flex-wrap: wrap;
    padding: 12px 0;
}

.mobile-menu-button {
    display: flex;
}

.site-logo-image {
    height: 60px;
    max-width: 145px;
}

.site-logo {
    font-size: 20px;
}


    /*
    ----------------------------------------------------------
    Search
    ----------------------------------------------------------
    */

    .search-form {
        order: 3;

        flex-basis: 100%;

        max-width: none;

        margin-top: 8px;
    }


    /*
    ----------------------------------------------------------
    Navigation
    ----------------------------------------------------------
    */

    .main-navigation {
        display: none;

        border-top: 1px solid #eeeeee;
    }

    .main-navigation.open {
        display: block;

        animation: menuSlideDown 0.25s ease;
    }

    .navigation-list {
        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        padding: 10px 0;
    }

    .navigation-list li {
        width: 100%;
    }

    .nav-link {
        justify-content: flex-start;

        width: 100%;

        min-height: 46px;

        padding: 0 16px;

        border-radius: 6px;

        font-size: 14px;
    }

    .nav-link:hover {
        transform: none;
    }

    .nav-link.active {
        box-shadow: none;
    }

    .nav-link:not(.active)::after {
        display: none;
    }


    /*
    ----------------------------------------------------------
    Cart
    ----------------------------------------------------------
    */

    .cart-text {
        display: none;
    }


    /*
    ----------------------------------------------------------
    Footer
    ----------------------------------------------------------
    */

    .footer-grid {
        grid-template-columns: 1fr 1fr;

        gap: 30px;
    }
}


/*
|--------------------------------------------------------------------------
| Small Mobile Devices
|--------------------------------------------------------------------------
*/

@media (max-width: 480px) {

    .container {
        width: min(100% - 24px, 1200px);
    }

    .site-logo {
        font-size: 18px;
    }

    .cart-link {
        margin-left: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/*
|--------------------------------------------------------------------------
| Mobile Menu Animation
|--------------------------------------------------------------------------
*/

@keyframes menuSlideDown {

    from {
        opacity: 0;

        transform: translateY(-8px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }

}


.drawer-logo {
    display: block;

    width: auto;
    height: 65px;

    max-width: 150px;

    object-fit: contain;
}


.drawer-link {
    min-height: 48px;

    padding: 0 14px;

    border-radius: 7px;

    color: #222222;

    font-size: 15px;
    font-weight: 500;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}


.drawer-link:hover {
    background: #f5f5f5;

    color: #111111;
}


/*
|--------------------------------------------------------------------------
| Drawer Width
|--------------------------------------------------------------------------
*/

.offcanvas {
    width: 300px !important;
}


/*
|--------------------------------------------------------------------------
| Mobile Header
|--------------------------------------------------------------------------
*/



/*
|--------------------------------------------------------------------------
| Small Mobile
|--------------------------------------------------------------------------
*/

@media (max-width: 480px) {

    .offcanvas {
        width: 280px !important;
    }

    .main-header .header-logo {
        height: 48px;
        max-width: 125px;
    }

}