:root {
    --primary-modern: #3b82f6;
    --primary-accent: #10b981;
    --primary-glow: rgba(59, 130, 246, 0.4);
    --bg-modern: #030712;
    --bg-card: rgba(17, 24, 39, 0.4);
    --bg-glass: rgba(3, 7, 18, 0.6);
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-glass-light: rgba(255, 255, 255, 0.05);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --font-modern: 'Outfit', sans-serif;
    --radius-lg: 1.5rem;
    --radius-md: 1rem;
    --shadow-premium: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --border-glow: rgba(59, 130, 246, 0.3);
    --sidebar-w: 260px;
}

html {
    scrollbar-gutter: stable !important;
    max-width: 100vw;
    overflow-x: hidden;
}

body {
    scrollbar-gutter: stable !important;
    background: var(--bg-modern) !important;
    background-image:
        radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.12) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(16, 185, 129, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.08) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(16, 185, 129, 0.04) 0px, transparent 50%) !important;
    background-attachment: fixed !important;
    font-family: var(--font-modern) !important;
    color: var(--text-main) !important;
    overflow-x: hidden;
    max-width: 100vw;
    overscroll-behavior-x: none;
    min-height: 100vh;
    letter-spacing: -0.01em;
}

body.modal-open {
    padding-right: 0 !important;
    overflow: hidden;
}

.sticky-top.header-wrapper {
    padding-right: 0 !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-modern);
    font-weight: 700;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.display-1,
.display-2,
.display-3,
.display-4 {
    letter-spacing: -0.015em;
    font-weight: 800;
    line-height: 1.3 !important;
}

.text-primary {
    color: var(--primary-modern) !important;
}

.sticky-top.header-wrapper {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none !important;
    z-index: 1050;
    padding-top: 10px;
    padding-right: 0 !important;
}

#header {
    background: var(--bg-glass) !important;
    backdrop-filter: blur(25px) saturate(200%) !important;
    -webkit-backdrop-filter: blur(25px) saturate(200%) !important;
    border: 1px solid var(--border-glass) !important;
    position: relative;
    z-index: 1050;
    margin: 0 auto !important;
    
    border-radius: 24px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4) !important;
    overflow: visible !important;
    padding: 0 !important;
    width: 100%;
    max-width: 100%;
}

#header::before,
#header>*::before {
    display: none !important;
}

#bottom-header {
    background: transparent !important;
    border-top: 1px solid var(--border-glass-light) !important;
    overflow: visible !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    min-height: 0 !important;
}

#bottom-header.glass-morphism,
#bottom-header {
    background-color: transparent !important;
    border: none !important;
    border-top: 1px solid var(--border-glass-light) !important;
}

.nav-secondary {
    background: transparent !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.btn {
    border-radius: 100px;
    font-weight: 700 !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem !important;
}

.btn-lg {
    padding: 0.8rem 2rem !important;
}

.btn:not(.btn-lg):not(.btn-sm):not(.btn-link):not(.rounded-circle) {
    padding: 0.5rem 1.2rem !important;
}

.btn-sm {
    padding: 0.3rem 0.8rem !important;
    font-size: 0.75rem !important;
}

.btn-group .btn {
    padding: 0.45rem 1rem !important;
    font-size: 0.75rem !important;
    border-radius: 0 !important;
}

.btn-group.rounded-pill .btn:first-child {
    border-radius: 50px 0 0 50px !important;
}

.btn-group.rounded-pill .btn:last-child {
    border-radius: 0 50px 50px 0 !important;
}

.btn.rounded-circle {
    padding: 0 !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-modern) 0%, #1d4ed8 100%) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.35), inset 0 1px 1px rgba(255, 255, 255, 0.15) !important;
    filter: brightness(1.1);
}

.btn-warning {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
    border: none !important;
    box-shadow: 0 8px 15px rgba(245, 158, 11, 0.3) !important;
    color: #fff !important;
}

.btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(245, 158, 11, 0.4) !important;
}

.btn-danger {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    border: none !important;
    box-shadow: 0 8px 15px rgba(239, 68, 68, 0.3) !important;
    color: #fff !important;
}

.btn-danger:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(239, 68, 68, 0.4) !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary-modern) !important;
    color: var(--primary-modern) !important;
    background: rgba(14, 165, 233, 0.05) !important;
}

