/* ============================================================
   V6 SECTIONS — Consolidated External CSS
   Source: homepage-v6.blade.php + sections-v6/*.blade.php
   Order: Global design system -> Hero -> Brand Marquee ->
          Category Banners -> Product Vitrin -> Platform Cards ->
          Price Range -> Daily Deals -> Bottom Sections
   ============================================================ */

/* ============================================================
   1. GLOBAL DESIGN SYSTEM (from homepage-v6.blade.php)
   ============================================================ */
body{background:#f8f7f5!important;}

/* ============================================================
   V6 MARKETPLACE DESIGN SYSTEM — Light Mode
   ============================================================ */
:root {
    /* Backgrounds */
    --v5-bg-primary: #f8f7f5;
    --v5-bg-secondary: #ffffff;
    --v5-bg-card: #ffffff;
    --v5-bg-card-hover: #fafafa;
    --v5-bg-elevated: #ffffff;

    /* Borders */
    --v5-border: rgba(0,0,0,0.08);
    --v5-border-hover: rgba(0,0,0,0.15);
    --v5-border-accent: rgba(243,147,33,0.3);

    /* Text */
    --v5-text-primary: #1a1a2e;
    --v5-text-secondary: #64748b;
    --v5-text-muted: #94a3b8;
    --v5-text-inverse: #ffffff;

    /* Brand Accent (LisansJet orange) */
    --v5-accent: #f39321;
    --v5-accent-hover: #e0850f;
    --v5-accent-light: #ffb366;
    --v5-accent-glow: rgba(243,147,33,0.15);
    --v5-accent-subtle: rgba(243,147,33,0.08);

    /* Semantic */
    --v5-success: #22c55e;
    --v5-warning: #f59e0b;
    --v5-danger: #ef4444;
    --v5-info: #3b82f6;

    /* Typography */
    --v5-font-heading: 'Outfit', sans-serif;
    --v5-font-body: 'DM Sans', sans-serif;

    /* Spacing & Radius */
    --v5-radius: 14px;
    --v5-radius-sm: 8px;
    --v5-radius-lg: 20px;
    --v5-radius-xl: 28px;

    /* Shadows */
    --v5-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --v5-shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --v5-shadow-lg: 0 8px 32px rgba(0,0,0,0.1);
    --v5-shadow-glow: 0 0 40px rgba(243,147,33,0.08);
}

/* Base wrapper */
.v5-marketplace {
    font-family: var(--v5-font-body);
    color: var(--v5-text-primary);
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.v5-marketplace h1, .v5-marketplace h2, .v5-marketplace h3,
.v5-marketplace h4, .v5-marketplace h5, .v5-marketplace h6 {
    font-family: var(--v5-font-heading);
    color: var(--v5-text-primary);
    line-height: 1.2;
}

/* Section spacing */
.v5-section {
    padding: 72px 0;
    position: relative;
}

.v5-section--compact {
    padding: 48px 0;
}

.v5-section--tight {
    padding: 32px 0;
}

/* Container */
.v5-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 1440px) {
    .v5-container { max-width: 1360px; }
}

/* Section headers */
.v5-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 16px;
}

.v5-section-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.v5-section-subtitle {
    color: var(--v5-text-muted);
    font-size: 0.95rem;
    margin-top: 4px;
}

.v5-view-all {
    color: var(--v5-accent);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.2s;
}

.v5-view-all:hover {
    color: var(--v5-accent-hover);
}

/* Product card base */
.v5-product-card {
    background: var(--v5-bg-card);
    border: 1px solid var(--v5-border);
    border-radius: var(--v5-radius);
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
}

.v5-product-card:hover {
    border-color: var(--v5-border-hover);
    background: var(--v5-bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--v5-shadow-md);
}

/* Badge system */
.v5-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.v5-badge--accent {
    background: var(--v5-accent);
    color: var(--v5-text-inverse);
}

.v5-badge--success {
    background: rgba(34,197,94,0.15);
    color: var(--v5-success);
    border: 1px solid rgba(34,197,94,0.2);
}

.v5-badge--outline {
    background: transparent;
    color: var(--v5-text-secondary);
    border: 1px solid var(--v5-border);
}

/* Price display */
.v5-price {
    font-family: var(--v5-font-heading);
    font-weight: 700;
    color: var(--v5-accent);
}

.v5-price--old {
    font-weight: 400;
    color: var(--v5-text-muted);
    text-decoration: line-through;
    font-size: 0.85em;
}

/* Button system */
.v5-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--v5-radius-sm);
    font-family: var(--v5-font-body);
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.v5-btn--primary {
    background: var(--v5-accent);
    color: var(--v5-text-inverse);
}

.v5-btn--primary:hover {
    background: var(--v5-accent-hover);
    box-shadow: 0 4px 20px rgba(243,147,33,0.3);
}

.v5-btn--ghost {
    background: transparent;
    color: var(--v5-text-secondary);
    border: 1px solid var(--v5-border);
}

.v5-btn--ghost:hover {
    border-color: var(--v5-border-hover);
    color: var(--v5-text-primary);
    background: var(--v5-bg-card);
}

/* Divider line between sections */
.v5-divider {
    height: 1px;
    background: var(--v5-border);
    margin: 0;
    border: none;
}

/* Skeleton Loading */
.v6-skeleton {
    background: #e5e2de;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.v6-skeleton::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: v6-shimmer 1.5s infinite;
}
@keyframes v6-shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}
.v6-skeleton-card {
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    overflow: hidden;
}
.v6-skeleton-card__img { aspect-ratio: 1; }
.v6-skeleton-card__text { height: 14px; margin: 8px 12px; width: 70%; }
.v6-skeleton-card__price { height: 18px; margin: 4px 12px 12px; width: 40%; }

