/**
 * Jet Sertifika - Modern CSS
 * Mobile-First Responsive Design
 */

/* ==================== iOS & MOBILE COMPATIBILITY ==================== */
/* iOS Safari için -webkit- prefix'leri ve düzeltmeler */
* {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

html {
    -webkit-text-size-adjust: 100%;
}

/* Mobil görünürlük sınıfları (Bootstrap bağımsız) */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: flex !important;
}

@media (max-width: 767px) {
    .mobile-only {
        display: flex !important;
    }

    .desktop-only {
        display: none !important;
    }
}

/* Sabit WhatsApp Butonu - Tüm cihazlarda görünür */
.floating-whatsapp {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.floating-whatsapp svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

/* WhatsApp Container ve Baloncuk */
.floating-whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.floating-whatsapp-container .floating-whatsapp {
    position: relative;
    bottom: auto;
    right: auto;
}

.floating-whatsapp-bubble {
    background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
    color: #fff;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    animation: bubblePulse 3s ease-in-out infinite;
}

.floating-whatsapp-bubble .bubble-arrow {
    position: absolute;
    bottom: -8px;
    right: 25px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #128c7e;
}

@keyframes bubblePulse {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(-5px);
        opacity: 0.9;
    }
}

/* Mobilde baloncuk gizle */
@media (max-width: 767px) {
    .floating-whatsapp-bubble {
        display: none;
    }

    .floating-whatsapp-container {
        bottom: 90px;
    }
}

/* Sabit Telefon Butonu - Mobilde sol altta */
.floating-phone {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: var(--primary, #2563eb);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

@media (max-width: 767px) {
    .floating-phone {
        display: flex;
    }
}

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

.floating-phone svg {
    width: 28px;
    height: 28px;
    stroke: #fff;
    fill: none;
}

/* iOS button fix */
button,
a.btn,
.btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
}

/* iOS input zoom fix */
@media (max-width: 767px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="search"],
    input[type="password"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* iOS safe area */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .floating-whatsapp-container,
    .floating-phone {
        bottom: calc(20px + env(safe-area-inset-bottom));
    }
}

/* ==================== FEATURED CERTIFICATES (Slider) ==================== */
.featured-certificates {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0 2rem 0;
    max-width: 700px;
}

.featured-cert-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.featured-cert-link:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateX(10px);
    color: #fff;
}

.featured-cert-link .cert-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--secondary, #10b981);
    border-radius: 50%;
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .featured-cert-link {
        font-size: 0.9rem;
        padding: 0.6rem 0.875rem;
        gap: 0.5rem;
    }

    .featured-cert-link .cert-icon {
        width: 24px;
        height: 24px;
        font-size: 0.75rem;
    }

    .featured-certificates {
        gap: 0.6rem;
        margin: 1rem 0 1.25rem 0;
    }
}

@media (max-width: 480px) {
    .featured-cert-link {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
    }

    .featured-cert-link .cert-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .featured-certificates {
        gap: 0.5rem;
        margin: 0.75rem 0 1rem 0;
    }
}

/* ==================== PROCESS STEPS (Slider) ==================== */
.process-steps {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    margin: 1.5rem 0 2rem 0;
    justify-content: center;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    min-width: 200px;
}

.process-step:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-5px);
}

.process-step .step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--secondary, #10b981);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.process-step .step-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .process-steps {
        flex-direction: column;
        gap: 0.75rem;
        margin: 1rem 0 1.25rem 0;
    }

    .process-step {
        padding: 0.75rem 1rem;
        flex-direction: row;
        min-width: auto;
        gap: 0.5rem;
    }

    .process-step .step-number {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .process-step .step-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .process-steps {
        gap: 0.5rem;
        margin: 0.75rem 0 1rem 0;
    }

    .process-step {
        padding: 0.6rem 0.875rem;
    }

    .process-step .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.875rem;
    }

    .process-step .step-text {
        font-size: 0.8rem;
    }
}

/* ==================== BASE RESET ==================== */
.nav-menu dl,
.nav-menu ol,
.nav-menu ul,
.header-nav dl,
.header-nav ol,
.header-nav ul {
    margin-bottom: 0;
}

/* ==================== MOBILE MENU FIX ==================== */
/* Mobile menu toggle button - z-index ve tıklanabilirlik */
.mobile-menu-toggle {
    position: relative;
    z-index: 1001;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
}

/* Mobil menü - varsayılan olarak gizli */
@media (max-width: 1023px) {
    .nav-menu {
        display: none !important;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 4px 6px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex !important;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        padding: 0.75rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    /* Header nav pozisyon */
    .header-nav {
        position: relative;
    }
}

/* Mobile menu toggle active state */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Body menu-open state */
body.menu-open {
    overflow: hidden;
}

/* Product card image - sabit değil relative olsun */
.product-card .product-image,
.product-card img {
    position: relative !important;
}

a {
    text-decoration: none !important;
}

a:hover {
    text-decoration: none !important;
}

/* Logo & Navigation Links */
.site-logo,
.site-logo a,
.logo-text,
.nav-menu a,
.header-top a,
.footer-links a,
.footer-social a,
.mobile-nav a,
.breadcrumb a,
.breadcrumb-item a,
.product-title a,
.blog-title a,
.category-card,
.subcategory-card {
    text-decoration: none !important;
}

/* ==================== SECTIONS ==================== */
.section {
    padding: 4rem 0;
}

.bg-gray {
    background-color: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.section-title.text-left {
    text-align: left;
}

.section-subtitle {
    color: var(--gray-500);
    font-size: 1.125rem;
}

.section-subtitle.text-left {
    text-align: left;
}

.section-footer {
    text-align: center;
    margin-top: 2.5rem;
}

/* ==================== HERO SLIDER ==================== */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide,
.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.slide.active,
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 500px;
    text-align: center;
    color: var(--white);
    padding: 0 1rem;
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.slide-subtitle {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 1;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    line-height: 1.5;
    max-width: 600px;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-prev,
.slider-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    pointer-events: auto;
    color: var(--dark);
}

.slider-prev:hover,
.slider-next:hover {
    background: var(--white);
    transform: scale(1.1);
}

/* Slider Mobil Responsive */
@media (max-width: 768px) {
    .hero-slider {
        height: 450px !important;
        min-height: 450px !important;
    }

    .slider-container {
        height: 450px !important;
        position: relative !important;
    }

    .hero-slide {
        height: 450px !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }

    .slide-bg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background-size: cover !important;
        -webkit-background-size: cover !important;
    }

    .slide-content {
        height: 450px;
        min-height: 450px;
        padding: 2rem 1rem;
    }

    .slide-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .slide-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .slide-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 1rem;
    }

    .slide-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1.5rem;
    }

    .slider-prev,
    .slider-next {
        width: 40px;
        height: 40px;
    }

    .slider-dots {
        bottom: 1rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 480px !important;
        min-height: 480px !important;
    }

    .slider-container {
        height: 480px !important;
    }

    .hero-slide {
        height: 480px !important;
    }

    .slide-content {
        height: 480px !important;
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        min-height: 400px !important;
    }

    .slide-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .slide-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .slide-buttons .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.dot.active,
