.price-table {
    margin: 2rem 0;
    padding: 0 2rem;
}

.table-container {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 0 1rem;
}

.price-table-main {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
}

.price-table-main th {
    background: #f8f9fa;
    color: #333;
    font-weight: 600;
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #dee2e6;
    font-size: 0.85rem;
}

.price-table-main td {
    padding: 0.75rem;
    border: 1px solid #dee2e6;
    vertical-align: top;
    line-height: 1.4;
}

.price-table-main tr:nth-child(even) {
    background-color: #f8f9fa;
}

.price-table-main tr:hover {
    background-color: #e9ecef;
    transition: background-color 0.2s ease;
}

.service-row {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.service-row:hover {
    background-color: #f8f9fa;
}

.service-row.selected {
    background-color: #e3f2fd;
    border-left: 4px solid #007bff;
}

.btn-remove {
    background: #ff4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 8px;
    display: none;
    line-height: 1;
    padding: 0;
}

.btn-remove:hover {
    background: #cc0000;
}

.unified-addons {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.unified-addons h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    text-align: center;
}

.addons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.unified-addon-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.unified-addon-item:hover {
    background: #e9ecef;
    border-color: #adb5bd;
}

.unified-addon-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #28a745;
}

.unified-addon-name {
    flex: 1;
    font-weight: 500;
    color: #495057;
}

.unified-addon-price {
    font-weight: 600;
    color: #28a745;
    min-width: 80px;
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.unified-addon-price .original-price {
    color: #9CA3AF;
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.8rem;
    font-weight: 500;
}

.unified-addon-price .addon-price {
    color: #10B981;
    font-weight: 700;
    font-size: 1rem;
}

/* 強制隱藏原本的加購項目行 */
.addons-row {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    overflow: hidden !important;
}

.addon-category {
    margin: 1.5rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}

.addon-category h3 {
    color: #495057;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #dee2e6;
}

.addon-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.addon-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    transition: all 0.2s ease;
    cursor: pointer;
}

.addon-item:hover {
    background: #e3f2fd;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.addon-item input[type="radio"],
.addon-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #28a745;
    cursor: pointer;
}

.addon-name {
    flex: 1;
    font-weight: 500;
    color: #495057;
    font-size: 0.95rem;
}

.unified-addon-price {
    font-weight: 600;
    color: #28a745;
    min-width: 80px;
    text-align: right;
    font-size: 0.9rem;
}

.addon-category-section {
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #dee2e6;
}

.addon-category-section h4 {
    color: #495057;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0 0 0.5rem 0;
    text-align: center;
}

/* 必要加購項目樣式 */
.required-addon {
    background-color: #FEF3C7;
    border: 2px solid #F59E0B;
}

.required-tag {
    background-color: #F59E0B;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: 600;
}

.addon-checkbox:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.required-addon .addon-name {
    color: #92400E;
    font-weight: 600;
}

/* Modal 樣式 */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    opacity: 0.8;
}

.modal-body {
    padding: 25px;
}

.booking-summary {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.summary-row:last-child {
    margin-bottom: 0;
}

.summary-label {
    font-weight: 600;
    color: #495057;
}

.summary-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
}

.summary-duration {
    font-size: 1.1rem;
    font-weight: 600;
    color: #6c757d;
}

.selected-services-summary {
    margin-bottom: 25px;
}

.booking-instructions {
    background: #e3f2fd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
}

.booking-instructions h4 {
    margin: 0 0 15px 0;
    color: #1976d2;
    font-size: 1.1rem;
}

.booking-instructions ol {
    margin: 0;
    padding-left: 20px;
    color: #424242;
    line-height: 1.6;
}

.booking-instructions li {
    margin-bottom: 8px;
}

.line-contact {
    text-align: center;
}

.line-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #00D900;
    color: white;
    text-decoration: none;
    padding: 15px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 217, 0, 0.3);
}

.line-button:hover {
    background: #00B800;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 217, 0, 0.4);
    color: white;
    text-decoration: none;
}

.line-button:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
    opacity: 0.6;
}

.line-button:disabled:hover {
    background: #6c757d;
    transform: none;
    box-shadow: 0 2px 8px rgba(108, 117, 125, 0.3);
}

/* 按鈕提示框樣式 */
.button-tooltip {
    position: relative;
    display: inline-block;
}

.button-tooltip .tooltiptext {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 8px 12px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -100px;
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 14px;
    line-height: 1.4;
}

