/* Reçel Dükkanı - Ana Stil Dosyası */

/* ══════════════════════════════════════════
   HAVA DURUMU TICKER
══════════════════════════════════════════ */
.weather-ticker {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: 56px;
    background: linear-gradient(90deg, #1a4a6b 0%, #1e6091 35%, #2980b9 65%, #1a4a6b 100%);
    background-size: 200% 100%;
    animation: tickerBgShift 6s linear infinite;
    z-index: 999;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26,74,107,0.5);
    border-bottom: 1px solid rgba(255,255,255,0.12);
}
@keyframes tickerBgShift {
    0%   { background-position: 0% 0%; }
    100% { background-position: 200% 0%; }
}
.ticker-inner {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.ticker-label {
    flex-shrink: 0;
    background: rgba(0,0,0,0.28);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 0 26px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
    border-right: 2px solid rgba(255,255,255,0.2);
}
.ticker-track {
    flex: 1;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}
.ticker-scroll {
    display: flex;
    align-items: center;
    gap: 50px;
    white-space: nowrap;
    animation: tickerScroll 45s linear infinite;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    padding-left: 30px;
}
.ticker-scroll:hover { animation-play-state: paused; cursor: default; }
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}
.ticker-item strong { font-weight: 700; color: #ffe066; }
.ticker-sep { color: rgba(255,255,255,0.35); font-size: 18px; line-height: 1; }
.ticker-loading { color: rgba(255,255,255,0.75); font-size: 13px; padding-left: 24px; }

/* ── Hero margin: header(80) + ticker(56) ── */
.hero { margin-top: 136px !important; }

/* ══════════════════════════════════════════
   HERO - MARKALICIVI YENİ TASARIM
══════════════════════════════════════════ */
.hero-canvas { display: none; } /* meyve kaldırıldı */

.hero {
    background: linear-gradient(135deg,
        #fff8f0 0%,
        #ffe4cc 25%,
        #ffd0a8 50%,
        #ffbc84 75%,
        #f5a05a 100%
    ) !important;
    background-size: 300% 300% !important;
    animation: heroWarmPulse 10s ease infinite !important;
}
@keyframes heroWarmPulse {
    0%,100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* Dekoratif dalga deseni */
.hero-grid-layer {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.18;
    border-radius: inherit;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23e8562a' fill-opacity='0.25'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3Ccircle cx='0' cy='0' r='4'/%3E%3Ccircle cx='60' cy='0' r='4'/%3E%3Ccircle cx='0' cy='60' r='4'/%3E%3Ccircle cx='60' cy='60' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-gradient-layer {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(ellipse 60% 40% at 15% 25%, rgba(255,255,255,0.55) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 85% 75%, rgba(200,80,20,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.slider-container { position: relative; z-index: 3; overflow: hidden; }

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #e9ecef;
}

html {
    scroll-behavior: smooth;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0 20px;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.12));
}

.footer-logo-img {
    height: 60px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B6B, #7FFFD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 25px;
    position: relative;
    display: block;
}

.nav-menu a:hover {
    color: #FF6B6B;
    background: rgba(255, 107, 107, 0.1);
}