.btn-outline-primary:hover {
    background-color: var(--primary-modern) !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3) !important;
}

.btn-glass-primary {
    background: rgba(14, 165, 233, 0.15) !important;
    border: 1px solid var(--border-glow) !important;
    color: #fff !important;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-glass-primary::before {
    display: none !important;
}

.btn-glass-primary svg,
.btn-glass-primary i {
    color: #fff !important;
    stroke: #fff !important;
}

.btn-glass-primary:hover,
.btn-glass-primary:focus,
.btn-glass-primary:active,
.btn-glass-primary.show {
    background: rgba(14, 165, 233, 0.35) !important;
    color: #fff !important;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.3) !important;
    border-color: rgba(14, 165, 233, 0.6) !important;
}

.dropdown-menu {
    z-index: 1060 !important;
}

.dropdown-menu.glass-morphism {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 0px solid var(--border-glass) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5) !important;
    min-width: 220px;
    margin-top: 10px !important;
    animation: slideUp 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.dropdown-menu.glass-morphism::before {
    display: none !important;
}

.dropdown-item {
    color: var(--text-main) !important;
    transition: all 0.2s ease;
    padding: 0.6rem 1rem !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--primary-modern) !important;
    padding-left: 1.25rem !important;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#headerSearchInput {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: 50px !important;
    color: #fff !important;
    padding: 0.5rem 1.25rem 0.5rem 2.5rem !important;
    transition: all 0.3s ease;
    text-align: left !important;
    height: 44px !important;
    font-size: 0.9rem !important;
}

.d-md-none input[type="search"].glass-morphism {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 0px solid var(--border-glass) !important;
    border-radius: 50px !important;
    min-height: 0 !important;
    box-shadow: none !important;
}

#headerSearchInput:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--primary-modern) !important;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.2), inset 0 0 10px rgba(255, 255, 255, 0.05) !important;
    outline: none;
    transform: scale(1.02);
}

.glass-morphism {
    background: rgba(17, 24, 39, 0.6) !important;
    backdrop-filter: blur(16px) saturate(180%) !important;
    -webkit-backdrop-filter: blur(16px) saturate(180%) !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: var(--radius-lg) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37) !important;
    position: relative;
    overflow: hidden;
}

.glass-morphism::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.03) 100%);
    pointer-events: none;
    z-index: 0;
    border-radius: inherit;
}

.glass-morphism>* {
    position: relative;
    z-index: 1;
}

.btn.glass-morphism::before,
.form-control.glass-morphism::before,
input.glass-morphism::before,
.dropdown-menu.glass-morphism::before,
.btn-user-profile.glass-morphism::before,
.nav-secondary .glass-morphism::before,
#bottom-header::before {
    display: none !important;
}

.product {
    background: rgba(17, 24, 39, 0.45) !important;
    backdrop-filter: blur(12px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(12px) saturate(160%) !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2) !important;
    position: relative;
    overflow: hidden !important;
    display: flex;
    flex-direction: column;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    min-height: 280px;
}

.product::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, transparent 40%, transparent 60%, rgba(255, 255, 255, 0.03) 100%);
    pointer-events: none;
    z-index: 2;
    border-radius: inherit;
}

.product-img-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    width: 100%;
    aspect-ratio: 3 / 2;
    height: auto;
    transition: all 0.5s ease;
    padding: 0;
    margin: 0;
}

@media (min-width: 992px) {
    .product-img-container {
        padding: 0;
    }

    .product-img {
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        mix-blend-mode: normal !important;
        
    }
}

@media (max-width: 991px) {
    .product-img-container {
        padding: 0;
        margin: 0;
        aspect-ratio: 3 / 2;
    }

    .product-img {
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
    }
}

.product-img {
    position: absolute;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    z-index: 0;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.product:hover .product-img {
    transform: scale(1.12);
}

.product:hover {
    transform: translateY(-8px) !important;
    border-color: var(--primary-modern) !important;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6), 0 0 30px var(--primary-glow) !important;
}

.product-title {
    background-color: rgba(2, 6, 23, 0.85) !important;
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-glass);
    font-weight: 600;
    padding: 0.8rem 1rem !important;
    z-index: 5;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.product-discount-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #ff416c, #ff4b2b);
    color: white;
    padding: 4px 10px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.65rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(255, 75, 43, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.product-img-container {
    overflow: hidden;
    position: relative;
    height: auto;
    aspect-ratio: 3 / 2;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.03);
    margin: 0;
    border-radius: 0;
}

