/* ADYWEB Category Menu */
.adyweb-cat-menu-wrapper {
    width: 100%;
}

.adyweb-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.adyweb-cat-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 10px;
    background-color: #ffffff;
    padding: 14px;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.adyweb-cat-image-wrap {
    border-radius: 8px;
    overflow: hidden;
}

.adyweb-cat-image {
    display: block;
    width: 100%;
    height: auto;
}

.adyweb-cat-title {
    font-weight: 600;
    font-size: 1rem;
}

.adyweb-cat-count {
    font-size: 0.85rem;
    opacity: 0.8;
}

.adyweb-cat-description {
    font-size: 0.9rem;
    opacity: 0.85;
}

.adyweb-cat-error {
    padding: 10px 14px;
    border-radius: 6px;
    background: #fff4f4;
    color: #b00020;
    font-size: 0.9rem;
}

/* Hover animations */
.adyweb-cat-anim-lift .adyweb-cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.adyweb-cat-anim-grow .adyweb-cat-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.adyweb-cat-anim-shrink .adyweb-cat-card:hover {
    transform: scale(0.97);
}

.adyweb-cat-anim-glow .adyweb-cat-card:hover {
    box-shadow: 0 0 0 1px rgba(0,0,0,0.04), 0 0 12px rgba(0,0,0,0.08);
}