/* Toast Notifications */
.v6-toast-container {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1060;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.v6-toast {
    background: #1a1a2e;
    color: #fff;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
    pointer-events: auto;
}
.v6-toast--show {
    transform: translateY(0);
    opacity: 1;
}
.v6-toast--success::before { content: '\2713'; color: #22c55e; font-weight: bold; }
.v6-toast--error::before { content: '\2715'; color: #ef4444; font-weight: bold; }
.v6-toast--info::before { content: '\2139'; color: #3b82f6; font-weight: bold; }

/* Responsive grid helpers */
.v5-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.v5-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.v5-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.v5-grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }

@media (max-width: 1024px) {
    .v5-grid-5 { grid-template-columns: repeat(3, 1fr); }
    .v5-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .v5-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .v5-grid-5, .v5-grid-4, .v5-grid-3, .v5-grid-2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .v5-section { padding: 40px 0; }
    .v5-section-title { font-size: 1.35rem; }
    .v5-container { padding: 0 16px; }
}

/* Scrollbar styling */
.v5-marketplace ::-webkit-scrollbar { width: 6px; height: 6px; }
.v5-marketplace ::-webkit-scrollbar-track { background: transparent; }
.v5-marketplace ::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.15); border-radius: 3px; }

/* ============================================================
   V6 MOBILE OPTIMIZATIONS
   ============================================================ */
@media (max-width: 640px) {
    body {
        padding-bottom: 80px !important;
        -webkit-tap-highlight-color: transparent;
        overscroll-behavior-x: none;
    }

    .v5-marketplace .v6-section {
        padding: 20px 0;
        margin: 0;
    }

    .v5-marketplace .v6-section + .v6-section {
        margin-top: 16px;
    }

    .v5-marketplace .v6-section-title {
        font-size: 20px !important;
    }

    .v5-marketplace .v6-section-subtitle {
        font-size: 13px !important;
    }

    /* Touch targets minimum 44px — sadece CTA butonlari */
    .v5-marketplace .v5-btn,
    .v5-marketplace .v5-hero__cta {
        min-height: 44px;
    }

    /* Container padding */
    .v5-container {
        padding: 0 16px;
    }

    /* Yatay scroll utility */
    .v6-mobile-scroll {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        padding: 0 16px;
    }
    .v6-mobile-scroll::-webkit-scrollbar { display: none; }
    .v6-mobile-scroll > * {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

/* Pull-to-Refresh */
.v6-ptr {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    background: rgba(248,247,245,0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.v6-ptr--pulling {
    transform: translateY(0);
}
.v6-ptr--refreshing .v6-ptr__spinner {
    animation: v6-spin 0.8s linear infinite;
}
.v6-ptr__spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #e5e2de;
    border-top-color: #f39321;
    border-radius: 50%;
}
@keyframes v6-spin {
    to { transform: rotate(360deg); }
}
@media (min-width: 641px) {
    .v6-ptr { display: none !important; }
}

/* Page Transitions */
.v6-page-enter {
    animation: v6-fadeIn 0.3s ease-out;
}
.v6-page-exit {
    animation: v6-fadeOut 0.2s ease-in forwards;
}
@keyframes v6-fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes v6-fadeOut {
    to { opacity: 0; }
}

/* Bottom Sheet Utility */
.v6-bottom-sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1054;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.v6-bottom-sheet-backdrop--open {
    opacity: 1;
    pointer-events: auto;
}
.v6-bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    z-index: 1055;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 -8px 40px rgba(0,0,0,0.12);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.v6-bottom-sheet--open {
    transform: translateY(0);
}
.v6-bottom-sheet__handle {
    width: 36px;
    height: 4px;
    background: #d1d5db;
    border-radius: 2px;
    margin: 12px auto;
    cursor: grab;
}
.v6-bottom-sheet__content {
    padding: 0 20px 20px;
}


/* ============================================================
   2. HERO SECTION (from sections-v6/hero.blade.php)
   ============================================================ */
.v5-hero {
    position: relative;
    min-height: 420px;
    background: #f8f7f5;
    overflow: hidden;
    display: flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
}

/* Gradient mesh orbs */
.v5-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 120, 50, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}
.v5-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: 120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(140, 80, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

/* Left gradient overlay */
.v5-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #f8f7f5 0%, rgba(248,247,245,0.85) 40%, rgba(248,247,245,0.4) 70%, transparent 100%);
    z-index: 2;
}

.v5-hero__container {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 32px 40px;
    width: 100%;
}

.v5-hero__layout {
    display: flex;
    align-items: center;
    gap: 40px;
}
.v5-hero__content {
    max-width: 580px;
    flex: 1;
}
.v5-hero__visual {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 380px;
}

/* Glassmorphism badge */
.v5-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 24px;
    letter-spacing: 0.2px;
}
.v5-hero__badge-icon {
    font-size: 14px;
}
.v5-hero__badge-dot {
    width: 3px;
    height: 3px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Heading */
.v5-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a2e;
    margin: 0 0 18px;
    letter-spacing: -0.5px;
}
.v5-hero__title span {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.v5-hero__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #64748b;
    margin: 0 0 32px;
    max-width: 480px;
}

/* CTA button */
.v5-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff8c42, #ff6b1a);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(255, 107, 26, 0.25);
}
.v5-hero__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(255, 107, 26, 0.35);
    color: #fff;
    text-decoration: none;
}
.v5-hero__cta i {
    font-size: 13px;
    transition: transform 0.2s ease;
}
.v5-hero__cta:hover i {
    transform: translateX(3px);
}

/* Stats bar */
.v5-hero__stats {
    position: relative;
    z-index: 3;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px 32px;
}
.v5-hero__stats-inner {
    display: flex;
    align-items: center;
    gap: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 24px;
}
.v5-hero__stat {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.v5-hero__stat:first-child {
    padding-left: 0;
}
.v5-hero__stat:last-child {
    border-right: none;
}
.v5-hero__stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
}
.v5-hero__stat-label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    color: #94a3b8;
    line-height: 1.3;
}