.product-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.product:hover .product-img-full {
    transform: scale(1.08);
}

.product-img-container .product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-info {
    position: relative;
    z-index: 3;
    flex-grow: 0;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95), rgba(2, 6, 23, 0.6)) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 1rem 1.25rem !important;
}

.product-card-premium {
    background: rgba(15, 23, 42, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.02) !important;
    display: flex !important;
    flex-direction: column !important;
    position: relative !important;
}

.product-card-premium .product-img {
    order: 1 !important;
    position: relative !important;
}

.product-card-premium .product-info,
.product-card-premium .product-info-footer-premium {
    order: 2 !important;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.4), rgba(2, 6, 23, 0.9)) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-grow: 1 !important;
    display: flex !important;
    flex-direction: column !important;
}

.product-card-premium .product-info-footer-premium {
    background: linear-gradient(to top, rgba(2, 6, 23, 1) 0%, rgba(2, 6, 23, 0.8) 60%, transparent 100%) !important;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding-top: 2.5rem !important; /* Extra padding for gradient */
    border-top: none;
    z-index: 5;
    pointer-events: none; /* Allow clicking through to the card */
}

.product-card-premium .product-info-footer-premium * {
    pointer-events: auto; /* Re-enable for content inside */
}

.bundle-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    border: 1px solid rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card-premium .product-discount-badge {
    z-index: 10;
}

.product-card-premium:hover {
    border-color: var(--primary-modern) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 25px var(--primary-glow) !important;
}

.news-item {
    background: rgba(17, 24, 39, 0.45) !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    overflow: hidden;
}

.news-item:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(14, 165, 233, 0.3) !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 15px var(--primary-glow) !important;
}

.card {
    background-color: rgba(15, 23, 42, 0.45) !important;
    border: 0px solid var(--border-glass) !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: var(--shadow-premium) !important;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(14, 165, 233, 0.3) !important;
}

footer {
    background: rgba(2, 6, 23, 0.8) !important;
    border-top: 1px solid var(--border-glass) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    flex-direction: column !important;
    display: block !important;
}

footer::before {
    display: none !important;
}

footer.glass-morphism {
    min-height: auto !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.footer-bottom-area {
    border-top: 1px solid rgba(14, 165, 233, 0.1) !important;
}

footer>.border-top.border-primary {
    border-top-color: var(--border-glass) !important;
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.kolay-signature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 0px solid var(--border-glass) !important;
    transition: all 0.3s ease;
}

.signature-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #999;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.signature-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.signature-link img {
    height: 24px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kolay-signature:hover .signature-label {
    color: #ccc;
}

.kolay-signature:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-3px);
    background: var(--primary-modern) !important;
    color: #fff;
}

.social-btn::before {
    display: none !important;
}

.section-header h3 {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.section-header h3::after {
    height: 3px !important;
    background: linear-gradient(to right, var(--primary-modern), transparent) !important;
    width: 60px !important;
}

#popular-products-section,
#popular-multi-section,
#popular-single-section,
#campaign-products-section {
    margin-bottom: 4rem;
    position: relative;
    z-index: 5;
}

