/* =============================================
   MediKal Store - Ana Site Stilleri
   Kırmızı & Beyaz Temalı Modern Tasarım
   ============================================= */

/* ---- CSS Variables / Design Tokens ---- */
:root {
    --red-50: #FEF2F2;
    --red-100: #FEE2E2;
    --red-200: #FECACA;
    --red-300: #FCA5A5;
    --red-400: #F87171;
    --red-500: #EF4444;
    --red-600: #DC2626;
    --red-700: #B91C1C;
    --red-800: #991B1B;
    --red-900: #7F1D1D;

    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;

    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-red: 0 10px 30px rgba(220, 38, 38, 0.3);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

/* ---- Container ---- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Fade-in Animasyonları ---- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

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

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- TOPBAR ---- */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    height: 40px;
    background: var(--gray-900);
    color: var(--gray-300);
    font-size: 13px;
}

.topbar-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topbar-left,
.topbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.topbar a,
.topbar span {
    color: var(--gray-300);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition-fast);
}

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

.topbar i {
    color: var(--red-400);
    font-size: 11px;
}

/* ---- KATEGORİ ŞERİDİ (navbar ile tek çatı altında birleşik) ---- */
.category-bar {
    margin-top: 120px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.category-bar-inner {
    position: relative;
    display: flex;
    align-items: center;
    gap: 24px;
    height: 52px;
    overflow: visible;
}

.category-bar-link {
    display: inline-flex;
    align-items: center;
    padding: 4px 0;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--gray-600);
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.category-bar-link:hover {
    color: var(--red-600);
    border-bottom-color: var(--red-200);
}

.category-bar-link.category-bar-all {
    margin-left: auto;
    font-weight: 700;
    color: var(--red-600);
}

.category-bar-link.category-bar-all:hover {
    border-bottom-color: var(--red-600);
}

/* Daha Fazlası (taşan kategoriler) */
.category-bar-more {
    position: relative;
    flex-shrink: 0;
    display: none;
}

.category-bar-more-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: none;
    background: none;
    padding: 4px 0;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--gray-500);
    white-space: nowrap;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.category-bar-more-toggle i {
    font-size: 10px;
    transition: transform 0.25s ease;
}

.category-bar-more-toggle:hover {
    color: var(--red-600);
}

.category-bar-more.active .category-bar-more-toggle {
    color: var(--red-600);
    border-bottom-color: var(--red-200);
}

.category-bar-more.active .category-bar-more-toggle i {
    transform: rotate(180deg);
}

.category-bar-more-panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 1002;
}

.category-bar-more.active .category-bar-more-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.category-bar-more-panel .category-bar-link {
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    border-bottom: none;
}

.category-bar-more-panel .category-bar-link:hover {
    background: var(--red-50);
    color: var(--red-600);
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--red-600);
    text-decoration: none;
}

.navbar-brand .brand-logo {
    height: 68px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

.navbar-brand .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.navbar-brand .brand-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-800);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-brand .brand-text span {
    font-size: 20px;
    font-weight: 800;
    color: var(--red-600);
    letter-spacing: 2px;
}

.navbar-search {
    display: flex;
    align-items: center;
    width: 360px;
    max-width: 34vw;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: 4px 4px 4px 20px;
    height: 48px;
    transition: var(--transition-fast);
}

.navbar-search:focus-within {
    background: var(--white);
    border-color: var(--red-300);
    box-shadow: 0 0 0 3px var(--red-50);
}

.navbar-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--gray-800);
    padding: 0 10px;
    min-width: 0;
}

.navbar-search input::placeholder {
    color: var(--gray-400);
}

.navbar-search button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--gray-400);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.navbar-search button:hover {
    background: var(--red-50);
    color: var(--red-600);
}

@media (max-width: 1024px) {
    .navbar-search {
        display: none;
    }
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    border-radius: var(--radius-full);
    background: var(--red-50);
    text-decoration: none;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

.navbar-phone:hover {
    background: var(--red-100);
}

.navbar-phone-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    color: white;
    font-size: 15px;
    flex-shrink: 0;
}

.navbar-phone-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--red-500);
    z-index: -1;
    animation: navbarPhonePing 2.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes navbarPhonePing {
    0% { transform: scale(1); opacity: 0.55; }
    70%, 100% { transform: scale(2); opacity: 0; }
}

.navbar-phone-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
    white-space: nowrap;
}