/* ========== HERO VISUAL — Animated Orbit ========== */
.v5-hero__orbit {
    position: relative;
    width: 340px;
    height: 340px;
}
.v5-hero__orbit-ring {
    position: absolute;
    inset: 0;
    border: 1.5px dashed rgba(243,147,33,0.15);
    border-radius: 50%;
    animation: v5-orbit-spin 30s linear infinite;
}
.v5-hero__orbit-ring--2 {
    inset: 40px;
    border-color: rgba(99,102,241,0.12);
    animation-duration: 22s;
    animation-direction: reverse;
}
.v5-hero__orbit-ring--3 {
    inset: 80px;
    border-color: rgba(243,147,33,0.08);
    animation-duration: 16s;
}
@keyframes v5-orbit-spin {
    to { transform: rotate(360deg); }
}
/* Center logo */
.v5-hero__orbit-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 80px; height: 80px;
    background: linear-gradient(135deg, #f39321, #ea580c);
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 32px;
    box-shadow: 0 12px 40px rgba(243,147,33,0.25);
    z-index: 2;
}
/* Floating brand pills on orbit */
.v5-hero__orbit-item {
    position: absolute;
    display: flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1px solid #e5e2de;
    border-radius: 50px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px; font-weight: 600;
    color: #1a1a2e;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    white-space: nowrap;
    z-index: 3;
}
.v5-hero__orbit-item i,
.v5-hero__orbit-item svg {
    font-size: 18px;
    flex-shrink: 0;
}
.v5-hero__orbit-item {
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.v5-hero__orbit-item--fading {
    opacity: 0 !important;
    transform: scale(0.85) !important;
}
.v5-hero__orbit-item--1 { top: -5%; left: 50%; transform: translateX(-50%); animation: v5-float-1 6s ease-in-out infinite; }
.v5-hero__orbit-item--2 { top: 20%; right: -15%; animation: v5-float-2 7s ease-in-out infinite; }
.v5-hero__orbit-item--3 { bottom: 20%; right: -10%; animation: v5-float-3 8s ease-in-out infinite; }
.v5-hero__orbit-item--4 { bottom: -5%; left: 50%; transform: translateX(-50%); animation: v5-float-4 6.5s ease-in-out infinite; }
.v5-hero__orbit-item--5 { top: 20%; left: -15%; animation: v5-float-5 7.5s ease-in-out infinite; }
.v5-hero__orbit-item--6 { bottom: 20%; left: -10%; animation: v5-float-6 5.5s ease-in-out infinite; }

@keyframes v5-float-1 { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-8px); } }
@keyframes v5-float-2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(10px); } }
@keyframes v5-float-3 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@keyframes v5-float-4 { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes v5-float-5 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes v5-float-6 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* Glow dots on rings */
.v5-hero__orbit-dot {
    position: absolute;
    width: 8px; height: 8px;
    background: #f39321;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(243,147,33,0.5);
}
.v5-hero__orbit-dot--1 { top: 0; left: 50%; }
.v5-hero__orbit-dot--2 { bottom: 30%; right: 0; background: #6366f1; box-shadow: 0 0 12px rgba(99,102,241,0.5); }
.v5-hero__orbit-dot--3 { top: 40%; left: 0; background: #22c55e; box-shadow: 0 0 12px rgba(34,197,94,0.5); }

@media (max-width: 991px) {
    .v5-hero__visual { display: none; }
    .v5-hero__layout { display: block; }
}

/* Responsive */
@media (max-width: 768px) {
    .v5-hero {
        min-height: 360px;
    }
    .v5-hero__container {
        padding: 40px 20px 28px;
    }
    .v5-hero__title {
        font-size: 32px;
    }
    .v5-hero__desc {
        font-size: 14px;
    }
    .v5-hero__stats {
        padding: 0 20px 24px;
    }
    .v5-hero__stats-inner {
        flex-wrap: wrap;
        gap: 16px;
    }
    .v5-hero__stat {
        padding: 0;
        border-right: none;
    }
}

/* Overlay mobilde kaldir — orbit gizli, gradient gereksiz */
@media (max-width: 991px) {
    .v5-hero__overlay {
        display: none;
    }
}

/* Mobile compact — 640px */
@media (max-width: 640px) {
    .v5-hero {
        min-height: 280px;
    }
    .v5-hero__container {
        padding: 24px 16px 16px;
    }
    .v5-hero__badge {
        font-size: 12px;
        padding: 6px 14px;
        gap: 6px;
        margin-bottom: 16px;
    }
    .v5-hero__badge-icon {
        font-size: 12px;
    }
    .v5-hero__title {
        font-size: 28px;
        margin-bottom: 12px;
    }
    .v5-hero__desc {
        font-size: 13px;
        margin-bottom: 20px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .v5-hero__cta {
        display: flex;
        justify-content: center;
        width: 100%;
        height: 48px;
        padding: 0 24px;
        font-size: 15px;
    }
    .v5-hero__stats-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 24px !important;
        padding-top: 16px;
    }
    .v5-hero__stat {
        padding: 0;
        border-right: none;
        gap: 8px;
    }
    .v5-hero__stat-value {
        font-size: 18px;
    }
    .v5-hero__stat-label {
        font-size: 11px;
    }
    /* Gradient orb kucult */
    .v5-hero::before {
        width: 250px;
        height: 250px;
        top: -60px;
        right: -40px;
    }
    .v5-hero::after {
        width: 200px;
        height: 200px;
    }
}


/* ============================================================
   3. BRAND MARQUEE (from sections-v6/brand-marquee.blade.php)
   ============================================================ */
.v6-marquee {
    background: #f0ede8;
    overflow: hidden;
    position: relative;
    padding: 0;
    border-top: 1px solid rgba(0,0,0,0.04);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

/* Kenar fade efekti */
.v6-marquee::before,
.v6-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}
.v6-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #f0ede8, transparent);
}
.v6-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #f0ede8, transparent);
}

.v6-marquee__track {
    display: flex;
    width: max-content;
    animation: v6-scroll 35s linear infinite;
}

.v6-marquee:hover .v6-marquee__track {
    animation-play-state: paused;
}

.v6-marquee__item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    color: #94a3b8;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.3s;
    cursor: default;
    border-right: 1px solid rgba(0,0,0,0.05);
}

