/* Creative Menu Item Styles */
.creative-menu-item {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 25px;
    display: flex;
    align-items: center;
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
}

/* Reset inner default styles */
.creative-menu-item .cat-pricing-list {
    border-bottom: none !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.creative-menu-item:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #1B4D3E;
    /* Primary Green Theme Color */
}

/* Image Styling */
.creative-menu-item .cat-pri-icon {
    width: 110px;
    height: 110px;
    flex-shrink: 0;
    margin-right: 25px;
    overflow: hidden;
    border-radius: 50%;
    /* Circle image */
    border: 4px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    background: #fff;
    /* Fallback */
}

.creative-menu-item:hover .cat-pri-icon {
    border-color: #1B4D3E;
    transform: rotate(360deg) scale(1.05);
    /* Full rotation effect */
}

.creative-menu-item .cat-pri-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Content Area */
.creative-menu-item .cat-price-info {
    flex-grow: 1;
    padding: 0;
    width: auto;
}

/* Title */
.creative-menu-item .cat-pricing-title h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
    padding-right: 80px;
    /* Space for price tag */
    transition: color 0.3s ease;
}

.creative-menu-item:hover .cat-pricing-title h4 {
    color: #1B4D3E;
}

/* Description */
.creative-menu-item p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Price Badge */
.creative-menu-item .cat-pricing-title .cat-price {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #1B4D3E;
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(27, 77, 62, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #fff;
}

.creative-menu-item:hover .cat-pricing-title .cat-price {
    background: #143d23;
    /* Darker green on hover */
    transform: scale(1.15);
    box-shadow: 0 6px 15px rgba(20, 61, 35, 0.3);
}

/* Responsive */
@media (max-width: 575px) {
    .creative-menu-item {
        display: block;
        text-align: center;
        padding: 30px 20px;
    }

    .creative-menu-item .cat-pri-icon {
        margin: 0 auto 20px;
        width: 100px;
        height: 100px;
    }

    .creative-menu-item .cat-pricing-title h4 {
        padding-right: 0;
    }

    .creative-menu-item .cat-pricing-title .cat-price {
        position: relative;
        top: auto;
        right: auto;
        display: inline-block;
        margin-top: 15px;
    }
}