.navbar-phone-text small {
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.navbar-phone-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--gray-900);
}

@media (max-width: 768px) {
    .navbar-phone {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .navbar-phone-icon::after {
        animation: none;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-links a {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--red-600);
    background: var(--red-50);
}

.nav-links a.active {
    color: var(--white);
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    box-shadow: var(--shadow-red);
}

.nav-links a.nav-links-all {
    font-weight: 700;
    color: var(--red-600);
}

.nav-links-divider {
    width: 100%;
    height: 1px;
    background: var(--gray-200);
    margin: 10px 0;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* ---- HERO SECTION ---- */
/* ---- HERO SECTION (SLIDER WRAPPER) ---- */
.hero-slider-wrapper {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: linear-gradient(135deg, var(--red-600) 0%, var(--red-700) 40%, var(--red-800) 100%);
    display: flex;
    align-items: center;
}

.hero-slider-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-slider-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background: linear-gradient(to top, var(--white), transparent);
    pointer-events: none;
    z-index: 1;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease, transform 0.8s ease;
    transform: scale(0.98);
    display: flex;
    align-items: center;
    z-index: 2;
    padding-top: 80px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    position: relative;
    z-index: 3;
}

.hero-slide .container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-slide .hero-content,
.hero-slide .hero-visual {
    min-width: 0;
    width: 100%;
}

.hero-slide .hero-content h1,
.hero-slide .hero-content p {
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Slide single image styling */
.slide-single-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 480px;
    animation: fadeIn 1s ease 0.3s both;
}

.hero-product-img {
    max-width: 100%;
    max-height: 440px;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 3px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

/* Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    backdrop-filter: blur(10px);
}

.slider-arrow:hover {
    background: var(--white);
    color: var(--red-600);
    box-shadow: var(--shadow-lg);
}

.slider-arrow.prev {
    left: 40px;
}

.slider-arrow.next {
    right: 40px;
}

/* Dots */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.slider-dots .dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-dots .dot.active {
    background: var(--white);
    width: 32px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    .slider-arrow.prev { left: 15px; }
    .slider-arrow.next { right: 15px; }
}

@media (max-width: 768px) {
    .hero-slide {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .hero-slide .container {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }
    .slide-single-image {
        height: 300px;
    }
    .hero-product-img {
        max-height: 280px;
    }
    .slider-arrow {
        display: none;
    }
}

/* Masaüstünde büyük "landing page" hero yerine daha kompakt bir banner */
@media (min-width: 769px) {
    .hero-slider-wrapper {
        min-height: unset;
        height: 560px;
    }
    .hero-slide {
        padding-top: 0;
    }
    .nav-links {
        display: none;
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: white;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
    font-size: 12px;
}

.hero h1 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    background: linear-gradient(135deg, #FEE2E2, #FECACA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease 0.3s both;
}

/* ---- HERO COLLAGE ---- */
.hero-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 440px;
    height: 480px;
    overflow: hidden;
    position: relative;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 20px;
    box-shadow: var(--shadow-lg), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

/* Gradient overlays to fade images at top and bottom */
.hero-collage::before,
.hero-collage::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 2;
    pointer-events: none;
}

.hero-collage::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(220, 38, 38, 0.3) 0%, transparent 100%);
}

.hero-collage::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(185, 28, 28, 0.3) 0%, transparent 100%);
}

.collage-col {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.collage-track {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.collage-col-1 .collage-track {
    animation: scrollUp 22s linear infinite;
}

.collage-col-2 .collage-track {
    animation: scrollDown 22s linear infinite;
}

.hero-collage:hover .collage-track {
    animation-play-state: paused;
}

.collage-item {
    width: 100%;
    height: 170px;
    flex-shrink: 0;
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius);
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow);
    transition: var(--transition-fast);
}

