/* Modern Design System Shared for Listing Management */
:root {
    --primary: #cc0000;
    --primary-hover: #a30000;
    --dark: #1a1a1a;
    --gray-light: #f8f9fa;
    --gray-border: #e9ecef;
    --text-muted: #6c757d;
    --radius: 12px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.modern-listing-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px 0px 20px 0px;

    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.modern-card-header {
    margin-bottom: 5px;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 20px;
     padding-left: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modern-card-header i {
    font-size: 24px;
    color: var(--primary);
}

.modern-card-header h1 {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    color: #111827;
    letter-spacing: -0.025em;
}

.modern-form-group {
    margin-bottom: 25px;
}

.modern-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #374151;
    font-size: 14px;
    letter-spacing: 0.01em;
}

.modern-form-group label i {
    width: 20px;
    color: var(--primary);
    opacity: 0.8;
}

.modern-input,
.modern-select,
.modern-textarea {
    width: 100%;
    padding: 13px 18px;
    border: 1.5px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    color: #1f2937;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.modern-input:hover,
.modern-select:hover,
.modern-textarea:hover {
    border-color: #d1d5db;
    background: #fafafa;
}

.modern-input:focus,
.modern-select:focus,
.modern-textarea:focus {
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(204, 0, 0, 0.08);
    outline: none;
}

.modern-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Image Upload Styling */
.image-upload-section,
.gallery-upload-section {
    background: var(--gray-light);
    padding: 20px;
    border-radius: var(--radius);
    margin: 15px 0 25px 0;
    border: 1px dashed var(--gray-border);
}

.section-label {
    display: block;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 16px;
    color: var(--dark);
}

.main-image-upload {
    text-align: center;
}

.preview-box {
    width: 100%;
    max-width: 330px;
    height: 220px;
    background: #fff;
    border: 2px dashed #ddd;
    border-radius: 12px;
    margin: 0 auto 15px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.preview-box:hover {
    border-color: var(--primary);
}

.preview-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-icon {
    color: #999;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.placeholder-icon i {
    font-size: 40px;
}

.btn-modern-upload {
    background: #fff;
    border: 1px solid var(--gray-border);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.btn-modern-upload:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.upload-hint,
.gallery-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.gallery-item {
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--gray-border);
    text-align: center;
}

.gallery-preview {
    width: 100%;
    aspect-ratio: 3/2;
    background: var(--gray-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    overflow: hidden;
    color: #ccc;
    font-size: 20px;
    position: relative;
}

.gallery-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-gallery-add {
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 15px;
    border: 1px solid #ddd;
    background: #fff;
    font-weight: 600;
    cursor: pointer;
}

.btn-gallery-add:hover {
    background: var(--dark);
    color: #fff;
}

.btn-gallery-delete {
    position: absolute;
    top: 5px;
    right: 5px;
    background: rgba(255, 0, 0, 0.8);
    color: #fff;
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.btn-gallery-delete:hover {
    background: #ff0000;
    transform: scale(1.1);
}

/* Submit Button */
.btn-modern-submit {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 16px 45px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(204, 0, 0, 0.4);
}

.btn-modern-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -10px rgba(204, 0, 0, 0.5);
    background: var(--primary-hover);
    color: #fff;
}

.btn-modern-submit i {
    transition: transform 0.3s;
    font-size: 18px;
}

.btn-modern-submit:hover i {
    transform: translateX(4px);
}

.btn-modern-submit:disabled {
    background: #ccc;
    box-shadow: none;
    cursor: not-allowed;
}

/* Red Sonuc Area */
.red-sonuc-box {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.red-sonuc-box label {
    color: #c53030;
}

.required {
    color: var(--primary);
    margin-left: 3px;
}

/* Listing Management Dashboard Styles */
.modern-management-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-content i {
    font-size: 40px;
    color: var(--primary);
}

.header-content h1 {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.header-content p {
    margin: 5px 0 0;
    color: #777;
    font-size: 13px;
}

.btn-create-new {
    background: #ff5a00;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-create-new:hover {
    background: #e04f00;
    color: #fff;
    transform: translateY(-2px);
}

.alert-info-modern {
    background: #e3f2fd;
    border-left: 4px solid #1976d2;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0d47a1;
    font-size: 13px;
}

.listings-management-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.management-card {
    background: #fff;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
}

.management-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background-color: #fafafa;
}

.card-image {
    width: 180px;
    height: 140px;
    position: relative;
    flex-shrink: 0;
}

.card-image img {
    width: 100%;
    height: 100%;

}

.card-status-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-on .card-status-badge {
    background: #28a745;
}

.status-off .card-status-badge {
    background: #6c757d;
}

.status-pending .card-status-badge {
    background: #17a2b8;
}

.status-rejected .card-status-badge {
    background: #dc3545;
}

.status-expired .card-status-badge {
    background: #ffc107;
    color: #333;
}

.card-details {
    flex-grow: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-main-info h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
}

.card-main-info h3 a {
    color: #333;
    text-decoration: none;
}

.card-main-info h3 a:hover {
    color: #ff5a00;
}

.card-meta {
    display: flex;
    gap: 15px;
    margin-top: 5px;
    color: #888;
    font-size: 12px;
}

.card-price {
    margin-top: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1976d2;
}

.rejection-note {
    background: #fff5f5;
    border: 1px dashed #feb2b2;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    color: #c53030;
    margin-top: 10px;
}

.card-actions-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    border-top: 1px solid #f5f5f5;
    padding-top: 10px;
}

.visibility-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #555;
}

.action-buttons {
    display: flex;
    gap: 8px;
}

.btn-action {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s;
}

.btn-action.edit {
    background: #fff3e0;
    color: #ff9800;
    border: 1px solid #ffe0b2;
}

.btn-action.edit:hover {
    background: #ff9800;
    color: #fff;
}

.btn-action.delete {
    background: #fbe9e7;
    color: #ff5722;
    border: 1px solid #ffccbc;
}

.btn-action.delete:hover {
    background: #ff5722;
    color: #fff;
}

/* Switch Styles */
.modern-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.modern-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
}

input:checked+.slider {
    background-color: #28a745;
}

input:focus+.slider {
    box-shadow: 0 0 1px #28a745;
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.empty-state-card {
    text-align: center;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.empty-state-card i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-state-card h3 {
    margin: 0;
    color: #333;
}

.empty-state-card p {
    color: #777;
    margin-top: 10px;
}

.modern-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.modern-pagination .page-link {
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.modern-pagination .page-link:hover,
.modern-pagination .page-link.active {
    background: #cc0000;
    color: #fff;
    border-color: #cc0000;
}

@media (max-width: 600px) {
    .modern-listing-card {
        padding: 20px 15px;
    }

    .modern-management-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .management-card {
        flex-direction: column;
    }

    .card-image {
        width: 100%;
        height: 180px;
    }

    .card-actions-wrapper {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .action-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .btn-action {
        flex-grow: 1;
    }
}

/* --- General UI Adjustments --- */
.splide__slide img {
    width: 100%;
    height: auto;

}

/* --- Homepage Premium Card System --- */

.premium-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    width: 100%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    text-decoration: none !important;
}

.premium-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.premium-card-media {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: #f5f5f5;
}

.premium-card-media img {
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-card:hover .premium-card-media img {
    transform: scale(1.08);
}

.premium-card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
}

.premium-card-title {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    height: 40px;
    color: #333;
    text-decoration: none !important;
}

.premium-card-price-box {
    background: #fcfcfc;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 10px;
}

.premium-card-price-box .premium-label {
    display: block;
    font-size: 10px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.premium-card-price-box .premium-price {
    font-size: 18px;
    color: #cc0000;
    font-weight: 800;
}

.premium-card-overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 15px 10px 8px;
    z-index: 5;
}

.premium-card-timer {
    color: #fff;

    font-weight: 800;
    font-size: 11px;
    background: rgba(204, 0, 0, 0.9);
    padding: 4px 12px;
    border-radius: 20px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
}

.premium-card-timer i {
    margin-right: 5px;
}

/* --- Premium Store Card System --- */
.premium-store-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 25px;
    display: flex;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none !important;
    position: relative;
}

.premium-store-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.store-card-media {
    width: 200px;
    height: 145px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.store-card-media img {
    width: 100%;
    height: 100%;

    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform;
    transform: translateZ(0);
}

.premium-store-card:hover .store-card-media img {
    transform: scale(1.1);
}

.store-card-info {
    flex-grow: 1;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-name {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 800;
    color: #333;
    display: block;
}

.store-status-badge {
    position: absolute;
    top: 5px;
    right: 4px;
    font-size: 12px;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    font-weight: 800;
    white-space: nowrap;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    gap: 5px;

}

.status-badge-open {
    background: #e6f9ed;
    color: #22a35a;
    border: 1px solid #b7ebc6;
}

.status-badge-closed {
    background: #fff5f5;
    color: #cc0000;
    border: 1px solid #fed7d7;
}

.store-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 5px;
}

.meta-item {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.meta-item i {
    color: #cc0000;
    width: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .premium-store-card {
        flex-direction: column;
    }

    .store-card-media {
        width: 100%;
        height: 180px;
    }

    .store-name {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Store Detail Header - Redesigned */
.modern-store-header {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 30px;
    display: flex;
    position: relative;
    border: 2px solid #efefef;
    overflow: hidden;
    box-shadow: none;
}

.store-header-logo {
    width: 250px;
    flex-shrink: 0;
    background: #fdfdfd;
    border-right: 2px solid #efefef;
    position: relative;
}

.store-header-logo img {
    width: 100%;
    height: 100%;
}

.store-header-content {
    flex-grow: 1;
    padding: 25px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 15px;
}

.store-header-title {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.store-header-title h1 {
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    color: #000;
    letter-spacing: -0.5px;
}

.store-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    color: #ffc107;
    font-size: 16px;
}

.store-header-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    background: #fcfcfc;
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cc0000;
    font-size: 26px;
}

.stat-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #666;
    font-weight: 700;
}

.stat-value {
    font-size: 15px;
    font-weight: 800;
    color: #000;
}

/* Horizontal Category Navigation - Refined */
.modern-cat-nav {
    display: flex;
    overflow-x: auto;
    gap: 12px;
    padding: 10px 0 20px;
    margin-bottom: 25px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.modern-cat-nav::-webkit-scrollbar {
    display: none;
}

.cat-nav-item {
    white-space: nowrap;
    padding: 12px 24px;
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 30px;
    color: #555;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
}

.cat-nav-item:hover {
    background: #fff;
    border-color: #cc0000;
    color: #cc0000;
    transform: translateY(-2px);
    box-shadow: none;
}

.cat-nav-item.active {
    background: #cc0000;
    color: #fff;
    border-color: #cc0000;
    box-shadow: none;
}

/* Premium Card Additions for Buttons */
.premium-card-footer {
    padding: 0 15px 15px;
    margin-top: 10px;
}

/* Fix for spacing */
.col-xs-6.col-sm-6.col-md-3 {
    padding-bottom: 30px;
}

.btn-add-cart {
    width: 100%;
    height: 45px;
    background: #cc0000;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0 12px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    overflow: hidden;
}

.btn-add-cart:hover {
    background: #a30000;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(204, 0, 0, 0.3);
}

.btn-add-cart:disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

@media (max-width: 991px) {
    .modern-store-header {
        flex-direction: column;
    }

    .store-header-logo {
        width: 100%;
        height: 200px;
        border-right: none;
        border-bottom: 2px solid #efefef;
    }

    .store-header-content {
        padding: 20px;
        align-items: center;
        text-align: center;
    }

    .store-header-title {
        justify-content: center;
    }

    .store-status-badge {
        margin-left: 0 !important;
        width: auto !important;
    }

    .store-header-stats {
        justify-content: center;
        width: 100%;
    }
}

/* Modern Comments Styling */
.modern-comments-section {
    margin-top: 40px;
}

.comment-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comment-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.comment-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-user-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.comment-user {
    font-weight: 800;
    color: #333;
    font-size: 15px;
}

.comment-date {
    font-size: 11px;
    color: #999;
    font-weight: 600;
    text-transform: uppercase;
}

.comment-text {
    color: #4a4a4a;
    line-height: 1.7;
    font-size: 14px;
    margin-bottom: 15px;
}

.comment-footer {
    display: flex;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid #f9f9f9;
}

/* --- Professional Product Search --- */
.modern-product-search {
    margin-bottom: 25px;
    position: relative;
    z-index: 10;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #efefef;
    transition: all 0.3s ease;
    padding: 5px 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.search-input-wrapper:focus-within {
    border-color: #cc0000;
    box-shadow: 0 4px 20px rgba(204, 0, 0, 0.1);
}

.search-icon {
    font-size: 18px;
    color: #cc0000;
    margin-right: 12px;
}

.modern-search-input {
    flex-grow: 1;
    border: none !important;
    background: transparent !important;
    padding: 12px 0 !important;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    box-shadow: none !important;
    height: auto !important;
}

.modern-search-input:focus {
    box-shadow: none !important;
    outline: none !important;
}

.modern-search-input::placeholder {
    color: #aaa;
    font-weight: 500;
}

.clear-search {
    background: none;
    border: none;
    color: #999;
    font-size: 16px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s;
    display: none;
}

.clear-search:hover {
    color: #cc0000;
}

.no-results-message {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px dashed #ccc;
    margin-bottom: 30px;
    width: 100%;
}

.no-results-message i {
    font-size: 40px;
    color: #ccc;
    margin-bottom: 15px;
}

.no-results-message h4 {
    font-size: 18px;
    color: #333;
    font-weight: 700;
    margin: 0 0 10px;
}

.no-results-message p {
    color: #777;
    margin: 0;
}

/* --- Modern Sepet Stilleri --- */
.modern-panel {
    border: none;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background: #fff;
}

.modern-panel-heading {
    background: linear-gradient(135deg, #cc0101 0%, #ff4d4d 100%) !important;
    color: white !important;
    padding: 20px 25px !important;
    font-size: 1.2em;
    border-bottom: none;
}

.modern-panel-heading strong {
    color: white;
}

.modern-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 15px;
    background: transparent;
    border: none !important;
}

.modern-table thead th {
    border: none !important;
    background: #f8f9fa;
    color: #555;
    font-weight: 600;
    padding: 15px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 0.85em;
    letter-spacing: 0.5px;
    text-align: center;
}

.modern-table tbody tr {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modern-table tbody tr:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.modern-table tbody td {
    border: none !important;
    padding: 20px 15px;
    vertical-align: middle;
    text-align: center;
}

.modern-table tbody td:first-child {
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
}

.modern-table tbody td:last-child {
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

.modern-badge {
    background: #f1f3f5;
    color: #333;
    font-size: 16px;
    padding: 6px 16px;
    border-radius: 8px;
    font-weight: bold;
    display: inline-block;
    min-width: 45px;
}

.btn-qty {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0;
    line-height: 36px;
    text-align: center;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    font-size: 14px;
}

.btn-qty:hover {
    transform: scale(1.1);
}

.btn-qty.btn-warning {
    background: #ff4757;
    color: white;
}

.btn-qty.btn-success {
    background: #2ed573;
    color: white;
}

.modern-remove-btn {
    background: #ffeeee;
    color: #d63031;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    font-weight: 600;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    max-width: 120px;
}

.modern-remove-btn:hover {
    background: #ff7675;
    color: white;
}

.sepetg {
    background: linear-gradient(135deg, #cc0101 0%, #ff4d4d 100%) !important;
    box-shadow: 0 8px 25px rgba(204, 1, 1, 0.3) !important;
    border-radius: 12px !important;
    padding: 15px 35px !important;
    border: none !important;
    color: #fff !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    transition: all 0.3s ease !important;
    font-size: 15px !important;
    width: 100%;
}

.sepetg:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(204, 1, 1, 0.4) !important;
}

.modern-form-control {
    border: 2px solid #eee;
    border-radius: 10px;
    padding: 10px 15px;
    transition: border-color 0.3s;
    box-shadow: none;
    width: 100%;
    display: block;
    margin-top: 10px;
    height: auto;
    min-height: 45px;
    font-size: 14px;
    background-color: #fff;
}

select.modern-form-control {
    cursor: pointer;
    line-height: 1.2;
}

.btn-modern-edit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    color: #333;
    border: 1.5px solid #dee2e6;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-modern-edit:hover {
    background: #fff;
    border-color: #cc0101;
    color: #cc0101;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(204, 1, 1, 0.1);
}

.btn-modern-edit i {
    color: #cc0101;
}

.modern-tfoot th {
    border: none !important;
    background: #fff;
    color: #333;
}

.input-group {
    display: flex;
    width: 100%;
}

.input-group .modern-form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    flex: 1;
}

.input-group-btn .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    font-weight: 700;
}

@media (max-width: 768px) {
    .modern-tfoot tr {
        display: block;
        margin-bottom: 20px;
    }

    .modern-tfoot th {
        display: block;
        width: 100% !important;
        padding: 15px !important;
        text-align: left !important;
    }

    .modern-tfoot th span {
        float: none !important;
        display: block;
        margin-top: 5px;
    }
}

.modern-form-control:focus {
    border-color: #ff4d4d;
    outline: none;
}

@media screen and (max-width: 800px) {
    .modern-table {
        border: 0;
    }

    .modern-table thead {
        display: none;
    }

    .modern-table tr {
        display: block;
        margin-bottom: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
        border-radius: 12px;
        overflow: hidden;
    }

    .modern-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #f0f0f0 !important;
        text-align: right;
        padding: 15px !important;
    }

    .modern-table td:before {
        content: attr(data-label);
        font-weight: bold;
        text-transform: uppercase;
        color: #777;
        font-size: 0.85em;
    }

    .modern-table td:last-child {
        border-bottom: 0 !important;
        justify-content: center;
    }
}

/* Premium SweetAlert2 Overrides */
.modern-swal-popup {
    border-radius: 20px !important;
    padding: 2em !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15) !important;
}

.modern-swal-title {
    font-size: 24px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
}

.modern-swal-confirm {
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    margin: 5px !important;
    box-shadow: 0 4px 15px rgba(204, 0, 0, 0.2) !important;
    transition: all 0.3s !important;
    border: none !important;
}

.modern-swal-confirm:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(204, 0, 0, 0.3) !important;
    background-color: #a30000 !important;
}

.modern-swal-cancel {
    padding: 12px 30px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 12px !important;
    margin: 5px !important;
    background: #f8f9fa !important;
    color: #666 !important;
    border: 1px solid #eee !important;
    transition: all 0.3s !important;
}

.modern-swal-cancel:hover {
    background: #eee !important;
    color: #333 !important;
}

/* --- Modern Cart System --- */
.cart-main-container {
    width: 100%;
}

@media (min-width: 992px) {
    .cart-main-container {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }
}


.cart-modern-card {
    padding: 25px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.cart-item-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
    transition: background 0.3s ease;
}

.cart-item-row:hover {
    background: #fafafa;
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);

}

.cart-item-details {
    flex-grow: 1;
    min-width: 150px;
}

.cart-item-title {
    margin: 0 0 5px;
    font-weight: 800;
    font-size: 16px;
    color: #333;
    line-height: 1.3;
}

.cart-item-price-meta {
    font-size: 13px;
    color: #777;
    margin-bottom: 5px;
}

.cart-item-total {
    font-weight: 800;
    color: #cc0101;
    font-size: 17px;
}

.cart-qty-control {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 30px;
    padding: 4px;
    border: 1px solid #eee;
}

.cart-qty-btn {
    background: #fff;
    color: #555;
    border-radius: 50% !important;
    width: 32px;
    height: 32px;
    border: 1px solid #ddd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s;
}

.cart-qty-btn:hover {
    transform: scale(1.1);
    border-color: #cc0101;
}

.cart-qty-btn.inc {
    background: #cc0101;
    color: #fff;
    border: none;
    box-shadow: 0 2px 5px rgba(204, 1, 1, 0.2);
}

.cart-qty-val {
    margin: 0 4px;
    font-weight: 800;
    font-size: 15px;
    color: #333;
    min-width: 25px;
    text-align: center;
}

.cart-remove-btn {
    background: #fff5f5;
    color: #cc0101;
    border-radius: 10px;
    border: 1px solid #fed7d7;
    padding: 8px 12px;
    font-weight: 700;
    transition: 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cart-remove-btn:hover {
    background: #cc0101;
    color: #fff;
    border-color: #cc0101;
}

.cart-sticky-summary {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    z-index: 100;
}

.cart-summary-title {
    font-weight: 800;
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 18px;
    color: #1a1a1a;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 15px;
    color: #555;
}

.cart-summary-total-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 20px;
    color: #000;
    font-weight: 900;
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.cart-coupon-input-group {
    display: flex;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}

.cart-coupon-input {
    border-radius: 10px 0 0 10px !important;
    height: 48px !important;
    border: 2px solid #eee !important;
    border-right: none !important;
    box-shadow: none !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.cart-coupon-btn {
    border-radius: 0 10px 10px 0 !important;
    background: #1a1a1a !important;
    color: white !important;
    font-weight: 700 !important;
    padding: 0 20px !important;
    border: none !important;
    transition: 0.2s !important;
}

@media (max-width: 768px) {
    .cart-item-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .cart-qty-control {
        width: 100%;
        justify-content: space-between;
    }

    .cart-remove-btn {
        width: 100%;
        justify-content: center;
    }

    .cart-main-container {
        flex-direction: column;
    }
}

/* Utilities */
.mt-30 {
    margin-top: 30px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.cart-bottom-margin {
    margin-bottom: 25px !important;
}

/* Refined Sticky */
.cart-sticky-summary {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    z-index: 100;
    align-self: flex-start;
}

.cart-summary-header {
    text-align: center;
    font-weight: 300;
    margin-bottom: 25px;
}

.cart-dashed-hr {
    border-top: 1px dashed #ddd;
    margin-bottom: 30px;
}
.ac-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 22px;
}

.ac-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.ac-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #e0e0e0;
    transition: .3s;
    border-radius: 22px;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}

.ac-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.ac-toggle input:checked + .ac-slider {
    background: linear-gradient(135deg, #cc0001 0%, #8b0000 100%);
}

.ac-toggle input:checked + .ac-slider:before {
    transform: translateX(22px);
}



.article-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 0;
    box-shadow: 0 0px 6px rgba(0,0,0,0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;

    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cc0001, #ff4d4d);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.article-card:hover::before {
    transform: scaleX(1);
}

.article-card:hover {
        box-shadow: 0 0px 12px rgba(0,0,0,0.06);

}

.articles-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (max-width: 768px) {
    .articles-container {
        grid-template-columns: 1fr;
    }
}

.article-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 16px;
    gap: 12px;
    flex-wrap: wrap;
}

.article-title {
    flex: 1;
    margin-right: 0;
    min-width: 0;
}

.article-title a {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
    line-height: 1.5;
}

.article-title a:hover {
    color: #cc0001;
}

.article-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    margin-bottom: 12px;

    font-size: 12px;
    color: #6c757d;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.2s ease;
}

.article-meta span:hover {
    background: #e9ecef;
}

.article-meta i {
    color: #cc0001;
    font-size: 11px;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.article-footer-simple {
    justify-content: flex-end;
}

.article-status {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.toggle-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toggle-label {
    font-size: 13px;
    font-weight: 500;
    color: #6c757d;
}

.article-actions {
    display: flex;
    gap: 8px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
    white-space: nowrap;
}

.status-warning {
    background: #fff3cd;
    color: #856404;
}

.status-success {
    background: #d4edda;
    color: #155724;
}

.status-danger {
    background: #f8d7da;
    color: #721c24;
}

.admin-note {
    background: #fff3cd;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 12px;
    font-size: 13px;
    color: #856404;
}

/* Article Action Buttons */
.ac-btn-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none !important;
    white-space: nowrap;
    min-width: 100px;
    justify-content: center;
}

.ac-btn-action-edit {
    background: #fff8f0;
    color: #ff9800;
    border: 1px solid #ffe0b2;
}

.ac-btn-action-edit:hover {
    background: #ff9800;
    color: #fff;
}

.ac-btn-action-preview {
    background: #f0f7ff;
    color: #007bff;
    border: 1px solid #cce5ff;
    padding: 12px 15px;
    min-width: auto;
}

.ac-btn-action-preview:hover {
    background: #007bff;
    color: #fff;
}

.ac-btn-action-delete {
    background: #fff5f5;
    color: #cc0000;
    border: 1px solid #fed7d7;
    min-width: auto;
    padding: 11px 24px;
    font-size: 15px;
}

.ac-btn-action-delete:hover {
    background: #cc0000;
    color: #fff;
}

/* .btn-modern-submit and .btn-modern-edit removed to avoid conflicts with doger_modern_form.css */

/* Article excerpt styling */
.article-card p {
    color: #4a4a4a;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Quick Actions Grid */
.quick-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.quick-action-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.quick-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #e0e0e0;
}

.quick-action-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.quick-action-content {
    flex: 1;
}

.quick-action-content h3 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.quick-action-content p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
}

.quick-action-arrow {
    color: #cc0001;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.quick-action-card:hover .quick-action-arrow {
    transform: translateX(4px);
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    border-color: #e0e0e0;
}

.stat-icon-yazar {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.stat-card-purple .stat-icon-yazar {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.stat-card-green .stat-icon-yazar {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.stat-card-pink .stat-icon-yazar {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-card-blue .stat-icon-yazar {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-content {
    flex: 1;
}

.stat-content h3 {
    margin: 0 0 4px 0;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.stat-content p {
    margin: 0;
    font-size: 13px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .quick-actions-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Author Avatar Styles */
.author-avatar {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
}
/* Professional Notification Prompt Styles */
.notif-prompt-container {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10001;
    max-width: 400px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: none;
    animation: slideInNotif 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    color: #111;
    transition: all 0.3s ease;
}

.notif-prompt-container.closing {
    opacity: 0 !important;
    transform: translateY(20px) scale(0.9) !important;
    pointer-events: none;
}

@keyframes slideInNotif {
    from {
        opacity: 0;
        transform: translateX(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.notif-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 20px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
    transition: color 0.2s;
}

.notif-close:hover {
    color: #cc0000;
}

.notif-prompt-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.notif-prompt-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #cc0000, #ff4d4d);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.25);
    animation: bellShake 3s infinite;
}

@keyframes bellShake {
    0%, 100% { transform: rotate(0); }
    10%, 20% { transform: rotate(15deg); }
    15% { transform: rotate(-15deg); }
    25% { transform: rotate(0); }
}

.notif-prompt-icon i {
    font-size: 28px;
    color: white;
}

.notif-prompt-text {
    flex: 1;
    padding-top: 4px;
}

.notif-prompt-title {
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 6px;
    display: block;
    color: #000;
    letter-spacing: -0.3px;
}

.notif-prompt-desc {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    display: block;
}

.notif-prompt-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.notif-btn {
    flex: 1;
    padding: 12px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    text-align: center;
}

.notif-btn-allow {
    background: #cc0000;
    color: white;
    box-shadow: 0 10px 20px -5px rgba(204, 0, 0, 0.3);
}

.notif-btn-allow:hover {
    background: #a30000;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(204, 0, 0, 0.4);
}

.notif-btn-deny {
    background: #f1f3f5;
    color: #495057;
}

.notif-btn-deny:hover {
    background: #e9ecef;
    color: #212529;
}

/* Mobile responsive */
@media (max-width: 576px) {
    .notif-prompt-container {
        left: 15px;
        right: 15px;
        bottom: 15px;
        max-width: none;
        padding: 20px;
    }
    
    .notif-prompt-icon {
        width: 50px;
        height: 50px;
    }
    
    .notif-prompt-icon i {
        font-size: 22px;
    }
    
    .notif-prompt-title {
        font-size: 16px;
    }
}

/* --- Gallery Styles for Detail Pages --- */
.listing-hero {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #f5f5f5;
    cursor: pointer;
}

.listing-hero img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .5s ease;
}

.listing-hero:hover img {
    transform: scale(1.02);
}

.listing-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px;
}

.listing-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #f5f5f5;
}

.listing-gallery-item .img-wrapper {
    width: 100%;
    height: 100%;
    will-change: transform;
    transition: transform 0.3s ease;
}

.listing-gallery-item:hover .img-wrapper {
    transform: scale(1.08);
}

.listing-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Listing Detail Page Styles --- */
.listing-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,.6));
    padding: 40px 20px 15px;
}

.listing-hero-overlay h2 {
    color: #fff;
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,.5);
}

.listing-desc-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 25px;
    margin-top: 25px;
}

.listing-desc-box h3 {
    margin: 0 0 15px;
    font-size: 16px;
    font-weight: 800;
    color: #333;
}

.listing-desc-box .desc-text {
    color: #555;
    line-height: 1.8;
    font-size: 15px;
}

.listing-desc-box .desc-text p {
    margin-bottom: 12px;
}

.seller-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,.05);
}

.seller-card-body {
    padding: 20px;
}

.seller-info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.seller-info-row:last-child {
    border-bottom: none;
}

.seller-info-row i {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #fff5f5;
    color: #cc0000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.seller-info-row .label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    font-weight: 700;
}

.seller-info-row .value {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.btn-call-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: #cc0000;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: all .3s ease;
    margin-top: 15px;
}

.btn-call-now:hover {
    background: #a30000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204,0,0,.3);
}

/* --- Muzayede/Fırsat Deposu Detail Page Styles --- */
.muzayede-header {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 25px;
    border-left: 5px solid #cc0000;
}

.muzayede-title {
    font-size: 32px;
    font-weight: 800;
    color: #333;
    margin: 0;
    overflow-wrap: break-word;
    word-break: break-all;
    max-width: 100%
}

.timer-box {
    background: linear-gradient(135deg, #cc0000 0%, #8b0000 100%);
    color: #fff;
    padding: 20px 15px;
    border-radius: 16px;
    text-align: center;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(204, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.timer-box::before {
    content: '\f017';

    position: absolute;
    right: -10px;
    top: -10px;
    font-size: 60px;
    color: #fff;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.timer-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    display: block;
    margin-bottom: 5px;
}

.timer-val {
    font-size: 28px;
    font-weight: 900;

    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.price-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

.price-card::after {
    content: '\f0d6';

    position: absolute;
    right: -10px;
    bottom: -10px;
    font-size: 80px;
    color: #000;
    opacity: 0.03;
}

.price-label {
    font-size: 14px;
    color: #666;
    display: block;
}

.price-val {
    font-size: 36px;
    font-weight: 800;
    color: #cc0000;
    display: block;
}

.btn-purchase {
    background: #25d366;
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
    width: 100%;
    margin-top: 20px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-purchase:hover {
    background: #128c7e;
    color: #fff;
    transform: translateY(-3px);
}

/* --- Additional Utility Classes --- */
.main-image-section {
    margin-bottom: 30px;
}

.listing-hero {
    margin-bottom: 25px;
}

.muzayede-meta {
    margin-top: 10px;
    color: #888;
    font-size: 13px;
}