.button-tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.button-tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.line-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* 必要服務行樣式 */
.service-row.required-service {
    background-color: #FEF3C7 !important;
    border: 2px solid #F59E0B !important;
    opacity: 0.8;
}

.service-row.required-service .service-name {
    color: #92400E;
    font-weight: 600;
}

.service-row.required-service .btn-remove {
    background-color: #F59E0B !important;
    border-color: #D97706 !important;
    color: white !important;
    cursor: not-allowed !important;
}

.service-row.required-service .btn-remove:hover {
    background-color: #D97706 !important;
    transform: none !important;
}

.hair-care-item {
    border-left: 3px solid #28a745;
}

.other-addon-item {
    border-left: 3px solid #007bff;
}

.service-name {
    min-width: 180px;
}

.service-name strong {
    display: block;
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 0.4rem;
}

.category-tag {
    display: inline-block;
    background: #e9ecef;
    color: #6c757d;
    padding: 0.2rem 0.6rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid #dee2e6;
}

.price {
    min-width: 120px;
    font-weight: 600;
    color: #28a745;
}

.price-size {
    margin-bottom: 0.2rem;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.size-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
}

.price-amount {
    color: #28a745;
    font-weight: 600;
}

.duration {
    min-width: 90px;
    text-align: center;
    color: #6c757d;
}

.inclusions {
    min-width: 140px;
}

.inclusion-item {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.75rem;
    margin: 0.2rem 0.2rem 0.2rem 0;
}

.add-ons {
    min-width: 160px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.4rem;
    padding: 0.4rem;
    background: #fff3cd;
    border-radius: 4px;
    border: 1px solid #ffeaa7;
    gap: 0.5rem;
}

.addon-checkbox {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #ffc107;
}

.addons-row {
    background-color: #f8f9fa;
}

.addons-cell {
    padding: 1rem;
    border-top: none;
}

.addons-content h4 {
    margin: 0 0 1rem 0;
    color: #495057;
    font-size: 0.9rem;
    font-weight: 600;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.addon-name {
    font-size: 0.8rem;
    color: #856404;
}

.addon-price {
    font-weight: 600;
    color: #856404;
    font-size: 0.8rem;
}

.addons-toggle {
    cursor: pointer;
    padding: 0.5rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s ease;
}

.addons-toggle:hover {
    background: #e9ecef;
}

.toggle-text {
    color: #495057;
    font-size: 0.8rem;
    font-weight: 500;
}

.toggle-icon {
    color: #6c757d;
    font-size: 0.7rem;
    transition: transform 0.2s ease;
}

.addons-content {
    margin-top: 0.5rem;
}

.addons-content.expanded .toggle-icon {
    transform: rotate(180deg);
}

.mobile-total-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 2px solid #007bff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem;
    display: block;
}

.total-content {
    max-width: 1200px;
    margin: 0 auto;
}

.total-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.total-price,
.total-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.total-label,
.duration-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.total-amount {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
}

.duration-amount {
    font-size: 1.1rem;
    font-weight: 600;
    color: #007bff;
}

.selected-services {
    font-size: 0.8rem;
    color: #6c757d;
    max-height: 60px;
    overflow-y: auto;
}

.no-services {
    font-style: italic;
}

.service-tag {
    display: inline-block;
    background: #e3f2fd;
    color: #1976d2;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin: 0.1rem;
    font-size: 0.75rem;
}

.service-tag.free {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid #4caf50;
}

.service-tag del {
    text-decoration: line-through;
    color: #9ca3af;
    opacity: 0.7;
}

.booking-cta {
    margin-top: 1rem;
    text-align: center;
}

.btn-booking {
    background: #28a745;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-booking:hover {
    background: #218838;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-booking:active {
    transform: translateY(0);
}

.btn-booking:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-booking:disabled:hover {
    background: #6c757d;
    transform: none;
    box-shadow: none;
}

.booking-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.btn-booking-wrapper {
    position: relative;
}

.tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    margin-bottom: 0.5rem;
    z-index: 1000;
}

.tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
}

.tooltip.show {
    opacity: 1;
    visibility: visible;
}

.btn-line-consult {
    background: #00B900;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-line-consult:hover {
    background: #009900;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.btn-line-consult:active {
    transform: translateY(0);
}

.line-icon {
    font-size: 1.1rem;
}

