/* ==========================================================================
   PRODUCT PAGE STYLES
   ========================================================================== */

/**start product page styling**/
div.product {
    margin: 12px;
    padding: 12px;
}

/*Product Title*/
h1.product_title {
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
    line-height: 1.3;
}


/*quantity*/
div.quantity {
    display: flex;
    align-items: center;
    border: 2px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
}

input.input-text.qty.text {
    border: none;
    width: 60px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    padding: 8px 8px;
}




/*Variation Buttons*/

.variations-wrapper {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    margin: 25px 0;
    border: 1px solid #e0e0e0;
}

.variation-attribute {
    margin-bottom: 25px;
}

.variation-attribute:last-child {
    margin-bottom: 0;
}

.variation-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.variation-label .required {
    color: #d00;
    font-weight: bold;
}

/* Button-based selector */
.variation-buttons-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.variation-button {
    flex: 0 1 auto;
    padding: 12px 20px;
    min-width: 100px;
    border: 1px solid #0066cc;
    background: #fff;
    color: #0056b3;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 5px;
    text-align: center;
    position: relative;
}

.variation-button:hover {
    border-color: #0056b3;
    color: #0056b3;
	  background-color:#fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 115, 170, 0.15);
}

.variation-button.selected {
    border-color: #0066cc;
    background: #0066cc;
    color: #fff;
   box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