.col-lg-2-4 {
    position: relative;
    width: 100%;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 991px) {
    .col-lg-2-4 {
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
}

@media (max-width: 767px) {
    .col-lg-2-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

@media (max-width: 575px) {
    .col-lg-2-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

svg.feather {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    vertical-align: middle;
}

svg.feather.feather-filled {
    fill: currentColor;
}

.glass-hover {
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
    border: 1px solid transparent !important;
}

.glass-hover:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-1px);
}

.nav-link.glass-hover:hover i,
.nav-link.glass-hover:hover svg {
    opacity: 1 !important;
    color: var(--primary-modern);
}

.badge-primary-glow {
    background: linear-gradient(135deg, var(--primary-modern), #06b6d4);
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
    border: none;
    font-size: 8px;
    padding: 3px 6px;
    text-transform: uppercase;
}

.badge-warning-glow {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    border: none;
    font-size: 8px;
    padding: 3px 6px;
    text-transform: uppercase;
}

.badge-danger-glow {
    background: linear-gradient(135deg, #ef4444, #f87171);
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.5);
    border: none;
    font-size: 8px;
    padding: 3px 6px;
    text-transform: uppercase;
}

.text-primary-glow {
    color: var(--primary-modern) !important;
    text-shadow: 0 0 8px rgba(14, 165, 233, 0.3);
}

.border-glass {
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.glass-morphism-dark {
    background: rgba(3, 7, 18, 0.7) !important;
    backdrop-filter: blur(18px) saturate(180%);
}

.text-light-gray {
    color: #cbd5e1 !important;
}

.maxWidth-600 {
    max-width: 600px;
}

.badge-primary-light {
    background: rgba(59, 130, 246, 0.15) !important;
    color: #3b82f6 !important;
}

.border-primary-modern {
    border-color: rgba(59, 130, 246, 0.3) !important;
}

.main-slider-adjust {
    margin-top: -15px;
}

@media (max-width: 768px) {
    .main-slider-adjust {
        margin-top: 0 !important;
        padding-top: 25px !important;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

#slider #homeSlider.swiper-container {
    overflow: hidden !important;
    height: auto !important;
}

#slider #homeSlider .swiper-wrapper {
    height: auto !important;
    align-items: stretch !important;
}

#slider #homeSlider .swiper-slide {
    height: auto !important;
    min-height: 0 !important;
    display: block !important;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

#slider #homeSlider .swiper-slide .slide-background {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 480px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

#slider #homeSlider .slide-background.glass-morphism {
    overflow: hidden !important;
}

#slider #homeSlider .slide-background .glass-morphism-dark {
    overflow: hidden !important;
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
}

#slider #homeSlider .swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 15px;
    padding-bottom: 10px;
}

#homeSlider .swiper-slide-active .slide-content-wrapper {
    animation: fadeInUp 0.8s ease-out 0.2s both;
    padding-bottom: 30px;
}

.slide-content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    z-index: 5;
}

#slider #homeSlider .swiper-slide .slide-title {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: auto !important;
    margin-bottom: 1.5rem !important;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    order: 2;
}

#slider #homeSlider .swiper-slide .slide-paragraph {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: 100% !important;
    max-width: 550px;
    margin-top: 0 !important;
    margin-bottom: 2rem !important;
    line-height: 1.65;
    order: 3;
}

#slider #homeSlider .swiper-slide .slide-button-area {
    position: relative !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    order: 4;
}

.slide-content-wrapper>.mb-3 {
    order: 1;
}

#homeSlider .swiper-slide-active .slide-image-wrapper {
    animation: float 4s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#homeSlider .swiper-slide-active .slide-title {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

#homeSlider .swiper-slide-active .slide-paragraph {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both;
}

#homeSlider .swiper-slide-active .slide-button-area {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

@media (max-width: 768px) {
    #slider #homeSlider .swiper-slide .slide-background {
        min-height: 420px !important;
        padding: 30px 0 !important;
    }

    .slide-title {
        font-size: 1.8rem !important;
        letter-spacing: -0.5px !important;
    }

    .slide-paragraph {
        font-size: 1rem !important;
        opacity: 0.9 !important;
    }

    .slide-image-wrapper img {
        max-height: 220px !important;
        margin-bottom: 20px;
    }

    .slide-content-wrapper {
        text-align: center;
    }

    .slide-button-area {
        justify-content: center;
        display: flex;
    }
}

.star-pick {
    cursor: pointer;
    color: rgba(255, 255, 255, 0.1);
    transition: all 0.2s ease;
    margin-right: 5px;
}

.star-pick.active,
.star-pick.hover {
    color: #fbbf24;
    fill: #fbbf24;
    filter: drop-shadow(0 0 5px rgba(251, 191, 36, 0.4));
}

.rating-label {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    min-width: 100px;
    text-align: right;
}

.kolay-signature-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 0;
    width: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.kolay-signature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.signature-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #999;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.signature-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    line-height: 1;
}

