.wc-cart-extra-services-container {
    margin: 30px 0;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
}

.wc-extra-services-main-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #111827;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wc-extra-services-main-title i {
    color: #EA580C;
}

.wc-cart-extra-services-group {
    margin-bottom: 25px;
}

.wc-cart-extra-services-group-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.wc-cart-extra-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .wc-cart-extra-services-grid {
        grid-template-columns: 1fr;
    }
}

.wc-cart-service-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-left: 4px solid #EA580C;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.wc-cart-service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.wc-cart-service-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 15px;
}

.wc-cart-service-header-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.wc-cart-service-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #EA580C, #F97316);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wc-cart-service-icon i {
    color: white;
    font-size: 18px;
}

.wc-cart-service-title-container {
    flex: 1;
}

.wc-cart-service-title {
    font-size: 16px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 5px 0;
}

.wc-cart-service-description {
    font-size: 13px;
    color: #6b7280;
    margin: 0;
}

.wc-cart-service-tooltip {
    color: #9ca3af;
    cursor: help;
    position: relative;
    margin-left: 8px;
}

.wc-cart-service-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1f2937;
    color: white;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: normal;
    width: 200px;
    z-index: 1000;
    white-space: normal;
}

.wc-cart-service-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wc-cart-service-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wc-cart-service-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.wc-cart-service-checkbox-text {
    font-size: 14px;
    color: #4b5563;
}

.wc-cart-service-price {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
}

.wc-cart-service-checkbox {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid #d1d5db;
    cursor: pointer;
}

.wc-cart-service-checkbox:checked {
    background-color: #EA580C;
    border-color: #EA580C;
}

.wc-cart-service-radio-container {
    width: 100%;
}

.wc-cart-service-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.wc-cart-service-radio-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    background: #f9fafb;
}

.wc-cart-service-radio-option:hover {
    background: #f3f4f6;
}

.wc-cart-service-radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex: 1;
}

.wc-cart-service-radio-text {
    font-size: 14px;
}

.wc-cart-service-radio {
    width: 18px;
    height: 18px;
}

.wc-cart-service-option-price {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.wc-cart-services-total {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 16px;
}

.wc-cart-services-total-price {
    color: #EA580C;
    font-weight: 700;
}

.wc-cart-update-services {
    margin-top: 20px;
    text-align: center;
}

.wc-cart-update-services-button {
    background: #EA580C;
    color: white;
    border: none;
    padding: 12px 24px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.wc-cart-update-services-button:hover {
    background: #F97316;
}

.wc-cart-update-services-button i {
    margin-right: 8px;
}

/* Классы из шорткода / альтернативной разметки (ранее инлайн) */
.extra-services-container { margin: 30px 0; }
.service-group { margin-bottom: 30px; }
.service-card {
    border-left: 4px solid #EA580C;
    transition: all 0.2s;
    background: white;
    border-radius: 0.5rem;
    border: 1px solid #e5e7eb;
    padding: 1rem;
    margin-bottom: 1rem;
}
.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}
.service-card--selected {
    background: #e5e7eb;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}
.service-card .card-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1E3A5F, #EA580C);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
}
.extra-services-container .tooltip { position: relative; display: inline-block; }
.extra-services-container .tooltip .tooltip-text {
    visibility: hidden;
    width: 200px;
    background-color: #333;
    color: white;
    text-align: center;
    border-radius: 6px;
    padding: 8px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 12px;
    font-weight: normal;
}
.extra-services-container .tooltip:hover .tooltip-text { visibility: visible; opacity: 1; }
.extra-services-container .service-checkbox,
.extra-services-container .service-radio { accent-color: #1E3A5F; }
.extra-services-container .service-checkbox:checked { background-color: #1E3A5F; border-color: #1E3A5F; }
.extra-services-container .grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
@media (max-width: 768px) {
    .extra-services-container .grid { grid-template-columns: 1fr; }
}