.dot:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Default Hero */
.hero-default {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.hero-default .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: rgba(255,255,255,0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    display: none;
}

.hero-shape {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* ==================== TRUST SECTION ==================== */
.trust-section {
    background: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
}

.trust-icon {
    color: var(--primary);
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
}

.trust-text span {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ==================== CATEGORIES ==================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
}

.category-icon i {
    font-size: 2rem;
    color: var(--primary);
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
    text-align: center;
}

.category-count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ==================== PRODUCTS GRID ==================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.products-grid-4 {
    grid-template-columns: repeat(2, 1fr);
}

/* ==================== PRODUCT CARD ==================== */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
    line-height: 0;
}

.product-card .product-image a {
    display: block;
}

.product-card .product-image img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 700;
    border-radius: var(--radius);
    text-transform: uppercase;
}

.badge-sale {
    background: var(--danger);
    color: var(--white);
}

.badge-featured {
    background: var(--primary);
    color: var(--white);
}

.badge-bestseller {
    background: var(--warning);
    color: var(--dark);
}

.product-card .product-actions {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all var(--transition);
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.btn-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

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

.product-info {
    padding: 1rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-title {
    font-size: 0.9375rem;
    font-weight: 600;
    margin: 0.5rem 0;
    line-height: 1.4;
}

.product-title a {
    color: var(--dark);
    text-decoration: none;
}

.product-title a:hover {
    color: var(--primary);
}

.product-duration {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.old-price {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

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

.btn-add-to-cart {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all var(--transition);
}

.btn-add-to-cart:hover {
    background: var(--primary-dark);
}

.btn-add-to-cart.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.85;
}

/* ==================== WHY SECTION ==================== */
.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.why-items {
    margin-top: 2rem;
}

.why-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.why-icon.bg-primary { background: var(--primary); }
.why-icon.bg-secondary { background: var(--secondary); }
.why-icon.bg-warning { background: var(--warning); }
.why-icon.bg-info { background: var(--info); }

.why-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.why-text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

.why-visual {
    display: none;
}

.why-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.why-image-wrapper img {
    width: 100%;
    border-radius: var(--radius-lg);
}

.experience-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    display: block;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

/* ==================== BLOG SECTION ==================== */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.25rem;
}

.blog-date {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-title a {
    color: var(--dark);
    text-decoration: none;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.blog-link:hover {
    gap: 0.625rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-white:hover {
    background: var(--gray-100);
    color: var(--primary-dark);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

/* Slider için beyaz outline buton */
.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: var(--white);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--white);
    color: var(--white);
}

/* Yeşil buton (İletişim için) */
.btn-success {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border: none;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.4);
}

.btn-success:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--dark);
    color: var(--white);
}

.footer-main {
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-logo .logo-text {
    font-size: 1.5rem;
}

/* Logo Image Sizing */
.site-logo img {
    height: 45px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
}

.footer-logo img {
    height: 40px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.footer-desc {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 1rem 0;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: all var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.footer-contact a {
    color: var(--gray-400);
}

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

.footer-contact svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    margin-top: 1rem;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: var(--white);
}

/* Newsletter */
.footer-newsletter {
    background: var(--primary);
    padding: 2rem 0;
}

.newsletter-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
}

.newsletter-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.newsletter-text p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    max-width: 400px;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--radius);
    font-size: 0.9375rem;
}

.newsletter-form input:focus {
    outline: none;
}

.newsletter-form .btn {
    flex-shrink: 0;
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--dark-light);
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 1.5rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 0.875rem;
}

.payment-methods {
    display: flex;
    gap: 0.75rem;
}

.payment-methods img {
    height: 24px;
    opacity: 0.7;
    transition: opacity var(--transition);
}

.payment-methods img:hover {
    opacity: 1;
}

/* ==================== WHATSAPP FLOAT ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--white);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 5.5rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--white);
    cursor: pointer;
    z-index: 999;
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
}

.back-to-top.show {
    display: flex;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ==================== MODAL ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-overlay.show {
    display: flex;
}

.modal-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all var(--transition);
}

.modal-close:hover {
    background: var(--gray-200);
}

.modal-content {
    padding: 2rem;
}

/* ==================== TOAST ==================== */
.toast-container {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 400px;
    width: calc(100% - 2rem);
}

.toast {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    background: var(--dark);
    color: var(--white);
    font-size: 0.9375rem;
    box-shadow: var(--shadow-lg);
    animation: slideUp 0.3s ease;
}

.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.warning { background: var(--warning); color: var(--dark); }
.toast.info { background: var(--info); }

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

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 5rem 1.5rem 2rem;
}

.mobile-menu.open {
    transform: translateX(0);
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    list-style: none;
}

.mobile-nav li {
    border-bottom: 1px solid var(--gray-200);
}

.mobile-nav a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark);
}