.collage-item img:hover {
    transform: scale(1.03);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Keyframes for smooth infinite scrolling */
@keyframes scrollUp {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

@keyframes scrollDown {
    0% {
        transform: translateY(-50%);
    }

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

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    color: white;
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.5);
}

.btn-white {
    background: white;
    color: var(--red-600);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.btn-outline:hover {
    background: var(--red-50);
    border-color: var(--red-400);
}

.btn-call-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-call-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 1.5px solid rgba(220, 38, 38, 0.55);
    animation: btnCallPing 2.6s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes btnCallPing {
    0% { transform: scale(0.75); opacity: 0.85; }
    70%, 100% { transform: scale(1.9); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .btn-call-icon::after {
        animation: none;
    }
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #1EBE5A;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 13px;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

/* ---- SECTION HEADERS ---- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red-50);
    color: var(--red-600);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ---- FEATURED PRODUCTS ---- */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

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

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-card-image .no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    font-size: 48px;
    gap: 8px;
}

.product-card-image .no-image span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.product-card-body {
    padding: 20px;
}

.product-card-category {
    font-size: 12px;
    font-weight: 600;
    color: var(--red-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.product-card-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-desc {
    font-size: 13px;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-price.hidden-price {
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-400);
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--red-600);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    background: var(--red-50);
    transition: var(--transition);
}

.product-card-link:hover {
    background: var(--red-600);
    color: white;
}

/* ---- FEATURES / ABOUT ---- */
.features-section {
    background: var(--gray-50);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--red-50), var(--red-100));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--red-600);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ---- CTA SECTION ---- */
.cta-section {
    background: linear-gradient(135deg, var(--red-600), var(--red-800));
    color: white;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 17px;
    opacity: 0.85;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand .brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

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

.footer ul li a {
    font-size: 14px;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer ul li a:hover {
    color: white;
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-contact li i {
    color: var(--red-500);
    margin-top: 3px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid var(--gray-800);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: var(--gray-800);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red-600);
    color: white;
    transform: translateY(-2px);
}

/* ---- PRODUCTS PAGE ---- */
.page-header {
    background: linear-gradient(135deg, var(--red-600), var(--red-800));
    padding: 48px 0 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 16px;
    opacity: 0.85;
}

/* Ürünler Sayfası Düzeni (Sidebar + İçerik) */
.products-layout {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.products-main {
    min-width: 0;
}

/* Kategori Sidebar */
.category-sidebar {
    position: sticky;
    top: 148px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px;
}

.category-sidebar-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--gray-500);
    margin-bottom: 14px;
}

.category-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.category-sidebar-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.category-sidebar-list a i {
    font-size: 13px;
    color: var(--gray-400);
    width: 16px;
    text-align: center;
}

.category-sidebar-list a:hover {
    background: var(--red-50);
    color: var(--red-600);
}

.category-sidebar-list a.active {
    background: var(--gray-900);
    color: white;
}

.category-sidebar-list a.active i {
    color: white;
}

/* Ürün Arama */
.product-search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    padding: 5px 5px 5px 20px;
    margin-bottom: 20px;
    max-width: 620px;
    transition: var(--transition-fast);
}

.product-search:focus-within {
    background: var(--white);
    border-color: var(--red-300);
    box-shadow: 0 0 0 3px var(--red-50);
}

.product-search input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 0;
    font-size: 14.5px;
    font-family: inherit;
    color: var(--gray-800);
    background: transparent;
    min-width: 0;
}

.product-search input[type="text"]::placeholder {
    color: var(--gray-400);
}

.product-search button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: transparent;
    color: var(--gray-400);
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.product-search button:hover {
    background: var(--red-50);
    color: var(--red-600);
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    color: var(--gray-400);
}

.empty-state i {
    font-size: 64px;
    margin-bottom: 16px;
    display: block;
}

.empty-state h3 {
    font-size: 20px;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 15px;
}

/* ---- PRODUCT DETAIL PAGE ---- */
.product-detail {
    padding: 30px 0 80px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.product-detail-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

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

.product-detail-image .no-image {
    font-size: 80px;
    color: var(--gray-200);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.product-detail-image .no-image span {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-detail-info {
    padding-top: 20px;
}

.product-detail-category {
    display: inline-block;
    background: var(--red-50);
    color: var(--red-600);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-detail-title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.product-detail-price.hidden-price {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-400);
    background: var(--gray-50);
    display: inline-block;
    padding: 10px 20px;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.product-detail-desc {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.product-detail-desc p {
    margin-bottom: 12px;
}

.product-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.product-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--gray-50);
    border-radius: var(--radius);
}

.product-meta-item i {
    font-size: 18px;
    color: var(--red-500);
    width: 20px;
    text-align: center;
}

.product-meta-item .meta-label {
    font-size: 12px;
    color: var(--gray-400);
    display: block;
}

.product-meta-item .meta-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
}

.product-detail-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.product-detail-actions .btn {
    flex: 1;
    justify-content: center;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    column-gap: 22px;
    row-gap: 10px;
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
}

.trust-row-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

.trust-row-item i {
    color: var(--red-500);
    font-size: 15px;
}

@media (max-width: 480px) {
    .product-detail-actions {
        flex-direction: column;
    }
}

/* ---- BREADCRUMB ---- */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 13px;
    color: var(--gray-400);
}

.breadcrumb a {
    color: var(--gray-500);
}

.breadcrumb a:hover {
    color: var(--red-600);
}

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

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 36px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero .hero-visual {
        order: -1;
        padding-top: 20px;
    }

    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        gap: 8px;
        box-shadow: var(--shadow-xl);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 14px;
        font-size: 16px;
    }

    .hamburger {
        display: flex;
    }

    .topbar {
        display: none;
    }

    .navbar {
        top: 0;
    }

    .category-bar {
        margin-top: 82px;
    }

    .category-bar-inner {
        gap: 4px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .category-bar-inner::-webkit-scrollbar {
        display: none;
    }

    .category-bar-link {
        padding: 8px 10px;
    }

    .category-bar-link.category-bar-all {
        margin-left: 0;
    }

    .category-bar-more {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero-visual-card {
        padding: 24px;
    }

    .section {
        padding: 60px 0;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }

    .product-search {
        max-width: 100%;
        padding: 4px 4px 4px 14px;
    }

    .product-search input[type="text"] {
        font-size: 14px;
    }

    .product-search button {
        width: 36px;
        height: 36px;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .product-meta {
        grid-template-columns: 1fr;
    }

    .products-layout {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .category-sidebar {
        position: static;
        padding: 12px;
    }

    .category-sidebar-title {
        display: none;
    }

    .category-sidebar-list {
        flex-direction: row;
        gap: 8px;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .category-sidebar-list::-webkit-scrollbar {
        display: none;
    }

    .category-sidebar-list a {
        flex-shrink: 0;
        white-space: nowrap;
        background: var(--gray-50);
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .products-grid {
        grid-template-columns: 1fr;
    }

    .category-sidebar-list {
        gap: 6px;
    }

    .category-filter a {
        padding: 8px 14px;
        font-size: 12px;
    }
}

/* ---- Mobile Menu Overlay ---- */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* ---- Scroll to Top ---- */
.scroll-top {
    position: fixed;
    bottom: 164px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-red);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.5);
}

.float-phone {
    background: linear-gradient(135deg, #F87171, #DC2626);
}

.float-phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: #F87171;
    opacity: 0.4;
    z-index: -1;
    animation: pulseWave 2s infinite 0.5s;
}

.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 100;
}

.float-btn {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    cursor: pointer;
}

.float-whatsapp {
    background: linear-gradient(135deg, #F87171, #DC2626);
    font-size: 30px;
}

.float-whatsapp::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: #F87171;
    opacity: 0.4;
    z-index: -1;
    animation: pulseWave 2s infinite;
}


.float-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    color: var(--white);
}

/* Tooltip style */
.float-btn .tooltip-text {
    visibility: hidden;
    width: 130px;
    background-color: var(--gray-900);
    color: var(--white);
    text-align: center;
    border-radius: var(--radius-sm);
    padding: 6px 10px;
    position: absolute;
    z-index: 101;
    right: 70px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    transform: translateX(10px);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.float-btn .tooltip-text::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent var(--gray-900);
}

.float-btn:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

/* Pulse animation */
@keyframes pulseWave {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* ---- Ürün Vitrini (Yatay Kaydırmalı Showcase) ---- */
.pshowcase {
    position: relative;
    height: 100svh;
    overflow: hidden;
    background: #10243f;
}

.pshowcase-track {
    display: flex;
    height: 100%;
    will-change: transform;
}

.pshowcase-panel {
    position: relative;
    flex: 0 0 86vw;
    height: 100%;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    align-items: center;
    gap: clamp(1rem, 4vw, 4rem);
    padding: clamp(1.5rem, 5vw, 6rem);
    transform: scale(0.86);
    will-change: transform;
    color: #fff;
}

.pshowcase-panel__media {
    position: relative;
    height: 74%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.5);
    background: #fff;
}

.pshowcase-panel__img {
    position: absolute;
    inset: -14% -8%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    will-change: transform;
}

.pshowcase-panel__num {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--panel-accent, var(--red-300));
}

.pshowcase-panel__copy h3 {
    font-size: clamp(1.8rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0.6rem 0 1rem;
}

.pshowcase-panel__copy p {
    color: rgba(255, 255, 255, 0.7);
    max-width: 40ch;
    line-height: 1.6;
    font-size: 15px;
}

.pshowcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.6rem;
    color: white;
    background: linear-gradient(135deg, var(--red-600), var(--red-700));
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    padding: 0.85rem 1.4rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.35);
}

