.woo-product-sticky-form {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    width: 100%;
    margin-bottom: 20px;
}

.woo-product-sticky-form h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1b1919;
 }

.woo-product-sticky-form label {
    font-size: 16px;
    font-weight: 600;
    color: #1b1919;
    margin-bottom: 6px;
    display: block;
 }

.woo-product-sticky-form select {
    width: 100%;
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 12px;
    font-size: 16px;
}

.woo-product-sticky-form .quantity-wrapper {
    margin-top: 12px;
}

.woo-product-sticky-form .quantity-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.woo-product-sticky-form .quantity-flex input[type="number"] {
    width: 70px;
    height: 70px;
    border: 1px solid #ccc;
    border-radius: 0px;
    text-align: center;
    background-color: #f9f9f9;
    color: #555;
    font-size: 16px;
 }

.woo-product-sticky-form .quantity-flex input[readonly] {
    cursor: not-allowed;
}

.woo-product-sticky-form .quantity-note {
    font-size: 12px;
    color: #666;
    flex: 1;
    text-align: left;
}

.woo-product-sticky-form .product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.woo-product-sticky-form .price-amount {
    color: #c67b05;
    font-size: 32px;
    font-weight: 700;
}

.woo-product-sticky-form .asme-price-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.woo-product-sticky-form .price-comparison {
    background-color: #c67b05;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    display: inline-block;
    padding: 10px 14px;
    border-radius: 22px;
}

.woo-product-sticky-form .price-asme {
    color: #8C8C8C;
    font-size: 22px;
    text-decoration: line-through;
}

.woo-product-sticky-form .tax-note {
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.woo-product-sticky-form button.add_to_cart_button {
    width: 100%;
    margin-top: 20px;
}

.woo-product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    width: 90%;
}

.woo-product-info .info-section {
    position: relative;
    flex: 1;
    text-align: left;
}

.woo-product-info .info-section .info-label {
    font-size: 18px;
    font-weight: 600;
    color: #1b1919;
    margin-bottom: 6px;
    display: block;
}

.woo-product-info .info-section:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(-100% / 3);
    transform: translateY(-50%);
    width: 2px;
    height: 45px;
    background-color: #c67b05;
}

.product-publisher-info label {
    font-weight: bold;
    margin-right: 5px;
}

.product-page-count label {
    font-weight: bold;
    margin-right: 5px;
}

@media (max-width: 767px) {
    .woo-product-sticky-form .product-price {
        gap: 16px;
        margin-top: 12px;
        margin-bottom: 24px;
    }
}