/**
 * Product Compare Styles - Minimal Modern Design
 */

/* Compare Button Wrapper */
.product-compare-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
}

/* Compare Button */
.product-compare-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.product-compare-btn.btn-primary {
    background: linear-gradient(135deg, #c3262c 0%, #7b0e13 50%, #521313 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(195, 38, 44, 0.3);
}

.product-compare-btn.btn-primary:hover {
    background: linear-gradient(135deg, #b02227 0%, #6a0c0f 50%, #450e0e 100%);
    box-shadow: 0 4px 12px rgba(195, 38, 44, 0.4);
    transform: translateY(-1px);
}

.product-compare-btn.btn-secondary {
    background: #6c757d;
    color: white;
}

.product-compare-btn.btn-secondary:hover {
    background: #5a6268;
}

.product-compare-btn.btn-outline {
    background: white;
    color: #DB6868;
    border: 1.5px solid #DB6868;
}

.product-compare-btn.btn-outline:hover {
    background: #DB6868;
    color: white;
}

.product-compare-btn.in-list {
    background: #6c757d !important;
    border-color: #6c757d !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08) !important;
}

.product-compare-btn.in-list:hover {
    background: #5a6268 !important;
    box-shadow: 0 4px 12px rgba(108,117,125,0.2) !important;
}

.product-compare-btn .compare-icon {
    width: 20px;
    height: 20px;
}

/* View Compare List Link */
.view-compare-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    color: #495057;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
    box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.view-compare-list:hover {
    background: #f8f9fa;
    text-decoration: none;
    color: #212529;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.compare-list-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #DB6868;
}

.compare-count-badge {
    background: #DB6868;
    color: white;
    border-radius: 12px;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

/* Toast Notifications */
.product-compare-toast {
    position: fixed;
    bottom: 30px;
    right: -350px;
    background: white;
    padding: 16px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 99999;
    min-width: 320px;
    max-width: 400px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-compare-toast.show {
    right: 30px;
}

.product-compare-toast .toast-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.product-compare-toast.toast-success {
    border-left: 3px solid #28a745;
}

.product-compare-toast.toast-success .toast-icon {
    color: #28a745;
}

.product-compare-toast.toast-warning {
    border-left: 3px solid #ffc107;
}

.product-compare-toast.toast-warning .toast-icon {
    color: #ffc107;
}

.product-compare-toast.toast-info {
    border-left: 3px solid #17a2b8;
}

.product-compare-toast.toast-info .toast-icon {
    color: #17a2b8;
}

.product-compare-toast .toast-message {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

/* Comparison Page Styles */
.comparison-page-wrapper {
    padding: 50px 0;
}

.comparison-header {
    text-align: center;
    margin-top: 120px;
    margin-bottom: 50px;
}

.comparison-header h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.comparison-header p {
    font-size: 16px;
    color: #6c757d;
    font-weight: 400;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

/* Modern Minimal Card Design */
.comparison-product-card {
    background: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
    position: relative;
    border: 1px solid #f0f0f0;
}

/* Hover efekti kaldırıldı */

/* Refined Remove Button */
.remove-product-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f8f9fa;
    color: #6c757d;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.6;
    box-shadow: none;
}

.remove-product-btn:hover {
    background: #dc3545;
    color: white;
    opacity: 1;
    transform: scale(1.1);
    box-shadow: none;
}

/* Modern Breadcrumb Design */
.product-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    margin-bottom: 16px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 11px;
    color: #6c757d;
    border-left: 2px solid #DB6868;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.product-category svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
    color: #DB6868;
    opacity: 0.8;
}

.product-breadcrumb {
    font-weight: 500;
    line-height: 1.4;
}

/* Refined Typography */
.product-title {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    padding-right: 40px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

/* Clean Specs Design */
.product-specs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spec-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    background: #fafbfc;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.spec-row::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(135deg, #c3262c 0%, #7b0e13 50%, #521313 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-row:hover {
    background: #ffffff;
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(195, 38, 44, 0.15);
}

.spec-row:hover::before {
    opacity: 1;
}

.spec-row:hover .spec-label {
    font-weight: 800 !important;
    color: #1a1a1a !important;
    letter-spacing: 1px;
}

.spec-label {
    font-size: 11px;
    font-weight: 500;
    color: #8e8e93;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-value {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.5;
}

/* Refined Action Buttons */
.comparison-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 50px;
}

.clear-list-btn,
.print-comparison-btn {
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: #6c757d;
    color: white;
    box-shadow: 0 2px 6px rgba(108, 117, 125, 0.25);
}

.clear-list-btn:hover,
.print-comparison-btn:hover {
    background: #5a6268;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.35);
    transform: translateY(-2px);
}

.clear-list-btn svg,
.print-comparison-btn svg {
    width: 20px;
    height: 20px;
}

/* Contact Banner */
.comparison-contact-banner {
    margin-top: 60px;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border: 2px solid #ffd4d4;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(195, 38, 44, 0.08);
}

.comparison-contact-banner .banner-header {
    text-align: center;
    margin-bottom: 32px;
}

.comparison-contact-banner .banner-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #c3262c 0%, #7b0e13 50%, #521313 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(195, 38, 44, 0.3);
}

.comparison-contact-banner .banner-icon svg {
    width: 32px;
    height: 32px;
    color: white;
}

.comparison-contact-banner .banner-title {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.comparison-contact-banner .banner-subtitle {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-contact-form {
    max-width: 800px;
    margin: 0 auto;
}

.comparison-contact-form .form-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.comparison-contact-form .form-group {
    display: flex;
    flex-direction: column;
}

.comparison-contact-form .form-label {
    font-size: 14px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.comparison-contact-form .form-label .required {
    color: #c3262c;
}

.comparison-contact-form .form-input {
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    height: 50px;
    line-height: 1.5;
    box-sizing: border-box;
}

.comparison-contact-form .form-input:focus {
    outline: none;
    border-color: #c3262c;
    box-shadow: 0 0 0 4px rgba(195, 38, 44, 0.1);
}

.comparison-contact-form .form-input.error {
    border-color: #dc3545;
}

.comparison-contact-form .form-error {
    font-size: 13px;
    color: #dc3545;
    margin-top: 6px;
    display: none;
}

.comparison-contact-form .form-input.error + .form-error {
    display: block;
}

.comparison-contact-form .form-submit {
    text-align: center;
}

.comparison-contact-form .submit-btn {
    padding: 16px 48px;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, #c3262c 0%, #7b0e13 50%, #521313 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(195, 38, 44, 0.3);
    position: relative;
    overflow: hidden;
}

.comparison-contact-form .submit-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #b02227 0%, #6a0c0f 50%, #450e0e 100%);
    box-shadow: 0 6px 16px rgba(195, 38, 44, 0.4);
    transform: translateY(-2px);
}

.comparison-contact-form .submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.comparison-contact-form .submit-btn .btn-text {
    display: inline-block;
}

.comparison-contact-form .submit-btn.loading .btn-text {
    visibility: hidden;
}

.comparison-contact-form .submit-btn .btn-loader {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.comparison-contact-form .submit-btn.loading .btn-loader {
    display: block;
}

.comparison-contact-form .btn-loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.comparison-contact-form .honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 768px) {
    .comparison-contact-banner {
        padding: 32px 24px;
        margin-top: 40px;
    }

    .comparison-contact-banner .banner-title {
        font-size: 22px;
    }

    .comparison-contact-banner .banner-subtitle {
        font-size: 14px;
    }

    .comparison-contact-form .form-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .comparison-contact-form .submit-btn {
        width: 100%;
        padding: 14px 32px;
    }
}

@media (max-width: 480px) {
    .comparison-contact-banner {
        padding: 24px 16px;
    }

    .comparison-contact-banner .banner-icon {
        width: 48px;
        height: 48px;
    }

    .comparison-contact-banner .banner-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Print Media Queries */
@media print {
    /* Sayfa elemanlarını gizle */
    header,
    footer,
    nav,
    .site-header,
    .site-footer,
    .site-navigation,
    .header,
    .footer,
    .navigation,
    .breadcrumb,
    .social-media,
    .social-icons,
    .social-share,
    .social-buttons,
    .social-links,
    .share-icons,
    .share-buttons,
    .elementor-social-icons,
    .elementor-widget-social-icons,
    a[href*="facebook.com"],
    a[href*="twitter.com"],
    a[href*="x.com"],
    a[href*="instagram.com"],
    a[href*="linkedin.com"],
    a[href*="youtube.com"],
    a[href*="pinterest.com"],
    a[href*="tiktok.com"],
    #header,
    #footer,
    #navigation,
    .comparison-actions,
    .remove-product-btn,
    .back-to-products-btn,
    .comparison-contact-banner {
        display: none !important;
        visibility: hidden !important;
    }

    /* Sayfa düzeni */
    body {
        margin: 0 !important;
        padding: 0 !important;
    }

    .site-content,
    #content {
        margin: 0 !important;
        padding: 0 !important;
    }

    .container {
        max-width: 100% !important;
        padding: 20px !important;
    }

    /* Başlık düzenle */
    .comparison-header {
        margin-top: 0 !important;
        margin-bottom: 30px !important;
        page-break-after: avoid !important;
    }

    .comparison-header h1 {
        font-size: 24px !important;
        margin-bottom: 8px !important;
    }

    .comparison-header p {
        font-size: 14px !important;
    }

    /* Ürün kartları */
    .comparison-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
        gap: 15px !important;
        page-break-inside: avoid !important;
    }

    .comparison-product-card {
        break-inside: avoid !important;
        page-break-inside: avoid !important;
        box-shadow: none !important;
        border: 1px solid #dee2e6 !important;
        padding: 15px !important;
    }

    .product-title {
        font-size: 16px !important;
        margin-bottom: 15px !important;
    }

    .spec-row {
        padding: 10px 12px !important;
        background: #fafbfc !important;
    }

    .spec-row::before {
        display: none !important;
    }

    .spec-label {
        font-size: 10px !important;
    }

    .spec-value {
        font-size: 12px !important;
    }

    .product-category {
        font-size: 10px !important;
        padding: 4px 8px !important;
    }

    /* Ürün detayı butonunu gizle */
    .btn-primary,
    .comparison-product-card .btn-primary {
        display: none !important;
    }
}

/* Detail Button */
.comparison-product-card .btn-primary {
    width: 100%;
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    background: linear-gradient(135deg, #c3262c 0%, #7b0e13 50%, #521313 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    box-shadow: 0 2px 8px rgba(195, 38, 44, 0.3);
}

.comparison-product-card .btn-primary:hover {
    background: linear-gradient(135deg, #b02227 0%, #6a0c0f 50%, #450e0e 100%);
    box-shadow: 0 4px 12px rgba(195, 38, 44, 0.4);
    transform: translateY(-1px);
}

/* Empty State */
.empty-comparison {
    text-align: center;
    padding: 80px 20px;
}

.empty-comparison svg {
    width: 80px;
    height: 80px;
    color: #e9ecef;
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-comparison h2 {
    font-size: 24px;
    font-weight: 600;
    color: #495057;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.empty-comparison p {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 32px;
    font-weight: 400;
}

.back-to-products-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    background: linear-gradient(135deg, #c3262c 0%, #7b0e13 50%, #521313 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(195, 38, 44, 0.3);
}

.back-to-products-btn:hover {
    background: linear-gradient(135deg, #b02227 0%, #6a0c0f 50%, #450e0e 100%);
    box-shadow: 0 4px 12px rgba(195, 38, 44, 0.4);
    transform: translateY(-2px);
    text-decoration: none;
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison-page-wrapper {
        padding: 30px 0;
    }

    .comparison-header {
        margin-bottom: 30px;
    }

    .comparison-header h1 {
        font-size: 26px;
    }

    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-product-card {
        padding: 24px;
    }

    .product-compare-toast {
        min-width: 280px;
        right: -300px;
    }

    .product-compare-toast.show {
        right: 15px;
    }

    .comparison-actions {
        flex-direction: column;
        gap: 12px;
    }

    .clear-list-btn,
    .print-comparison-btn {
        width: 100%;
        justify-content: center;
    }

    .product-category {
        font-size: 10px;
        padding: 5px 10px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .comparison-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Clear List Confirmation Modal */
.clear-list-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1055 !important;
    display: none !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

.clear-list-modal.show {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.clear-list-modal .modal-dialog {
    position: relative !important;
    width: 90% !important;
    max-width: 480px !important;
    margin: 0 !important;
    pointer-events: auto !important;
    transform: scale(0.9) !important;
    opacity: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.clear-list-modal.show .modal-dialog {
    transform: scale(1) !important;
    opacity: 1 !important;
}

.clear-list-modal .modal-content {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    background-color: #ffffff !important;
    border: none !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    overflow: hidden !important;
}

.clear-list-modal .modal-header {
    padding: 2rem !important;
    background: linear-gradient(135deg, #c3262c 0%, #7b0e13 50%, #521313 100%) !important;
    border: none !important;
    text-align: center !important;
}

.clear-list-modal .modal-icon {
    width: 64px !important;
    height: 64px !important;
    margin: 0 auto 1rem !important;
    background: rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.clear-list-modal .modal-icon svg {
    width: 32px !important;
    height: 32px !important;
    color: white !important;
}

.clear-list-modal .modal-title {
    margin: 0 !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    color: white !important;
    text-align: center !important;
}

.clear-list-modal .modal-body {
    padding: 2rem !important;
    text-align: center !important;
}

.clear-list-modal .modal-body p {
    margin: 0 0 0.5rem 0 !important;
    font-size: 1rem !important;
    color: #495057 !important;
    line-height: 1.6 !important;
}

.clear-list-modal .modal-body .warning-text {
    font-weight: 600 !important;
    color: #c3262c !important;
}

.clear-list-modal .modal-footer {
    padding: 1.5rem 2rem !important;
    background: #f8f9fa !important;
    border: none !important;
    display: flex !important;
    gap: 1rem !important;
    justify-content: center !important;
}

.clear-list-modal .modal-btn {
    padding: 12px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border: none !important;
    border-radius: 8px !important;
    cursor: pointer !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    min-width: 120px !important;
}

.clear-list-modal .btn-cancel {
    background: #6c757d !important;
    color: white !important;
}

.clear-list-modal .btn-cancel:hover {
    background: #5a6268 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3) !important;
}

.clear-list-modal .btn-confirm {
    background: linear-gradient(135deg, #c3262c 0%, #7b0e13 50%, #521313 100%) !important;
    color: white !important;
    box-shadow: 0 2px 8px rgba(195, 38, 44, 0.3) !important;
}

.clear-list-modal .btn-confirm:hover {
    background: linear-gradient(135deg, #b02227 0%, #6a0c0f 50%, #450e0e 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(195, 38, 44, 0.4) !important;
}

.modal-backdrop-compare {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 1050 !important;
    width: 100vw !important;
    height: 100vh !important;
    background-color: rgba(0, 0, 0, 0.6) !important;
    display: none !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.modal-backdrop-compare.show {
    display: block !important;
    opacity: 1 !important;
}

/* Loading State */
.loading-spinner {
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.spinner-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spinner-icon svg {
    width: 80px;
    height: 80px;
    color: #DB6868;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.loading-spinner p {
    font-size: 18px;
    color: #495057;
    font-weight: 500;
    margin: 0;
}