.pshowcase-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.pshowcase-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(220, 38, 38, 0.5);
}

.pshowcase-cta:hover svg {
    transform: translate(3px, -3px);
}

.pshowcase-hud {
    position: absolute;
    top: 2rem;
    right: 2.2rem;
    z-index: 6;
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    font-variant-numeric: tabular-nums;
    font-weight: 700;
    color: white;
}

.pshowcase-hud__index {
    font-size: 1.6rem;
    color: var(--red-300);
    letter-spacing: -0.02em;
}

.pshowcase-hud__sep,
.pshowcase-hud__total {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.pshowcase-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 6;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
}

.pshowcase-progress__bar {
    display: block;
    height: 100%;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: linear-gradient(90deg, var(--red-300), var(--red-600));
}

.pshowcase .line-mask {
    overflow: hidden;
}

@media (max-width: 768px) {
    .pshowcase-panel {
        flex-basis: 92vw;
        grid-template-columns: 1fr;
        align-content: center;
    }
    .pshowcase-panel__media {
        height: 44%;
    }
}

/* ---- Giriş (Hero yerine) - Slider ---- */
.pintro {
    position: relative;
    min-height: calc(100svh - 120px);
    overflow: hidden;
    background: linear-gradient(150deg, #ffffff 0%, var(--red-50) 38%, var(--red-100) 72%, var(--red-200) 100%);
    color: var(--gray-900);
}

.pintro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(220, 38, 38, 0.14) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.pintro::after {
    content: '';
    position: absolute;
    top: -25%;
    left: -20%;
    width: 45%;
    height: 150%;
    background: linear-gradient(75deg, transparent 0%, rgba(255, 255, 255, 0.65) 50%, transparent 100%);
    transform: translateX(220%) skewX(-15deg);
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    animation: pintroShine 3s ease-in-out infinite;
}

@keyframes pintroShine {
    0% { transform: translateX(220%) skewX(-15deg); opacity: 0; }
    8% { opacity: 0.8; }
    45% { transform: translateX(-220%) skewX(-15deg); opacity: 0.8; }
    55% { opacity: 0; }
    100% { transform: translateX(-220%) skewX(-15deg); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .pintro::after {
        display: none;
    }
}

.pintro-slides {
    position: absolute;
    inset: 0;
}

.pintro-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.pintro-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.pintro-slide__inner--center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.4rem;
    max-width: 900px;
    margin: 0 auto;
}

.pintro-slide--product {
    background-size: cover;
    background-position: center;
    padding: 0;
}

.pintro__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--red-100);
    color: var(--red-600);
    box-shadow: var(--shadow-sm);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
}

