.cart {
    display: flex;
    width: 100%;
}

.single_add_to_cart_button {
    display: flex !important;
    height: 48px !important;
    padding: 12px 32px 12px 24px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    flex: 1 0 0 !important;
    border-radius: 48px !important;
    background: linear-gradient(92deg, #FF6082 0%, #D5153E 89.03%) !important;
    box-shadow: -0.948px -0.948px 10px 0px rgba(18, 59, 29, 0.05),
                1.897px 1.897px 10px 0px rgba(18, 59, 29, 0.12) !important;
    border: none !important;
    color: white !important;
    font-family: var(--font-primary) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 120% !important;	
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    margin: 0 !important;
    width: 100% !important;
    min-width: unset !important;
}

.single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: -1px -1px 12px 0px rgba(18, 59, 29, 0.08),
                2px 2px 12px 0px rgba(18, 59, 29, 0.15) !important;
    opacity: 0.95;
}

.cart-icon-wrapper {
    display: flex;
    align-items: center;
}

/* Sticky footer "Select options" button for variable products */
.wd-sticky-add-to-cart {
    display: flex !important;
    height: 48px !important;
    padding: 12px 32px 12px 24px !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 16px !important;
    border-radius: 48px !important;
    background: linear-gradient(92deg, #FF6082 0%, #D5153E 89.03%) !important;
    box-shadow: -0.948px -0.948px 10px 0px rgba(18, 59, 29, 0.05),
                1.897px 1.897px 10px 0px rgba(18, 59, 29, 0.12) !important;
    border: none !important;
    color: white !important;
    font-family: var(--font-primary) !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 120% !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
}

.wd-sticky-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: -1px -1px 12px 0px rgba(18, 59, 29, 0.08),
                2px 2px 12px 0px rgba(18, 59, 29, 0.15) !important;
    opacity: 0.95;
    color: white !important;
    background: linear-gradient(92deg, #FF6082 0%, #D5153E 89.03%) !important;
}

.wd-sticky-btn .price {
    display: inline-grid;
}

/* Mobile styles */
@media (max-width: 768px) {
    .single_add_to_cart_button {
        height: 40px !important;
        padding: 8px 24px 8px 16px !important;
        gap: 12px !important;
        font-size: 14px !important;
        font-weight: 700;
        line-height: 120%;
    }
    
    .wd-sticky-add-to-cart {
        height: 40px !important;
        padding: 8px 24px 8px 16px !important;
        gap: 12px !important;
        font-size: 14px !important;
    }
} 