@font-face {
    font-family: 'IranianSans';
    src: url('/main/fonts/IranianSans.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/* General reset and RTL setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'IranianSans', Arial, sans-serif;
    direction: rtl;
    text-align: right;
}

/* Prevent scroll when menu is open */
body.chami-no-scroll {
    overflow: hidden;
}

/* Header container */
.chami-header-container {
    background-color: #292b76;
    padding: 20px 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: chami-header-slide 1s ease-out forwards;
}

/* Header slide-in animation */
@keyframes chami-header-slide {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo styling */
.chami-logo-wrapper {
    flex-shrink: 0;
}

.chami-logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.chami-logo-text:hover {
    transform: scale(1.1);
    color: #e0e0e0;
}

/* Navigation menu */
.chami-nav-menu {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease-in-out;
}

/* Menu overlay */
.chami-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    transition: opacity 0.3s ease-in-out;
    opacity: 0;
}

.chami-menu-overlay.chami-overlay-active {
    display: block;
    opacity: 1;
}

.chami-nav-list {
    list-style: none;
    display: flex;
    margin: 0;
}

.chami-nav-list li {
    margin: 0 15px;
    position: relative;
}

.chami-nav-link, .chami-user-name-link {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.chami-nav-link:hover, .chami-user-name-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    color: #e0e0e0;
}

.chami-nav-link i, .chami-user-name-link i {
    font-size: 1.2rem;
}

/* Submenu styling for categories */
.chami-subnav-list {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #3f4194;
    list-style: none;
    padding: 10px 0;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    z-index: 1000;
}

.chami-nav-categories:hover .chami-subnav-list {
    display: block;
}

.chami-subnav-list li {
    margin: 0;
}

.chami-subnav-link {
    font-size: 1rem;
    padding: 8px 15px;
    width: 100%;
    justify-content: flex-start;
}

.chami-subnav-link:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* استایل برای عدد سبد خرید */
#cart-count {
    background-color: #dc2626;
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 6px;
    border-radius: 50%;
    position: relative;
    top: -10px;
    right: -5px;
}

/* انیمیشن سبد خرید */
#cart-icon.cart-animated {
    animation: cartShake 0.5s ease;
}

@keyframes cartShake {
    0% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(0.9); }
    75% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Fade-in animation for nav items */
.chami-nav-list li {
    animation: chami-nav-fade 0.5s ease forwards;
    animation-delay: calc(0.1s * var(--chami-nav-order));
}

@keyframes chami-nav-fade {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.chami-nav-products { --chami-nav-order: 1; }
.chami-nav-categories { --chami-nav-order: 2; }
.chami-nav-cart { --chami-nav-order: 3; }
.chami-nav-about { --chami-nav-order: 4; }
.chami-nav-contact { --chami-nav-order: 5; }

/* Login section */
.chami-login-wrapper {
    flex-shrink: 0;
}

/* Hamburger menu */
.chami-hamburger {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0;
    transition: transform 0.3s ease;
}

.chami-hamburger:hover {
    transform: scale(1.1);
}

.chami-close-menu {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    position: absolute;
    top: 20px;
    left: 20px;
    transition: transform 0.3s ease;
}

.chami-close-menu:hover {
    transform: rotate(90deg);
}

/* Mobile and tablet menu styles */
@media (max-width: 1023px) {
    .chami-header-container {
        padding: 15px 20px;
    }

    .chami-logo-text {
        font-size: 2rem;
    }

    .chami-hamburger {
        display: block;
    }

    .chami-nav-menu {
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100vh;
        background-color: #292b76;
        flex-direction: column;
        justify-content: flex-start;
        padding: 60px 20px 20px;
        box-shadow: -4px 0 6px rgba(0, 0, 0, 0.2);
        z-index: 1000;
    }

    .chami-nav-menu.chami-nav-open {
        right: 0;
    }

    .chami-close-menu {
        display: block;
    }

    .chami-nav-list {
        flex-direction: column;
        margin-top: 20px;
        width: 100%;
        padding-right: 15px;
    }

    .chami-nav-list li {
        margin: 15px 0;
        width: 100%;
    }

    .chami-nav-link, .chami-user-name-link {
        font-size: 1.2rem;
        justify-content: flex-start;
        width: 100%;
        padding: 10px 15px;
    }

    .chami-subnav-list {
        position: static;
        background-color: #3f4194;
        box-shadow: none;
        padding: 10px 15px;
        display: none;
    }

    .chami-nav-categories.chami-subnav-open .chami-subnav-list {
        display: block;
    }

    .chami-nav-categories:hover .chami-subnav-list {
        display: none; /* غیرفعال کردن هاور در موبایل و تبلت */
    }

    .chami-login-wrapper {
        width: 100%;
        padding-right: 15px;
    }

    #cart-count {
        top: -5px;
        right: 0;
    }
}

/* دسکتاپ */
@media (min-width: 1024px) {
    .chami-nav-categories:hover .chami-subnav-list {
        display: block; /* فعال کردن هاور فقط در دسکتاپ */
    }
}