.carousel-container {
    width: 100%;
    position: relative;
    overflow: hidden;
    padding: 40px 0;
}
.carousel-wrapper {
    overflow: hidden;
    cursor: grab;
    position: relative;
    user-select: none;
    touch-action: pan-y;
}
.carousel-track {
    display: flex;
    gap: 20px;
    padding: 0;
    max-width: 1440px;
    margin: 0 auto;
    transform: translateX(0);
    transition: transform 0.3s ease;
}
.carousel-item {
    flex: 0 0 400px;
    height: 400px;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Add new styles for the product label */
.carousel-item .item-label {
    position: absolute;
    bottom: 25px;
    left: 25px;
    color: #ffffff;
    font-weight: 700;
}
.carousel-item .item-label .dot {
    color: #94193b;
}
.carousel-item:hover .item-label {
    display: none;
}
.carousel-item:hover img {
    border-radius: 0;
    transform: scale(1.1);
}
.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.carousel-item-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background: #000000d1;
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
}
.carousel-item:hover .carousel-item-content {
    transform: translateY(0);
    opacity: 1;
}
.carousel-item:hover .carousel-item-content h3,
.carousel-item:hover .carousel-item-content p {
    transform: translateY(0);
}
.carousel-item-content h3 {
    color: #00A7B5;
    margin-bottom: 15px;
    transform: translateY(-20px);
    transition: all 0.3s ease;
}
.carousel-item-content p {
    color: #ffffff;
    line-height: 1.7;
    max-width: 80%;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
/* Base styles for carousel content */
.carousel-item .carousel-item-content .pc-content-title {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
}
.carousel-item .carousel-item-content .pc-content-text {
    font-size: 12px;
    color: #333F48;
    line-height: 1.7;
}
.carousel-item-content p.pc-content-text:first-of-type {
    color: #00A7B5;
    margin-bottom: 10px;
}
.carousel-item-content p.pc-content-text:last-of-type {
    display: none;
    /* Hide the second paragraph in hover state */
}
.carousel-item:hover .carousel-item-content p.pc-content-text:first-of-type {
    transform: translateY(0);
    color: #ffffff;
}
