/* Card Wrapper (Outer Div) */
.custom-pobo-float-card-wrapper {
    width: 100%;
    padding: 15px;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
}

/* Product Card (Main Card Div) */
.custom-pobo-float-card-product {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    border: 3px solid #e5e5e5;
    border-radius: 12px;
    /* Initial box-shadow and transition are set here */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    max-width: 1000px;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease; /* Keeps the smooth transition for all properties */
}

/* Hover Effect */
.custom-pobo-float-card-product:hover {
    transform: translateY(-4px); /* Moves the card up */
    /* Changes the box-shadow and adds a red tint */
    box-shadow: 0 12px 24px rgba(220, 38, 38, 0.15); 
    border-color: #dc2626; /* Changes the border color to red */
}


/* Card Image Section */
.custom-pobo-float-card-image {
    flex: 1 1 350px;
    min-height: 250px;
    background-size: cover;
    background-position: center;
}

/* Card Content Section */
.custom-pobo-float-card-content {
    flex: 1 1 350px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

/* Card Tag (Span) */
.custom-pobo-float-card-tag {
    display: inline-block;
    padding: 4px 8px;
    background-color: #f5f5f5;
    color: #666666;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    letter-spacing: 1px;
    width: fit-content;
    margin-bottom: 16px;
}

/* Card Title (H2) */
.custom-pobo-float-card-title {
    margin: 0 0 12px 0;
    color: #111111;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

/* Card Description (P) */
.custom-pobo-float-card-description {
    margin: 0;
    color: #555555;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
}