/* ================================
   КАТЕГОРИИ DAVTASHEN.ONLINE
   ================================ */

.davtashen-categories {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
    width: 100%;
    margin: 20px 0;
}


/* ================================
   КАРТОЧКА — ВЕСЬ КВАДРАТ ЯВЛЯЕТСЯ ССЫЛКОЙ
   ================================ */

.dav-category {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    width: 100%;
    aspect-ratio: 1 / 1;

    padding: 12px 8px 8px;

    border-radius: 17px;

    text-decoration: none !important;
    color: #111 !important;

    overflow: hidden;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        transform 0.2s ease;
}


/* Небольшой эффект при наведении */

.dav-category:hover {
    transform: translateY(-2px);
}


/* ================================
   ЦВЕТА КАРТОЧЕК
   ================================ */

.dav-cat-1 {
    background: #AFEEBF; /* #c8e9c5 */
}

.dav-cat-2 {
    background: #FFE5D7; /* #ffe0d3 */
}

.dav-cat-3 {
    background: #CEECFE; /* #dcecff */
}

.dav-cat-4 {
    background: #F4D4FD; /* #eee8e3 */
}

.dav-cat-5 {
    background: #FFE692; /* #ffdf85 */
}

.dav-cat-6 {
    background: #9DE8EB; /* #ffc095 */
}


/* ================================
   ЦВЕТ ПРИ НАВЕДЕНИИ
   ================================ */

.dav-cat-1:hover {
    background: #a9dba5;
}

.dav-cat-2:hover {
    background: #ffc5b0;
}

.dav-cat-3:hover {
    background: #bddaff;
}

.dav-cat-4:hover {
    background: #DFC2E7;
}

.dav-cat-5:hover {
    background: #ffd15a;
}

.dav-cat-6:hover {
    background: #8BCED0;
}


/* ================================
   ИКОНКА
   ================================ */

.dav-category-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 75%;
    height: 65%;

    flex-shrink: 0;
}

.dav-category-icon img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    border: 0;
}


/* ================================
   НАЗВАНИЕ
   ================================ */

.dav-category-title {
    display: flex;
    align-items: flex-start;
    justify-content: center;

    width: 100%;

    margin-top: 3px;

    color: #111;

    font-size: 15px;
    font-weight: 600;
    line-height: 1.15;

    text-align: center;

    overflow: hidden;
}


/* ================================
   ПЛАНШЕТ — 3 В РЯД
   ================================ */

@media (max-width: 1023px) {

    .davtashen-categories {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

}


/* ================================
   СМАРТФОН — 2 В РЯД
   ================================ */

@media (max-width: 767px) {

    .davtashen-categories {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .dav-category {
        padding: 9px 6px 6px;
        border-radius: 14px;
    }

    .dav-category-title {
        font-size: 13px;
        line-height: 1.1;
    }

}


/* ================================
   МАЛЕНЬКИЕ СМАРТФОНЫ
   ================================ */

@media (max-width: 380px) {

    .davtashen-categories {
        gap: 8px;
    }

    .dav-category-title {
        font-size: 12px;
    }

}