@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;700&display=swap');

:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --secondary: #6366f1;
    --bg: #f8fafc;
    --text: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.8);
}

.brand-item img:hover {
    filter: grayscale(0) !important;
    opacity: 1 !important;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

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

/* Top Bar */
.top-bar {
    background: #111827;
    color: #fff;
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}

.top-bar-right {
    display: flex;
    gap: 20px;
}

.top-bar-right a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar-right a:hover {
    color: #fff;
}

.icon-sm {
    width: 14px;
    height: 14px;
}

.icon-xs {
    width: 12px;
    height: 12px;
}

/* Main Header */
.main-header {
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.header-logo .brand-logo {
    max-height: 50px;
    width: auto;
    object-fit: contain;
}

.header-search {
    flex: 1;
    max-width: 500px;
    margin: 0 40px;
    position: relative;
    display: flex;
}

.header-search form {
    width: 100%;
    position: relative;
    display: flex;
}

.header-search input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 50px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    outline: none;
    background: #f8fafc;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.header-search input:focus {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}

.header-search button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: #fff;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s;
}

.header-search button:hover {
    background: var(--primary-dark);
}

.header-search button svg {
    width: 18px;
    height: 18px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text);
    position: relative;
    transition: color 0.3s;
}

.action-btn:hover {
    color: var(--primary);
}

.action-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.action-text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
}

.action-text small {
    font-weight: 400;
    color: var(--text-muted);
}

.action-badge {
    position: absolute;
    top: -5px;
    left: 12px;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid #fff;
}

/* Nav Menu */
.main-nav {
    border-top: 1px solid rgba(0,0,0,0.03);
    background: rgba(255,255,255,0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    height: 50px;
    align-items: center;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
}

.nav-menu > li > a:hover, .nav-menu > li > a.active {
    color: var(--primary);
}

.nav-menu > li > a.highlight {
    color: #e11d48;
}

.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.05);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 25px;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: background 0.3s, color 0.3s;
}

.dropdown-menu a:hover {
    background: #f8fafc;
    color: var(--primary);
}

/* Swiper Slider */
.hero-slider {
    position: relative;
    margin-bottom: 80px;
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
}

.hero-slider .swiper {
    width: 100%;
    height: 600px;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    /* Soft overlay for legibility */
    background-color: rgba(0,0,0,0.3);
    background-blend-mode: overlay;
    transform: scale(1.05);
    transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.swiper-slide-active .slide-bg {
    transform: scale(1);
}

.slide-content-wrapper {
    height: 100%;
    display: flex;
    align-items: center;
}

.slide-content-wrapper.right-align {
    justify-content: flex-end;
}

.slide-content {
    max-width: 550px;
    color: #fff;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.3s;
}

.swiper-slide-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-subtitle {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 6px 15px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.3);
}

.slide-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.slide-desc {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--text);
    padding: 16px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    box-shadow: 0 15px 25px -5px rgba(0,0,0,0.2);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -5px rgba(0,0,0,0.3);
}

.btn-premium.btn-dark {
    background: var(--text);
    color: #fff;
}

/* Swiper Custom Navigation */
.swiper-button-next, .swiper-button-prev {
    color: #fff;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #fff;
    color: var(--text);
    transform: scale(1.1);
}

.swiper-button-next::after, .swiper-button-prev::after {
    font-size: 1.5rem;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #fff;
    opacity: 0.5;
    transition: all 0.3s;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    width: 30px;
    border-radius: 10px;
}

/* Trust Badges */
.trust-badges-section {
    margin-top: -40px; /* Pull it slightly up over the slider */
    margin-bottom: 80px;
    position: relative;
    z-index: 10;
}

.trust-badges-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.02);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    justify-content: center;
    transition: transform 0.3s;
}

.trust-badge:hover {
    transform: translateY(-3px);
}

.badge-icon {
    width: 50px;
    height: 50px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 1.5;
}

.badge-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}

.badge-content p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
}

.badge-divider {
    width: 1px;
    height: 40px;
    background: rgba(0,0,0,0.05);
}

/* Section Headlines */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-muted);
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}

.section-header-row h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: gap 0.3s;
}

.view-all-link:hover {
    gap: 8px;
}

.view-all-link svg {
    width: 16px;
    height: 16px;
}

.section-margin {
    margin-bottom: 100px;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    z-index: 10;
}

.badge-new { background: #3b82f6; } /* Blue */
.badge-hot { background: #ef4444; } /* Red */

/* Product Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(0,0,0,0.02);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    width: 100%;
    height: 250px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.product-info {
    padding: 30px;
}

.product-category {
    font-size: 0.8rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.price-old {
    font-size: 1rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Bento Grid Categories Section */
.bento-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 50px;
    height: 400px;
}

.bento-col {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.bento-box {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.1);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.4s;
    background: #0f172a; /* Fallback */
}

.bento-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.2);
}

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    background-color: rgba(0,0,0,0.3); /* Dark overlay */
    background-blend-mode: overlay;
}

.bento-box:hover .bento-bg {
    transform: scale(1.05); /* Image zoom effect */
}

.bento-content {
    position: relative;
    z-index: 10;
}

.bento-box h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.box-small h3 {
    font-size: 1.4rem;
}

.bento-box p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 15px;
}

.bento-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    border: 1px solid rgba(255,255,255,0.4);
    transition: all 0.3s;
}

.bento-box:hover .bento-btn {
    background: var(--white);
    color: var(--text);
}

.bento-btn svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 768px) {
    .bento-categories {
        grid-template-columns: 1fr;
        height: auto;
    }
    .box-large, .bento-col {
        height: 300px;
    }
}