.pintro__title {
    font-size: clamp(2.2rem, 6vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--gray-900);
}

.pintro__desc {
    max-width: 640px;
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
}

.pintro__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.4rem;
}

.pintro__hint {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    z-index: 4;
    font-size: 13px;
    letter-spacing: 0.08em;
    color: var(--gray-400);
    animation: pintroBounce 2s ease-in-out infinite;
}

@keyframes pintroBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
    50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* Slider okları ve noktaları */
.pintro-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--red-100);
    background: var(--white);
    color: var(--red-600);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.pintro-arrow:hover {
    background: var(--red-50);
    border-color: var(--red-200);
}

.pintro-arrow--prev { left: 20px; }
.pintro-arrow--next { right: 20px; }

.pintro-dots {
    position: absolute;
    left: 50%;
    bottom: 64px;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pintro-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--red-200);
    cursor: pointer;
    transition: var(--transition-fast);
}

.pintro-dot.is-active {
    width: 24px;
    border-radius: 4px;
    background: var(--red-600);
}

@media (max-width: 768px) {
    .pintro {
        min-height: calc(100svh - 66px);
    }

    .pintro-slide {
        padding: 2.5rem 1.25rem 4.5rem;
    }

    .pintro-arrow {
        width: 36px;
        height: 36px;
    }

    .pintro-arrow--prev { left: 10px; }
    .pintro-arrow--next { right: 10px; }

    .pintro-dots {
        bottom: 48px;
    }
}