.nav-menu a.active {
    color: white;
    background: linear-gradient(135deg, #E57373, #9090CF);
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 107, 107, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #555;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

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

/* Hero Section with Slider */
.hero {
    margin-top: 80px;
    height: calc(100vh - 136px);
    min-height: 600px;
    background: linear-gradient(160deg, #1a0a00 0%, #3d1a08 40%, #5c2a10 70%, #2d0f00 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    padding: 0;
}

/* Dekoratif blob'lar */
.hero-bg-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
    width: 500px; height: 500px;
    background: radial-gradient(circle, #e8562a 0%, transparent 70%);
    top: -100px; left: -100px;
    animation-delay: 0s;
}
.blob-2 {
    width: 400px; height: 400px;
    background: radial-gradient(circle, #ffab5e 0%, transparent 70%);
    bottom: -80px; right: -80px;
    animation-delay: -3s;
}
.blob-3 {
    width: 300px; height: 300px;
    background: radial-gradient(circle, #c8400a 0%, transparent 70%);
    top: 50%; left: 50%; transform: translate(-50%,-50%);
    animation-delay: -5s;
}
@keyframes blobFloat {
    0%,100% { transform: scale(1) translate(0,0); }
    33%      { transform: scale(1.08) translate(20px,-15px); }
    66%      { transform: scale(0.95) translate(-15px,20px); }
}
.blob-3 { animation-name: blobFloat3; }
@keyframes blobFloat3 {
    0%,100% { transform: translate(-50%,-50%) scale(1); }
    50%      { transform: translate(-50%,-50%) scale(1.15); }
}

/* Skeleton loader */
.slider-skeleton {
    position: absolute;
    inset: 0;
    z-index: 10;
    background: linear-gradient(135deg, #2a0e04, #4a1a08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    transition: opacity 0.5s ease;
}
.slider-skeleton.hidden { opacity: 0; pointer-events: none; }

.skeleton-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(232, 86, 42, 0.12) 40%,
        rgba(255, 171, 94, 0.18) 50%,
        rgba(232, 86, 42, 0.12) 60%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: skeletonMove 1.6s infinite linear;
}
@keyframes skeletonMove {
    0%   { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.skeleton-logo {
    font-size: 72px;
    animation: skeletonPulse 1.6s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 0 30px rgba(232, 86, 42, 0.6));
}
@keyframes skeletonPulse {
    0%,100% { transform: scale(1);    opacity: 0.8; }
    50%      { transform: scale(1.12); opacity: 1; }
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
    perspective: 1500px;
    transform-style: preserve-3d;
    overflow: hidden;
    margin-right: -1px;
}

.slider-stage {
    width: 100%;
    height: calc(100% - 100px);
    position: relative;
    display: flex;
    transform-style: preserve-3d;
}

.slice-container {
    flex: 1;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    overflow: hidden;
}

.slice-cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transform-origin: center center;
}

.slice-cube {
    transform: translateZ(-300px) rotateX(0deg);
}

.slice-cube.rotate-1 {
    transform: translateZ(-300px) rotateX(90deg);
}

.slice-cube.rotate-2 {
    transform: translateZ(-300px) rotateX(180deg);
}

.slice-cube.rotate-3 {
    transform: translateZ(-300px) rotateX(270deg);
}

.slice-face {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    backface-visibility: hidden;
}

.slice-face.face-1 {
    transform: rotateX(0deg) translateZ(300px);
}

.slice-face.face-2 {
    transform: rotateX(-90deg) translateZ(300px);
}

.slice-face.face-3 {
    transform: rotateX(-180deg) translateZ(300px);
}

.slice-face.face-4 {
    transform: rotateX(-270deg) translateZ(300px);
}

.slice-image {
    position: absolute;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slice-container:nth-child(1) .slice-cube { transition-delay: 0s; }
.slice-container:nth-child(2) .slice-cube { transition-delay: 0.04s; }
.slice-container:nth-child(3) .slice-cube { transition-delay: 0.08s; }
.slice-container:nth-child(4) .slice-cube { transition-delay: 0.12s; }
.slice-container:nth-child(5) .slice-cube { transition-delay: 0.16s; }
.slice-container:nth-child(6) .slice-cube { transition-delay: 0.20s; }
.slice-container:nth-child(7) .slice-cube { transition-delay: 0.24s; }
.slice-container:nth-child(8) .slice-cube { transition-delay: 0.28s; }
.slice-container:nth-child(9) .slice-cube { transition-delay: 0.32s; }
.slice-container:nth-child(10) .slice-cube { transition-delay: 0.36s; }

.text-overlay {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    padding: 28px 44px 24px;
    background: linear-gradient(to top, rgba(20,6,0,0.88) 0%, rgba(20,6,0,0.5) 70%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    z-index: 102;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.text-overlay.hiding {
    opacity: 0;
    transform: translateY(8px);
}

.overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(232, 86, 42, 0.25);
    border: 1px solid rgba(232, 86, 42, 0.5);
    color: #ffb98a;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    width: fit-content;
    margin-bottom: 4px;
}

.slide-title {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
    background: linear-gradient(135deg, #fff 60%, #ffb98a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-description {
    color: rgba(255,220,190,0.88);
    font-size: 15px;
    line-height: 1.55;
    margin: 0;
    max-width: 600px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 15px;
    z-index: 103;
}

.control-btn {
    width: 65px;
    height: 65px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: white;
    font-size: 26px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    padding: 0;
    position: relative;
}

.control-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
    border-color: white;
}

.nav-arrow {
    position: absolute;
    top: calc(50% - 50px);
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: white;
    z-index: 102;
    opacity: 0.8;
    padding: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-arrow:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    transition: transform 0.2s ease;
}

.nav-arrow.prev:before {
    border-width: 13px 15px 13px 0;
    border-color: transparent white transparent transparent;
    margin-right: 2px;
}

.nav-arrow.next:before {
    border-width: 13px 0 13px 15px;
    border-color: transparent transparent transparent white;
    margin-left: 2px;
}

.nav-arrow:hover:not(:disabled) {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
    border-color: white;
}

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

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

.play-pause-btn {
    position: relative;
}

.play-pause-btn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    z-index: -1;
    animation: rotate 1.5s linear infinite;
}

.play-pause-btn:not(.paused)::before {
    opacity: 1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.play-icon, .pause-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.play-icon:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent white;
    margin-left: 4px;
}

.pause-icon:before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: linear-gradient(to right, white 35%, transparent 35%, transparent 65%, white 65%);
}

.play-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.pause-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-pause-btn.paused .play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.play-pause-btn.paused .pause-icon {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
}

.dots {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 103;
}

.thumbnails-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    z-index: 104;
    padding: 10px 0;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
}

.thumbnail {
    width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    background-size: cover;
    background-position: center;
    position: relative;
}

.thumbnail::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.thumbnail:hover::after {
    background: rgba(0, 0, 0, 0.1);
}

.thumbnail.active {
    border-color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.thumbnail.active::after {
    background: rgba(0, 0, 0, 0);
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    cursor: pointer;
    transition: all 0.2s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.3);
}

.dot.active {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
}

.progress-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: rgba(0, 0, 0, 0.2);
    z-index: 101;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #FF6B6B, #FFAB91, #7FFFD4);
    width: 0;
    animation: none;
    box-shadow: 0 0 10px rgba(255, 107, 107, 0.5);
}

.progress-bar.active {
    animation: fillProgress 5s linear forwards;
}

@keyframes fillProgress {
    from { width: 0%; }
    to { width: 100%; }
}

.progress-bar.reset {
    animation: none;
    width: 0;
}

/* Section Styles */
.section {
    padding: 120px 20px;
    position: relative;
}

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

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #FF6B6B, #FFAB91, #7FFFD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.services {
    background: transparent;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%231e3c72" opacity="0.05"/><circle cx="80" cy="80" r="1" fill="%230ea5e9" opacity="0.05"/><circle cx="40" cy="60" r="1" fill="%231e3c72" opacity="0.03"/><circle cx="70" cy="30" r="1" fill="%230ea5e9" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.services-container {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.services-tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-tab {
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 107, 107, 0.1);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.service-tab::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #FF6B6B, #7FFFD4);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.service-tab:hover::before,
.service-tab.active::before {
    transform: scaleY(1);
}

.service-tab:hover {
    transform: translateX(10px);
    border-color: rgba(255, 107, 107, 0.3);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.15);
}

.service-tab.active {
    background: rgba(229, 115, 115, 0.08);
    border-color: rgba(144, 144, 207, 0.3);
    transform: translateX(15px);
    box-shadow: 0 15px 40px rgba(144, 144, 207, 0.2);
}

.service-tab-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
}