/* LINE登入Modal樣式 */
.login-content {
    text-align: center;
    padding: 2rem 1rem;
}

.login-desc {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.5;
}

.btn-line-login {
    background: #00B900;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 200px;
    justify-content: center;
}

.btn-line-login:hover {
    background: #009900;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.btn-line-login:active {
    transform: translateY(0);
}

.btn-line-login img {
    width: 24px;
    height: 24px;
}

/* 時長警告樣式 */
.duration-warning {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.warning-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.warning-content h4 {
    color: #856404;
    margin: 0 0 0.5rem 0;
    font-size: 1rem;
    font-weight: 600;
}

.warning-content p {
    color: #856404;
    margin: 0 0 0.5rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.warning-content p:last-child {
    margin-bottom: 0;
}

.warning-content strong {
    color: #d63031;
    font-weight: 600;
}

/* 預約步驟內的LINE按鈕樣式 */
.booking-instructions .line-contact {
    margin-top: 1rem;
    text-align: center;
}

.booking-instructions .line-button {
    display: inline-block;
    background: #00B900;
    color: white;
    text-decoration: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.booking-instructions .line-button:hover {
    background: #009900;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

/* 線上自助預約區塊樣式 */
.online-booking-section {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

/* 小modal滾動樣式 */
#bookingModalSmall .modal-content {
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

#bookingModalSmall .modal-body {
    flex: 1;
    overflow-y: auto;
    padding-right: 8px;
    /* 為滾動條留出空間 */
    padding-bottom: 1rem;
    /* 底部padding確保內容不被遮擋 */
}

#bookingModalSmall .modal-header {
    flex-shrink: 0;
    /* header不縮小 */
}

/* 自定義滾動條樣式 */
#bookingModalSmall .modal-body::-webkit-scrollbar {
    width: 6px;
}

#bookingModalSmall .modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#bookingModalSmall .modal-body::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

#bookingModalSmall .modal-body::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.online-booking-section h4 {
    color: #495057;
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    padding-bottom: 0.5rem;
}

.online-booking-section ol {
    margin: 0;
    padding-left: 1.5rem;
}

.online-booking-section li {
    color: #495057;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.online-booking-section li:last-child {
    margin-bottom: 0;
}

.online-booking-desc {
    color: #6c757d;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.btn-online-booking {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.btn-online-booking:hover {
    background: #0056b3;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-online-booking:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .price-table {
        margin-bottom: 120px;
        /* 為底端總計欄留出空間 */
    }
}

.no-inclusions,
.no-addons {
    color: #6c757d;
    font-style: italic;
}

.category-section {
    margin-bottom: 2rem;
}

.category-title {
    font-size: 1.2rem;
    color: #495057;
    margin: 1.5rem 0 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 2px solid #dee2e6;
    font-weight: 600;
}

.category-section:first-child .category-title {
    margin-top: 0;
}

.table-hint {
    background: #e3f2fd;
    border: 1px solid #bbdefb;
    border-radius: 6px;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    text-align: center;
}

.table-hint p {
    margin: 0;
    color: #1976d2;
    font-size: 0.9rem;
    font-weight: 500;
}

.size-guide {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid #e9ecef;
}

.size-guide h3 {
    font-size: 1rem;
    color: #495057;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.size-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.size-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    min-width: 120px;
}

.size-label {
    font-weight: 600;
    color: #007bff;
    font-size: 0.9rem;
    min-width: 40px;
}

.size-desc {
    color: #6c757d;
    font-size: 0.85rem;
}

.hair-length-section {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.hair-length-section h3 {
    font-size: 1rem;
    color: #856404;
    margin: 0 0 1rem 0;
    font-weight: 600;
    text-align: center;
}

.length-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.length-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.2s ease;
    min-width: 120px;
    justify-content: center;
}

.length-option:hover {
    border-color: #ffc107;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.length-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #ffc107;
}

.length-option input[type="radio"]:checked+.option-content {
    color: #856404;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.length-note {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    min-width: 120px;
    justify-content: center;
}

.single-price {
    color: #28a745;
    font-weight: 600;
    font-size: 0.9rem;
}

.dynamic-price .price-size {
    opacity: 0.3;
    transition: opacity 0.3s ease;
}

.dynamic-price .price-size.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .price-table {
        padding: 0 0.5rem;
    }

    .price-table-main th,
    .price-table-main td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }

    .service-name {
        min-width: 150px;
    }
}