/* ==================== RESPONSIVE ==================== */
@media (min-width: 640px) {
    .hero-slider {
        height: 550px;
    }

    .slide-content {
        height: 550px;
    }

    .slide-title {
        font-size: 3rem;
    }

    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid {
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .newsletter-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-bottom-inner {
        flex-direction: row;
        justify-content: space-between;
    }
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .hero-slider {
        height: 600px;
    }

    .slide-content {
        height: 600px;
    }

    .slide-title {
        font-size: 3.5rem;
    }

    .hero-default {
        padding: 6rem 0;
    }

    .hero-default .container {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-visual {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .why-visual {
        display: block;
    }

    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    }
}

@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stat-number {
        font-size: 3rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }
}

/* ==================== UTILITY CLASSES ==================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }
.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 1rem; }

/* ==================== CHECKOUT STEPS ==================== */
.checkout-steps {
    background: var(--gray-50);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.steps-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.step.active .step-icon {
    background: var(--primary);
    color: white;
}

.step.completed .step-icon {
    background: var(--success);
    color: white;
}

.step-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    white-space: nowrap;
}

.step.active .step-label {
    color: var(--primary);
}

.step.completed .step-label {
    color: var(--success);
}

.step-line {
    flex: 1;
    height: 2px;
    background: var(--gray-200);
    min-width: 30px;
    max-width: 80px;
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
}

.step-line.active {
    background: var(--success);
}

/* ==================== CHECKOUT LAYOUT ==================== */
.checkout-section {
    padding: 2rem 0 4rem;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.checkout-main {
    order: 2;
}

.checkout-sidebar {
    order: 1;
}

@media (min-width: 1024px) {
    .checkout-layout {
        grid-template-columns: 1fr 380px;
    }

    .checkout-main {
        order: 1;
    }

    .checkout-sidebar {
        order: 2;
    }
}

/* ==================== CHECKOUT CARDS ==================== */
.checkout-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.checkout-card .card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-card .card-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.checkout-card .card-title svg {
    color: var(--primary);
}

.checkout-card .card-body {
    padding: 1.5rem;
}

.card-logos {
    display: flex;
    gap: 0.5rem;
}

.card-logo {
    border-radius: 4px;
}

/* ==================== CHECKOUT FORM ==================== */
.checkout-form .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .checkout-form .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .checkout-form .form-group.full-width {
        grid-column: span 2;
    }
}

.checkout-form .form-group {
    margin-bottom: 0;
}

.checkout-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.checkout-form .required {
    color: var(--danger);
}

.checkout-form .form-input,
.checkout-form .form-select,
.checkout-form .form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    background: white;
    transition: all 0.2s ease;
}

.checkout-form .form-input:focus,
.checkout-form .form-select:focus,
.checkout-form .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.checkout-form .form-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 1rem;
}

/* Login Prompt */
.login-prompt {
    background: var(--gray-50);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.login-prompt p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.login-prompt a {
    color: var(--primary);
    font-weight: 500;
}

/* ==================== CREDIT CARD FORM ==================== */
.credit-card-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-number-input {
    position: relative;
}

.card-number-input .form-input {
    padding-right: 3rem;
}

.card-type-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
}

.card-info {
    font-size: 0.75rem;
    color: var(--success);
    margin-top: 0.25rem;
    display: none;
}

.exp-inputs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.exp-inputs .form-select {
    flex: 1;
}

.exp-separator {
    color: var(--gray-400);
    font-weight: 500;
}

.cvv-input {
    max-width: 100px;
}

.cvv-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: var(--gray-200);
    color: var(--gray-600);
    border-radius: 50%;
    font-size: 0.625rem;
    font-weight: 600;
    margin-left: 0.25rem;
    cursor: help;
}

