/* الصفحة الرئيسية للزائر */
.slider-container {
    width: 116%;
    height: 400px;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
    margin-right: 110px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.slide {
    display: none;
    width: 86%;
    height: 100%;
    border-radius: 15px;
}

.slide img {
    width: 86%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.welcome-box-moving {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 12px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    margin-right: 110px;
    margin-left: 110px;
}

.moving-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 12s linear infinite;
    font-size: 14px;
    color: #333;
}

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

.search-container {
    position: relative;
    margin-bottom: 20px;
    margin-left: 110px;
    margin-right: 110px;
}

.search-input {
    width: 100%;
    padding: 12px 20px;
    background-color: #ededed;
    border: none;
    border-radius: 25px;
    font-size: 15px;
    color: #666;
    outline: none;
    text-align: right;
}

.categories-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-start;
    width: 86%;
    text-align: center;
    padding: 40px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #888;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px dashed #ccc;
    margin-top: 10px;
    margin-bottom: 120px;
    margin-right: 110px;
    margin-left: 110px;
}

.category-item {
    width: calc(25% - 15px);
    box-sizing: border-box;
    text-align: center;
}

.category-circle {
    width: 90%;
    aspect-ratio: 1 / 1;
    border-radius: 0;
    overflow: hidden;
    background-color: #eee;
}

.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.category-name {
    color: #000000 !important;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
    text-align: center;
    display: block;
}

.category-item:hover .category-circle {
    transform: scale(1.05);
    transition: 1s;
}

@media (max-width: 768px) {
    .slider-container,
    .welcome-box-moving,
    .search-container,
    .categories-container {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .slide,
    .slide img {
        width: 100%;
    }

    .category-item {
        width: calc(50% - 10px);
    }

    .slider-container {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 180px;
    }

    .category-name {
        font-size: 13px;
    }
}

#searchEmptyHint {
    width: 100%;
    text-align: center;
    color: #64748b;
    font-weight: 700;
    margin: 12px 0 24px;
}
