.category01 {
    padding: 30px 0;
}

.category01-slider .slick-list {
    margin: 0 -15px;
}

.category01-item {
    padding: 0 15px;
    text-align: center;
    position: relative;
    margin-bottom: 30px;
}

.category01-item a {
    display: block;
    text-decoration: none;
}

.category01-image {
    aspect-ratio: 1/1;
    width: 100%;
    margin: 0 auto 20px;
    max-width: 250px;
    background: #F8F5F2;
    /* Soft beige background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    overflow: hidden;
    /* padding: 20px; */
    border: 1px solid transparent;
    /* Prepare for border hover */
}

.category01-image img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.category01-item:hover .category01-image {
    background: #fff;
    border-color: #D1A272;
    box-shadow: 0 10px 25px rgba(209, 162, 114, 0.1);
}

.category01-item:hover .category01-image img {
    transform: scale(1.08);
}

.category01-item:hover .category01-name {
    color: var(--primary-color, #D1A272);
}

.category01-name {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.category01-count {
    font-size: 14px;
    color: #999;
    font-weight: 400;
    transition: all 0.3s ease;
    display: block;
}

.category01-view {
    font-size: 14px;
    color: #D1A272;
    text-decoration: underline;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0;
    margin-top: -21px;
    /* Align with count */
}

.category01-item:hover .category01-count {
    opacity: 0;
    visibility: hidden;
}

.category01-item:hover .category01-view {
    opacity: 1;
    visibility: visible;
}

/* Slick Dots Styling */
.category01-slider .slick-dots {
    bottom: -50px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    top: 20px;
}

.category01-slider .slick-dots li {
    margin: 0 6px;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category01-slider .slick-dots li button:before {
    display: none;
}

.category01-slider .slick-dots li button {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 1px solid #D1B894;
    border-radius: 50%;
    opacity: 0.6;
    padding: 0;
    transition: all 0.3s ease;
    font-size: 0;
    cursor: pointer;
}

.category01-slider .slick-dots li.slick-active {
    margin: 0 8px;
}

.category01-slider .slick-dots li.slick-active button {
    width: 32px;
    height: 8px;
    background: #D1B894;
    border-radius: 10px;
    opacity: 1;
    border: none;
}

@media (max-width: 1199px) {
    .category01-image {
        max-width: 220px;
    }
}

@media (max-width: 991px) {
    .category01-image {
        max-width: 180px;
    }

    .category01-name {
        font-size: 18px;
    }
}

@media (max-width: 767px) {
    .category01-image {
        max-width: 150px;
        padding: 15px;
    }

    .category01-name {
        font-size: 16px;
    }

    .category01 {
        padding: 40px 0;
    }
}