/* ===== GENERAL PRODUCT PAGE ===== */
body.single-product {
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
}

/* ===== PRODUCT TITLE ===== */
.product_title.entry-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
    margin-top: 20px;
}

/* ===== PRICE STYLING ===== */
.woocommerce-Price-amount {
    font-size: 22px;
    color: #006400;
    font-weight: 600;
}

.ast-shipping-text {
    font-size: 14px;
    color: #1e90ff;
    font-weight: 500;
    margin-left: 10px;
}

/* ===== AVAILABILITY ===== */
.ast-stock-detail {
    background-color: #e9fbe7;
    border: 1px solid #c6e3c4;
    padding: 10px;
    border-radius: 4px;
    margin-top: 10px;
    font-weight: bold;
    color: #2d672d;
}

/* ===== VARIATION DROPDOWN (Brass Alloy) ===== */
#brass-alloy {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    margin-top: 8px;
    width: 100%;
}

/* ===== SWATCH BUTTON STYLES ===== */
.cfvsw-swatches-option {
    border: 1px solid #aaa;
    padding: 6px 10px;
    margin-right: 6px;
    background-color: #f2f2f2;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cfvsw-swatches-option:hover {
    background-color: #ddd;
    border-color: #333;
}

/* ===== QUANTITY FIELD ===== */
.quantity input.qty {
    width: 70px;
    height: 40px;
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

/* ===== ADD TO CART BUTTON ===== */
.single_add_to_cart_button {
    background-color: #0073e6;
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    margin-top: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.single_add_to_cart_button:hover {
    background-color: #005bb5;
}

/* ===== PRODUCT IMAGE STYLING ===== */
.woocommerce-product-gallery img {
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* ===== BREADCRUMB NAV ===== */
.woocommerce-breadcrumb {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.woocommerce-breadcrumb a {
    color: #555;
}

.woocommerce-breadcrumb a:hover {
    text-decoration: underline;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 768px) {
    .summary.entry-summary {
        padding: 10px 15px;
    }

    .product_title.entry-title {
        font-size: 22px;
    }

    .single_add_to_cart_button {
        width: 100%;
    }
}
