/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
.wc-block-components-product-details,
.hidediv {
    display: none;
}

.wc-block-components-chip--radius-large {
    width: max-content;
    display: inline-block;
}

.wc-block-components-totals-discount__coupon-list {
    display: flex;
    flex-direction: column;
}

.bogo-offer-message {
    order: 999;
}

/* Center the entire form */
.swsp-pet-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 60vh;
    background: #fff;
    padding: 40px 0;
}

/* Style the form box */
.swsp-pet-info-form {
    background: #f9f9f9;
    border: 1px solid #e2e2e2;
    border-radius: 12px;
    padding: 25px 35px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.swsp-pet-info-form h4 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    font-size: 20px;
    font-weight: 600;
}

/* Align labels and inputs */
.swsp-pet-info-form p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.swsp-pet-info-form label {
    flex: 1;
    font-weight: 500;
    color: #555;
}

.swsp-pet-info-form input[type="text"],
.swsp-pet-info-form select {
    flex: 2;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
    font-size: 15px;
}

.swsp-pet-info-form input[type="text"]:focus,
.swsp-pet-info-form select:focus {
    border-color: #0073aa;
    outline: none;
    box-shadow: 0 0 4px rgba(0, 115, 170, 0.3);
}

/* Header mini-cart */
.woocommerce-MyAccount-navigation-link--downloads {
    display: none !important;
}

.woocommerce-order .woocommerce-order-details header {
    position: relative !important;
    ;
}

.menu-item-cart .cart-contents {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    font-weight: 500;
}

.cart-count {
    background: #ff5b5b;
    color: #fff;
    border-radius: 50%;
    padding: 3px 9px;
    font-size: 12px;
}

.cart-total {
    font-size: 13px;
    color: #555;
}

/* Small screen responsive */
@media (max-width: 600px) {
    .swsp-pet-info-form {
        padding: 20px;
    }

    .swsp-pet-info-form p {
        flex-direction: column;
        align-items: flex-start;
    }

    .swsp-pet-info-form label {
        margin-bottom: 5px;
    }
}