* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    height: 100%;
}
body {
    font-family: var(--cs-font, 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
    background: var(--cs-bg, #f8f9fa);
    color: var(--cs-text, #2d3436);
    line-height: var(--cs-lh, 1.6);
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
}
.cs-main,
.main-content,
.payment-container,
.cs-page {
    flex: 1 0 auto;
}

/* Container kuralları design-system.css içinde */





 
.cs-topbar {
    background: #003D82;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.cs-topbar__inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    min-height: 60px;
}

 
.cs-logos {
    flex-shrink: 0;
}

.cs-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.cs-brand:hover {
    transform: scale(1.05);
}

.cs-logo-box {
    background: #FFD700;
    padding: 8px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    height: 55px;
    width: 110px;
    min-width: 110px;
}

.cs-logo-box.cs-logo-box--sok {
    background: #ED3237;
    padding: 8px 20px;
    border-radius: 8px;
    height: 55px;
    width: 110px;
    min-width: 110px;
}

.cs-logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

 
.cs-toplinks {
    display: flex;
    align-items: center;
    gap: 0;
    padding-right: 20px;
}

.cs-toplink {
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    position: relative;
}

.cs-toplink:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

.cs-toplink:hover {
    opacity: 0.8;
}

.cs-toplink i {
    color: #FFD700;
    font-size: 18px;
}

 
.cs-searchbar {
    background: #FFD700;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cs-searchbar__inner {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-start;
}

 
.categories-btn {
    background: transparent;
    border: none;
    color: #2d3436;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    border-radius: 0;
}

.categories-btn:hover {
    background: rgba(0, 0, 0, 0.05);
}

.categories-btn i {
    font-size: 18px;
}

 
.cs-search {
    flex: 1;
    max-width: 600px;
    margin: 0;
    min-width: 0;
}

.cs-search form {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.cs-search input {
    flex: 1;
    border: none;
    padding: 9px 15px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #2d3436;
    outline: none;
}

.cs-search input::placeholder {
    color: #999;
}

.cs-search button {
    background: transparent;
    border: none;
    padding: 9px 15px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.cs-search button:hover {
    color: #003D82;
}

.cs-search button i {
    font-size: 16px;
}

 
.cs-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
    flex-shrink: 0;
}

.cs-action {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #2d3436;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.cs-action:hover {
    opacity: 0.7;
}

.cs-action i {
    font-size: 18px;
}

.cs-cart {
    background: #FFD700;
    color: #003D82;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
    position: relative;
    text-decoration: none;
}

.cs-cart:hover {
    background: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.cs-cart i {
    font-size: 18px;
}

.cart-count {
    background: #ED3237;
    color: white;
    min-width: 20px;
    height: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    padding: 0 6px;
    margin-left: 5px;
}


 
.cs-main {
    padding: 20px 0;
}

.cs-content-wrap {
    display: flex;
    gap: 20px;
}





.cs-sidebar {
    width: 280px;
    background: white;
    border-radius: 15px;
    padding: 0;
    height: fit-content;
    position: sticky;
    top: 100px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.cs-sidebar-summary {
    padding: 20px;
    border-bottom: 2px solid #FFD700;
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.18) 0%, rgba(255, 255, 255, 0) 100%);
}

.cs-sidebar-cs-summary__title {
    font-size: 20px;
    font-weight: 900;
    margin: 0 0 6px;
    background: linear-gradient(135deg, #ED3237 0%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.01em;
}

.cs-sidebar-summary-meta {
    color: #6b7280;
    font-size: 13px;
    font-weight: 500;
}

.cs-sidebar-header {
    background: white;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.cs-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d3436;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cs-sidebar-title::before {
    content: '\f0b0';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

.sok-filter-section {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
}

.sok-filter-section:last-child {
    border-bottom: none;
}

.sok-filter-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #2d3436;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sok-filter-search {
    position: relative;
    margin-bottom: 10px;
}

.sok-filter-search-input {
    width: 100%;
    padding: 8px 34px 8px 10px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 12px;
    background-color: white;
    color: #111827;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.sok-filter-search-input:focus {
    outline: none;
    border-color: rgba(0, 61, 130, 0.35);
    box-shadow: 0 0 0 3px rgba(0, 61, 130, 0.10);
}

.sok-filter-search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #9aa4b2;
    font-size: 12px;
    pointer-events: none;
}

.sok-filter-list {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 2px;
}

.sok-filter-empty {
    text-align: center;
    padding: 16px 10px;
    color: #9aa4b2;
    font-size: 12px;
}

.sok-filter-empty i {
    display: block;
    font-size: 22px;
    margin-bottom: 8px;
    color: #cbd5e1;
}

.sok-filter-item {
    display: flex;
    align-items: center;
    padding: 6px 8px;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-bottom: 3px;
}

.sok-filter-item:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.18) 0%, rgba(0, 61, 130, 0.06) 100%);
    transform: translateX(5px);
}

.sok-filter-checkbox {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    cursor: pointer;
    accent-color: #003D82;
    border-radius: 3px;
}

.sok-filter-label {
    flex: 1;
    font-size: 12px;
    color: #2d3436;
    cursor: pointer;
    font-weight: 500;
}

.sok-filter-count {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #2d3436;
    padding: 2px 8px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 700;
    box-shadow: 0 2px 5px rgba(255, 215, 0, 0.3);
}

 
.cs-products {
    flex: 1;
}





 

 
.cs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}





.cs-card {
    background: var(--cs-surface, #fff);
    border-radius: var(--cs-radius-card, 12px);
    overflow: hidden;
    box-shadow: var(--cs-shadow-hover, 0 4px 15px rgba(0, 0, 0, 0.08));
    text-decoration: none;
    display: block;
    transition: box-shadow var(--cs-transition, 0.2s ease), border-color var(--cs-transition, 0.2s ease), transform var(--cs-transition, 0.2s ease);
    position: relative;
    border: 2px solid transparent;
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.cs-card:hover {
    box-shadow: var(--cs-shadow-hover, 0 4px 15px rgba(0, 0, 0, 0.08));
    border-color: var(--cs-yellow, #FFD700);
}

.cs-card__img {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.cs-card__tag {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFD700;
    color: #2d3436;
    text-align: center;
    padding: 3px 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.cs-card__img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cs-card:hover .cs-card__img::before {
    opacity: 1;
}

.cs-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


.sok-add-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: white;
    border: 2px solid #ED3237;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    color: #ED3237;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(237, 50, 55, 0.3);
    opacity: 0;
    transform: scale(0.8);
}

.cs-card:hover .sok-add-btn {
    opacity: 1;
    transform: scale(1);
}

.sok-add-btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #2d3436;
    transform: scale(1.15) rotate(90deg);
    border-color: #FFD700;
}

.cs-card__body {
    padding: 18px;
    background: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cs-card__title {
    font-size: 13px;
    color: #2d3436;
    margin-bottom: 12px;
    min-height: 40px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    display: box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    line-height: 1.45;
    font-weight: 500;
    text-overflow: ellipsis;
    word-wrap: break-word;
}

.cs-card__price {
    font-size: 22px;
    font-weight: 800;
    background: linear-gradient(135deg, #ED3237 0%, #C41E3A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    display: inline-block;
}

.cs-card__btn {
    background: var(--cs-yellow, #FFD700);
    color: var(--cs-blue, #003D82);
    border: none;
    padding: 12px;
    width: 100%;
    min-height: 44px;
    border-radius: var(--cs-radius-btn, 10px);
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    transition: background var(--cs-transition, 0.2s ease), transform var(--cs-transition, 0.2s ease), box-shadow var(--cs-transition, 0.2s ease);
    font-family: var(--cs-font, inherit);
    box-shadow: var(--cs-shadow);
    position: relative;
    overflow: hidden;
}

.cs-card__btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cs-card__btn:hover::before {
    width: 300px;
    height: 300px;
}

.cs-card__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}





#csCartNotify {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    animation: csFadeIn 0.2s ease;
}

@keyframes csFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.cs-modal__backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    animation: csFadeIn 0.2s ease;
}

.cs-modal__content {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    pointer-events: none;
    padding: 20px;
}

.cs-modal__box {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px 28px;
    max-width: 420px;
    width: 100%;
    pointer-events: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 61, 130, 0.08);
    animation: csModalPop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

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

.cs-modal__close {
    position: absolute;
    top: 14px;
    right: 14px;
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(0, 61, 130, 0.05);
    opacity: 0.7;
    transition: all 0.2s ease;
}

.cs-modal__close:hover {
    opacity: 1;
    background: rgba(0, 61, 130, 0.1);
    transform: scale(1.05);
}

.cs-modal__close:active {
    transform: scale(0.95);
}

.cs-modal__title {
    text-align: center;
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 24px 0;
    color: #003D82;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.cs-modal__btns {
    display: flex;
    gap: 12px;
    margin-top: 0;
}

.cs-modal__btn {
    flex: 1;
    padding: 14px 20px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.cs-modal__btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cs-modal__btn:active::before {
    width: 300px;
    height: 300px;
}

.cs-modal__btn--secondary {
    background: rgba(0, 61, 130, 0.06);
    border: 1.5px solid rgba(0, 61, 130, 0.2);
    color: #003D82;
    box-shadow: 0 2px 8px rgba(0, 61, 130, 0.08);
}

.cs-modal__btn--secondary:hover {
    background: rgba(0, 61, 130, 0.1);
    border-color: rgba(0, 61, 130, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 61, 130, 0.15);
}

.cs-modal__btn--secondary:active {
    transform: translateY(0);
}

.cs-modal__btn--primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFB300 100%);
    border: none;
    color: #003D82;
    box-shadow: 0 8px 24px rgba(255, 179, 0, 0.4);
    font-weight: 800;
}

.cs-modal__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(255, 179, 0, 0.5);
    background: linear-gradient(135deg, #FFE135 0%, #FFC107 100%);
}

.cs-modal__btn--primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(255, 179, 0, 0.4);
}





.cs-footer {
    background: #FFD700;
    color: #2d3436;
    padding: 35px 0;
    width: 100%;
    margin-top: auto;
    flex-shrink: 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.cs-footer__main {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr 1fr;
    gap: 50px;
    padding-bottom: 28px;
}

 
.cs-footer__brand {
    padding-right: 0;
}

.cs-footer__logo {
    margin-bottom: 15px;
}

.cs-footer__logo img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.cs-footer__tagline {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #2d3436;
    letter-spacing: 0.3px;
}

.cs-social {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.cs-social__link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #2d3436;
    color: #FFD700;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.cs-social__link:hover {
    background: #003D82;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 61, 130, 0.3);
}

.cs-apps {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cs-apps__link {
    background: #2d3436;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    font-weight: 500;
}

.cs-apps__link:hover {
    background: #003D82;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 61, 130, 0.3);
}

.cs-apps__link i {
    font-size: 18px;
}

 
.cs-footer__col h4 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 14px;
    color: #2d3436;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 8px;
}

.cs-footer__col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #003D82;
    border-radius: 2px;
}

.cs-footer__col ul {
    list-style: none;
}

.cs-footer__col ul li {
    margin-bottom: 7px;
}

.cs-footer__col ul li a {
    color: #3d3d3d;
    text-decoration: none;
    font-size: 11px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    font-weight: 500;
    line-height: 1.6;
}

.cs-footer__col ul li a:hover {
    color: #003D82;
    transform: translateX(3px);
    font-weight: 600;
}

 
.cs-footer__contact {
    background: transparent;
    padding: 20px 0;
    margin-top: 20px;
}

.cs-footer__contact-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

.cs-contact {
    font-size: 11px;
    color: #2d3436;
    font-weight: 500;
}

.cs-contact strong {
    font-weight: 700;
}

.cs-contact--form {
    color: #003D82;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
}

.cs-contact--form::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #003D82;
    transition: width 0.3s;
}

.cs-contact--form:hover::after {
    width: 100%;
}

 
.cs-footer__bottom {
    background: linear-gradient(to bottom, #FFC700, #FFB700);
    padding: 14px 0;
}

.cs-footer__bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.footer-accessibility {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #4a4a4a, #3a3a3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.footer-accessibility:hover {
    background: linear-gradient(135deg, #FFD700, #FFC700);
    color: #2d3436;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.cs-footer__copy p {
    font-size: 10px;
    color: #003D82;
    margin: 0;
    font-weight: 600;
}

.cs-pay-methods {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.cs-pay-methods img {
    height: 32px;
    width: auto;
    display: block;
    background: #fff;
    padding: 4px 8px;
    border-radius: 6px;
    object-fit: contain;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
}





@media (max-width: 1200px) {
    .cs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
}

@media (max-width: 992px) {
    .cs-content-wrap {
        flex-direction: column;
    }
    
    .cs-sidebar {
        width: 100%;
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
    
    .cs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cs-toplinks {
        display: none;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
    
     
    .cs-sidebar {
        display: none;
    }
    
     
    .cs-products {
        width: 100%;
    }
    
    .cs-content-wrap {
        flex-direction: column;
    }
    
    .cs-main {
        padding-top: 118px;
    }
    
     
    .cs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0;
        align-items: stretch;
    }
    
     
    .cs-card {
        min-height: 0;
        height: 100%;
        border-radius: 10px;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
        border: 1px solid #f0f0f0;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
        background: white;
        display: flex;
        flex-direction: column;
    }
    
    .cs-card:active {
        transform: scale(0.98);
        box-shadow: 0 0 0 2px #003D82;
    }
    
     
    .cs-card__img {
        height: 160px;
        padding: 12px;
        background: #fff;
        position: relative;
        flex-shrink: 0;
    }
    
    .cs-card__img::before {
        display: none;
    }
    
    .cs-card__img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
     
    .cs-card__tag {
        padding: 2px 6px;
        font-size: 8px;
        background: linear-gradient(135deg, #FFD700, #FFC700);
    }
    
     
    .sok-add-btn {
        display: none;
    }
    
    .cs-card__body {
        padding: 10px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    .cs-card__title {
        font-size: 12px;
        font-weight: 500;
        height: 34px;
        min-height: 34px;
        margin-bottom: 8px;
        color: #333;
        line-height: 1.4;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis;
    }
    
     
    .cs-card__price {
        font-size: 16px;
        font-weight: 700;
        color: #ED3237;
        background: none;
        -webkit-text-fill-color: unset;
        margin-bottom: 8px;
        letter-spacing: -0.5px;
    }
    
     
    .cs-card__btn {
        font-size: 11px;
        padding: 9px 8px;
        margin-top: auto;
        flex-shrink: 0;
        background: linear-gradient(135deg, #FFD700, #FFC700);
        border-radius: 8px;
        box-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
        transition: transform 0.2s ease;
        font-weight: 600;
        color: #2d3436;
        border: none;
        width: 100%;
    }
    
    .cs-card__btn::before {
        display: none;
    }
    
    .cs-card__btn:active {
        transform: scale(0.95);
        box-shadow: 0 1px 2px rgba(255, 215, 0, 0.3);
    }
    
     
    
     
    .cs-modal__content {
        padding: 16px;
    }
    
    .cs-modal__box {
        width: 100%;
        max-width: 360px;
        border-radius: 18px;
        padding: 28px 20px 24px;
    }
    
    .cs-modal__close {
        top: 12px;
        right: 12px;
        width: 30px;
        height: 30px;
    }
    
    .cs-modal__title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .cs-modal__btns {
        gap: 10px;
    }
    
    .cs-modal__btn {
        font-size: 13px;
        padding: 13px 16px;
        border-radius: 12px;
    }
    
     
    .cs-footer {
        margin-top: 40px;
        padding: 25px 0 70px;
    }
    
    .cs-footer__main {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px 20px;
    }
    
    .cs-footer__col {
        display: none;
    }
    
    .cs-footer__brand {
        text-align: center;
    }
    
    .cs-footer__logo {
        margin-bottom: 10px;
    }
    
    .cs-social {
        justify-content: center;
    }
    
    .cs-apps {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .cs-apps__link {
        font-size: 10px;
        padding: 6px 10px;
    }
    
    .cs-footer__contact-inner {
        flex-direction: column;
        gap: 8px;
        padding: 0 15px;
        text-align: center;
    }
    
    .cs-contact {
        font-size: 10px;
    }
    
    .cs-footer__bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0 15px;
    }
    
    .cs-footer__copy p {
        font-size: 9px;
    }
    
    .cs-pay-methods img {
        height: 35px;
        opacity: 1;
    }
    
     
    ::-webkit-scrollbar {
        width: 4px;
    }
    
    ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
    ::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 4px;
    }
    
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
}

@media (max-width: 576px) {
    .cs-brand {
        gap: 3px;
    }
    
    .cs-logo-box {
        padding: 3px 6px;
        height: 40px;
        width: 70px;
        min-width: 70px;
    }
    
    .cs-logo-box.cs-logo-box--sok {
        height: 40px;
        width: 70px;
        min-width: 70px;
    }
    
    .cs-logo-img {
        height: 28px;
    }
    
     
    .cs-search input {
        font-size: 12px;
        padding: 7px 10px;
    }
    
    .cs-search button {
        padding: 7px 10px;
    }
    
    .cs-search button i {
        font-size: 14px;
    }
    
     
    .cs-cart {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .cs-cart span {
        font-size: 12px;
    }
    
    .cs-cart i {
        font-size: 14px;
    }
    
     
    .cs-action {
        padding: 5px 8px;
    }
    
    .cs-action i {
        font-size: 18px;
    }
    
    .categories-btn span {
        display: none;
    }
    
    .search-icon {
        left: 15px;
        font-size: 14px;
    }
    
    .search-input-wrapper input {
        padding: 10px 12px 10px 40px;
        font-size: 12px;
    }
    
    .search-btn {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .cart-icon-wrapper {
        width: 35px;
        height: 35px;
    }
    
    .cart-icon-wrapper i {
        font-size: 18px;
    }
    
    .cart-price {
        font-size: 14px;
    }
    
    .cs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .cs-card__img {
        height: 150px;
        padding: 12px;
    }
    
    .cs-card__title {
        font-size: 12px;
        height: 34px;
        min-height: 34px;
        line-height: 1.35;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .cs-card__price {
        font-size: 16px;
    }
    
    .cs-card__btn {
        padding: 9px 8px;
        font-size: 11px;
    }
    
    .sok-discount-cs-badge {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .sok-add-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .cs-footer__main {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .cs-modal__box {
        padding: 24px 18px 20px;
        max-width: 320px;
    }
    
    .cs-modal__title {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .cs-modal__btns {
        flex-direction: row;
        gap: 8px;
    }
    
    .cs-modal__btn {
        padding: 12px 14px;
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .cs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .cs-card {
        min-height: 0;
    }
    
    .cs-card__img {
        height: 140px;
        padding: 10px;
    }
    
    .cs-card__body {
        padding: 8px;
    }
    
    .cs-card__title {
        font-size: 11px;
        height: 32px;
        min-height: 32px;
        line-height: 1.35;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .cs-card__price {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .cs-card__btn {
        padding: 8px 6px;
        font-size: 10px;
    }
    
     
    .cs-topbar {
        padding: 4px 0;
    }
    
    .cs-searchbar {
        padding: 6px 0;
    }
    
    .cs-logo-box {
        padding: 2px 5px;
        height: 36px;
        width: 65px;
        min-width: 65px;
    }
    
    .cs-logo-box.cs-logo-box--sok {
        height: 36px;
        width: 65px;
        min-width: 65px;
    }
    
    .cs-logo-img {
        height: 26px;
    }
}

/* ===== INDEX PAGE - MOBILE LAYOUT ===== */
@media (max-width: 768px) {
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        padding-top: 0;
        padding-bottom: 90px;
    }

    .cs-m-header {
        background: linear-gradient(180deg, #FFD700 0%, #FFC107 100%);
        padding: 10px 12px 10px;
        padding-top: 10px;
        padding-top: calc(10px + env(safe-area-inset-top));
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 10px 26px rgba(0,0,0,0.12);
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .cs-m-header__bar {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 10px;
    }
    .cs-m-menu-btn {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        border: 1px solid rgba(0, 61, 130, 0.18);
        background: rgba(255, 255, 255, 0.65);
        color: #003D82;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.12s ease, background 0.12s ease;
    }
    .cs-m-menu-btn:active {
        transform: scale(0.96);
        background: rgba(255, 255, 255, 0.8);
    }
    .cs-m-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%) translateX(-2px);
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        min-width: 0;
    }
    .cs-m-logo img {
        height: 30px;
    }
    .cs-m-cart {
        color: #003D82;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.9);
        border: 1px solid rgba(0, 61, 130, 0.18);
        border-radius: 14px;
        padding: 8px 12px;
        font-weight: 800;
        font-size: 13px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.12s ease, filter 0.12s ease;
    }
    .cs-m-cart:active {
        transform: scale(0.98);
        filter: brightness(0.98);
    }

    .cs-m-search {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .cs-m-search__form {
        flex: 1;
        min-width: 0;
        display: flex;
        align-items: center;
        background: rgba(255, 255, 255, 0.95);
        border: 1px solid rgba(0, 61, 130, 0.14);
        border-radius: 14px;
        height: 40px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }
    .cs-m-search__form input {
        flex: 1;
        min-width: 0;
        border: none;
        padding: 0 12px;
        font-size: 13px;
        background: transparent;
        outline: none;
        font-family: 'Inter', sans-serif;
        color: #111827;
    }
    .cs-m-search__form input::placeholder {
        color: #6b7280;
    }
    .cs-m-search__btn {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        background: none;
        border: none;
        color: #003D82;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        cursor: pointer;
    }
    .cs-m-action {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        border-radius: 12px;
        border: 1px solid rgba(0, 61, 130, 0.14);
        background: rgba(255, 255, 255, 0.85);
        color: #003D82;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
        transition: transform 0.12s ease, filter 0.12s ease;
    }
    .cs-m-action:active {
        transform: scale(0.96);
        filter: brightness(0.98);
    }

    .cs-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        border-top: 1px solid #e0e0e0;
        z-index: 999;
        padding: 6px 4px calc(6px + env(safe-area-inset-bottom));
        align-items: flex-end;
        justify-content: space-around;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    }
    .cs-nav__item {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 3px;
        color: #666;
        text-decoration: none;
        font-size: 9px;
        padding: 2px 0 4px;
        min-width: 0;
    }
    .cs-nav__item i {
        font-size: 20px;
    }
    .cs-nav__item span {
        max-width: 72px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        line-height: 1.1;
    }
    .cs-nav__item.active {
        color: #003D82;
    }
    .cs-nav__item.active i {
        color: #003D82;
    }
    .cs-nav__cart {
        position: relative;
        flex: 0 0 auto;
        text-decoration: none;
        background: linear-gradient(135deg, #FFD700 0%, #FFB300 100%);
        border-radius: 50%;
        width: 56px;
        height: 56px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 6px 14px rgba(255, 193, 7, 0.45);
        margin-top: -22px;
        margin-bottom: 2px;
        border: 3px solid #fff;
    }
    .cs-nav__cart i {
        color: #003D82;
        font-size: 24px;
        line-height: 1;
    }
    .cs-nav__cart .cs-badge {
        position: absolute;
        top: -8px;
        right: -8px;
        background: linear-gradient(135deg, #ED3237 0%, #FF3B30 100%);
        color: white;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-weight: 800;
        border: 3px solid #fff;
        box-shadow: 0 2px 8px rgba(237, 50, 55, 0.6);
        z-index: 10;
    }
    .cs-nav__cart .cs-badge {
        transform: scale(1);
    }

    .cs-slide-menu {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100%;
        background: white;
        z-index: 2000;
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    .cs-slide-menu.active {
        left: 0;
    }
    .cs-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1999;
        display: none;
    }
    .cs-overlay.active {
        display: block;
    }
    .cs-slide-menu__head {
        background: linear-gradient(135deg, #003D82 0%, #0055B8 100%);
        padding: 12px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
    }
    .cs-slide-menu__head h3 {
        font-size: 16px;
        font-weight: 700;
        margin: 0;
    }
    .cs-slide-menu__close {
        background: none;
        border: none;
        color: white;
        font-size: 20px;
        padding: 0;
    }
    .cs-slide-menu__body {
        padding: 10px 0;
    }
    .cs-slide-menu__link {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 20px;
        color: #333;
        text-decoration: none;
        transition: background 0.2s;
    }
    .cs-slide-menu__link:active {
        background: #f5f5f5;
    }
    .cs-slide-menu__link i {
        color: #003D82;
        width: 20px;
        text-align: center;
    }
    .cs-slide-menu__link span {
        font-size: 14px;
        font-weight: 500;
    }

    .cs-main {
        padding-top: 118px;
    }

    .cs-topbar,
    .cs-searchbar {
        display: none !important;
    }

    .cs-filter-bar {
        display: flex;
        gap: 10px;
        padding: 5px 0 6px;
    }
    .cs-filter-btn,
    .cs-sort-btn {
        flex: 1;
        background: #003D82;
        border: none;
        padding: 10px;
        border-radius: 10px;
        font-size: 14px;
        font-weight: 600;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        box-shadow: 0 2px 4px rgba(0,0,0,0.12);
    }
    .cs-filter-btn i,
    .cs-sort-btn i {
        color: white;
    }

    .cs-grid {
        padding: 0;
    }

    .cs-card {
        -webkit-tap-highlight-color: transparent;
        user-select: none;
    }
}

/* ===== INDEX PAGE - PC LAYOUT ===== */
@media (min-width: 769px) {
    .cs-m-header,
    .cs-nav,
    .cs-filter-bar,
    .cs-slide-menu,
    .cs-overlay {
        display: none !important;
    }
}

@media (min-width: 769px) {
    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
        background: #f5f5f5;
        margin: 0;
        padding: 0;
    }
    .cs-content-wrap {
        display: flex;
        gap: 28px;
        align-items: flex-start;
    }
    .cs-sidebar {
        display: block !important;
        width: 230px;
        flex-shrink: 0;
        background: #fff;
        border-radius: 12px;
        padding: 20px 16px;
        box-shadow: 0 1px 4px rgba(0,0,0,0.07);
        position: sticky;
        top: 24px;
    }
    .cs-products {
        flex: 1;
        min-width: 0;
    }
    .cs-sort {
        display: inline-block !important;
    }
    .cs-topbar,
    .cs-searchbar {
        display: block !important;
    }
}
@media (max-width: 768px) {
    .cs-sort {
        display: none !important;
    }
    .cs-sidebar {
        display: none !important;
    }
}

/* ===== SHARED: CHECKOUT PAGES (sepet, adres, odeme) ===== */
.cs-checkout {
    background: #FFD700;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
@media (max-width: 1023px) {
    .cs-topbar,
    .cs-searchbar {
        display: none !important;
    }
}
@media (min-width: 1024px) {
    .cs-checkout {
        display: none !important;
    }
}
.cs-checkout .cs-container,
.cs-checkout .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--cs-gap-sm, 16px);
}
.cs-checkout__logo { height: 45px; }
.cs-checkout__top {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cs-checkout__steps {
    display: flex;
    width: 100%;
    max-width: 500px;
}
.cs-checkout__step {
    flex: 1;
    position: relative;
    text-align: center;
}
.cs-checkout__step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #E0E0E0;
    border-radius: 2px;
}
.cs-checkout__step--active::before,
.cs-checkout__step--done::before {
    background: #003D82;
}
.cs-checkout__step-text {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #999;
}
.cs-checkout__step--active .cs-checkout__step-text { color: #003D82; }
.cs-checkout__step--done .cs-checkout__step-text { color: #666; }
@media (max-width: 768px) {
    .cs-checkout { padding: 10px 0; }
    .cs-checkout__logo { height: 35px; }
    .cs-checkout__steps { max-width: 300px; }
    .cs-checkout__step-text { font-size: 11px; margin-top: 8px; }
}
.cs-logo-box.cs-logo-box--sok { padding: 4px !important; }
.cs-logo-box.cs-logo-box--sok .cs-logo-img {
    height: 100% !important;
    width: 100% !important;
    object-fit: contain !important;
}

/* ===== SEPET PAGE ===== */
.space-y-0 > div:last-child {
    border-bottom: none !important;
}
@media (min-width: 1024px) {
    body { padding-top: 0 !important; }
}
@media (max-width: 768px) {
    body { padding-top: 0 !important; }
    .cs-campaign:active {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(0.95);
    }
    .cs-campaign i { font-size: 11px; }
    .cs-campaign span { font-size: 11px; }
    .cs-bottom-nav { display: none !important; }
    .cs-nav__item {
        flex: 1;
        text-align: center;
        color: #666;
        text-decoration: none;
        padding: 4px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2px;
        position: relative;
    }
    .cs-nav__item i { font-size: 18px; }
    .cs-nav__item span { font-size: 10px; font-weight: 500; }
    .cs-nav__item .cs-badge {
        position: absolute;
        top: -4px;
        right: 50%;
        transform: translateX(12px);
        background: #ED3237;
        color: white;
        font-size: 10px;
        font-weight: 700;
        padding: 2px 6px;
        border-radius: 10px;
        min-width: 18px;
    }
    .cs-cart-summary {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 998 !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    }
    .main-content { padding-top: 0 !important; }
}
@media (min-width: 769px) {
    .cs-m-header,
    .cs-bottom-nav { display: none !important; }
}
@media (min-width: 1024px) {
    .lg\:grid { align-items: start !important; }
}
@media (min-width: 1024px) {
    .sticky.top-32 {
        top: 20px !important;
        max-height: calc(100vh - 40px) !important;
        overflow-y: auto !important;
        scrollbar-width: thin;
        scrollbar-color: #ddd #f5f5f5;
    }
    .sticky.top-32::-webkit-scrollbar { width: 6px; }
    .sticky.top-32::-webkit-scrollbar-track {
        background: #f5f5f5;
        border-radius: 3px;
    }
    .sticky.top-32::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 3px;
    }
    .sticky.top-32::-webkit-scrollbar-thumb:hover { background: #ccc; }
}

/* ===== URUN PAGE ===== */
.cs-product-gallery__main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
.cs-product-gallery__img {
    display: block;
    width: 100%;
    max-width: 480px;
    height: auto;
    max-height: 420px;
    object-fit: contain;
    margin: 0 auto;
}
@keyframes csSlideIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cs-anim-slide { animation: csSlideIn 0.5s ease-out; }
.cs-no-scrollbar::-webkit-scrollbar { display: none; }
.cs-no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
@media (max-width: 768px) {
    .cs-page--product .cs-m-header {
        background: linear-gradient(135deg, #003D82 0%, #0055B8 100%);
        padding: 6px 10px 0px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .cs-page--product .cs-m-header__bar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 6px;
    }
    .cs-header-actions {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    .cs-campaign {
        background: rgba(255, 255, 255, 0.2);
        color: white;
        padding: 4px 8px;
        border-radius: 15px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 3px;
        font-size: 12px;
        font-weight: 600;
        transition: all 0.2s;
    }
    .cs-campaign:active {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(0.95);
    }
    .cs-page--product .cs-m-cart {
        background: #FFD700;
        color: #003D82;
        padding: 5px 10px;
        border-radius: 18px;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 4px;
        font-weight: 600;
        font-size: 13px;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .cs-page--product .cs-m-search {
        background: white;
        border-radius: 18px;
        padding: 0;
        display: flex;
        align-items: center;
        height: 32px;
        margin-bottom: 8px;
    }
    .cs-page--product .cs-m-search input {
        flex: 1;
        border: none;
        padding: 6px 12px;
        font-size: 13px;
        background: transparent;
        outline: none;
        font-family: 'Inter', sans-serif;
    }
    .cs-page--product .cs-m-search button {
        background: none;
        border: none;
        padding: 6px 12px;
        color: #666;
        font-size: 14px;
    }
    .cs-page--product .cs-topbar,
    .cs-page--product .cs-searchbar { display: none !important; }
}
@media (min-width: 769px) {
    .cs-m-header,
    .cs-nav { display: none !important; }
}
@media (max-width: 1023px) {
    .cs-product-gallery__img {
        max-width: 100%;
        max-height: 360px;
    }
    .main-content:not(.cs-page) {
        padding: 0 !important;
        margin-top: 0 !important;
    }
    body { padding-bottom: 90px !important; }
}
@media (max-width: 767px) {
    .cs-product-gallery__img {
        max-height: 300px;
    }
}
#csCartNotify {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999 !important;
}
#csCartNotify > div { z-index: 10000 !important; }
@media (max-width: 768px) {
    .cs-topbar,
    .cs-searchbar { display: none !important; }
}
@media (min-width: 769px) {
    .cs-m-header { display: none !important; }
}

/* ===== ADRES PAGE ===== */
.cs-modal { display: none; }
.cs-modal.active { display: flex; }
@media (min-width: 1024px) {
    .grid.lg\:grid-cols-3 { align-items: start !important; }
}
@media (min-width: 1024px) {
    .sticky.top-24 {
        top: 20px !important;
        max-height: calc(100vh - 40px) !important;
        overflow-y: auto !important;
        scrollbar-width: thin;
        scrollbar-color: #ddd #f5f5f5;
    }
    .sticky.top-24::-webkit-scrollbar { width: 6px; }
    .sticky.top-24::-webkit-scrollbar-track {
        background: #f5f5f5;
        border-radius: 3px;
    }
    .sticky.top-24::-webkit-scrollbar-thumb {
        background: #ddd;
        border-radius: 3px;
    }
    .sticky.top-24::-webkit-scrollbar-thumb:hover { background: #ccc; }
}

/* ===== ODEME PAGE ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}
body {
    font-family: 'Inter', sans-serif;
    background: #f5f5f5;
}
.cs-footer {
    margin-top: auto !important;
    margin-bottom: 0 !important;
}
.cs-sec-info {
    display: flex;
    gap: 20px;
    align-items: center;
}
.cs-sec-cs-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #666;
    font-size: 13px;
}
.cs-sec-cs-badge i { color: #003D82; }
.cs-payment {
    width: 100%;
    margin: 0;
    padding: 0;
}
.cs-address-page .cs-payment__grid,
.cs-payment__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    gap: var(--cs-gap, 24px);
    align-items: start;
}
.cs-payment__card {
    background: var(--cs-surface, #fff);
    border-radius: var(--cs-radius-card, 12px);
    padding: 28px 32px;
    box-shadow: var(--cs-shadow, 0 2px 8px rgba(0,0,0,0.08));
}
.cs-payment__title {
    font-size: var(--cs-h1, 1.5rem);
    font-weight: 700;
    color: var(--cs-text, #2d3436);
    margin-bottom: var(--cs-gap, 24px);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--cs-border, #e5e7eb);
}
.cs-field { margin-bottom: var(--cs-gap-sm, 16px); }
.cs-field__label {
    display: block;
    font-size: var(--cs-small, 0.8125rem);
    font-weight: 600;
    color: var(--cs-text, #2d3436);
    margin-bottom: 8px;
}
.cs-field__input {
    width: 100%;
    min-height: var(--cs-control-h, 48px);
    padding: 12px 16px;
    border: 1px solid var(--cs-border-strong, #d1d5db);
    border-radius: var(--cs-radius-control, 8px);
    font-size: var(--cs-body, 0.9375rem);
    font-family: var(--cs-font, inherit);
    transition: border-color var(--cs-transition, 0.2s ease), box-shadow var(--cs-transition, 0.2s ease);
}
.cs-field__input:focus {
    outline: none;
    border-color: var(--cs-blue, #003D82);
    box-shadow: var(--cs-focus, 0 0 0 3px rgba(0, 61, 130, 0.12));
}
.cs-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.cs-card-wrap { position: relative; }
.cs-card-icons {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 8px;
}
.cs-card-icons i { font-size: 32px; }
.cs-sec-notice {
    background: #f0f8ff;
    border: 1px solid #d4ebff;
    border-radius: 6px;
    padding: 15px;
    margin: 20px 0;
    display: flex;
    gap: 12px;
}
.cs-sec-notice i {
    color: #003D82;
    font-size: 20px;
}
.cs-sec-text {
    font-size: 13px;
    color: #333;
    line-height: 1.6;
}
.cs-sec-text strong { display: block; margin-bottom: 4px; }
.cs-check {
    display: flex;
    gap: 12px;
    margin: 30px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}
.cs-check input { margin-top: 3px; }
.cs-check a {
    color: #003D82;
    text-decoration: none;
}
.cs-check a:hover { text-decoration: underline; }
.cs-submit {
    width: 100%;
    min-height: var(--cs-btn-h, 48px);
    padding: 14px 20px;
    background: var(--cs-yellow, #FFD700);
    color: var(--cs-blue, #003D82);
    border: none;
    border-radius: var(--cs-radius-btn, 10px);
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--cs-font, inherit);
    cursor: pointer;
    transition: background var(--cs-transition, 0.2s ease), transform var(--cs-transition, 0.2s ease);
}
.cs-submit:hover { filter: brightness(0.97); }
.cs-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}
.cs-summary {
    background: var(--cs-surface, #fff);
    border-radius: var(--cs-radius-card, 12px);
    padding: 28px;
    box-shadow: var(--cs-shadow, 0 2px 8px rgba(0,0,0,0.08));
    position: sticky;
    top: 20px;
    height: fit-content;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #ddd #f5f5f5;
    z-index: 10;
}
.cs-summary::-webkit-scrollbar { width: 6px; }
.cs-summary::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}
.cs-summary::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}
.cs-summary::-webkit-scrollbar-thumb:hover { background: #ccc; }
.cs-summary__title {
    font-size: var(--cs-h2, 1.25rem);
    font-weight: 700;
    color: var(--cs-text, #2d3436);
    margin-bottom: var(--cs-gap, 24px);
    padding-bottom: 16px;
    border-bottom: 1px solid var(--cs-border, #e5e7eb);
}
.cs-summary-item {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f5f5f5;
}
.cs-summary-item__img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    background: #f9f9f9;
    border-radius: 8px;
    padding: 10px;
}
.cs-summary-item__body { flex: 1; }
.cs-summary-item__name {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.5;
}
.cs-summary-item__price {
    font-size: 16px;
    font-weight: 600;
    color: #ED3237;
}
.cs-summary__total {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #e5e5e5;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cs-summary__total-label {
    font-size: 19px;
    font-weight: 600;
    color: #333;
}
.cs-summary__total-price {
    font-size: 30px;
    font-weight: 700;
    color: #ED3237;
}
@media (max-width: 968px) {
    .cs-payment__grid {
        grid-template-columns: 1fr;
        gap: var(--cs-gap-sm, 16px);
    }
    .cs-payment__card { padding: 20px 16px; }
    .cs-payment__title {
        font-size: var(--cs-h2, 1.25rem);
        margin-bottom: var(--cs-gap-sm, 16px);
    }
    .cs-summary {
        position: static;
        order: -1;
        padding: 20px 16px;
        max-height: none;
        overflow-y: visible;
    }
    .cs-summary__title {
        font-size: var(--cs-h3, 1.125rem);
        margin-bottom: var(--cs-gap-sm, 16px);
    }
    .cs-sec-info { display: none; }
}

/* ===== TASARIM IYILESTIRMELERI ===== */

/* Kart hover - yukselme efekti */
.cs-card {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease, border-color 0.3s ease;
}
.cs-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 61, 130, 0.15);
    border-color: #FFD700;
}
.cs-card:active {
    transform: translateY(-2px) scale(0.99);
}

/* Kart gorsel - hover zoom */
.cs-card__img img {
    transition: transform 0.4s ease;
}
.cs-card:hover .cs-card__img img {
    transform: scale(1.08);
}

/* Online Ozel rozet - modern */
.cs-card__tag {
    background: linear-gradient(135deg, #FFD700 0%, #FFB300 100%);
    color: #003D82;
    font-size: 10px;
    padding: 5px 12px;
    border-radius: 0;
    font-weight: 800;
    letter-spacing: 0.8px;
    box-shadow: 0 -2px 8px rgba(255, 179, 0, 0.3);
}

/* Sepete Ekle butonu - pürüzsüz */
.cs-card__btn {
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}
.cs-card__btn:hover {
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5);
    transform: translateY(-1px);
}
.cs-card__btn:active {
    transform: translateY(0) scale(0.98);
}

/* Sidebar - kategori/marka hover */
[data-cat]:hover div:first-child,
[data-brand-item]:hover div:first-child {
    border-color: #003D82 !important;
    transition: border-color 0.2s ease;
}
[data-cat] div:first-child,
[data-brand-item] div:first-child {
    transition: all 0.2s ease;
}

/* Fiyat - daha belirgin */
.cs-card__price {
    font-size: 20px;
    font-weight: 800;
    color: #ED3237;
    letter-spacing: -0.5px;
}

/* Kart baslik - daha okunakli */
.cs-card__title {
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}

/* Bos sonuc mesaji */
#csNoResults {
    animation: csFadeIn 0.3s ease;
}
#csNoResults i {
    animation: csFadeIn 0.4s ease;
}

/* ===== GIRIS / UYE OL SAYFASI ===== */
.cs-auth-body {
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cs-auth-header {
    width: 100%;
    background: #FFD700;
    padding: 25px 20px;
    text-align: center;
}
.cs-auth-logo {
    display: inline-block;
}
.cs-auth-logo img {
    height: 50px;
}
.cs-auth-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    width: 100%;
}
.cs-auth-card {
    background: var(--cs-surface, #fff);
    border-radius: var(--cs-radius-card, 12px);
    box-shadow: var(--cs-shadow-lg, 0 4px 24px rgba(0, 0, 0, 0.08));
    padding: 36px 32px;
    width: 100%;
    max-width: 420px;
}
.cs-auth-title {
    text-align: center;
    font-size: var(--cs-h1, 1.5rem);
    font-weight: 700;
    color: var(--cs-text, #2d3436);
    margin-bottom: var(--cs-gap, 24px);
}
.cs-auth-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 28px;
    background: #f1f3f5;
    border-radius: 8px;
    padding: 4px;
}
.cs-auth-tab {
    flex: 1;
    padding: 12px;
    border: none;
    background: transparent;
    color: #999;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-family: 'Inter', sans-serif;
}
.cs-auth-tab.active {
    background: #fff;
    color: #003D82;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}
.cs-auth-field {
    margin-bottom: 20px;
}
.cs-auth-field input {
    width: 100%;
    min-height: var(--cs-control-h, 48px);
    padding: 12px 16px;
    border: 1px solid var(--cs-border-strong, #d1d5db);
    border-radius: var(--cs-radius-control, 8px);
    font-size: var(--cs-body, 0.9375rem);
    font-family: var(--cs-font, inherit);
    color: var(--cs-text, #2d3436);
    outline: none;
    transition: border-color var(--cs-transition, 0.2s ease), box-shadow var(--cs-transition, 0.2s ease);
}
.cs-auth-field input:focus {
    border-color: var(--cs-blue, #003D82);
    box-shadow: var(--cs-focus, 0 0 0 3px rgba(0, 61, 130, 0.12));
}
.cs-auth-submit {
    width: 100%;
    min-height: var(--cs-btn-h, 48px);
    padding: 14px 20px;
    background: var(--cs-blue, #003D82);
    color: #fff;
    border: none;
    border-radius: var(--cs-radius-btn, 10px);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background var(--cs-transition, 0.2s ease), transform var(--cs-transition, 0.2s ease);
    font-family: var(--cs-font, inherit);
}
.cs-auth-submit:hover {
    background: var(--cs-blue-hover, #0055B8);
}
.cs-auth-submit:active {
    transform: scale(0.98);
}
.cs-auth-help {
    text-align: right;
    margin-top: 16px;
}
.cs-auth-help a {
    color: #003D82;
    font-size: 14px;
    text-decoration: underline;
    font-weight: 500;
}
.cs-auth-loyalty {
    margin-top: 24px;
}
.cs-loyalty-title {
    color: #003D82;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 12px;
}
.cs-loyalty-box {
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 16px;
}
.cs-loyalty-icon {
    font-size: 28px;
    color: #003D82;
    flex-shrink: 0;
}
.cs-loyalty-box span {
    font-size: 14px;
    color: #555;
    font-weight: 500;
    line-height: 1.5;
}
.cs-auth-footer-text {
    text-align: center;
    margin-top: 28px;
    font-size: 13px;
    color: #999;
    line-height: 1.5;
}
@media (max-width: 480px) {
    .cs-auth-card {
        padding: 28px 20px;
    }
    .cs-auth-title {
        font-size: 20px;
    }
    .cs-auth-header {
        padding: 18px 15px;
    }
    .cs-auth-logo img {
        height: 40px;
    }
}

/* ===== MOBILE STOREFRONT POLISH ===== */
@media (max-width: 768px) {
    body.cs-page--home {
        padding-top: 0 !important;
        padding-bottom: calc(72px + env(safe-area-inset-bottom)) !important;
        background: #f3f4f6;
    }

    .cs-page--home .cs-main {
        padding-top: 118px !important;
        padding-bottom: 0 !important;
    }

    .cs-page--home .cs-container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    .cs-page--home .cs-m-header__bar {
        position: relative;
    }

    .cs-page--home .cs-m-logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        flex: 0 0 auto;
    }

    .cs-page--home .cs-m-search {
        gap: 8px !important;
    }

    .cs-page--home .cs-grid {
        gap: 10px !important;
        padding: 0 !important;
    }

    .cs-page--home .cs-card {
        height: 100%;
    }

    .cs-page--home .cs-card__body {
        padding: 10px;
    }

    .cs-page--home .cs-footer {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }
}

