.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    border-top: 1px solid #e5e5e5;
}

.sticky-cta.is-visible {
    transform: translateY(0);
}

.sticky-cta-container {
    margin: 0 auto;
    padding: 10px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Product Info Section */
.sticky-cta-product-info {
    display: none;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

.sticky-cta-image {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 4px;
    flex-shrink: 0;
}

.sticky-cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sticky-cta-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sticky-cta-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sticky-cta-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sticky-cta-current-price,
.sticky-cta-discount-price {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.sticky-cta-regular-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

/* Actions Section */
.sticky-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.sticky-cta-variants {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0;
}

.sticky-cta-variant-group {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    flex: 1 1 100%;
}

/*.sticky-cta-variant-group.only-one {
    display: none;
}*/

.sticky-cta-quantity-label {
    display: none;
}

.sticky-cta-variant-label,
.sticky-cta-quantity-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    margin: 0;
}

.sticky-cta-variant-select,
.sticky-cta-quantity-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    min-width: 100px;
    flex: 1;
}

.sticky-cta-variant-select:focus,
.sticky-cta-quantity-select:focus {
    outline: none;
    border-color: #000;
}

.sticky-cta-quantity {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 10px;
    flex: 0 0 60px;
    text-align: center;
}

.sticky-cta-quantity-select {
    min-width: 80px;
    height: 100%;
    text-align: center;
}

.sticky-cta-button {
    width: 100%;
}

.sticky-cta-add {
    display: flex;
    gap: 10px;
}

/* Mobile first */
@media (min-width:576px) {
    
}

@media (min-width:768px) {
    .sticky-cta-container {
        padding: 10px 15px;
    }

    .sticky-cta-quantity-label {
        display: block;
    }
}

@media (min-width:992px) {
    .sticky-cta-button {
        width: auto;
    }

    .sticky-cta-product-info {
        display: flex;
    }

    .sticky-cta-actions {
        flex-direction: row;
    }
}