/* Deal of the Day Banner */
.deal-banner {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 80px;
    min-height: 480px;
    display: flex;
    align-items: center;
    box-shadow: 0 20px 40px -10px rgba(0,0,0,0.15);
}

.deal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #000;
    opacity: 0.6;
}

.deal-bg::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(to right, #0f172a 40%, transparent);
}

.deal-content {
    position: relative;
    z-index: 10;
    padding: 50px 60px;
    color: #fff;
    max-width: 600px;
}

.deal-badge {
    display: inline-block;
    background: #e11d48;
    color: #fff;
    padding: 6px 15px;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.deal-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
}

.deal-content p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 30px;
}

.countdown-timer {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 35px;
}

.time-box {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    width: 70px;
    height: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.time-box span {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.time-box small {
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.7;
    margin-top: 5px;
}

.time-colon {
    font-size: 2rem;
    font-weight: 700;
    opacity: 0.5;
}

.pulse-text {
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; color: #fecdd3; }
}

.deal-content .btn-premium del {
    margin-left: 10px;
    opacity: 0.6;
    font-weight: 400;
}

@media (max-width: 768px) {
    .deal-content {
        padding: 30px;
    }
    .deal-content h2 {
        font-size: 2rem;
    }
}
/* Blog & Inspiration Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.4s, box-shadow 0.4s;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 16px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05); /* Soft zoom on hover */
}

.blog-content {
    padding: 25px 0 10px 0;
}

.blog-meta {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
    line-height: 1.3;
    transition: color 0.3s;
}

.blog-card:hover .blog-content h3 {
    color: var(--primary);
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2; /* fallback for standard browsers */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-readmore {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: all 0.3s;
}

.btn-readmore:hover {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .blog-image {
        height: 300px;
    }
}

/* Brands Marquee */
.brands-section {
    padding: 60px 0;
    overflow: hidden;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
}

.brands-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    /* Soft gradient edges to fade in/out the text */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.brands-track {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.brand-item {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-muted);
    opacity: 0.3;
    margin: 0 40px;
    letter-spacing: 2px;
    transition: opacity 0.3s, color 0.3s;
    cursor: default;
}

.brand-item:hover {
    opacity: 1;
    color: var(--primary);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Footer */
footer {
    background: #1e293b;
    color: var(--white);
    padding: 80px 0 40px;
    margin-top: 100px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.footer-link {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ==========================================
   Sosyal Medya İkonları
   ========================================== */

/* Top Bar Sosyal */
.topbar-social {
    color: rgba(255,255,255,0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: color 0.3s, transform 0.3s;
}

.topbar-social:hover {
    color: #fff;
    transform: translateY(-2px);
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Footer Sosyal */
.footer-social {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.social-icon {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

.social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px -5px rgba(79,70,229,0.5);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-social .social-icon:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(79, 70, 229, 0.4);
    color: #fff;
}

/* ==========================================
   Ürün Kartı - Sepete Ekle Butonu
   ========================================== */
.product-card {
    display: flex;
    flex-direction: column;
}

.product-card-footer {
    padding: 0 20px 20px;
    margin-top: auto;
}

.btn-add-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f1f5f9;
    color: #0f172a;
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-add-cart svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.btn-add-cart:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.25);
}

.btn-add-cart:disabled {
    cursor: not-allowed;
    opacity: 0.8;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 10000;
    pointer-events: none;
}

.cookie-wrapper {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    pointer-events: all;
    max-width: 1000px !important;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 20px;
    color: #fff;
}

.cookie-icon {
    width: 48px;
    height: 48px;
    background: rgba(79, 70, 229, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    flex-shrink: 0;
}

.cookie-text h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cookie-text p {
    font-size: 0.9rem;
    opacity: 0.7;
    line-height: 1.5;
}

.cookie-text a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-cookie.accept {
    background: #4f46e5;
    color: #fff;
}

.btn-cookie.accept:hover {
    background: #4338ca;
    transform: translateY(-2px);
}

.btn-cookie.decline {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-cookie.decline:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Styles */
.mobile-menu-toggle,
.mobile-search-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text);
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle svg,
.mobile-search-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Search Overlay */
.mobile-search-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    z-index: 2000;
    display: none;
    padding: 20px;
}

.mobile-search-overlay.active {
    display: block;
}

.search-overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.search-overlay-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.mobile-search-overlay form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-search-overlay input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    font-size: 1.1rem;
    outline: none;
}

.mobile-search-overlay input:focus {
    border-color: var(--primary);
}

.mobile-search-overlay button[type="submit"] {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Mobile Menu Panel */
.mobile-menu-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    display: none;
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    display: block;
}

.mobile-menu-panel {
    position: fixed;
    top: 0;
    left: -100%;
    width: 85%;
    max-width: 320px;
    height: 100%;
    background: #fff;
    z-index: 2001;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.mobile-menu-panel.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.mobile-menu-header .logo-text {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.mobile-nav-list li a {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid #f1f5f9;
}

.mobile-nav-list li a svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.menu-divider {
    height: 20px;
}

.mobile-logout-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 15px 0;
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ef4444;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

@media (max-width: 991px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-menu-toggle,
    .mobile-search-toggle {
        display: block;
    }
    .main-nav {
        display: none;
    }
    .header-logo {
        display: flex;
        align-items: center;
        gap: 15px;
    }
    .top-bar-right {
        display: none;
    }
    .top-bar-inner {
        justify-content: center;
    }
    .hero-slider .swiper {
        height: 450px;
    }
    .slide-title {
        font-size: 2.5rem;
    }
    .trust-badges-wrapper {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    .badge-divider {
        width: 100%;
        height: 1px;
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .action-text {
        display: none;
    }
    .header-actions {
        gap: 15px;
    }
}