.signature-link img {
    height: 24px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kolay-signature:hover .signature-label {
    color: #ccc;
}

.home-body-bg .kolay-signature:hover .signature-label {
    color: #333;
}

.kolay-signature:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.dot-indicator {
    width: 6px;
    height: 6px;
    background: var(--primary-modern);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px var(--primary-modern);
}

.dropdown-item:hover .dot-indicator {
    transform: scale(1.5);
    background: #fff;
    box-shadow: 0 0 8px #fff;
}

.border-glow-primary {
    border: 1px solid rgba(14, 165, 233, 0.2) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(14, 165, 233, 0.1) !important;
}

.pulse-orange {
    animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(245, 158, 11, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0);
    }
}

.pulse-blue {
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        filter: drop-shadow(0 0 0 rgba(59, 130, 246, 0.7));
    }

    70% {
        filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0));
    }

    100% {
        filter: drop-shadow(0 0 0 rgba(59, 130, 246, 0));
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.floating {
    animation: float 4s ease-in-out infinite;
}

.hover-scale:hover {
    transform: scale(1.1);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-modern);
}

::-webkit-scrollbar-thumb {
    background: var(--border-glass);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-modern);
}

.bg-glass-darker {
    background: rgba(0, 0, 0, 0.3) !important;
}

.bg-glass-dark {
    background: rgba(15, 23, 42, 0.7) !important;
}

.bg-primary-glow {
    background: rgba(14, 165, 233, 0.1) !important;
}

.border-glass {
    border: 0px solid var(--border-glass) !important;
}

.border-primary-modern {
    border-color: rgba(14, 165, 233, 0.3) !important;
}

.hover-bg-glass:hover {
    background: rgba(255, 255, 255, 0.03) !important;
}

.btn-glass-danger {
    background: rgba(239, 68, 68, 0.15) !important;
    border: 1px solid rgba(239, 68, 68, 0.3) !important;
    color: #ef4444 !important;
}

.btn-glass-danger::before {
    display: none !important;
}

.btn-glass-danger:hover {
    background: rgba(239, 68, 68, 0.3) !important;
}

.quantity-control {
    border: 0px solid var(--border-glass) !important;
    border-radius: 50px !important;
    overflow: hidden;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    height: 44px !important;
    display: flex !important;
    align-items: center !important;
}

.quantity-control input {
    font-size: 1.1rem !important;
    line-height: normal !important;
    height: 100% !important;
    padding: 0 !important;
    width: 60px !important;
    min-width: 60px !important;
}

.quantity-control::before {
    display: none !important;
}

.table {
    color: var(--text-main);
}

.table th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.glass-morphism-dark {
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.3) 0%, rgba(2, 6, 23, 0.85) 100%) !important;
}

@media (max-width: 768px) {
    #header {
        border-radius: 16px !important;
    }

    .product {
        margin-bottom: 1rem !important;
        min-height: 240px;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    .section-header h3 {
        font-size: 1.2rem !important;
    }

    
    #bottom-header .nav-secondary {
        padding: 0.5rem 1rem !important;
    }

    #bottom-header .nav-link {
        font-size: 0.85rem;
        padding: 0.6rem 1rem !important;
        border-bottom: 1px solid var(--border-glass-light);
    }

    #bottom-header .nav-link:last-child {
        border-bottom: none;
    }
}

.ultra-small {
    font-size: 0.7rem !important;
}

.border-glow {
    border: 1px solid var(--border-glow) !important;
    box-shadow: 0 0 10px rgba(14, 165, 233, 0.15);
}

