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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #f8f9fa;
    color: #2d3436;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}





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

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

 
.logo-section {
    flex-shrink: 0;
}

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

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

.logo-wrapper {
    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;
}

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

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

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

.top-link {
    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;
}

.top-link: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);
}

.top-link:hover {
    opacity: 0.8;
}

.top-link i {
    color: #FFD700;
    font-size: 18px;
}

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

.bottom-bar-content {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

 
.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;
}

 
.search-box {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

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

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

 
.right-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

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

.cart-btn {
    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;
}

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

.cart-btn 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;
}


 
.sok-main-content {
    padding: 20px 0;
}

.sok-content-wrapper {
    display: flex;
    gap: 20px;
}





.sok-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;
}

.sok-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%);
}

.sok-sidebar-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;
}

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

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

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

.sok-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);
}

 
.sok-products-container {
    flex: 1;
}





 

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





.sok-product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-decoration: none;
    display: block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    border: 2px solid transparent;
    min-height: 360px;
    display: flex;
    flex-direction: column;
}

.sok-product-card:hover {
    box-shadow: 0 10px 30px rgba(237, 50, 55, 0.2);
    border-color: #FFD700;
}

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

.sok-online-badge {
    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;
}

.sok-product-image::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;
}

.sok-product-card:hover .sok-product-image::before {
    opacity: 1;
}

.sok-product-image 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);
}

.sok-product-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;
}

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

.sok-product-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;
}

.sok-product-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;
}

.sok-opportunity-btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #2d3436;
    border: none;
    padding: 12px;
    width: 100%;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.sok-opportunity-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;
}

.sok-opportunity-btn:hover::before {
    width: 300px;
    height: 300px;
}

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





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

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

.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    animation: fadeIn 0.2s ease;
}

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

.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: modalPop 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

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

.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;
}

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

.modal-close:active {
    transform: scale(0.95);
}

.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;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 0;
}

.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;
}

.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;
}

.modal-btn:active::before {
    width: 300px;
    height: 300px;
}

.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);
}

.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);
}

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

.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;
}

.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%);
}

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





.ceptesok-footer {
    background: #FFD700;
    color: #2d3436;
    padding: 35px 0 0;
    margin-top: 60px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

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

 
.footer-brand {
    padding-right: 0;
}

.footer-logo {
    margin-bottom: 15px;
}

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

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

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

.social-icon {
    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);
}

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

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.app-btn {
    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;
}

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

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

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

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

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 7px;
}

.footer-column 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;
}

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

 
.footer-contact {
    background: transparent;
    padding: 20px 0;
    margin-top: 20px;
}

.footer-contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}

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

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

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

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

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

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

.footer-bottom-content {
    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);
}

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

.payment-methods {
    display: flex;
    align-items: center;
}

.payment-methods img {
    height: 45px;
    transition: all 0.3s ease;
    opacity: 1;
    background: white;
    padding: 5px 10px;
    border-radius: 8px;
}





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

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

