/* Sofa Washing Page Styles */

/* Koltuk Yıkama Modal Stilleri */
.sofa-region-modal .modal-dialog {
    max-width: 90%;
    margin: 1rem auto;
}

.sofa-modal-content {
    border-radius: 24px;
    border: none;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.sofa-modal-header {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 32px 24px 28px;
    text-align: center;
    border-bottom: none;
}

.sofa-modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.sofa-modal-icon svg {
    stroke: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.sofa-modal-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.sofa-modal-subtitle {
    font-size: 14px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.sofa-modal-body {
    padding: 24px;
    background: #f8f9fa;
}

.sofa-section-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 16px 0;
}

.sofa-address-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.sofa-address-item {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.sofa-address-item:hover {
    border-color: #007bff;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.15);
    transform: translateY(-2px);
}

.sofa-address-item.active {
    border-color: #007bff;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.05) 0%, rgba(0, 86, 179, 0.05) 100%);
}

.sofa-address-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.sofa-address-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.sofa-address-title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.sofa-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sofa-badge.badge-success {
    background: #d4edda;
    color: #155724;
}

.sofa-badge.badge-danger {
    background: #f8d7da;
    color: #721c24;
}

.sofa-address-text {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

.sofa-switch-region {
    text-align: center;
    padding-top: 12px;
}

.sofa-link-btn {
    background: none;
    border: none;
    color: #007bff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sofa-link-btn:hover {
    background: rgba(0, 123, 255, 0.1);
    transform: translateX(2px);
}

.sofa-form-group {
    margin-bottom: 20px;
}

.sofa-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.sofa-form-label .required {
    color: #dc3545;
    margin-left: 2px;
}

.sofa-select-wrapper {
    position: relative;
}

.sofa-form-select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    color: #2c3e50;
    background: white;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sofa-form-select:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.sofa-form-select:disabled {
    background: #f8f9fa;
    cursor: not-allowed;
    opacity: 0.6;
}

.sofa-form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 15px;
    color: #2c3e50;
    background: white;
    transition: all 0.3s ease;
}

.sofa-form-input:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.sofa-form-input::placeholder {
    color: #adb5bd;
}

.sofa-form-note {
    margin-top: 16px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 12px;
    color: #6c757d;
    line-height: 1.5;
}

.sofa-form-note p {
    margin: 0;
}

.sofa-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    stroke: #6c757d;
}

.sofa-alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 12px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
}

.sofa-alert-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sofa-alert-info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

.sofa-alert-info .sofa-alert-icon svg {
    stroke: #0c5460;
}

.sofa-alert-danger {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.sofa-alert-danger .sofa-alert-icon svg {
    stroke: #721c24;
}

.sofa-modal-footer {
    padding: 20px 24px 24px;
    background: white;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 12px;
}

.sofa-btn-primary {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.sofa-btn-primary:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.sofa-btn-primary:active:not(:disabled) {
    transform: translateY(0);
}

.sofa-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.sofa-btn-secondary {
    width: 100%;
    padding: 16px 24px;
    background: white;
    color: #6c757d;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.sofa-btn-secondary:hover {
    background: #f8f9fa;
    border-color: #dee2e6;
    transform: translateY(-1px);
}

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

/* Responsive Design */
@media (max-width: 576px) {
    .sofa-region-modal .modal-dialog {
        max-width: 95%;
        margin: 0.5rem auto;
    }
    
    .sofa-modal-header {
        padding: 24px 20px 20px;
    }
    
    .sofa-modal-icon {
        width: 64px;
        height: 64px;
    }
    
    .sofa-modal-title {
        font-size: 20px;
    }
    
    .sofa-modal-body {
        padding: 20px;
    }
    
    .sofa-form-group {
        margin-bottom: 16px;
    }
}

/* Animasyon İyileştirmeleri */
.sofa-region-modal.fade .modal-dialog {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    transform: scale(0.95) translateY(-10px);
    opacity: 0;
}

.sofa-region-modal.show .modal-dialog {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Z-index düzeltmeleri */
.modal-backdrop {
    z-index: 1040;
}

.sofa-region-modal {
    z-index: 1050;
}

/* Modern Ürün Kartları */
.modern-products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 0 12px 32px;
}

/* Masaüstü için 4 sütunlu görünüm */
@media (min-width: 992px) {
    .modern-products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 20px;
        padding: 0 24px 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
}

.modern-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modern-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: block;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.modern-product-card:hover .product-image {
    transform: scale(1.08);
}

.modern-product-card.fade-in {
    animation: fadeInUp 0.5s ease-out forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

.product-favorite-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-favorite-btn:hover {
    background: white;
    transform: scale(1.1);
}

.product-favorite-btn svg {
    stroke: #666;
    transition: all 0.3s ease;
}

.product-favorite-btn:hover svg {
    stroke: #ff4757;
    fill: #ff4757;
}

.product-favorite-btn.heartbeat {
    animation: heartbeat 0.6s ease-in-out;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }
    14% {
        transform: scale(1.3);
    }
    28% {
        transform: scale(1);
    }
    42% {
        transform: scale(1.3);
    }
    70% {
        transform: scale(1);
    }
}

.product-info {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.product-name {
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 600;
    font-family: "League Spartan";
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.product-name:hover {
    color: #007bff;
}

.product-price-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.product-current-price {
    color: #007bff;
    font-size: 18px;
    font-weight: 700;
    font-family: "League Spartan";
}

.product-add-btn {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #FE6601 0%, #ff8534 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(254, 102, 1, 0.3);
    flex-shrink: 0;
}

.product-add-btn:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 4px 12px rgba(254, 102, 1, 0.5);
}

.product-add-btn svg {
    stroke: white;
}

/* Empty State */
.empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.empty-state-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.empty-state-icon svg {
    stroke: #999;
}

.empty-state-title {
    color: #333;
    font-size: 20px;
    font-weight: 700;
    font-family: "League Spartan";
    margin: 0 0 12px 0;
}

.empty-state-text {
    color: #666;
    font-size: 15px;
    font-family: Jost;
    margin: 0 0 24px 0;
    line-height: 1.6;
}

.empty-state-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: "League Spartan";
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

.empty-state-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
    color: white;
}

/* Responsive for Modern Product Cards */
@media (max-width: 576px) {
    .modern-products-grid {
        gap: 12px;
        padding: 0 12px 24px;
    }
    
    .modern-product-card {
        border-radius: 14px;
    }
    
    .product-image-wrapper {
        height: 160px;
    }
    
    .product-favorite-btn {
        width: 32px;
        height: 32px;
    }
    
    .product-favorite-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .product-info {
        padding: 12px;
        gap: 8px;
    }
    
    .product-name {
        font-size: 14px;
    }
    
    .product-current-price {
        font-size: 16px;
    }
    
    .product-add-btn {
        width: 32px;
        height: 32px;
    }
    
    .product-add-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .empty-state {
        padding: 40px 20px;
    }
    
    .empty-state-icon {
        width: 64px;
        height: 64px;
    }
    
    .empty-state-icon svg {
        width: 48px;
        height: 48px;
    }
    
    .empty-state-title {
        font-size: 18px;
    }
    
    .empty-state-text {
        font-size: 14px;
    }
}

/* ==================== SEO İçerik Bölümü ==================== */
.section-main-ver.mb-0.pb-5 {
    padding-top: 20px;
}

.seo-content-section {
    margin-top: 40px;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 16px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.seo-content-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    font-family: 'League Spartan', sans-serif;
}

.seo-content-text {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 30px;
    font-family: 'Jost', sans-serif;
}

.seo-content-text p {
    margin-bottom: 20px;
}

.seo-content-text h3 {
    font-size: 22px;
    font-weight: 600;
    color: #2d3748;
    margin-top: 30px;
    margin-bottom: 16px;
    font-family: 'League Spartan', sans-serif;
}

.seo-content-text ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.seo-content-text li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.7;
}

.seo-content-text li span {
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: bold;
}

.regions-seo-content {
    display: grid;
    gap: 24px;
    margin-top: 24px;
}

.city-section {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.city-section h4 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    font-family: 'League Spartan', sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.city-section h4 svg {
    color: #007bff;
}

.city-section > p {
    color: #718096;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.6;
}

.districts-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.districts-list span {
    display: inline-block;
    padding: 6px 12px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    color: #4a5568;
    font-weight: 500;
}

.districts-more {
    color: #718096;
    font-style: italic;
}

.seo-content-note {
    margin-top: 30px;
    margin-bottom: 0;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.8;
    padding: 16px;
    background: #e6f2ff;
    border-radius: 12px;
    border-left: 4px solid #007bff;
}

/* Masaüstü için bölge grid */
@media (min-width: 992px) {
    .regions-seo-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil responsive */
@media (max-width: 768px) {
    .seo-content-section {
        padding: 30px 16px;
        margin-top: 30px;
        border-radius: 12px;
    }
    
    .seo-content-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .seo-content-text {
        font-size: 15px;
    }
    
    .seo-content-text h3 {
        font-size: 20px;
        margin-top: 25px;
    }
    
    .city-section {
        padding: 16px;
    }
    
    .city-section h4 {
        font-size: 16px;
    }
    
    .districts-list {
        gap: 6px;
    }
    
    .districts-list span {
        font-size: 12px;
        padding: 4px 10px;
    }
}

