/* =========================================
   1. CONTAINER & SLIDER
   ========================================= */
.vn-cat-carousel-wrapper {
    position: relative;
    width: 100%;
    padding: 10px 50px; /* Thụt lề nhường chỗ cho mũi tên */
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.vn-cat-swiper {
    width: 100%;
    overflow: hidden;
    padding: 15px 5px; /* Để box shadow không bị cắt */
}

/* =========================================
   2. CARD DANH MỤC (BOX)
   ========================================= */
.vn-cat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 12px;
    padding: 30px 15px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.vn-cat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: #f1f1f1;
}

/* =========================================
   3. ICON & TEXT
   ========================================= */
.vn-cat-icon {
    font-size: 45px; /* Size cho Font Icon */
    color: #ff004d;  /* Màu đỏ hồng giống ảnh */
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 105px;
}

.vn-cat-icon svg, 
.vn-cat-icon img {
    width: 185px;
    height: 45px;
    fill: #ff004d;
    object-fit: contain;
}

.vn-cat-title {
    font-size: 16px;
    font-weight: 500;
    color: #555555;
    margin: 0 0 12px 0;
    text-align: center;
    line-height: 1.3;
}

.vn-cat-count {
    background: #f5f5f5;
    color: #999;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 16px;
    border-radius: 30px; /* Hình con nhộng */
    display: inline-block;
}

/* =========================================
   4. NAVIGATION (MŨI TÊN ĐỎ)
   ========================================= */
.vn-cat-prev, 
.vn-cat-next {
    width: 40px !important;
    height: 40px !important;
    margin-top: -20px !important;
}

.vn-cat-prev:after, 
.vn-cat-next:after {
    font-size: 30px !important;
    font-weight: 900 !important;
    color: #ff0000; /* Đỏ tươi giống ảnh */
}

/* Đưa mũi tên tràn ra mép ngoài */
.vn-cat-prev { left: 0 !important; }
.vn-cat-next { right: 0 !important; }

/* =========================================
   5. RESPONSIVE
   ========================================= */
@media (max-width: 768px) {
    .vn-cat-carousel-wrapper { padding: 10px 30px; }
    .vn-cat-prev:after, .vn-cat-next:after { font-size: 20px !important; }
    .vn-cat-box { padding: 20px 10px; }
    .vn-cat-icon { font-size: 35px; height: 40px; margin-bottom: 10px; }
    .vn-cat-icon svg, .vn-cat-icon img { width: 35px; height: 35px; }
    .vn-cat-title { font-size: 14px; }
}