@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
    
     
    .sok-sidebar {
        display: none;
    }
    
     
    .sok-products-container {
        width: 100%;
    }
    
    .sok-content-wrapper {
        flex-direction: column;
    }
    
    .sok-main-content {
        padding-top: 150px;
    }
    
     
    .sok-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 10px;
    }
    
     
    .sok-product-card {
        min-height: 290px;
        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;
    }
    
    .sok-product-card:active {
        transform: scale(0.98);
        box-shadow: 0 0 0 2px #003D82;
    }
    
     
    .sok-product-image {
        height: 160px;
        padding: 12px;
        background: #fff;
        position: relative;
        flex-shrink: 0;
    }
    
    .sok-product-image::before {
        display: none;
    }
    
    .sok-product-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
     
    .sok-online-badge {
        padding: 2px 6px;
        font-size: 8px;
        background: linear-gradient(135deg, #FFD700, #FFC700);
    }
    
     
    .sok-add-btn {
        display: none;
    }
    
    .sok-product-info {
        padding: 10px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
    
    .sok-product-title {
        font-size: 12px;
        font-weight: 500;
        height: auto;
        min-height: 36px;
        margin-bottom: 10px;
        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;
    }
    
     
    .sok-product-price {
        font-size: 18px;
        font-weight: 700;
        color: #ED3237;
        background: none;
        -webkit-text-fill-color: unset;
        margin-bottom: 10px;
        letter-spacing: -0.5px;
    }
    
     
    .sok-opportunity-btn {
        font-size: 12px;
        padding: 10px;
        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%;
    }
    
    .sok-opportunity-btn::before {
        display: none;
    }
    
    .sok-opportunity-btn:active {
        transform: scale(0.95);
        box-shadow: 0 1px 2px rgba(255, 215, 0, 0.3);
    }
    
     
    
     
    .modal-content {
        padding: 16px;
    }
    
    .modal-box {
        width: 100%;
        max-width: 360px;
        border-radius: 18px;
        padding: 28px 20px 24px;
    }
    
    .modal-close {
        top: 12px;
        right: 12px;
        width: 30px;
        height: 30px;
    }
    
    .modal-title {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    .modal-buttons {
        gap: 10px;
    }
    
    .modal-btn {
        font-size: 13px;
        padding: 13px 16px;
        border-radius: 12px;
    }
    
     
    .ceptesok-footer {
        margin-top: 40px;
        padding: 25px 0 70px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 15px 20px;
    }
    
    .footer-column {
        display: none;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-logo {
        margin-bottom: 10px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .app-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    
    .app-btn {
        font-size: 10px;
        padding: 6px 10px;
    }
    
    .footer-contact-content {
        flex-direction: column;
        gap: 8px;
        padding: 0 15px;
        text-align: center;
    }
    
    .contact-item {
        font-size: 10px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 0 15px;
    }
    
    .footer-copyright p {
        font-size: 9px;
    }
    
    .payment-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) {
    .container {
        padding: 0 10px;
    }
    
    .brand-logo {
        gap: 3px;
    }
    
    .logo-wrapper {
        padding: 3px 6px;
        height: 40px;
        width: 70px;
        min-width: 70px;
    }
    
    .logo-wrapper.sok-logo {
        height: 40px;
        width: 70px;
        min-width: 70px;
    }
    
    .main-logo {
        height: 28px;
    }
    
     
    .search-box input {
        font-size: 12px;
        padding: 7px 10px;
    }
    
    .search-box button {
        padding: 7px 10px;
    }
    
    .search-box button i {
        font-size: 14px;
    }
    
     
    .cart-btn {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .cart-btn span {
        font-size: 12px;
    }
    
    .cart-btn i {
        font-size: 14px;
    }
    
     
    .action-link {
        padding: 5px 8px;
    }
    
    .action-link 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;
    }
    
    .sok-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .sok-product-image {
        height: 180px;
        padding: 15px;
    }
    
    .sok-product-title {
        font-size: 12px;
        height: auto;
        min-height: 36px;
        line-height: 1.4;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .sok-product-price {
        font-size: 20px;
    }
    
    .sok-opportunity-btn {
        padding: 10px;
        font-size: 13px;
    }
    
    .sok-discount-badge {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .sok-add-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .modal-box {
        padding: 24px 18px 20px;
        max-width: 320px;
    }
    
    .modal-title {
        font-size: 17px;
        margin-bottom: 18px;
    }
    
    .modal-buttons {
        flex-direction: row;
        gap: 8px;
    }
    
    .modal-btn {
        padding: 12px 14px;
        font-size: 12px;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 8px;
    }
    
     
    .sok-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .sok-product-card {
        min-height: 270px;
    }
    
    .sok-product-image {
        height: 145px;
        padding: 10px;
    }
    
    .sok-product-info {
        padding: 10px;
    }
    
    .sok-product-title {
        font-size: 11px;
        height: auto;
        min-height: 32px;
        line-height: 1.4;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
    
    .sok-product-price {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .sok-opportunity-btn {
        font-size: 11px;
        padding: 8px;
    }
    
     
    .top-blue-bar {
        padding: 4px 0;
    }
    
    .bottom-yellow-bar {
        padding: 6px 0;
    }
    
    .logo-wrapper {
        padding: 2px 5px;
        height: 36px;
        width: 65px;
        min-width: 65px;
    }
    
    .logo-wrapper.sok-logo {
        height: 36px;
        width: 65px;
        min-width: 65px;
    }
    
    .main-logo {
        height: 26px;
    }
}