input.glass-morphism,
.form-control.glass-morphism {
    min-height: 0 !important;
    flex-direction: row !important;
    display: block !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.btn-user-profile.glass-morphism {
    min-height: 0 !important;
    box-shadow: none !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.btn-user-profile.glass-morphism.show,
.btn-user-profile.glass-morphism:focus {
    background: rgba(var(--primary-rgb), 0.15) !important;
    border-color: rgba(var(--primary-rgb), 0.4) !important;
}

.alert {
    border-radius: var(--radius-md) !important;
    border: 0px solid var(--border-glass) !important;
}

.hover-scale-soft {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hover-scale-soft:hover {
    transform: translateY(-4px) scale(1.01);
}

.transition-all {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.card-glow-hover:hover {
    border-color: var(--primary-modern) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 25px var(--primary-glow) !important;
}

.shadow-premium {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5) !important;
}

.gap-2>*+* {
    margin-left: 0.5rem;
}

.product-list-container .glass-morphism {
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.product-list-container .glass-morphism:hover {
    transform: translateY(-3px);
    border-color: var(--primary-modern) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px var(--primary-glow) !important;
}

.product-detail-img {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.dropdown {
    position: relative;
}

#header .dropdown-toggle::after {
    display: none;
}

.dropdown-toggle {
    cursor: pointer;
}

.product-detail-img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.6), transparent);
    pointer-events: none;
    z-index: 3;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 0px solid var(--border-glass);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(14, 165, 233, 0.05);
    border-color: rgba(14, 165, 233, 0.2);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 0.75rem;
}

.comments-section .glass-morphism select.form-control,
.comments-section .glass-morphism textarea.form-control {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 0px solid var(--border-glass) !important;
    color: #fff !important;
}

.comments-section .glass-morphism select.form-control:focus,
.comments-section .glass-morphism textarea.form-control:focus {
    border-color: var(--primary-modern) !important;
    box-shadow: 0 0 10px var(--primary-glow) !important;
    outline: none;
}

.comment-item {
    transition: all 0.3s ease;
}

.comment-item:hover {
    border-color: rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-2px);
}

.bilgi-banner {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
}

.bilgi-banner i,
.bilgi-banner svg {
    color: var(--primary-modern);
}

@media (max-width: 991px) {
    .product-list-container .glass-morphism {
        border-left: 3px solid var(--primary-modern) !important;
        padding: 1.25rem !important;
    }

    .product-list-container h4 {
        font-size: 1.1rem !important;
    }

    .product-list-container h3 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 575px) {
    .product-list-container .glass-morphism {
        text-align: center;
    }

    .product-list-container .w-100[style*="max-width"] {
        max-width: 100% !important;
    }
}

.auth-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 0px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.glass-morphism .form-control,
.auth-card .form-control {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 0px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 16px !important;
    color: white !important;
    padding: 12px 18px !important;
    height: auto !important;
    transition: all 0.3s ease !important;
}

.glass-morphism .form-control:focus,
.auth-card .form-control:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: #3b82f6 !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1) !important;
    outline: none !important;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(148, 163, 184, 0.5);
    pointer-events: none;
    transition: color 0.3s ease;
    z-index: 5;
}

.form-group:focus-within .input-icon {
    color: #3b82f6;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 2rem 0;
    color: rgba(148, 163, 184, 0.5);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.divider::before,
.divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.divider:not(:empty)::before {
    margin-right: 1.5rem;
}

.divider:not(:empty)::after {
    margin-left: 1.5rem;
}

.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: white;
    padding: 12px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    text-decoration: none !important;
    cursor: pointer;
}

.btn-google:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    color: white !important;
}

.text-primary-gradient {
    background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.notification-dropdown.dropdown-menu.glass-morphism {
    padding: 0 !important;
    border-radius: 20px !important;
    overflow: hidden;
    animation: notifSlideDown 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

@keyframes notifSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pulse-notification {
    animation: pulseNotif 2s infinite;
    background: linear-gradient(135deg, #ef4444, #f97316) !important;
    border: none !important;
}

@keyframes pulseNotif {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

.notif-item {
    display: flex;
    align-items: flex-start;
    padding: 14px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    text-decoration: none !important;
    position: relative;
}

.notif-item:last-child {
    border-bottom: none;
}

.notif-item:hover {
    background: rgba(14, 165, 233, 0.06) !important;
}

.notif-item.notif-unread {
    background: rgba(14, 165, 233, 0.04);
}

.notif-item.notif-unread::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-modern);
    box-shadow: 0 0 8px var(--primary-modern);
}

.notif-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.notif-icon.notif-icon-ad {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

.notif-icon.notif-icon-order {
    background: rgba(14, 165, 233, 0.15);
    color: #0ea5e9;
}

.notif-icon.notif-icon-info {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.notif-content {
    flex: 1;
    min-width: 0;
}

.notif-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 2px;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notif-message {
    font-size: 0.72rem;
    color: #94a3b8;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.notif-time {
    font-size: 0.65rem;
    color: #64748b;
    margin-top: 4px;
    font-weight: 500;
}

.notif-empty {
    padding: 30px 20px;
    text-align: center;
}

.notif-empty-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: #475569;
}

.notification-body::-webkit-scrollbar {
    width: 4px;
}

.notification-body::-webkit-scrollbar-track {
    background: transparent;
}

.notification-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

@media (max-width: 575px) {
    .notification-dropdown.dropdown-menu.glass-morphism {
        width: 300px !important;
        right: -60px !important;
    }
}

@keyframes bellShake {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(14deg);
    }

    30% {
        transform: rotate(-14deg);
    }

    45% {
        transform: rotate(10deg);
    }

    60% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(4deg);
    }

    100% {
        transform: rotate(0);
    }
}

.bell-shake svg {
    animation: bellShake 0.8s ease-in-out;
}

#notificationBellBtn.dropdown-toggle::after {
    display: none !important;
}