.service-tab h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #FF6B6B;
    font-weight: 600;
}

.service-tab p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

.services-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 60px 50px;
    border: 1px solid rgba(255, 107, 107, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.services-content::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(127, 255, 212, 0.1));
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.service-content {
    display: none;
    position: relative;
    z-index: 2;
}

.service-content.active {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.service-content-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B6B, #FF8A65);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #FF6B6B;
    font-weight: 700;
}

.service-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-top: 30px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: #555;
    font-size: 16px;
}

.service-features li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #7FFFD4;
    font-weight: bold;
    font-size: 18px;
}

/* About Section - Futuristic Design */
.about {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(127, 255, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 171, 145, 0.03) 50%, transparent 70%);
}

.about .section-title {
    background: linear-gradient(135deg, #7FFFD4, #FFAB91, #FF6B6B);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about .section-subtitle {
    color: #94a3b8;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.about-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #1e3c72, #0ea5e9, #38bdf8);
}

.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 50px;
}

.timeline-dot {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #0ea5e9, #38bdf8);
    border-radius: 50%;
    border: 3px solid #0f172a;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.5);
}

.timeline-year {
    font-size: 14px;
    color: #0ea5e9;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline-title {
    font-size: 20px;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline-description {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
}

.about-tech {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tech-card {
    background: rgba(255, 107, 107, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(127, 255, 212, 0.2);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(127, 255, 212, 0.1), transparent);
    transition: left 0.8s ease;
}

.tech-card:hover::before {
    left: 100%;
}

.tech-card:hover {
    border-color: rgba(127, 255, 212, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(127, 255, 212, 0.1);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B6B, #FF8A65);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.tech-title {
    font-size: 22px;
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.tech-description {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
}

.stats-futuristic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 80px;
    position: relative;
    z-index: 2;
}

.stat-futuristic {
    text-align: center;
    padding: 30px 20px;
    background: rgba(127, 255, 212, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(127, 255, 212, 0.2);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.stat-futuristic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #FF6B6B, #FFAB91, #7FFFD4);
}

.stat-futuristic h4 {
    font-size: 32px;
    background: linear-gradient(135deg, #FFAB91, #7FFFD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    font-weight: 700;
}

.stat-futuristic p {
    font-size: 14px;
    color: #94a3b8;
    margin: 0;
    font-weight: 500;
}

/* Contact Section */
.contact {
    background: transparent;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 60px 50px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid rgba(30, 60, 114, 0.1);
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B6B;
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
    background: white;
}

.form-group textarea {
    height: 140px;
    resize: vertical;
    font-family: inherit;
    font-weight: 400;
    line-height: 1.5;
}

.submit-btn {
    background: linear-gradient(135deg, #FF6B6B, #FF8A65);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 107, 107, 0.4);
}

.contact-info {
    padding: 60px 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
/* WhatsApp Butonu */
.whatsapp-btn {
    flex-shrink: 0;
    margin-left: 16px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.whatsapp-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.6);
}
.whatsapp-btn svg {
    display: block;
}


.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF6B6B, #FF8A65);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.3);
}

.contact-details {
    flex: 1;
    text-align: left;
}

.contact-details h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
    text-align: left;
}

.contact-details p {
    font-size: 16px;
    color: #666;
    margin: 0;
    line-height: 1.6;
    text-align: left;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
    color: white;
    padding: 60px 20px 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(127, 255, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 171, 145, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-logo-text {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B6B, #7FFFD4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-description {
    color: #B0BEC5;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B0BEC5;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #FF6B6B, #7FFFD4);
    color: white;
    transform: translateY(-3px);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h4 {
    color: white;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #FF6B6B, #7FFFD4);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #B0BEC5;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.footer-link:hover {
    color: #7FFFD4;
    padding-left: 10px;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: #7FFFD4;
    transition: width 0.3s ease;
}

.footer-link:hover::before {
    width: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 14px;
    color: #90A4AE;
}

.footer-credits {
    font-size: 14px;
    color: #90A4AE;
}

.footer-credits a {
    color: #FF6B6B;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credits a:hover {
    color: #7FFFD4;
    text-decoration: underline;
}

/* Mobile Styles */
/* ── Why Us Section ── */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 38px 28px 32px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(230, 90, 40, 0.07);
    border: 1.5px solid rgba(230, 90, 40, 0.08);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease calc(var(--delay, 0s)),
                transform 0.6s ease calc(var(--delay, 0s)),
                box-shadow 0.3s ease;
}

.why-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    box-shadow: 0 16px 48px rgba(230, 90, 40, 0.18);
    transform: translateY(-6px);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #e8562a, #ffab5e, #e8562a);
    background-size: 200% 100%;
    animation: shimmer 2.5s infinite linear;
}

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

.why-icon-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin-bottom: 20px;
}

.why-emoji {
    font-size: 38px;
    position: relative;
    z-index: 1;
    display: block;
    animation: float 3s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes float {
    0%, 100% { transform: translateY(0);    }
    50%       { transform: translateY(-6px); }
}

.why-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.why-ring circle {
    fill: none;
    stroke: url(#ringGrad);
    stroke-width: 2.5;
    stroke-dasharray: 276;
    stroke-dashoffset: 276;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s ease calc(var(--delay, 0s));
}

.why-card.visible .why-ring circle {
    stroke-dashoffset: 0;
}

.why-title {
    font-size: 17px;
    font-weight: 700;
    color: #2d1a0e;
    margin-bottom: 10px;
}

.why-desc {
    font-size: 14px;
    color: #7a5c4a;
    line-height: 1.65;
    margin: 0;
}

/* Stat counter */
.stat-counter {
    transition: none;
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

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

/* ── Products Section ── */
.products {
    background: transparent;
    padding: 100px 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

/* Son kart (17.) 4'lü grid'de ortada olsun */
@media (min-width: 481px) {
    .product-card--last {
        grid-column: 2 / 4;
    }
}

.product-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    opacity: 1;
    translate: none;
}

.product-card.card-visible {
    opacity: 1;
    translate: 0 0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
    opacity: 1;
}

.product-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.product-title {
    font-size: 18px;
    font-weight: 700;
    color: #2d1a0e;
    margin: 18px 16px 8px;
    text-align: center;
}

.product-description {
    font-size: 14px;
    color: #6b5044;
    text-align: center;
    padding: 0 16px;
    line-height: 1.6;
    flex: 1;
}

.satın-al-btn {
    display: inline-block;
    margin: 18px auto 22px;
    padding: 10px 28px;
    background: linear-gradient(135deg, #e8562a, #ff8c5a);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    letter-spacing: 0.3px;
    text-decoration: none;
    text-align: center;
}

.satın-al-btn:hover {
    background: linear-gradient(135deg, #c94420, #e8562a);
    transform: scale(1.05);
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 30px 20px;
        border-radius: 0;
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 10px 0;
        width: 100%;
    }

    .nav-menu a {
        width: 100%;
        text-align: center;
        padding: 15px 30px;
        border-radius: 15px;
    }

    .hamburger {
        display: flex;
    }

    .logo-text {
        font-size: 24px;
    }

    .logo-svg {
        width: 35px;
        height: 35px;
    }

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

    .slider-stage {
        height: calc(100% - 90px);
    }

    .text-overlay {
        padding: 20px 20px 24px;
        bottom: 0;
    }

    .slide-title {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .slide-description {
        font-size: 14px;
        line-height: 1.3;
    }

    .nav-arrow {
        width: 48px;
        height: 48px;
        top: calc(50% - 50px);
    }

    .nav-arrow.prev {
        left: 15px;
    }

    .nav-arrow.next {
        right: 15px;
    }

    .control-btn {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .controls {
        top: 15px;
        right: 15px;
        gap: 12px;
    }

    .dots {
        top: 15px;
        gap: 12px;
    }

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

    .thumbnail {
        width: 80px;
        height: 53px;
    }

    .thumbnails-container {
        gap: 8px;
        bottom: 0;
        padding: 8px 0;
    }

    .slice-cube {
        transform: translateZ(-150px) rotateX(0deg);
    }

    .slice-cube.rotate-1 {
        transform: translateZ(-150px) rotateX(90deg);
    }

    .slice-cube.rotate-2 {
        transform: translateZ(-150px) rotateX(180deg);
    }

    .slice-cube.rotate-3 {
        transform: translateZ(-150px) rotateX(270deg);
    }

    .slice-face.face-1 {
        transform: rotateX(0deg) translateZ(150px);
    }

    .slice-face.face-2 {
        transform: rotateX(-90deg) translateZ(150px);
    }

    .slice-face.face-3 {
        transform: rotateX(-180deg) translateZ(150px);
    }

    .slice-face.face-4 {
        transform: rotateX(-270deg) translateZ(150px);
    }

    .section {
        padding: 80px 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .services-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-tabs {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .service-tab:hover,
    .service-tab.active {
        transform: translateX(0);
    }

    .services-content {
        padding: 40px 30px;
    }

    .service-content h2 {
        font-size: 28px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .timeline-item {
        padding-left: 60px;
        margin-bottom: 40px;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-dot {
        left: 10px;
    }

    .stats-futuristic {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 50px;
    }

    .stat-futuristic {
        padding: 25px 15px;
    }

    .stat-futuristic h4 {
        font-size: 24px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 40px 30px;
    }

    .contact-info {
        padding: 40px 20px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

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

    .footer-copyright,
    .footer-credits {
        font-size: 13px;
    }

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

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .product-card--last {
        grid-column: 1 / -1;
    }

    .product-image {
        height: 160px;
    }

    .product-title {
        font-size: 13px;
        margin: 10px 8px 4px;
    }

    .product-description {
        font-size: 11px;
        padding: 0 8px;
    }

    .satın-al-btn {
        font-size: 12px;
        padding: 8px 16px;
        margin: 10px auto 14px;
    }
}
/* ── Responsive: ticker + hero margin ── */
@media (max-width: 768px) {
    .weather-ticker { height: 42px; top: 70px; font-size: 13px; }
    .hero { margin-top: 112px !important; height: calc(100vh - 112px); }
    .ticker-label { font-size: 11px; padding: 0 10px; }
    .ticker-scroll { font-size: 12px; }
}

/* ════════════════════════════════════════════
   ÜRÜN KARTLARI - KESİN DÜZELTMELER
   ════════════════════════════════════════════ */

/* Kartlar anında görünür - hafif fade-in animasyonu */
.product-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.35s ease, transform 0.35s ease, box-shadow 0.3s ease !important;
}

.product-card.card-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Hover efekti korunuyor */
.product-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.14) !important;
}

/* ════════════════════════════════════════════
   MOBİL GRID - KESİN DÜZELTME
   Tüm telefon boyutları için 2 sütun
   ════════════════════════════════════════════ */
@media screen and (max-width: 600px) {
    .products-grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        padding: 0 4px;
    }

    .product-card--last {
        grid-column: span 2 !important;
    }

    .product-image {
        height: 150px !important;
    }

    .product-title {
        font-size: 13px !important;
        margin: 10px 8px 5px !important;
    }

    .product-description {
        font-size: 11px !important;
        padding: 0 8px !important;
        line-height: 1.4 !important;
    }

    .satın-al-btn {
        font-size: 12px !important;
        padding: 8px 14px !important;
        margin: 10px auto 14px !important;
    }

    .section-container {
        padding: 0 12px !important;
    }
}