.v6-marquee__item:hover {
    color: #1a1a2e;
}

.v6-marquee__item i {
    font-size: 20px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.v6-marquee__item:hover i {
    opacity: 1;
}

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

@media (prefers-reduced-motion: reduce) {
    .v6-marquee__track {
        animation: none;
        overflow-x: auto;
    }
}

@media (max-width: 768px) {
    .v6-marquee__item {
        padding: 12px 20px;
        font-size: 12px;
        gap: 8px;
    }
    .v6-marquee__item i {
        font-size: 16px;
    }
    .v6-marquee::before,
    .v6-marquee::after {
        width: 40px;
    }
}

/* Mobile compact — 640px */
@media (max-width: 640px) {
    .v6-marquee__item {
        padding: 10px 16px;
        font-size: 11px;
        gap: 6px;
    }
    .v6-marquee__item i {
        font-size: 14px;
    }
    .v6-marquee::before,
    .v6-marquee::after {
        width: 24px;
    }
}


/* ============================================================
   4. CATEGORY BANNERS (from sections-v6/category-banners.blade.php)
   ============================================================ */
.v5-catbanners {
    background: #f8f7f5;
    padding: 40px 0;
    font-family: 'Outfit', sans-serif;
}

.v5-catbanners__grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.v5-catbanner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 22px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}
.v5-catbanner:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}

/* Gradient backgrounds */
.v5-catbanner--blue {
    background: linear-gradient(135deg, #1a5276 0%, #2e86c1 100%);
}
.v5-catbanner--purple {
    background: linear-gradient(135deg, #4a1a6b 0%, #7d3c98 100%);
}
.v5-catbanner--green {
    background: linear-gradient(135deg, #145a32 0%, #27ae60 100%);
}
.v5-catbanner--orange {
    background: linear-gradient(135deg, #7e3d00 0%, #e67e22 100%);
}

/* Icon in the right side */
.v5-catbanner__icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 56px;
    color: rgba(255, 255, 255, 0.1);
    pointer-events: none;
    transition: color 0.25s ease;
}
.v5-catbanner:hover .v5-catbanner__icon {
    color: rgba(255, 255, 255, 0.18);
}

/* Badge */
.v5-catbanner__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 100px;
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    z-index: 2;
}
.v5-catbanner__badge--green {
    background: rgba(39, 174, 96, 0.9);
    color: #fff;
}
.v5-catbanner__badge--orange {
    background: rgba(230, 126, 34, 0.9);
    color: #fff;
}
.v5-catbanner__badge--purple {
    background: rgba(142, 68, 173, 0.9);
    color: #fff;
}

/* Text */
.v5-catbanner__title {
    font-family: 'Outfit', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px;
    line-height: 1.2;
    position: relative;
    z-index: 2;
}
.v5-catbanner__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    z-index: 2;
}

/* Responsive */
@media (max-width: 992px) {
    .v5-catbanners__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 576px) {
    .v5-catbanners__grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
    .v5-catbanners {
        padding: 24px 0;
    }
}

/* Mobile horizontal scroll carousel — 640px */
@media (max-width: 640px) {
    .v5-catbanners {
        padding: 20px 0;
    }
    .v5-catbanners__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 0 16px;
        /* Scrollbar gizle */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .v5-catbanners__grid::-webkit-scrollbar {
        display: none;
    }
    .v5-catbanner {
        flex: 0 0 280px;
        min-height: 140px;
        aspect-ratio: 2 / 1;
        scroll-snap-align: start;
    }
    .v5-catbanner__icon {
        font-size: 44px;
    }
    .v5-catbanner__title {
        font-size: 15px;
    }
    .v5-catbanner__subtitle {
        font-size: 11px;
    }
}


/* ============================================================
   5. PRODUCT VITRIN (from sections-v6/product-vitrin.blade.php)
   ============================================================ */

/* Section */
.v5-vitrin {
    padding: 60px 0;
    background: #f8f7f5;
    font-family: 'Outfit', 'DM Sans', sans-serif;
}

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

/* Tab Navigation */
.v5-vitrin__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
    gap: 16px;
    flex-wrap: wrap;
}

.v5-vitrin__tabs {
    display: flex;
    gap: 8px;
}

.v5-vitrin__tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(0,0,0,0.03);
    color: #64748b;
    font-size: 14px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.v5-vitrin__tab:hover {
    background: rgba(0,0,0,0.06);
    color: #1a1a2e;
}

.v5-vitrin__tab--active {
    background: #22c55e;
    color: #fff;
    border-color: #22c55e;
    box-shadow: 0 0 20px rgba(34,197,94,0.2);
}

.v5-vitrin__tab-icon {
    font-size: 16px;
    line-height: 1;
}

/* Brand Filters */
.v5-vitrin__brands {
    display: flex;
    gap: 6px;
}

.v5-vitrin__brand-btn {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    border: 1px solid rgba(0,0,0,0.08);
    background: rgba(0,0,0,0.03);
    color: #94a3b8;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v5-vitrin__brand-btn:hover {
    background: rgba(0,0,0,0.06);
    color: #1a1a2e;
}

