/* InstantPrint Style Product Page */
.product-page-wrapper {
    background: #f5f5f5;
    padding: 0;
}

.product-page-wrapper .container {
    background: #fff;
    padding: 30px;
    max-width: 1200px;
}

.product-page-wrapper .title-page {
    font-size: 26px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.product-breadcrumb {
    background: transparent;
    padding: 5px 0;
    margin-bottom: 15px;
    font-size: 13px;
}

.product-section {
    margin-bottom: 25px;
}

.section-heading {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.form-row-clean {
    margin-bottom: 18px;
}

.form-label-clean {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    display: block;
}

.form-input-clean {
    width: 100%;
    height: 42px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.size-options-clean {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.size-option input[type="radio"] {
    display: none;
}

.size-option span {
    display: block;
    padding: 10px 18px;
    background: #fff;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.size-option input:checked + span {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
}

.quantity-controls {
    display: inline-flex;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.qty-btn {
    width: 40px;
    height: 42px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
    font-size: 18px;
}

.qty-input {
    width: 60px;
    height: 42px;
    border: none;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    text-align: center;
}

.finishing-grid-clean {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}

.finishing-option-clean input[type="radio"] {
    display: none;
}

.finishing-inner {
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.finishing-option-clean input:checked + .finishing-inner {
    border-color: #007bff;
}

.finishing-image {
    height: 120px;
    background: #f5f5f5;
}

.finishing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.finishing-label {
    padding: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
}

.upload-options-clean {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.upload-option-clean input[type="radio"] {
    display: none;
}

.upload-inner {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.upload-option-clean input:checked + .upload-inner {
    border-color: #007bff;
    background: #f0f8ff;
}

.upload-text strong {
    display: block;
    font-size: 14px;
    margin-bottom: 4px;
}

.upload-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.product-summary-modern {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 20px;
}

.product-summary-modern .card-header {
    background: #333;
    color: #fff;
    padding: 12px 15px;
    margin: -20px -20px 15px -20px;
    border-radius: 4px 4px 0 0;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
}

.summary-label {
    font-size: 13px;
    color: #666;
}

.summary-value {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.summary-total {
    background: #fff;
    margin: 15px -20px -20px -20px;
    padding: 15px 20px;
    border-top: 2px solid #ddd;
}

.summary-total .summary-label {
    font-size: 16px;
    font-weight: 700;
    color: #333;
}

.price-value-total {
    font-size: 24px;
    font-weight: 700;
    color: #d9534f;
}

.btn-add-to-cart {
    width: 100%;
    padding: 14px;
    background: #d9534f;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.btn-add-to-cart:hover {
    background: #c9302c;
}

.delivery-info {
    margin-top: 15px;
    padding: 10px;
    background: #d4edda;
    border-radius: 4px;
    text-align: center;
    font-size: 13px;
    color: #155724;
}

@media (max-width: 991px) {
    .product-page-wrapper .container {
        padding: 20px;
    }
}
