.main-content {
    top: clamp(40px, 5vw, 50px);
}

.nav {
    height: clamp(40px, 5vw, 50px);
}

.nav--item {
    padding: 10px;
    cursor: pointer;
    font-size: clamp(13px, 2vw, 16px);
    height: 100%;
}

.nav--link:has(.nav--item.active) {
    pointer-events: none;
}

.nav--item.active {
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(162.63deg, #8d4df3 0%, #0120d4 98.99%);
    border-image-slice: 1;
    width: 100%;
    background: linear-gradient(162.63deg, #8d4df3 0%, #0120d4 98.99%);
    background-clip: text;
    color: transparent;
}

.nav--item:not(.active):hover {
    background: linear-gradient(162.63deg, #8D4DF3 0%, #0120D4 98.99%);
    background-clip: text;
    color: transparent;
    border-bottom: 4px solid transparent;
    border-image: linear-gradient(162.63deg, #8D4DF3 0%, #0120D4 98.99%);
    border-image-slice: 1;
    width: 100%;
    transition: all 0.1s ease;
}

.content-header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.content-header-left {
    display: flex;
    flex-direction: row;
    gap: 5px;

}

.content-header-right {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    width: 75%;
}

.filter-group{
    width: 75%;
}

.my_store_count {
    padding: 4px 8px;
    gap: 10px;
    opacity: 1;
    border-radius: 4px;
    background: linear-gradient(119.16deg, #8D4DF3 0%, #0120D4 100%);
    font-weight: 600;
    font-size: 20px;
    line-height: 100%;
    text-align: center;
    color: #FFFFFF;

}

.search-group {
    background: #FFFFFF;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
    width: 100%;
}

.search-group i {
    color: #888;
    font-size: 16px;
}

.search-group input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 14px;
}

.btn-filter {
    background-color: #FFFFFF;
    border-radius: 4px;
    padding: 12px;
    border: none;
    font-weight: 400;
    font-size: 14px;
}

.btn-create-shop {
    background: linear-gradient(#8D4DF3, #0120D4);
    padding: 12px;
    font-size: 14px;
    border-radius: 4px;
    font-weight: 600;
    color: #FFFFFF;
    border: none;
}

.card-category,
.view-card-category {
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    text-align: justify;
    color: #0120D4;

}

.card-title,
.view-card-title {
    font-weight: 600;
    color: #000000;
    font-size: 16px;
}

.card-price,
.view-card-price {
    text-decoration: line-through;
    font-size: 14px;
    font-weight: 400;
    color: #7E7E7E;
    line-height: 100%;
}

.card-price-sale,
.view-card-price-sale {
    color: #FC3748;
    font-size: 20px;
    font-weight: 600;
}

.card-sale, .view-card-sale {
    background: linear-gradient(90deg, rgba(255, 92, 48, 0.15) 0%, rgba(252, 55, 72, 0.15) 100%);
    padding: 5px 6px;
    border-radius: 4px;
    color: #FF5C30;
}

.card-paginated {
    margin: 30px;
    padding: 10px;
    background-color: #FFFFFF;
    border-radius: 8px;
}

.card-item {
    display: flex;
    flex-direction: column;
    border: none;
    border-radius: 8px;
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.25s ease;
}

.card-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.view-card-status {
    background: #55B10026;
    padding: 4px 12px;
    opacity: 1;
    border-radius: 100px;
    color: #55B100;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
}


@media (max-width: 768px) {
    .content-header {
        flex-direction: column;
    }

    .content-header-right,
    .filter-group {
        width: auto;
    }
}