.v5-vitrin__brand-btn--active {
    background: rgba(0,0,0,0.08);
    color: #1a1a2e;
    border-color: rgba(0,0,0,0.15);
}

/* Grid */
.v5-vitrin__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* Fade transition */
.v5-fade-in { transition: opacity 0.3s ease, transform 0.3s ease; }
.v5-fade-start { opacity: 0; transform: translateY(8px); }
.v5-fade-end { opacity: 1; transform: translateY(0); }

/* ========================================
   V6 CARD — Light Mode
   ======================================== */
.v5-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e2de;
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: #1a1a2e;
    transition: border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    position: relative;
}

.v5-card:hover {
    border-color: var(--card-color-1, rgba(0,0,0,0.15));
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    color: #1a1a2e;
    text-decoration: none;
}

/* Marquee Banner */
.v5-card__banner {
    height: 26px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.v5-card__marquee {
    display: flex;
    white-space: nowrap;
    animation: v5-marquee 12s linear infinite;
}

.v5-card__marquee span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    padding-right: 0;
}

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

/* Visual / Image Area */
.v5-card__visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: #f0ede8;
}

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

.v5-card:hover .v5-card__img {
    transform: scale(1.05);
}

.v5-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v5-card__placeholder-icon {
    font-size: 80px;
    color: rgba(255,255,255,0.15);
    transition: color 0.3s ease;
}

.v5-card:hover .v5-card__placeholder-icon {
    color: rgba(255,255,255,0.25);
}

/* Discount Badge */
.v5-card__discount {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Category Badge */
.v5-card__category-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: rgba(255,255,255,0.9);
    font-size: 10px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    z-index: 2;
}

/* Seller Bar (overlay at bottom of visual) */
.v5-card__seller {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
    z-index: 2;
}

.v5-card__seller-left {
    display: flex;
    align-items: center;
    gap: 6px;
}

.v5-card__seller-avatar {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, #f39321, #fb923c);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    color: #fff;
    font-family: 'Outfit', sans-serif;
    flex-shrink: 0;
}

.v5-card__seller-name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    font-family: 'Outfit', sans-serif;
}

.v5-card__seller-verified {
    font-size: 12px;
    color: #22c55e;
}

.v5-card__seller-right {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
}

/* Info Area */
.v5-card__info {
    padding: 14px 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v5-card__name {
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
    font-family: 'Outfit', sans-serif;
}

.v5-card__price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.v5-card__prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.v5-card__price {
    font-size: 16px;
    font-weight: 800;
    color: #1a1a2e;
    font-family: 'DM Sans', sans-serif;
}

.v5-card__price-old {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
    text-decoration: line-through;
    font-family: 'DM Sans', sans-serif;
}

.v5-card__arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #94a3b8;
    transition: all 0.25s ease;
    flex-shrink: 0;
}

.v5-card:hover .v5-card__arrow {
    background: var(--card-color-1, #f39321);
    color: #fff;
}

/* CTA Button */
.v5-vitrin__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 32px;
    padding: 16px 32px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 14px;
    background: transparent;
    color: #64748b;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.v5-vitrin__cta:hover {
    border-color: #f39321;
    color: #f39321;
    text-decoration: none;
    background: rgba(243,147,33,0.04);
}

/* Empty State */
.v5-vitrin__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #94a3b8;
}

.v5-vitrin__empty i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.v5-vitrin__empty p {
    font-size: 14px;
    margin: 0;
}

/* ========================================
   PRODUCT VITRIN RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .v5-vitrin__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .v5-vitrin__nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .v5-vitrin__tabs {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        width: 100%;
        padding-bottom: 4px;
    }

    .v5-vitrin__tabs::-webkit-scrollbar { display: none; }

    .v5-vitrin__brands {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .v5-vitrin__brands::-webkit-scrollbar { display: none; }
}

@media (max-width: 767px) {
    .v5-vitrin {
        padding: 40px 0;
    }

    .v5-vitrin__container {
        padding: 0 12px;
    }

    .v5-vitrin__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .v5-vitrin__tab {
        padding: 8px 14px;
        font-size: 12px;
    }

    .v5-card__banner {
        height: 22px;
    }

    .v5-card__marquee span {
        font-size: 8px;
    }

    .v5-card__placeholder-icon {
        font-size: 48px;
    }

    .v5-card__info {
        padding: 10px 10px 12px;
    }

    .v5-card__name {
        font-size: 12px;
    }

    .v5-card__price {
        font-size: 14px;
    }

    .v5-card__price-old {
        font-size: 10px;
    }

    .v5-card__arrow {
        width: 26px;
        height: 26px;
        font-size: 10px;
    }

    .v5-card__seller-avatar {
        width: 18px;
        height: 18px;
        font-size: 7px;
    }

    .v5-card__seller-name {
        font-size: 9px;
    }

    .v5-card__seller-verified {
        font-size: 10px;
    }

    .v5-card__discount {
        font-size: 9px;
        padding: 3px 7px;
    }

    .v5-card__category-badge {
        font-size: 8px;
        padding: 3px 7px;
    }

    .v5-vitrin__cta {
        font-size: 12px;
        padding: 14px 20px;
        margin-top: 20px;
    }
}

/* ========================================
   PRODUCT VITRIN MOBILE COMPACT (<=640px)
   ======================================== */