.flash-badge-anim {
    animation: flash-pulse 2s infinite;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 4px 10px !important;
    border-radius: 20px !important;
    font-size: 0.75rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

@keyframes flash-pulse {
    0% {
        transform: scale(1);
        filter: brightness(1);
    }

    50% {
        transform: scale(1.05);
        filter: brightness(1.2);
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

.text-danger-glow {
    color: #ef4444 !important;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.border-danger-glass {
    border: 1px solid rgba(239, 68, 68, 0.2) !important;
    background: rgba(239, 68, 68, 0.05) !important;
}

.flash-countdown-container {
    border: 1px dashed rgba(239, 68, 68, 0.3) !important;
    background: rgba(239, 68, 68, 0.03) !important;
    transition: all 0.3s ease;
}

.flash-countdown-container:hover {
    background: rgba(239, 68, 68, 0.06) !important;
    border-style: solid;
}

.flash-text-anim {
    background: linear-gradient(to right, #ef4444, #f8fafc, #ef4444);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s linear infinite;
    font-weight: 800;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.flash-card {
    border: 1px solid rgba(239, 68, 68, 0.15) !important;
    background: rgba(15, 23, 42, 0.6) !important;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) !important;
}

.flash-card:hover {
    transform: translateY(-10px) scale(1.02) !important;
    border-color: rgba(239, 68, 68, 0.5) !important;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(239, 68, 68, 0.2) !important;
}

.border-glow-danger {
    box-shadow: inset 0 0 20px rgba(239, 68, 68, 0.05) !important;
}

.product-img-container.flash-container {
    background: radial-gradient(circle, rgba(239, 68, 68, 0.08) 0%, transparent 70%);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
}

#flashSalesSlider .swiper-wrapper {
    display: flex;
}

.flash-card:hover .product-img {
    transform: scale(1.1) rotate(2deg);
}

.pulse-danger {
    animation: pulse-danger 2s infinite;
}

@keyframes pulse-danger {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

#flashSalesSlider {
    padding: 20px 0;
    opacity: 0;
    overflow: hidden;
    max-height: 550px;
    transition: opacity 0.4s ease;
}

#flashSalesSlider.swiper-ready {
    opacity: 1;
}

.product-slider {
    padding: 10px 0 5px;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.4s ease;
}

.product-slider.swiper-ready {
    opacity: 1;
}

.product-slider .swiper-wrapper {
    display: flex;
}

.product-slider .swiper-slide {
    height: auto;
}

.product-slider .swiper-slide .product,
.product-slider .swiper-slide > a,
.product-slider .swiper-slide > div {
    height: auto !important;
}

.product-slider .product-info {
    flex-grow: 0;
}

.btn-see-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    color: #60a5fa !important;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
}

.btn-see-more:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    color: #93bbfd !important;
    transform: translateX(3px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.15);
}

.btn-see-more svg {
    transition: transform 0.3s ease;
}

.btn-see-more:hover svg {
    transform: translateX(4px);
}