/* Test Cards */
.test-cards {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.test-cards p {
    margin: 0 0 0.5rem;
    font-size: 0.875rem;
    color: #92400e;
}

.test-cards .btn {
    margin-right: 0.5rem;
    margin-top: 0.25rem;
}

/* ==================== INSTALLMENTS ==================== */
.installments-section {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.installments-section > label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 1rem;
}

.installments-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .installments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.installment-option {
    display: flex;
    flex-direction: column;
    padding: 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.installment-option:hover {
    border-color: var(--gray-300);
}

.installment-option.selected {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.05);
}

.installment-option input {
    display: none;
}

.installment-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.installment-count {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
}

.installment-amount {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.installment-total {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.25rem;
}

/* ==================== 3D SECURE OPTION ==================== */
.secure-3d-option {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

/* ==================== CHECKBOX & RADIO ==================== */
.checkbox-label,
.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input,
.radio-label input {
    display: none;
}

.checkmark,
.radiomark {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border: 2px solid var(--gray-300);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.radiomark {
    border-radius: 50%;
}

.checkbox-label input:checked + .checkmark,
.radio-label input:checked + .radiomark {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.radio-label input:checked + .radiomark::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
}

.label-text {
    flex: 1;
}

.label-text strong {
    display: block;
    color: var(--gray-800);
}

.label-text small {
    display: block;
    color: var(--gray-500);
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

.label-text a {
    color: var(--primary);
}

/* ==================== PAYMENT METHOD OPTION ==================== */
.payment-method-option {
    padding: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.payment-method-option:hover {
    border-color: var(--gray-300);
}

.payment-method-option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.02);
}

/* Bank Info */
.bank-info {
    background: var(--gray-50);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1rem;
}

.bank-info h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0 0 0.75rem;
}

.bank-details p {
    margin: 0.25rem 0;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.bank-details .iban {
    font-family: monospace;
    background: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.8125rem;
}

.bank-note {
    margin-top: 0.75rem;
    font-size: 0.75rem;
    color: var(--danger);
}

/* ==================== CHECKOUT ACTIONS ==================== */
.checkout-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.checkout-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==================== ORDER SUMMARY ==================== */
.order-summary {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.summary-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0 0 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-100);
}

.summary-title svg {
    color: var(--primary);
}

/* Summary Items */
.summary-items {
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.item-image {
    position: relative;
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.item-quantity {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.item-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.item-name {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.4;
}

.item-price {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-top: 0.25rem;
}

/* Coupon Input */
.coupon-input {
    margin-bottom: 1.5rem;
}

.coupon-input .input-group {
    display: flex;
    gap: 0.5rem;
}

.coupon-input .form-input {
    flex: 1;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
}

.coupon-input .btn {
    padding: 0.625rem 1rem;
    font-size: 0.875rem;
}

/* Summary Totals */
.summary-totals {
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.total-row.discount {
    color: var(--success);
}

.total-row.discount small {
    font-size: 0.75rem;
    opacity: 0.8;
}

.total-row.grand-total {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--gray-200);
}

/* Summary Trust */
.summary-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-100);
}

.summary-trust .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
}

.summary-trust .trust-item svg {
    color: var(--success);
}

.summary-trust .trust-item span {
    font-size: 0.625rem;
    color: var(--gray-500);
}

/* ==================== 3D SECURE MODAL ==================== */
#threeDSecureContainer {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.threeds-overlay {
    width: 100%;
    max-width: 500px;
}

.threeds-modal {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.threeds-header {
    background: var(--primary);
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.threeds-header h3 {
    margin: 0 0 0.5rem;
    font-size: 1.25rem;
}

.threeds-header p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

.threeds-content {
    padding: 2rem;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==================== ORDER RESULT PAGE ==================== */
.order-result {
    padding: 4rem 0;
}

.result-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.result-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.result-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.result-icon.error {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.result-icon.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.result-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.75rem;
}

.result-message {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.order-number {
    display: inline-block;
    background: var(--gray-100);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2rem;
}

.result-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==================== ALERTS ==================== */
.alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.alert svg {
    flex-shrink: 0;
    margin-top: 1px;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.alert-info {
    background: rgba(37, 99, 235, 0.1);
    color: #1e40af;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

/* ==================== CART PAGE STYLES ==================== */
.cart-section {
    padding: 2rem 0 4rem;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr 380px;
    }
}

.cart-items-wrapper {
    order: 2;
}

.cart-summary-wrapper {
    order: 1;
}

@media (min-width: 1024px) {
    .cart-items-wrapper {
        order: 1;
    }

    .cart-summary-wrapper {
        order: 2;
    }
}

/* Cart Items */
.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 1rem;
    align-items: center;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    padding: 1rem;
}

@media (max-width: 640px) {
    .cart-item {
        grid-template-columns: 70px 1fr;
        gap: 0.75rem;
    }

    .cart-item-quantity {
        grid-column: 1 / 2;
    }

    .cart-item-total {
        grid-column: 2 / 3;
        text-align: right;
    }

    .cart-item-remove {
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }

    .cart-item {
        position: relative;
        padding-right: 2.5rem;
    }
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.cart-item-title {
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.cart-item-title a {
    color: var(--gray-800);
    text-decoration: none;
}

.cart-item-title a:hover {
    color: var(--primary);
}

.cart-item-meta {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.cart-item-unit-price {
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* Quantity Control */
.quantity-control {
    display: flex;
    align-items: center;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
}

.qty-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-50);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--gray-100);
}

.qty-input {
    width: 48px;
    height: 36px;
    border: none;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.cart-item-total .item-total-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gray-800);
}

.cart-item-remove {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--gray-400);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.cart-item-remove:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

/* Cart Actions */
.cart-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Cart Summary */
.cart-summary {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    padding: 1.5rem;
    position: sticky;
    top: 100px;
}

.coupon-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-100);
}

.coupon-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin: 0 0 0.75rem;
}

.coupon-form {
    display: flex;
    gap: 0.5rem;
}

.coupon-form .form-input {
    flex: 1;
    padding: 0.625rem 0.75rem;
    font-size: 0.875rem;
}

.coupon-hint {
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

.coupon-hint.error {
    color: var(--danger);
}

.coupon-applied {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.75rem;
    border-radius: 8px;
}

.coupon-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.coupon-info svg {
    color: var(--success);
}

.coupon-details {
    display: flex;
    flex-direction: column;
}

.coupon-code {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--success);
}

.coupon-discount {
    font-size: 0.75rem;
    color: var(--gray-600);
}

.btn-remove-coupon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    border-radius: 4px;
}

.btn-remove-coupon:hover {
    background: rgba(239, 68, 68, 0.1);
    color: var(--danger);
}

.order-details {
    margin-bottom: 1.5rem;
}

.order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.order-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.order-value {
    font-size: 0.875rem;
    color: var(--gray-800);
}

.discount-row .order-label,
.discount-row .order-value {
    color: var(--success);
}

.order-total {
    padding-top: 0.75rem;
    margin-top: 0.5rem;
    border-top: 2px solid var(--gray-200);
}

.order-total .order-label,
.order-total .order-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.btn-checkout {
    width: 100%;
    justify-content: center;
}

.payment-methods {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
}

.payment-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.payment-icons {
    display: flex;
    gap: 0.5rem;
}

/* Empty Cart */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
}

.empty-cart-icon {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.empty-cart h2 {
    font-size: 1.5rem;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

/* Recommended Products */
.recommended-products {
    padding: 3rem 0;
    background: var(--gray-50);
}

/* ==================== PAGE HEADER / BREADCRUMB ==================== */
.page-header {
    background: var(--gray-100);
    padding: 2rem 0;
}

.page-header-sm {
    padding: 1rem 0;
}

.breadcrumb-nav {
    font-size: 0.875rem;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
}

.breadcrumb-item a {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--gray-600);
    transition: color 0.2s;
}

.breadcrumb-item a:hover {
    color: var(--primary);
}

/* Bootstrap'ın ::before ayırıcısını devre dışı bırak */
.breadcrumb-item + .breadcrumb-item::before {
    content: none !important;
    display: none !important;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: var(--gray-400);
    margin-left: 0.25rem;
}

.breadcrumb-item.active {
    color: var(--gray-800);
    font-weight: 500;
}

/* ==================== PRODUCT DETAIL ==================== */
.product-detail {
    padding: 2rem 0 4rem;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .product-detail-grid {
        grid-template-columns: 500px 1fr;
    }
}

/* Product Gallery */
.product-gallery {
    position: relative;
}

/* Desktop'ta sticky olsun */
@media (min-width: 1024px) {
    .product-gallery {
        position: sticky;
        top: 100px;
    }
}

.gallery-main {
    position: relative;
    margin-bottom: 1rem;
}

.gallery-main-image {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.gallery-main-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 1rem;
}

.gallery-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-sale {
    background: var(--danger);
    color: var(--white);
}

.btn-fullscreen {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.btn-fullscreen:hover {
    background: var(--primary);
    color: var(--white);
}

.gallery-thumbs {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.gallery-thumb {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--white);
    padding: 0;
    transition: border-color 0.2s;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--primary);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Info */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.product-category-link {
    font-size: 0.8125rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.meta-badge {
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    text-transform: uppercase;
}

.meta-badge-bestseller {
    background: #fef3c7;
    color: #92400e;
}

.meta-badge-featured {
    background: #dbeafe;
    color: #1e40af;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.3;
    margin: 0;
}

@media (min-width: 768px) {
    .product-title {
        font-size: 2rem;
    }
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.stars {
    display: flex;
    gap: 0.125rem;
}

.star {
    color: var(--gray-300);
}

.star.filled {
    color: #f59e0b;
}

.rating-text {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.rating-link {
    font-size: 0.875rem;
    color: var(--primary);
}

/* Price Box */
.product-price-box {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.old-price {
    font-size: 1.125rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.current-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
}

.current-price.sale {
    color: var(--danger);
}

.discount-badge {
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    background: #fee2e2;
    color: #991b1b;
    border-radius: var(--radius);
}

.product-short-desc {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

/* Features */
.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.feature-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    text-transform: uppercase;
}

.feature-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
}

/* Product Actions (Product Detail Page) */
.product-detail .product-actions,
.product-info .product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding-top: 0.5rem;
    opacity: 1;
    position: relative;
    transform: none;
}

.product-actions .btn {
    flex: 1;
    min-width: 140px;
}

.product-actions .btn-wishlist {
    flex: 0;
    min-width: auto;
    padding: 0.75rem;
}

.btn-lg {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

/* Trust Badges */
.product-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

@media (min-width: 640px) {
    .product-trust {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.375rem;
    text-align: center;
    color: var(--gray-600);
}

.trust-item svg {
    color: var(--secondary);
}

.trust-item span {
    font-size: 0.75rem;
    font-weight: 500;
}

/* ==================== PRODUCT TABS ==================== */
.product-tabs {
    margin-top: 3rem;
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: none;
    border: none;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all 0.2s;
}

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

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.rich-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-700);
}

.rich-content h2, .rich-content h3, .rich-content h4 {
    color: var(--dark);
    margin: 1.5rem 0 0.75rem;
}

.rich-content p {
    margin-bottom: 1rem;
}

.rich-content ul, .rich-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.rich-content li {
    margin-bottom: 0.5rem;
}

/* ==================== REVIEWS ==================== */
.reviews-summary {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    margin-bottom: 2rem;
}

.summary-score {
    text-align: center;
}

.score-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.score-stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin: 0.5rem 0;
}

.score-count {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.reviewer-details {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-weight: 600;
    color: var(--dark);
    display: flex;
    align-items: center;
    gap: 0.375rem;
}

.verified-badge {
    color: var(--secondary);
}

.review-date {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.review-rating {
    display: flex;
    gap: 0.125rem;
}

.review-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.review-comment {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.admin-reply {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}

.reply-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.admin-reply p {
    margin: 0;
    color: var(--gray-600);
}

.empty-reviews {
    text-align: center;
    padding: 3rem;
    color: var(--gray-500);
}

.empty-reviews svg {
    margin-bottom: 1rem;
}

.empty-reviews p {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.empty-reviews span {
    font-size: 0.875rem;
}

/* Review Form */
.review-form-wrapper {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.review-form-wrapper h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
}

.form-input, .form-textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.rating-select {
    display: flex;
    gap: 0.25rem;
}

.rating-star {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
    color: var(--gray-300);
    transition: color 0.2s;
}

.rating-star:hover,
.rating-star.active {
    color: #f59e0b;
}

.rating-star svg {
    display: block;
}

.review-login-prompt {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    color: var(--gray-500);
}

.review-login-prompt a {
    color: var(--primary);
    font-weight: 500;
}

/* ==================== RELATED PRODUCTS ==================== */
.related-products {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray-200);
}

.related-products .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.section-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

/* ==================== GALLERY MODAL ==================== */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.open {
    display: flex;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-prev {
    left: 1rem;
}

.modal-next {
    right: 1rem;
}

.modal-image-wrapper {
    max-width: 90%;
    max-height: 90%;
}

.modal-image-wrapper img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

.modal-counter {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 0.875rem;
}

/* ==================== PRODUCTS GRID ==================== */
.products-grid {
    display: grid;
    gap: 1.5rem;
}

.products-grid-4 {
    grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
    .products-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ==================== PRODUCT CARD ==================== */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card .product-image {
    position: relative;
    overflow: hidden;
    background: var(--gray-50);
    line-height: 0;
}

.product-card .product-image a {
    display: block;
}

.product-card .product-image img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    z-index: 2;
}

.badge {
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge-sale {
    background: var(--danger);
    color: var(--white);
}

.badge-featured {
    background: var(--primary);
    color: var(--white);
}

.badge-bestseller {
    background: #f59e0b;
    color: var(--white);
}

.product-card .product-actions {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.2s;
    z-index: 2;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.btn-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: all 0.2s;
}

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

.product-card .product-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.product-card .product-category {
    font-size: 0.75rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.product-card .product-title {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.product-card .product-title a {
    color: var(--dark);
    transition: color 0.2s;
}

.product-card .product-title a:hover {
    color: var(--primary);
}

.product-card .product-duration {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.product-card .product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.product-card .old-price {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-decoration: line-through;
}

.product-card .current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.product-card .btn-add-to-cart {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: background 0.2s;
}

.product-card .btn-add-to-cart:hover {
    background: var(--primary-dark);
}

/* Bilgi & Teklif Al Butonu */
.product-card .btn-quote-request,
.btn-quote-request {
    margin-top: 0.5rem;
    width: 100%;
    padding: 0.75rem 1rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s;
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.product-card .btn-quote-request:hover,
.btn-quote-request:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
    color: #fff;
}

.product-card .btn-quote-request svg,
.btn-quote-request svg {
    flex-shrink: 0;
}

/* ==================== HERO DEFAULT ==================== */
.hero-default {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-default .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 768px) {
    .hero-default .container {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    color: var(--white);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-title span {
    color: #fbbf24;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-visual {
    display: none;
}

@media (min-width: 768px) {
    .hero-visual {
        display: block;
    }
}

.hero-shape {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

/* ==================== SLIDER ==================== */
.slider-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 1rem;
    pointer-events: none;
    z-index: 10;
}

.slider-prev, .slider-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.2s;
    box-shadow: var(--shadow);
}

.slider-prev:hover, .slider-next:hover {
    background: var(--white);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.dot:hover, .dot.active {
    background: var(--white);
    transform: scale(1.2);
}

/* ==================== TRUST SECTION ==================== */
.trust-section {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.trust-section .trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 0.9375rem;
    color: var(--dark);
}

.trust-text span {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ==================== CATEGORIES ==================== */
.categories-section {
    padding: 4rem 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.category-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.2s;
    text-decoration: none;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}

.category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.category-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

/* ==================== NEW CATEGORY CARDS (Büyük Görsel) ==================== */
.categories-grid-new {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

@media (min-width: 640px) {
    .categories-grid-new {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .categories-grid-new {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.75rem;
    }
}

.category-card-new {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.category-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.category-card-new:hover .category-img {
    transform: scale(1.08);
}

.category-card-new:hover .category-overlay {
    opacity: 1;
}

.category-image-wrapper {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

@media (min-width: 640px) {
    .category-image-wrapper {
        height: 180px;
    }
}

@media (min-width: 1024px) {
    .category-image-wrapper {
        height: 200px;
    }
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-placeholder i {
    font-size: 3.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
}

.category-title {
    padding: 1rem;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    text-align: center;
    line-height: 1.3;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .category-title {
        font-size: 1rem;
        padding: 1.25rem;
    }
}

/* Mobilde overlay her zaman görünür */
@media (max-width: 639px) {
    .category-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    }
}

.category-count {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-icon {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* ==================== WHY SECTION ==================== */
.why-section {
    padding: 4rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.why-content .section-title {
    text-align: left;
    margin-bottom: 0.5rem;
}

.why-content .section-subtitle {
    text-align: left;
    margin-bottom: 2rem;
}

.why-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    display: flex;
    gap: 1rem;
}

.why-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--white);
}

.why-icon.bg-primary { background: var(--primary); }
.why-icon.bg-secondary { background: var(--secondary); }
.why-icon.bg-warning { background: #f59e0b; }
.why-icon.bg-info { background: #3b82f6; }

.why-text h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.375rem;
}

.why-text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}

.why-visual {
    display: none;
}

@media (min-width: 1024px) {
    .why-visual {
        display: block;
    }
}

.why-image-wrapper {
    position: relative;
    min-height: 400px;
    background: linear-gradient(135deg, var(--gray-100) 0%, var(--gray-200) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.why-image-wrapper img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.experience-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.exp-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.8125rem;
}

/* ==================== BLOG SECTION ==================== */
.blog-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-image {
    display: block;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.25rem;
}

.blog-date {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.blog-title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.75rem;
}

.blog-title a {
    color: var(--dark);
    transition: color 0.2s;
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
}

.blog-link:hover {
    gap: 0.5rem;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #059669 100%);
    padding: 4rem 0;
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
}

.cta-text {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}

.btn-white:hover {
    background: var(--gray-100);
    color: var(--dark);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: var(--dark);
    color: var(--white);
    padding-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand .logo-jet {
    color: var(--primary-light);
}

.footer-brand .logo-sertifika {
    color: var(--white);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    transition: color 0.2s;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    transition: color 0.2s;
}

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

/* ==================== MOBILE MENU ==================== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    max-width: 85%;
    height: 100%;
    background: var(--white);
    transform: translateX(100%);
    transition: transform 0.3s;
    overflow-y: auto;
}

.mobile-menu.open .mobile-menu-content {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--gray-100);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    padding: 1rem;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    color: var(--dark);
    font-weight: 500;
    border-radius: var(--radius);
    transition: background 0.2s;
}

.mobile-nav a:hover {
    background: var(--gray-100);
}

/* ==================== LAZY IMAGE ==================== */
.lazy-image {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-image.loaded {
    opacity: 1;
}

/* ==================== TOAST NOTIFICATIONS ==================== */
.toast-container {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.toast {
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 280px;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.toast-success { border-left: 4px solid var(--secondary); }
.toast-error { border-left: 4px solid var(--danger); }
.toast-warning { border-left: 4px solid #f59e0b; }
.toast-info { border-left: 4px solid var(--primary); }

.toast-icon {
    flex-shrink: 0;
}

.toast-success .toast-icon { color: var(--secondary); }
.toast-error .toast-icon { color: var(--danger); }
.toast-warning .toast-icon { color: #f59e0b; }
.toast-info .toast-icon { color: var(--primary); }

.toast-message {
    flex: 1;
    font-size: 0.9375rem;
    color: var(--dark);
}

.toast-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-400);
    padding: 0.25rem;
}

.toast-close:hover {
    color: var(--dark);
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: all 0.15s;
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    color: var(--white);
}

.btn-success {
    background: var(--secondary);
    color: var(--white);
}

.btn-success:hover {
    background: #059669;
    color: var(--white);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
}

.btn-danger:hover {
    background: #dc2626;
    color: var(--white);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 1.5rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8125rem;
}

/* ==================== PRODUCTS LIST PAGE ==================== */
.products-page {
    padding: 2rem 0 4rem;
}

.products-page-header {
    margin-bottom: 2rem;
}

.products-page-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.products-page-count {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.products-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
}

.filter-group select {
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.875rem;
    background: var(--white);
    cursor: pointer;
}

.filter-group select:focus {
    outline: none;
    border-color: var(--primary);
}

/* ==================== CART PAGE ==================== */
.cart-page {
    padding: 2rem 0 4rem;
}

.cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.cart-empty svg {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.cart-empty h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.cart-empty p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

.cart-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .cart-grid {
        grid-template-columns: 1fr 350px;
    }
}

.cart-items {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 1rem;
    padding: 1.25rem;
    border-bottom: 1px solid var(--gray-200);
    align-items: center;
}

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

.cart-item-image {
    width: 80px;
    height: 80px;
    background: var(--gray-50);
    border-radius: var(--radius);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-info h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-info h3 a {
    color: var(--dark);
}

.cart-item-info h3 a:hover {
    color: var(--primary);
}

.cart-item-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 0.25rem;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: var(--danger);
}

.cart-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 1.5rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--gray-200);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.cart-summary-row.total {
    font-size: 1.25rem;
    font-weight: 700;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-200);
    margin-top: 0.75rem;
}

.cart-summary .btn {
    width: 100%;
    margin-top: 1rem;
}

/* ==================== LOGIN / REGISTER PAGE ==================== */
.auth-page {
    padding: 3rem 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.auth-container {
    max-width: 440px;
    margin: 0 auto;
    width: 100%;
}

.auth-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.auth-header p {
    color: var(--gray-500);
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.auth-form label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark);
}

.auth-form input {
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.2s;
}

.auth-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.auth-form .btn {
    width: 100%;
    margin-top: 0.5rem;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.auth-footer p {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.auth-footer a {
    font-weight: 600;
}

/* ==================== CONTACT PAGE ==================== */
.contact-page {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item-text p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 2rem;
}

.contact-form h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-form .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

/* ==================== PAGINATION ==================== */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.375rem;
    margin-top: 2rem;
}

.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: all 0.2s;
}

.pagination a:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination .active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination .disabled {
    opacity: 0.5;
    pointer-events: none;
}

/* ==================== ERROR PAGE ==================== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
}

.error-content svg {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.error-content h1 {
    font-size: 6rem;
    font-weight: 800;
    color: var(--gray-300);
    line-height: 1;
    margin-bottom: 1rem;
}

.error-content h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.error-content p {
    color: var(--gray-500);
    margin-bottom: 2rem;
}

/* ==================== SPINNER ==================== */
.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-sm {
    width: 16px;
    height: 16px;
    border-width: 2px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==================== FILTER SIDEBAR ==================== */
.filter-sidebar {
    position: sticky;
    top: 100px;
}

.filter-sidebar .card {
    border: none;
    box-shadow: var(--shadow);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.filter-sidebar .card-header {
    border-bottom: none;
    font-weight: 600;
}

.filter-sidebar .card-body {
    padding: 1rem;
}

.sort-bar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

/* ==================== HOVER EFFECTS ==================== */
.hover-lift {
    transition: transform 0.2s, box-shadow 0.2s;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

/* ==================== BOOTSTRAP OVERRIDES ==================== */
.bg-light {
    background-color: var(--gray-100) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

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

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

.text-muted {
    color: var(--gray-500) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-secondary {
    color: var(--gray-600);
    border-color: var(--gray-300);
}

.btn-outline-secondary:hover {
    background-color: var(--gray-100);
    border-color: var(--gray-400);
    color: var(--dark);
}

.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.card {
    border-radius: var(--radius-lg);
}

.rounded {
    border-radius: var(--radius-lg) !important;
}

.shadow-sm {
    box-shadow: var(--shadow) !important;
}

/* Products grid adjustments */
.products-section .product-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.products-section .product-card .card-img-top {
    display: block;
    width: 100%;
    transition: transform 0.3s;
}

.products-section .product-card:hover .card-img-top {
    transform: scale(1.05);
}

.products-section .product-image {
    overflow: hidden;
    line-height: 0;
}

.products-section .product-image a {
    display: block;
}

/* Alert styles */
.alert {
    border: none;
    border-radius: var(--radius-lg);
}

.alert-info {
    background-color: #dbeafe;
    color: #1e40af;
}

/* Price styling in grid */
.price .fw-bold {
    font-size: 1.125rem;
}

/* Breadcrumb in page header */
.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0.5rem;
}

.page-header .breadcrumb-item a {
    color: var(--gray-600);
}

.page-header .breadcrumb-item.active {
    color: var(--gray-500);
}

.page-header h1 {
    font-weight: 800;
    color: var(--dark);
}

/* Card footer adjustments */
.card-footer {
    background: transparent;
}

/* Add to cart button in grid */
.add-to-cart {
    width: 38px;
    height: 38px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
}

/* ==================== CATEGORY PAGE ==================== */
.category-products {
    padding: 2rem 0 4rem;
}

.category-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .category-layout {
        grid-template-columns: 300px 1fr;
    }
}

/* Category Sidebar - Modern Design */
.category-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 90%;
    height: 100%;
    background: var(--white);
    z-index: 1001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.category-sidebar.open {
    transform: translateX(0);
}

@media (min-width: 1024px) {
    .category-sidebar {
        position: sticky;
        top: 100px;
        height: fit-content;
        transform: none;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
        border-radius: 16px;
        max-height: calc(100vh - 120px);
        border: 1px solid var(--gray-100);
    }
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: sticky;
    top: 0;
    z-index: 1;
}

@media (min-width: 1024px) {
    .sidebar-header {
        border-radius: 16px 16px 0 0;
    }
}

.sidebar-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-header h3::before {
    content: '';
    width: 24px;
    height: 24px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cline x1='4' y1='21' x2='4' y2='14'/%3E%3Cline x1='4' y1='10' x2='4' y2='3'/%3E%3Cline x1='12' y1='21' x2='12' y2='12'/%3E%3Cline x1='12' y1='8' x2='12' y2='3'/%3E%3Cline x1='20' y1='21' x2='20' y2='16'/%3E%3Cline x1='20' y1='12' x2='20' y2='3'/%3E%3Cline x1='1' y1='14' x2='7' y2='14'/%3E%3Cline x1='9' y1='8' x2='15' y2='8'/%3E%3Cline x1='17' y1='16' x2='23' y2='16'/%3E%3C/svg%3E") no-repeat center;
}

.btn-close-sidebar {
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background 0.2s;
}

.btn-close-sidebar:hover {
    background: rgba(255, 255, 255, 0.3);
}

@media (min-width: 1024px) {
    .btn-close-sidebar {
        display: none;
    }
}

.filter-form {
    padding: 1.5rem;
}

.filter-group {
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--gray-100);
}

.filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.filter-title {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-title::before {
    content: '';
    width: 4px;
    height: 16px;
    background: var(--primary);
    border-radius: 2px;
}

/* Price Range Inputs - Modern */
.price-range-inputs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.price-input {
    width: 100%;
    position: relative;
}

.price-input label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    margin-bottom: 0.5rem;
}

.price-input input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    background: var(--gray-50);
    transition: all 0.2s;
}

.price-input input::placeholder {
    color: var(--gray-400);
    font-weight: 400;
}

.price-input input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.price-separator {
    display: none;
}

.btn-apply-price {
    width: 100%;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-apply-price:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.btn-apply-price::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
}

/* Filter Checkboxes - Modern */
.filter-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    cursor: pointer;
    padding: 0.875rem 1rem;
    margin: 0 -0.5rem;
    border-radius: 12px;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.filter-checkbox:hover {
    background: var(--gray-50);
    border-color: var(--gray-100);
}

.filter-checkbox input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid var(--gray-300);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    background: var(--white);
}

.filter-checkbox:hover .checkmark {
    border-color: var(--primary);
}

.filter-checkbox input:checked + .checkmark {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3);
}

.filter-checkbox input:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: 2px solid var(--white);
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
    margin-top: -2px;
}

.filter-checkbox input:checked ~ .filter-label {
    color: var(--primary);
    font-weight: 600;
}

.filter-label {
    font-size: 0.9375rem;
    color: var(--gray-700);
    transition: all 0.2s;
}

.btn-text {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 0.8125rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s;
    width: 100%;
}

.btn-text:hover {
    color: var(--danger);
    background: #fef2f2;
}

.btn-clear-filters {
    border: 1px dashed var(--gray-300);
}

/* Category Content */
.category-content {
    position: relative;
    min-height: 400px;
}

/* Category Toolbar */
.category-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.toolbar-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-filter-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: background 0.2s;
}

.btn-filter-toggle:hover {
    background: var(--gray-200);
}

@media (min-width: 1024px) {
    .btn-filter-toggle {
        display: none;
    }
}

.results-count {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.results-count strong {
    color: var(--dark);
}

/* View Toggle */
.view-toggle {
    display: flex;
    gap: 0.25rem;
    background: var(--gray-100);
    padding: 0.25rem;
    border-radius: var(--radius);
}

.btn-view {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    border-radius: var(--radius);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all 0.2s;
}

.btn-view:hover {
    color: var(--gray-700);
}

.btn-view.active {
    background: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

/* Sort Select */
.sort-select-wrapper {
    position: relative;
}

.sort-select {
    padding: 0.625rem 2.5rem 0.625rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.875rem;
    background: var(--white);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.empty-icon {
    color: var(--gray-400);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--gray-500);
    margin-bottom: 1.5rem;
}

/* Loading Overlay */
.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: var(--radius-lg);
}

.loading-overlay.show {
    display: flex;
}

/* Pagination Nav */
.pagination-nav {
    margin-top: 2rem;
}

.pagination-nav .pagination {
    display: flex;
    justify-content: center;
    gap: 0.375rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-item {
    display: flex;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    text-decoration: none;
    transition: all 0.2s;
}

.pagination-link:hover {
    background: var(--gray-50);
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-link.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination-ellipsis {
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    color: var(--gray-400);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1280px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* List View */
.products-grid.list-view {
    grid-template-columns: 1fr;
}

.products-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 200px 1fr;
}

.products-grid.list-view .product-card .product-image {
    height: 100%;
}

.products-grid.list-view .product-card .product-image img {
    height: 100%;
    aspect-ratio: auto;
}

/* Subcategories Section */
.subcategories-section {
    padding: 1.5rem 0;
    background: var(--gray-50);
}

.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .subcategories-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .subcategories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.subcategory-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: all 0.2s;
}

.subcategory-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.subcategory-icon {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.subcategory-info {
    flex: 1;
    min-width: 0;
}

.subcategory-name {
    display: block;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.subcategory-count {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.subcategory-arrow {
    color: var(--gray-400);
    flex-shrink: 0;
}

/* Page Header Content */
.page-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 1rem;
}

.page-header-text {
    flex: 1;
}

.category-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.page-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 0.5rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
}

.page-description {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.page-header-meta {
    text-align: right;
}

.product-count {
    font-size: 0.9375rem;
    color: var(--gray-600);
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

.product-count strong {
    color: var(--primary);
    font-size: 1.25rem;
}

/* Category Description */
.category-description {
    padding: 3rem 0;
    background: var(--gray-50);
}

.description-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.description-content h2,
.description-content h3 {
    color: var(--dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.description-content p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.description-content ul,
.description-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.description-content li {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}

/* Sidebar backdrop for mobile */
.sidebar-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.category-sidebar.open ~ .sidebar-backdrop,
.sidebar-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* ==================== WHATSAPP BUBBLE ==================== */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.whatsapp-bubble {
    background: linear-gradient(135deg, #075e54 0%, #128c7e 100%);
    color: white;
    padding: 12px 18px;
    border-radius: 20px 20px 5px 20px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    position: relative;
    animation: bubblePulse 3s ease-in-out infinite;
    max-width: 200px;
    text-align: center;
}

.whatsapp-bubble .bubble-arrow {
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #128c7e;
}

@keyframes bubblePulse {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }
}

.whatsapp-container .whatsapp-float {
    position: relative;
    bottom: auto;
    right: auto;
}

/* E-Devlet Badge Hover Effect */
.edevlet-badge img {
    transition: transform 0.3s ease;
}

.product-card:hover .edevlet-badge img {
    transform: scale(1.1);
}

/* Trust Item Clickable */
.trust-item-clickable:hover {
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    transform: translateY(-2px);
}

.trust-item-clickable {
    transition: all 0.2s ease;
    padding: 8px;
    margin: -8px;
}

/* ==================== TRUST CLICKABLE ITEMS ==================== */
.trust-clickable {
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 1rem;
    margin: -0.5rem;
    border-radius: 12px;
}

.trust-clickable:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    transform: translateY(-3px);
}

.trust-clickable .trust-text span {
    font-size: 0.7rem;
    opacity: 0.7;
    color: var(--primary);
}

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

.trust-clickable .trust-icon {
    transition: transform 0.3s ease;
}

/* ==================== TRUST MODAL ==================== */
.trust-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.trust-modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

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

.trust-modal-content {
    background: var(--white);
    border-radius: 20px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: var(--gray-500);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-modal-close:hover {
    background: var(--gray-200);
    color: var(--dark);
}

.trust-modal-icon {
    text-align: center;
    padding: 2rem 2rem 1rem;
}

.trust-modal-icon svg {
    width: 64px;
    height: 64px;
}

.trust-modal-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    text-align: center;
    padding: 0 2rem;
    margin: 0;
}

.trust-modal-body {
    padding: 1.25rem 2rem 2rem;
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.trust-modal-body p {
    margin: 0;
}

.trust-modal-body ul {
    margin: 0.75rem 0;
    padding-left: 0;
    list-style: none;
}

.trust-modal-body li {
    padding: 0.375rem 0;
    color: var(--dark);
    font-weight: 500;
}

.trust-modal-body strong {
    color: var(--dark);
}

@media (max-width: 480px) {
    .trust-modal-content {
        border-radius: 16px;
    }

    .trust-modal-icon {
        padding: 1.5rem 1.5rem 0.75rem;
    }

    .trust-modal-icon svg {
        width: 48px;
        height: 48px;
    }

    .trust-modal-title {
        font-size: 1.15rem;
        padding: 0 1.5rem;
    }

    .trust-modal-body {
        padding: 1rem 1.5rem 1.5rem;
        font-size: 0.9rem;
    }
}
