/* Mobilde gizli olacak menü */
.sol-menu {
    display: block;
}

/* Mobilde butona basılmadıysa gizle */
@media (max-width: 768px) {
    .sol-menu {
        display: none;
    }

    .sol-menu.active {
        display: block;
    }
}

/* Menü butonu sadece mobilde görünsün */
.mobile-menu-toggle {
    display: none;
    background: #222;
    color: #fff;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
}

.sp2-new {padding: 100px 0 0px;}
.sp-50 {
  padding: 50px 0 70px;
}
.site-logo {height: 50px;}
.mobile-logo {height: 45px;}
.logos {height: 45px;}

.vl-single-blg-item {
    background: #fff;
  border: 1px solid #ccc;
  padding: 18px;
  border-radius: 10px;
    box-shadow: 1px 10px 15px #ccc;;
}

.background-4 {  background: var(--ztc-bg-bg-4);}

.vl-single-blog-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 0px;
}
.vl-single-blog-box-content .title a {
    padding-bottom: 5px;
}

.whatsapp-share-boxes {position:fixed;bottom:0;z-index:99999}
.whatsapp-share-button .btn {padding: 8px 10px 6px 10px;font-size: 15px;border-radius: 14px 14px 0 0;box-shadow:1px 5px 15px #2e3131;transition:all 400ms ease}
.whatsapp-share-button .btn i {font-size: 32px;margin-right:4px}

.sesli-dergi li a {
    display: block;
    width: 100%;
}


.checkout .content-single {
  padding: 16px 24px;
  background-color: #fff;
  border-radius: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.checkout .total {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 8px;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px;
}

.checkout .total h6 {
  font-weight: 700;
  color: #000;
}

@media only screen and (min-width: 1200px) {
  h6 {
    font-size: 20px;
    line-height: 30px;
  }
}

.btn-100 {width:100%}

.vl-icon-content {width:100%}


.vl-single-blg-item a {
    display: block;
}


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 0 0 4px 4px;
    z-index: 10000;
    font-weight: bold;
    transition: top 0.3s;
}

.skip-link:focus,
.sr-only-focusable:focus {
    position: absolute;
    width: auto;
    height: auto;
    padding: 8px 16px;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
    top: 6px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    z-index: 10000;
}

/* Menu Separators for Screen Readers */
.menu-separator {
    position: relative;
}

.menu-separator::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.1);
    transform: translateY(-50%);
}

/* Mobile Menu Grouping */
.menu-group-mobile {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Focus Styles for Better Keyboard Navigation */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus,
.nav-link:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(0,123,255,0.25);
}

/* Dropdown Menu Focus Management */
.main-menu ul li:hover > ul,
.main-menu ul li:focus-within > ul,
.main-menu ul li[aria-expanded="true"] > ul {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.main-menu ul li ul {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

/* Focus trap for dropdown menus */
.main-menu ul li ul li a:focus {
    background-color: rgba(0,123,255,0.1);
    outline: 2px solid #007bff;
    outline-offset: 1px;
}

/* Mobile menu focus styles */
.mobile-nav-list li a:focus {
    background-color: rgba(255,255,255,0.1);
    outline: 2px solid #007bff;
    outline-offset: 1px;
}

/* ==========================================
   ACCESSIBLE POPUP MODAL STYLES
   WCAG 2.1 AA Compliant
   ========================================== */

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Modal Container */
.modal-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.7) translateY(-50px);
    transition: transform 0.3s ease;
    margin: 20px;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

/* Modal Header */
.modal-header {
    padding: 24px 24px 16px;
    border-bottom: 2px solid #e9ecef;
    position: relative;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    color: #212529;
    margin: 0;
    line-height: 1.3;
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 24px;
    color: #6c757d;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.modal-close:hover,
.modal-close:focus {
    background: #f8f9fa;
    color: #dc3545;
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Modal Body */
.modal-body {
    padding: 24px;
}

.modal-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.modal-image {
    flex: none;
    text-align: center;
    width: 100%;
}

.modal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.modal-text {
    flex: 1;
    width: 100%;
}

.modal-text h2 {
    font-size: 20px;
    font-weight: 600;
    color: #212529;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.modal-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #495057;
    margin: 0 0 16px 0;
}

.modal-text p:last-child {
    margin-bottom: 0;
}

/* Modal Footer */
.modal-footer {
    padding: 16px 24px 24px;
    border-top: 2px solid #e9ecef;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.modal-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.modal-btn-primary {
    background: #007bff;
    color: #ffffff;
}

.modal-btn-primary:hover,
.modal-btn-primary:focus {
    background: #0056b3;
    outline: 2px solid #ffc107;
    outline-offset: 2px;
}

.modal-btn-secondary {
    background: #6c757d;
    color: #ffffff;
}

.modal-btn-secondary:hover,
.modal-btn-secondary:focus {
    background: #545b62;
    outline: 2px solid #ffc107;
    outline-offset: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-container {
        width: 95%;
        margin: 10px;
        max-height: 90vh;
    }
    
    .modal-content-wrapper {
        gap: 16px;
    }
    
    .modal-image {
        max-width: 200px;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 16px;
    }
    
    .modal-title {
        font-size: 20px;
        padding-right: 40px;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-btn {
        width: 100%;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .modal-container {
        border: 3px solid #000000;
    }
    
    .modal-close:focus,
    .modal-btn:focus {
        outline: 3px solid #000000;
        outline-offset: 2px;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .modal-overlay,
    .modal-container,
    .modal-close,
    .modal-btn {
        transition: none;
    }
}

/* Screen Reader Only Content */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}