@media (max-width: 640px) {
    .v5-vitrin {
        padding: 32px 0;
    }

    .v5-vitrin__container {
        padding: 0 12px;
    }

    /* Tab butonlari: yatay scroll */
    .v5-vitrin__tabs {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 6px;
        padding-bottom: 2px;
    }
    .v5-vitrin__tabs::-webkit-scrollbar { display: none; }
    .v5-vitrin__tabs > * { scroll-snap-align: start; flex-shrink: 0; }

    .v5-vitrin__tab {
        padding: 8px 14px;
        font-size: 12px;
        gap: 4px;
    }

    .v5-vitrin__tab-icon {
        font-size: 12px;
    }

    /* Brand filter butonlari compact */
    .v5-vitrin__brand-btn {
        width: 32px;
        height: 32px;
        font-size: 13px;
        border-radius: 8px;
    }

    /* Grid: 2 sutun, 8px gap */
    .v5-vitrin__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* Marquee banner compact */
    .v5-card__banner {
        height: 20px;
    }

    .v5-card__marquee span {
        font-size: 9px;
        letter-spacing: 1px;
    }

    /* Kart padding compact */
    .v5-card__info {
        padding: 8px 8px 10px;
        gap: 4px;
    }

    /* Urun adi: 13px, 1 satir line-clamp */
    .v5-card__name {
        font-size: 13px;
        -webkit-line-clamp: 1;
        line-height: 1.3;
    }

    /* Fiyat: 14px */
    .v5-card__price {
        font-size: 14px;
    }

    .v5-card__price-old {
        font-size: 10px;
    }

    /* Satici bar: gizle */
    .v5-card__seller {
        display: none;
    }

    /* Visual aspect ratio daha kisa */
    .v5-card__visual {
        aspect-ratio: 1;
    }

    /* Placeholder icon kucult */
    .v5-card__placeholder-icon {
        font-size: 40px;
    }

    /* Discount & category badge compact */
    .v5-card__discount {
        font-size: 9px;
        padding: 2px 6px;
        top: 6px;
        left: 6px;
    }

    .v5-card__category-badge {
        font-size: 8px;
        padding: 2px 6px;
        top: 6px;
        right: 6px;
    }

    /* Arrow compact */
    .v5-card__arrow {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }

    /* "Daha Fazla" butonu: full-width, 44px height */
    .v5-vitrin__cta {
        width: 100%;
        height: 44px;
        padding: 0 16px;
        font-size: 12px;
        margin-top: 16px;
        border-radius: 10px;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 374px) {
    .v5-vitrin__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .v5-card__visual {
        aspect-ratio: 3/4;
    }
}

[x-cloak] { display: none !important; }


/* ============================================================
   6. PLATFORM CARDS (from sections-v6/platform-cards.blade.php)
   ============================================================ */
.v5-platforms {
    background: #ffffff;
    padding: 80px 0;
    font-family: 'Outfit', sans-serif;
}
.v5-platforms__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.v5-platforms__header {
    text-align: center;
    margin-bottom: 48px;
}
.v5-platforms__title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}
.v5-platforms__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #64748b;
    margin: 0;
}
.v5-platforms__grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
}
.v5-platform-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
    min-height: 160px;
}
.v5-platform-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-decoration: none;
}
.v5-platform-card__icon {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1;
}
.v5-platform-card__name {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.v5-platform-card__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

/* Platform colors */
.v5-platform-card--office { background: #0078d4; }
.v5-platform-card--adobe { background: #fa0f00; }
.v5-platform-card--windows { background: #00a4ef; }
.v5-platform-card--plesk { background: #6366f1; }
.v5-platform-card--cpanel { background: #f39321; }
.v5-platform-card--canva { background: #7c3aed; }
.v5-platform-card--wordpress { background: #21759b; }
.v5-platform-card--winrar { background: #4b5563; }

@media (max-width: 1024px) {
    .v5-platforms__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media (max-width: 640px) {
    .v5-platforms {
        padding: 40px 0;
    }
    .v5-platforms__container {
        padding: 0 0;
    }
    .v5-platforms__header {
        padding: 0 16px;
        margin-bottom: 24px;
    }
    .v5-platforms__title {
        font-size: 20px;
    }
    .v5-platforms__subtitle {
        font-size: 13px;
    }
    /* Yatay scroll — 100x100 kare kartlar */
    .v5-platforms__grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 10px;
        padding: 0 16px;
    }
    .v5-platforms__grid::-webkit-scrollbar { display: none; }
    .v5-platforms__grid > * {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    .v5-platform-card {
        width: 100px;
        height: 100px;
        min-height: unset;
        padding: 12px 8px;
        border-radius: 10px;
    }
    .v5-platform-card__icon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    .v5-platform-card__name {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
    .v5-platform-card__desc {
        font-size: 9px;
    }
}


/* ============================================================
   7. PRICE RANGE (from sections-v6/price-range.blade.php)
   ============================================================ */
.v5-price-range {
    background: #f8f7f5;
    padding: 80px 0;
    font-family: 'Outfit', sans-serif;
}
.v5-price-range__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.v5-price-range__header {
    text-align: center;
    margin-bottom: 48px;
}
.v5-price-range__title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}
.v5-price-range__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #64748b;
    margin: 0;
}
.v5-price-range__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}
.v5-price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e5e2de;
    border-radius: 12px;
    padding: 28px 16px 20px;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    min-height: 160px;
}
.v5-price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}
.v5-price-card__badge {
    position: absolute;
    top: 10px;
    right: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 100px;
    color: #ffffff;
    letter-spacing: 0.3px;
}
.v5-price-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.v5-price-card__icon i {
    font-size: 20px;
    color: #ffffff;
}
.v5-price-card__amount {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}
.v5-price-card__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
/* Bottom gradient line */
.v5-price-card__line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
}

/* Color variants */
.v5-price-card--green .v5-price-card__badge { background: rgba(16, 185, 129, 0.15); color: #10b981; }
.v5-price-card--green .v5-price-card__icon { background: linear-gradient(135deg, #10b981, #059669); }
.v5-price-card--green .v5-price-card__line { background: linear-gradient(90deg, #10b981, #059669); }

.v5-price-card--cyan .v5-price-card__badge { background: rgba(6, 182, 212, 0.15); color: #06b6d4; }
.v5-price-card--cyan .v5-price-card__icon { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.v5-price-card--cyan .v5-price-card__line { background: linear-gradient(90deg, #06b6d4, #0891b2); }

.v5-price-card--pink .v5-price-card__badge { background: rgba(236, 72, 153, 0.15); color: #ec4899; }
.v5-price-card--pink .v5-price-card__icon { background: linear-gradient(135deg, #ec4899, #db2777); }
.v5-price-card--pink .v5-price-card__line { background: linear-gradient(90deg, #ec4899, #db2777); }

.v5-price-card--orange .v5-price-card__badge { background: rgba(249, 115, 22, 0.15); color: #f97316; }
.v5-price-card--orange .v5-price-card__icon { background: linear-gradient(135deg, #f97316, #ea580c); }
.v5-price-card--orange .v5-price-card__line { background: linear-gradient(90deg, #f97316, #ea580c); }

.v5-price-card--purple .v5-price-card__badge { background: rgba(139, 92, 246, 0.15); color: #8b5cf6; }
.v5-price-card--purple .v5-price-card__icon { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }
.v5-price-card--purple .v5-price-card__line { background: linear-gradient(90deg, #8b5cf6, #7c3aed); }

.v5-price-card--red .v5-price-card__badge { background: rgba(239, 68, 68, 0.15); color: #ef4444; }
.v5-price-card--red .v5-price-card__icon { background: linear-gradient(135deg, #ef4444, #dc2626); }
.v5-price-card--red .v5-price-card__line { background: linear-gradient(90deg, #ef4444, #dc2626); }

@media (max-width: 1024px) {
    .v5-price-range__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .v5-price-range {
        padding: 40px 0;
    }
    .v5-price-range__container {
        padding: 0 0;
    }
    .v5-price-range__header {
        padding: 0 16px;
        margin-bottom: 24px;
    }
    .v5-price-range__title {
        font-size: 20px;
    }
    .v5-price-range__subtitle {
        font-size: 13px;
    }
    /* Yatay scroll — 140px genislik kartlar */
    .v5-price-range__grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 10px;
        padding: 0 16px;
    }
    .v5-price-range__grid::-webkit-scrollbar { display: none; }
    .v5-price-range__grid > * {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    .v5-price-card {
        width: 140px;
        min-height: unset;
        padding: 20px 12px 16px;
    }
    .v5-price-card__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 12px;
    }
    .v5-price-card__icon i {
        font-size: 16px;
    }
    .v5-price-card__amount {
        font-size: 20px;
        margin-bottom: 2px;
    }
    .v5-price-card__label {
        font-size: 10px;
        margin-bottom: 12px;
    }
    .v5-price-card__badge {
        font-size: 9px;
        padding: 2px 8px;
        top: 8px;
        right: 8px;
    }
}


/* ============================================================
   8. DAILY DEALS (from sections-v6/daily-deals.blade.php)
   ============================================================ */
.v5-deals {
    background: #f8f7f5;
    padding: 80px 0;
    font-family: 'Outfit', sans-serif;
}
.v5-deals__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.v5-deals__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
.v5-deals__header-left {
    display: flex;
    align-items: center;
    gap: 20px;
}
.v5-deals__clock {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.v5-deals__clock i {
    font-size: 24px;
    color: #ffffff;
}
.v5-deals__header-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.v5-deals__title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #ef4444;
    margin: 0;
}
.v5-deals__timer {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    color: #64748b;
    margin: 0;
}
.v5-deals__timer span {
    color: #1a1a2e;
    font-weight: 600;
}
.v5-deals__viewall {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    color: #1a1a2e;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
.v5-deals__viewall:hover {
    background: rgba(0, 0, 0, 0.03);
    border-color: rgba(0, 0, 0, 0.2);
    color: #1a1a2e;
    text-decoration: none;
}

/* Product grid */
.v5-deals__grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

/* Deal card */
.v5-deal-card {
    background: #ffffff;
    border: 1px solid #e5e2de;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
.v5-deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}
.v5-deal-card__banner {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    padding: 6px 0;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.v5-deal-card__image {
    position: relative;
    aspect-ratio: 1;
    background: #f0ede8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.v5-deal-card__image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}
.v5-deal-card__image-placeholder {
    font-size: 48px;
    color: rgba(0, 0, 0, 0.1);
}
.v5-deal-card__discount {
    position: absolute;
    top: 8px;
    right: 8px;
    background: #ef4444;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
}
.v5-deal-card__body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.v5-deal-card__name {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.v5-deal-card__prices {
    margin-top: auto;
    display: flex;
    align-items: baseline;
    gap: 8px;
}
.v5-deal-card__price {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #ff8c42;
}
.v5-deal-card__original {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #94a3b8;
    text-decoration: line-through;
}

.v5-deals__countdown {
    display: inline;
}

@media (max-width: 1024px) {
    .v5-deals__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 640px) {
    .v5-deals {
        padding: 40px 0;
    }
    .v5-deals__container {
        padding: 0 0;
    }
    .v5-deals__header {
        flex-direction: column;
        align-items: flex-start;
        padding: 0 16px;
        margin-bottom: 24px;
        gap: 12px;
    }
    .v5-deals__clock {
        width: 44px;
        height: 44px;
    }
    .v5-deals__clock i {
        font-size: 18px;
    }
    .v5-deals__title {
        font-size: 18px;
    }
    .v5-deals__timer {
        font-size: 12px;
    }
    .v5-deals__viewall {
        padding: 10px 18px;
        font-size: 13px;
    }
    /* Yatay scroll carousel — 200px genislik kartlar */
    .v5-deals__grid {
        display: flex !important;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 12px;
        padding: 0 16px;
    }
    .v5-deals__grid::-webkit-scrollbar { display: none; }
    .v5-deals__grid > * {
        scroll-snap-align: start;
        flex-shrink: 0;
    }
    .v5-deal-card {
        width: 200px;
    }
    .v5-deal-card__banner {
        font-size: 10px;
        padding: 4px 0;
    }
    .v5-deal-card__image {
        padding: 12px;
    }
    .v5-deal-card__image-placeholder {
        font-size: 36px;
    }
    .v5-deal-card__discount {
        font-size: 10px;
        padding: 3px 8px;
    }
    .v5-deal-card__body {
        padding: 10px;
    }
    .v5-deal-card__name {
        font-size: 12px;
        -webkit-line-clamp: 1;
        margin-bottom: 6px;
    }
    .v5-deal-card__price {
        font-size: 16px;
    }
    .v5-deal-card__original {
        font-size: 11px;
    }
}


/* ============================================================
   9. BOTTOM SECTIONS (from sections-v6/bottom-sections.blade.php)
   ============================================================ */

/* TRUST BAR — Light Mode */
.v5-trust {
    background: #ffffff;
    border-top: 1px solid #e5e2de;
    border-bottom: 1px solid #e5e2de;
    padding: 40px 0;
    font-family: 'Outfit', sans-serif;
}
.v5-trust__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.v5-trust__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.v5-trust__item {
    display: flex;
    align-items: center;
    gap: 16px;
}
.v5-trust__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 140, 66, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.v5-trust__icon i {
    font-size: 22px;
    color: #ff8c42;
}
.v5-trust__text {
    display: flex;
    flex-direction: column;
}
.v5-trust__label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
}
.v5-trust__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 2px;
}

/* FAQ ACCORDION — Light Mode */
.v5-faq {
    background: #f8f7f5;
    padding: 80px 0;
    font-family: 'Outfit', sans-serif;
}
.v5-faq__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 32px;
}
.v5-faq__header {
    text-align: center;
    margin-bottom: 48px;
}
.v5-faq__title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px;
}
.v5-faq__subtitle {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: #64748b;
    margin: 0;
}
.v5-faq__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.v5-faq__item {
    background: #ffffff;
    border: 1px solid #e5e2de;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.v5-faq__item:hover {
    border-color: rgba(0, 0, 0, 0.15);
}
.v5-faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}
.v5-faq__question-text {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    line-height: 1.4;
}
.v5-faq__question-icon {
    font-size: 14px;
    color: #94a3b8;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.v5-faq__item.active .v5-faq__question-icon {
    transform: rotate(180deg);
    color: #ff8c42;
}
.v5-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.v5-faq__answer-inner {
    padding: 0 24px 20px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #64748b;
}

/* CTA BANNER */
.v5-cta {
    background: #f8f7f5;
    padding: 0 0 80px;
    font-family: 'Outfit', sans-serif;
}
.v5-cta__container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}
.v5-cta__banner {
    background: linear-gradient(135deg, #ff8c42, #ff6b1a, #e85d04);
    border-radius: 16px;
    padding: 48px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.v5-cta__text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.v5-cta__heading {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}
.v5-cta__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}
.v5-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #ffffff;
    color: #e85d04;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}
.v5-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
    color: #e85d04;
    text-decoration: none;
}
.v5-cta__btn i {
    font-size: 13px;
}

/* BOTTOM SECTIONS RESPONSIVE */
@media (max-width: 768px) {
    .v5-trust__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .v5-faq {
        padding: 48px 0;
    }
    .v5-faq__container {
        padding: 0 20px;
    }
    .v5-faq__title {
        font-size: 24px;
    }
    .v5-cta__container {
        padding: 0 20px;
    }
    .v5-cta__banner {
        padding: 32px 24px;
        flex-direction: column;
        text-align: center;
    }
    .v5-cta__heading {
        font-size: 22px;
    }
}
@media (max-width: 480px) {
    .v5-trust {
        padding: 32px 0;
    }
    .v5-trust__container {
        padding: 0 20px;
    }
    .v5-trust__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* BOTTOM SECTIONS MOBILE COMPACT — max-width: 640px */
@media (max-width: 640px) {
    /* Trust bar: 2x2 grid, daha kucuk ikonlar */
    .v5-trust {
        padding: 24px 0;
    }
    .v5-trust__container {
        padding: 0 16px;
    }
    .v5-trust__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .v5-trust__icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .v5-trust__icon i {
        font-size: 16px;
    }
    .v5-trust__item {
        gap: 10px;
    }
    .v5-trust__label {
        font-size: 12px;
    }
    .v5-trust__desc {
        font-size: 11px;
    }

    /* FAQ: compact padding & font */
    .v5-faq {
        padding: 32px 0;
    }
    .v5-faq__container {
        padding: 0 16px;
    }
    .v5-faq__header {
        margin-bottom: 24px;
    }
    .v5-faq__title {
        font-size: 20px;
    }
    .v5-faq__subtitle {
        font-size: 13px;
    }
    .v5-faq__list {
        gap: 8px;
    }
    .v5-faq__question {
        padding: 14px 16px;
        min-height: 44px;
    }
    .v5-faq__question-text {
        font-size: 14px;
    }
    .v5-faq__answer-inner {
        padding: 0 16px 14px;
        font-size: 13px;
    }

    /* CTA: padding azalt */
    .v5-cta {
        padding: 0 0 32px;
    }
    .v5-cta__container {
        padding: 0 16px;
    }
    .v5-cta__banner {
        padding: 24px 20px;
        border-radius: 12px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .v5-cta__heading {
        font-size: 18px;
    }
    .v5-cta__desc {
        font-size: 13px;
    }
    .v5-cta__btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
        min-height: 44px;
    }
}
