.tola-product-overview{
	max-width: 100%;
}

.tola-product-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a2340;
    margin-bottom: 24px;
}

.tola-product-attributes {
    display: flex;
    gap: 48px;
    margin-bottom: 24px;
}

.tola-product-attributes .label {
	display: block;
    margin-bottom: 8px;
}

.tola-product-attributes .value {
    display: block;
    color: #0a2340;
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 2px;
}

.tola-product-colors {
    margin-bottom: 24px;
}

.tola-product-colors .color-label {
    color: #bdbdbd;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 4px;
}

.color-swatch {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e0e0e0;
    background: #fff;
}

.color-swatch img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.color-swatch {
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.color-swatch:hover {
    border-color: #0a2340;
    transform: scale(1.05);
}

.color-swatch.active {
    border-color: #ff6a13;
    border-width: 3px;
    transform: scale(1.1);
}

.tola-product-purchase-options {
    margin-bottom: 24px;
}

.tola-product-purchase-options .purchase-label {
    color: #bdbdbd;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.purchase-buttons {
    display: flex;
    gap: 16px;
}

.purchase-btn {
    background: #fff;
    color: #0a2340;
    border: 2px solid #0a2340;
    border-radius: 12px;
    padding: 12px 28px;
    font-size: 1.15rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-block;
    position: relative;
    user-select: none;
}

.purchase-btn input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.purchase-btn .btn-text {
    display: block;
    pointer-events: none;
    transition: color 0.2s ease;
}

/* Unchecked state */
.purchase-btn {
    background: #fff;
    color: #0a2340;
}

/* Checked state */
.purchase-btn input[type="radio"]:checked + .btn-text {
    color: #fff;
}

.purchase-btn input[type="radio"]:checked {
    background: #0a2340;
    color: #fff;
    border-color: #0a2340;
}

/* Style the label when radio is checked */
.purchase-btn:has(input[type="radio"]:checked) {
    background: #0a2340;
    color: #fff;
    border-color: #0a2340;
}

/* Hover state for unchecked buttons */
.purchase-btn:hover:not(:has(input[type="radio"]:checked)) {
    background: #f5f5f5;
    border-color: #0a2340;
}

.purchase-btn:hover:not(:has(input[type="radio"]:checked)) .btn-text {
    color: #0a2340;
}

.tola-product-overview .tola-product-overview-price {
    margin-bottom: 32px;
}

.tola-product-overview-price .price-label {
    display: block;
    margin-bottom: 12px;
}

.tola-product-overview-price .contact-us-text {
    color: #0a2340;
    font-size: 1.3rem;
    font-weight: 700;
}

.price-values {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.sale-price {
    color: #ff6a13;
    font-size: 2.2rem;
    font-weight: 700;
}

.regular-price {
    color: #bdbdbd;
    font-size: 1.3rem;
    font-weight: 600;
    text-decoration: line-through;
}

.price-unit {
    font-size: 0.8em;
    font-weight: 500;
    opacity: 0.8;
}

.tola-installation-notes {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(-10px);
    opacity: 0;
    overflow: hidden;
}

.tola-installation-notes.show {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tola-installation-notes:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.tola-installation-notes-title {
    color: #0a2340;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 12px 0;
    transition: all 0.3s ease 0.1s;
    transform: translateY(10px);
    opacity: 0;
}

.tola-installation-notes.show .tola-installation-notes-title {
    transform: translateY(0);
    opacity: 1;
}

.tola-installation-notes-content {
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.6;
    transition: all 0.3s ease 0.2s;
    transform: translateY(10px);
    opacity: 0;
}

.tola-installation-notes.show .tola-installation-notes-content {
    transform: translateY(0);
    opacity: 1;
}

.tola-installation-notes-content p {
    margin: 0 0 8px 0;
}

.tola-installation-notes-content p:last-child {
    margin-bottom: 0;
}

.tola-product-contact {
    margin-top: 32px;
}

.contact-btn {
    display: inline-block;
    background: #0a2340;
    color: #fff;
    font-size: 1.35rem;
    font-weight: 600;
    border: none;
    border-radius: 40px;
    padding: 18px 48px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.contact-btn:hover {
    background: #ff6a13;
    color: #fff;
}