.swiper-button-prev-flash,
.swiper-button-next-flash {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.swiper-button-prev-flash:hover,
.swiper-button-next-flash:hover {
    background: var(--primary-modern) !important;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .cart-mobile-item {
        background: rgba(255, 255, 255, 0.03) !important;
        backdrop-filter: blur(10px);
        margin-bottom: 20px;
        border: 1px solid rgba(255, 255, 255, 0.05) !important;
        border-radius: 18px !important;
        padding-bottom: 25px !important;
    }

    .quantity-control-mobile {
        display: flex !important;
        align-items: center;
        justify-content: center;
        background: rgba(15, 23, 42, 0.8) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        border-radius: 50px;
        padding: 4px;
        width: 160px;
        margin-right: auto;
    }

    .quantity-control-mobile button {
        width: 36px;
        height: 36px;
        padding: 0 !important;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(14, 165, 233, 0.2) !important;
        color: #fff !important;
        border-radius: 50% !important;
        border: none !important;
        transition: all 0.2s ease;
    }

    .quantity-control-mobile button:active {
        transform: scale(0.9);
        background: rgba(14, 165, 233, 0.4) !important;
    }

    .quantity-control-mobile input {
        width: 65px !important;
        height: 36px !important;
        line-height: 36px !important;
        background: transparent !important;
        border: none !important;
        color: #ffffff !important;
        font-weight: 800 !important;
        font-size: 1.1rem !important;
        padding: 0 !important;
        text-align: center !important;
        margin: 0 !important;
        box-shadow: none !important;
    }

    
    .coupon-input-group {
        display: flex;
        width: 100%;
        gap: 8px;
    }

    .coupon-input-group .form-control {
        border-radius: 50px !important;
        height: 50px !important;
        padding-left: 20px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .coupon-input-group .btn {
        border-radius: 50px !important;
        padding: 0 25px !important;
        height: 50px !important;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
}

.category-sale-closed {
    filter: grayscale(1) !important;
    opacity: 0.6 !important;
    position: relative;
    cursor: not-allowed;
    overflow: hidden;
}

.category-sale-closed::after {
    content: "SATIŞA KAPALIDIR";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    background: rgba(239, 68, 68, 0.95);
    color: white;
    padding: 8px 20px;
    font-weight: 800;
    font-size: 0.8rem;
    border-radius: 8px;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    white-space: nowrap;
    border: 2px solid white;
    pointer-events: none;
}

.nav-link.category-sale-closed {
    opacity: 0.5 !important;
    pointer-events: none;
}

.nav-link.category-sale-closed::after {
    display: none !important;
}

.footer-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(245, 158, 11, 0.08));
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.footer-whatsapp-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 18px;
    transition: all 0.3s ease;
}

.footer-whatsapp-box:hover {
    border-color: rgba(37, 211, 102, 0.25);
    background: rgba(37, 211, 102, 0.04);
}

.whatsapp-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.whatsapp-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #25D366;
}

.whatsapp-status-dot {
    width: 7px;
    height: 7px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    animation: whatsappPulse 2s ease-in-out infinite;
    box-shadow: 0 0 6px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.15);
    color: #e2e8f0 !important;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
    color: #fff !important;
    transform: translateY(-1px);
}

.whatsapp-hours {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
}

.footer-trust-section {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none !important;
    cursor: default;
    white-space: nowrap;
}

a.trust-badge {
    cursor: pointer;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.trust-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex-shrink: 0;
}

.trust-badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.trust-badge-title {
    font-size: 0.78rem;
    font-weight: 800;
    color: #f1f5f9;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.trust-badge-score {
    font-size: 0.68rem;
    color: #94a3b8;
    font-weight: 500;
}

.trust-badge-score strong {
    color: #10b981;
    font-weight: 800;
}

.year-icon {
    background: rgba(245, 158, 11, 0.15); 
    color: #f59e0b;
}

.year-badge:hover {
    border-color: rgba(245, 158, 11, 0.3) !important;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15) !important;
}

.scamadviser-icon {
    background: rgba(16, 185, 129, 0.15);
    color: #10b981;
}

.scamadviser-badge:hover {
    border-color: rgba(16, 185, 129, 0.3) !important;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15) !important;
}

.ssl-icon {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.secure3d-icon {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.microsoft-icon {
    background: rgba(255, 255, 255, 0.08);
}

.satisfaction-icon {
    background: rgba(245, 158, 11, 0.15);
    color: #f59e0b;
}

@media (max-width: 768px) {
    .footer-trust-section .row {
        gap: 4px;
    }

    .trust-badge {
        padding: 8px 14px;
        gap: 8px;
    }

    .trust-badge-icon {
        width: 32px;
        height: 32px;
    }

    .trust-badge-icon svg {
        width: 16px;
        height: 16px;
    }

    .trust-badge-title {
        font-size: 0.7rem;
    }

    .trust-badge-score {
        font-size: 0.6rem;
    }
}