/* ========================================
   MEYLİVA - DOĞANIN SEPETİ
   Ana CSS Dosyası - Tüm Sayfalar İçin
   ======================================== */

/* ---------- ROOT DEĞİŞKENLER ---------- */
:root {
    --meyliva-green: #2E7D32;
    --meyliva-orange: #F57C00;
    --meyliva-sun: #FBC02D;
    --meyliva-soil: #5D4037;
    --meyliva-text: #333333;
    --meyliva-text-light: #666666;
    --meyliva-bg-light: #FFF8F0;
    --meyliva-white: #FFFFFF;
    --meyliva-gray: #F5F5F5;
    --meyliva-border: #E0E0E0;
    
    --font-poppins: 'Poppins', sans-serif;
    --font-quicksand: 'Quicksand', sans-serif;
    --font-opensans: 'Open Sans', sans-serif;
    
    --transition-fast: all 0.2s ease;
    --transition-smooth: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* ---------- RESET ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-opensans);
    color: var(--meyliva-text);
    background: var(--meyliva-bg-light);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, .logo-text, .btn-primary, .btn-outline {
    font-family: var(--font-poppins);
}

.section-title {
    font-family: var(--font-quicksand);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--meyliva-orange);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--meyliva-green);
    margin-bottom: 0.5rem;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--meyliva-text-light);
}

.highlight-green { color: var(--meyliva-green); }
.highlight-orange { color: var(--meyliva-orange); }
.highlight-sun { color: var(--meyliva-sun); }

/* ---------- BUTTONS ---------- */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--meyliva-orange);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    text-align: center;
    font-size: 1rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 124, 0, 0.3);
    background: #E65100;
}

.btn-outline {
    display: inline-block;
    padding: 12px 28px;
    background: transparent;
    color: var(--meyliva-green);
    border: 2px solid var(--meyliva-green);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    text-align: center;
}

.btn-outline:hover {
    background: var(--meyliva-green);
    color: white;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(46, 125, 50, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--meyliva-green);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-quicksand);
    text-decoration: none;
    color: var(--meyliva-text);
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--meyliva-orange);
}

.cart-icon-btn {
    position: relative;
    color: var(--meyliva-green);
    font-size: 1.5rem;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.cart-icon-btn:hover {
    color: var(--meyliva-orange);
}

.cart-badge {
    position: absolute;
    top: -10px;
    right: -12px;
    background: var(--meyliva-orange);
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

/* ---------- PAGE HEADER ---------- */
.page-header {
    padding: 120px 0 50px 0;
    background: linear-gradient(135deg, var(--meyliva-bg-light), #FFF0E0);
    text-align: center;
}

/* ---------- HERO SECTION ---------- */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a3a2a 0%, var(--meyliva-green) 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.sun-animation {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--meyliva-sun), #FF9800);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    animation: sunRise 2s ease-out forwards;
}

@keyframes sunRise {
    0% { bottom: -100px; opacity: 0; }
    100% { bottom: 5vh; opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-logo-img {
    width: 300px;
    max-width: 80%;
    height: auto;
    margin: 0 auto;
    animation: heroLogoReveal 1.2s ease-out forwards;
}

@keyframes heroLogoReveal {
    0% { opacity: 0; transform: scale(0.5) translateY(30px); }
    40% { opacity: 1; transform: scale(1.05) translateY(-5px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

.hero-subtitle {
    font-family: var(--font-quicksand);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 1.5rem;
    animation: fadeInUp 1s ease 0.5s forwards;
    opacity: 0;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.2rem;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

/* ---------- STORYTELLING ---------- */
.story-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #FFF8F0 0%, #FFF0E0 100%);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-visual {
    text-align: center;
}

.floating-basket {
    animation: floatBasket 3s ease-in-out infinite;
}

@keyframes floatBasket {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
}

.story-logo {
    max-width: 250px;
    width: 100%;
    height: auto;
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin: 1.5rem 0;
}

.story-icons {
    list-style: none;
    padding: 0;
}

.story-icons li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-icons i {
    width: 32px;
    font-size: 1.3rem;
}

/* ---------- PURITY SECTION ---------- */
.purity-section {
    padding: 80px 0;
    background: var(--meyliva-white);
}

.purity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.purity-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 24px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.purity-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.water-drop-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(145deg, #4FC3F7, #0288D1);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    margin: 0 auto 1.5rem;
}

.purity-title {
    font-family: var(--font-poppins);
    color: var(--meyliva-green);
    margin-bottom: 1rem;
}

/* ---------- MEVSİMSEL DÖNGÜ ---------- */
.season-cycle {
    padding: 80px 0;
    background: var(--meyliva-gray);
}

.cycle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.cycle-item {
    text-align: center;
    padding: 2rem;
    border-radius: 32px;
    transition: var(--transition-smooth);
    cursor: pointer;
    background: white;
}

.cycle-item i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cycle-item h4 {
    font-family: var(--font-poppins);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.green-glow:hover { background: linear-gradient(145deg, #E8F5E9, #C8E6C9); transform: translateY(-5px); }
.sun-glow:hover { background: linear-gradient(145deg, #FFF8E1, #FFECB3); transform: translateY(-5px); }
.orange-glow:hover { background: linear-gradient(145deg, #FFF3E0, #FFE0B2); transform: translateY(-5px); }

/* ---------- ÜRÜN KARTLARI (ESKİ) ---------- */
.featured-section, .products-section {
    padding: 80px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.product-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-8px);
    background: radial-gradient(circle at 30% 20%, rgba(46, 125, 50, 0.08), rgba(251, 192, 45, 0.04));
    box-shadow: var(--shadow-xl);
}

.product-img {
    width: 100%;
    height: 180px;
    background: linear-gradient(145deg, #E8F5E9, #C8E6C9);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    margin-bottom: 1rem;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--meyliva-sun);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}

.product-name {
    font-family: var(--font-poppins);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--meyliva-text-light);
    margin: 0.5rem 0;
}

.product-price {
    color: var(--meyliva-orange);
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.btn-add-to-cart {
    margin-top: 1rem;
    padding: 10px 20px;
    background: var(--meyliva-green);
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-poppins);
    transition: var(--transition-smooth);
    width: 100%;
}

.btn-add-to-cart:hover {
    background: var(--meyliva-orange);
    transform: scale(1.02);
}

/* ---------- YENİ KART TASARIMI (FLY EFFECT) ---------- */
.card {
    --card-bg: #ffffff;
    --card-accent: #2E7D32;
    width: 100%;
    max-width: 300px;
    background: var(--card-bg);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(46, 125, 50, 0.1);
    cursor: pointer;
}

.card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0) 40%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0) 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.card__glow {
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle at 50% 0%, rgba(46,125,50,0.15) 0%, rgba(46,125,50,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.card__content {
    padding: 1.25rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.card__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #F57C00;
    color: white;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 600;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.card__image {
    width: 100%;
    height: 140px;
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.card__title {
    color: var(--meyliva-text);
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.card__rating {
    font-size: 0.7rem;
    color: #FBC02D;
}

.card__description {
    font-size: 0.75rem;
    color: var(--meyliva-text-light);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.card__stock {
    font-size: 0.7rem;
    color: #2E7D32;
}

.card__stock.out {
    color: #f44336;
}

.card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.card__price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #F57C00;
}

.card__button {
    width: 36px;
    height: 36px;
    background: var(--card-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.card__wishlist {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.card__wishlist.active {
    color: #f44336;
    background: #ffeaea;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.card:hover .card__shine {
    opacity: 1;
    animation: shine 3s infinite;
}

.card:hover .card__glow {
    opacity: 1;
}

.card:hover .card__badge {
    transform: scale(1);
    opacity: 1;
}

.card:hover .card__image {
    transform: translateY(-5px) scale(1.03);
}

.card:hover .card__title {
    color: var(--card-accent);
}

.card:hover .card__button {
    transform: scale(1);
    box-shadow: 0 0 0 4px rgba(46, 125, 50, 0.2);
}

@keyframes shine {
    0% { background-position: -100% 0; }
    100% { background-position: 200% 0; }
}

/* ---------- FİLTRE BÖLÜMÜ ---------- */
.filter-section {
    padding: 40px 0 20px;
    background: white;
}

.search-wrapper {
    margin-bottom: 2rem;
}

.search-box {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
}

.search-input {
    width: 100%;
    padding: 14px 20px 14px 48px;
    border: 2px solid #E0E0E0;
    border-radius: 50px;
    font-size: 1rem;
}

.search-input:focus {
    outline: none;
    border-color: var(--meyliva-green);
}

.clear-search {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
}

.filter-title {
    text-align: center;
    margin-bottom: 2rem;
}

.filter-title h3 {
    font-size: 1.5rem;
    color: var(--meyliva-green);
    margin-bottom: 0.5rem;
}

.filter-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #E0E0E0;
    min-width: 90px;
}

.filter-card:hover {
    transform: translateY(-3px);
    border-color: var(--meyliva-green);
}

.filter-card.active {
    background: var(--meyliva-green);
    border-color: var(--meyliva-green);
}

.filter-card.active .filter-icon,
.filter-card.active .filter-name,
.filter-card.active .filter-count {
    color: white;
}

.filter-icon {
    font-size: 1.5rem;
}

.filter-name {
    font-weight: 600;
    font-size: 0.85rem;
}

.filter-count {
    font-size: 0.7rem;
    color: #999;
}

.price-filter {
    background: var(--meyliva-gray);
    padding: 1rem;
    border-radius: 20px;
    margin: 1.5rem 0;
}

.price-filter-title {
    font-weight: 600;
    margin-bottom: 1rem;
}

.price-range {
    text-align: center;
}

.price-range input[type="range"] {
    width: 45%;
    margin: 0 2%;
}

.price-values {
    margin-top: 0.5rem;
    font-weight: 600;
    color: var(--meyliva-green);
}

.active-filters {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.filter-tag {
    background: var(--meyliva-gray);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.filter-tag:hover {
    background: var(--meyliva-orange);
    color: white;
}

.clear-all-filters {
    background: none;
    border: none;
    color: var(--meyliva-orange);
    cursor: pointer;
    font-size: 0.8rem;
}

.filter-result-info {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #888;
}

/* ---------- SAYFALAMA ---------- */
.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    background: white;
    border: 1px solid #E0E0E0;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
}

.page-btn.active {
    background: var(--meyliva-green);
    color: white;
}

.page-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ---------- SEPET İKONU ANİMASYONU ---------- */
.cart-shake {
    animation: cartShake 0.4s ease-in-out;
}

@keyframes cartShake {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

/* ---------- TOAST MESAJI ---------- */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2E7D32, #1B5E20);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    z-index: 10000;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    animation: toastSlideUp 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

@keyframes toastSlideUp {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ---------- SU DAMLASI ---------- */
.water-drop-effect {
    position: fixed;
    width: 6px;
    height: 6px;
    background: rgba(79, 195, 247, 0.6);
    border-radius: 50%;
    pointer-events: none;
    animation: dropFall 1s ease-in forwards;
    z-index: 9999;
}

@keyframes dropFall {
    0% { transform: translateY(-30px) scale(0); opacity: 0.8; }
    100% { transform: translateY(100vh) scale(1); opacity: 0; }
}

/* ---------- LOADER ---------- */
.meyliva-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a3a2a 0%, #2E7D32 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
}

.meyliva-loader-overlay.hide {
    opacity: 0;
    visibility: hidden;
}

.meyliva-loader {
    text-align: center;
}

.loader-basket {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    animation: basketFloat 1.2s ease-in-out infinite alternate;
}

.basket-icon {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 30% 70% 45% 55% / 55% 40% 60% 45%;
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border: 2px solid rgba(251, 192, 45, 0.6);
}

@keyframes basketFloat {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-15px); }
}

.loader-seedling {
    margin-top: 30px;
    position: relative;
    display: inline-block;
}

.soil {
    width: 100px;
    height: 8px;
    background: #5D4037;
    border-radius: 4px;
    margin: 0 auto;
    overflow: hidden;
}

.soil::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #8D6E63;
    animation: soilGlow 1.5s infinite;
}

@keyframes soilGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.sprout {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 0;
    background: #66BB6A;
    animation: growSprout 1.2s ease-out forwards;
}
/* ========== ADIM ÇUBUĞU ========== */
.step-container {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.step-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step {
    text-align: center;
}

.step span {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: 600;
    color: #999;
}

.step.active span {
    background: var(--meyliva-green);
    color: white;
}

.step label {
    font-size: 12px;
    color: #999;
}

.step.active label {
    color: var(--meyliva-green);
    font-weight: 500;
}

.step-line {
    width: 60px;
    height: 2px;
    background: #eee;
    margin: 0 15px;
}

/* ========== ANA SEPET ALANI ========== */
.cart-main {
    padding: 50px 0;
    background: #F8F9FA;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 30px;
}

/* Ürün Listesi */
.cart-products {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.cart-table-header {
    display: grid;
    grid-template-columns: 3fr 1fr 1.2fr 1fr 0.5fr;
    padding-bottom: 16px;
    border-bottom: 2px solid #F0F0F0;
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.cart-item {
    display: grid;
    grid-template-columns: 3fr 1fr 1.2fr 1fr 0.5fr;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #F0F0F0;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.item-icon {
    width: 55px;
    height: 55px;
    background: #F8F9FA;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.item-name {
    font-weight: 600;
    margin-bottom: 4px;
}

.item-badge {
    font-size: 11px;
    color: var(--meyliva-orange);
}

.item-price, .item-total {
    font-weight: 500;
}

.item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
}

.item-quantity .qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #E0E0E0;
    background: white;
    cursor: pointer;
    font-size: 16px;
}

.item-quantity .qty-btn:hover {
    background: var(--meyliva-green);
    color: white;
}

.item-quantity span {
    min-width: 30px;
    text-align: center;
    font-weight: 500;
}

.item-remove {
    background: none;
    border: none;
    color: #CCC;
    cursor: pointer;
    font-size: 16px;
}

.item-remove:hover {
    color: #f44336;
}

/* Boş Sepet */
.empty-cart {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-cart h3 {
    margin-bottom: 10px;
}

.empty-cart p {
    color: #888;
    margin-bottom: 24px;
}

/* Sipariş Özeti */
.cart-summary {
    background: white;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    position: sticky;
    top: 100px;
}

.cart-summary h3 {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #F0F0F0;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
}

.summary-row.total {
    border-top: 2px solid #F0F0F0;
    margin-top: 8px;
    padding-top: 16px;
    font-weight: 700;
    font-size: 18px;
}

.free-shipping-box {
    background: #E8F5E9;
    padding: 10px 12px;
    border-radius: 12px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 12px 0;
    color: #2E7D32;
}

.coupon-box {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.coupon-box input {
    flex: 1;
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    font-size: 14px;
}

.coupon-box button {
    padding: 0 20px;
    background: #2E7D32;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.coupon-box button:hover {
    background: #1B5E20;
}

.coupon-message {
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.coupon-message .success { color: #2E7D32; }
.coupon-message .error { color: #f44336; }

.checkout-button {
    width: 100%;
    padding: 14px;
    background: #F57C00;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    margin: 15px 0;
}

.checkout-button:hover {
    background: #E65100;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    font-size: 22px;
    color: #999;
    margin: 15px 0;
}

.payment-icons span {
    font-size: 12px;
    display: flex;
    align-items: center;
}

.continue-link {
    display: block;
    text-align: center;
    color: #2E7D32;
    text-decoration: none;
    font-size: 14px;
}

/* Önerilen Ürünler */
.recommended-section {
    padding: 60px 0;
    background: white;
}

.recommended-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.rec-card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    border: 1px solid #f0f0f0;
    position: relative;
}

.rec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.rec-icon {
    font-size: 50px;
    margin-bottom: 10px;
}

.rec-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #FBC02D;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
}

.rec-card h4 {
    margin: 10px 0 5px;
}

.rec-price {
    color: #F57C00;
    font-weight: 700;
    font-size: 18px;
    margin: 8px 0;
}

.rec-add {
    background: #2E7D32;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.3s;
}

.rec-add:hover {
    background: #F57C00;
}

/* Responsive */
@media (max-width: 992px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}
/* ========== CHECKOUT SAYFASI STILLERI ========== */
.checkout-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.checkout-steps .step {
    text-align: center;
}

.checkout-steps .step span {
    width: 38px;
    height: 38px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    font-weight: 600;
    color: #999;
}

.checkout-steps .step.completed span {
    background: #2E7D32;
    color: white;
}

.checkout-steps .step.active span {
    background: #F57C00;
    color: white;
}

.checkout-steps .step label {
    font-size: 11px;
    color: #999;
}

.checkout-steps .step.completed label,
.checkout-steps .step.active label {
    color: #2E7D32;
    font-weight: 500;
}

.checkout-steps .step-line {
    width: 50px;
    height: 2px;
    background: #e0e0e0;
    margin: 0 10px;
}

.checkout-main {
    padding: 40px 0 60px;
    background: #F8F9FA;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
}

/* Form Kartları */
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}

.form-card h3 {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #2E7D32;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    font-size: 13px;
}

.required {
    color: #f44336;
}

.checkout-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    font-size: 14px;
    transition: all 0.2s;
}

.checkout-input:focus {
    outline: none;
    border-color: #2E7D32;
    box-shadow: 0 0 0 2px rgba(46,125,50,0.1);
}

.error-msg {
    color: #f44336;
    font-size: 11px;
    margin-top: 5px;
}

/* Fatura Adresi Toggle */
.invoice-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 10px 0;
    color: #2E7D32;
    font-weight: 500;
}

.invoice-toggle i:last-child {
    margin-left: auto;
    transition: transform 0.3s;
}

/* Teslimat Seçenekleri */
.shipping-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.shipping-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.shipping-option:hover {
    border-color: #2E7D32;
    background: #F8F9FA;
}

.shipping-option input {
    margin-right: 12px;
}

.shipping-option div strong {
    display: block;
    font-size: 14px;
}

.shipping-option div span {
    font-size: 12px;
    color: #888;
}

.shipping-option .price {
    color: #F57C00;
    font-weight: 600;
}

/* Ödeme Yöntemleri */
.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.payment-method:hover {
    border-color: #2E7D32;
}

.payment-method i {
    font-size: 24px;
    color: #666;
}

.payment-method.selected {
    border-color: #2E7D32;
    background: #E8F5E9;
}

/* Kullanım Koşulları */
.terms-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.terms-checkbox a {
    color: #2E7D32;
    text-decoration: none;
}

/* Sipariş Özeti */
.checkout-summary {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: sticky;
    top: 100px;
}

.summary-products {
    max-height: 300px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.summary-product {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

.summary-product .product-icon {
    width: 45px;
    height: 45px;
    background: #F8F9FA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.summary-product .product-details {
    flex: 1;
}

.summary-product .product-name {
    font-weight: 600;
    font-size: 14px;
}

.summary-product .product-badge {
    font-size: 10px;
    color: #F57C00;
}

.summary-product .product-quantity {
    font-size: 12px;
    color: #888;
}

.summary-product .product-price {
    font-weight: 600;
    font-size: 14px;
}

.summary-calculations {
    border-top: 1px solid #F0F0F0;
    padding-top: 15px;
}

.calc-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.calc-row.total {
    border-top: 2px solid #F0F0F0;
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 18px;
}

.coupon-area {
    display: flex;
    gap: 10px;
    margin: 15px 0;
}

.coupon-area input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    font-size: 13px;
}

.coupon-area button {
    padding: 10px 18px;
    background: #2E7D32;
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
}

.coupon-msg {
    font-size: 12px;
    margin-top: -10px;
    margin-bottom: 10px;
}

.coupon-msg .success { color: #2E7D32; }
.coupon-msg .error { color: #f44336; }

.delivery-info {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #E8F5E9;
    padding: 12px;
    border-radius: 12px;
    margin: 15px 0;
}

.delivery-info i {
    font-size: 24px;
    color: #2E7D32;
}

.delivery-info p {
    font-size: 12px;
    color: #666;
}

.complete-btn {
    width: 100%;
    padding: 14px;
    background: #F57C00;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.complete-btn:hover {
    background: #E65100;
    transform: translateY(-2px);
}

.secure-badge {
    text-align: center;
    padding: 12px;
    background: #F8F9FA;
    border-radius: 12px;
    font-size: 12px;
    color: #888;
    margin-top: 15px;
}

.secure-badge i {
    margin: 0 5px;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
    .checkout-steps .step-line {
        width: 30px;
    }
}
/* ========== BAŞARILI SİPARİŞ SAYFASI ========== */
.success-section {
    padding: 80px 0;
    background: #F8F9FA;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.success-card {
    background: white;
    border-radius: 32px;
    padding: 50px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.success-icon {
    margin-bottom: 20px;
}

.success-icon i {
    font-size: 80px;
    color: #2E7D32;
}

.success-card h1 {
    color: #2E7D32;
    margin-bottom: 15px;
}

.success-card > p {
    color: #666;
    margin-bottom: 30px;
}

.order-info {
    background: #F8F9FA;
    border-radius: 20px;
    padding: 25px;
    margin: 20px 0;
    text-align: left;
}

.order-detail {
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.detail-row span:first-child {
    color: #888;
}

.order-items h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.order-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

.order-item-icon {
    width: 45px;
    height: 45px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    font-size: 14px;
}

.order-item-badge {
    font-size: 10px;
    color: #F57C00;
}

.order-item-qty {
    font-size: 13px;
    color: #888;
}

.order-item-price {
    font-weight: 600;
}

.order-total {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 2px solid #E0E0E0;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.total-row.grand-total {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #E0E0E0;
    font-weight: 700;
    font-size: 18px;
}

.total-row.discount {
    color: #2E7D32;
}

.success-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin: 25px 0;
}

.success-note {
    background: #E8F5E9;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;
    text-align: left;
}

.success-note i {
    font-size: 30px;
    color: #2E7D32;
}

.success-note p {
    font-size: 13px;
    color: #555;
}

.success-note a {
    color: #2E7D32;
    text-decoration: none;
}

.order-error {
    text-align: center;
    padding: 30px;
}

.order-error i {
    font-size: 50px;
    color: #f44336;
    margin-bottom: 15px;
}
/* ========== SİPARİŞ TAKİP SAYFASI ========== */
.track-search {
    padding: 40px 0;
}

.track-card {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 32px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.track-icon i {
    font-size: 60px;
    color: var(--meyliva-green);
    margin-bottom: 20px;
}

.track-card h3 {
    margin-bottom: 10px;
    color: var(--meyliva-text);
}

.track-card p {
    color: #666;
    margin-bottom: 25px;
}

.track-input-group {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.track-input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid #E0E0E0;
    border-radius: 50px;
    font-size: 14px;
    transition: all 0.2s;
}

.track-input:focus {
    outline: none;
    border-color: var(--meyliva-green);
}

.track-btn {
    padding: 14px 28px;
    background: var(--meyliva-orange);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.track-btn:hover {
    background: #E65100;
    transform: translateY(-2px);
}

.track-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: #888;
}

/* Sipariş Özeti */
.order-summary-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #F0F0F0;
}

.summary-badge {
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.status-preparing { background: #FFF3E0; color: #F57C00; }
.status-shipping { background: #E3F2FD; color: #1976D2; }
.status-delivered { background: #E8F5E9; color: #2E7D32; }

.summary-number {
    font-family: monospace;
    font-size: 14px;
    color: #888;
}

.summary-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-item i {
    width: 40px;
    height: 40px;
    background: #F8F9FA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--meyliva-green);
}

.info-item div {
    display: flex;
    flex-direction: column;
}

.info-item span {
    font-size: 11px;
    color: #888;
}

.info-item strong {
    font-size: 14px;
}

/* Timeline */
.timeline-container {
    background: white;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 30px;
}

.timeline-title {
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--meyliva-green);
}

.timeline-steps {
    position: relative;
    padding-left: 30px;
}

.timeline-step {
    position: relative;
    padding-bottom: 30px;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -30px;
    top: 0;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: #F0F0F0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}

.timeline-step.completed .timeline-icon {
    background: var(--meyliva-green);
    color: white;
}

.timeline-step.active .timeline-icon {
    background: var(--meyliva-orange);
    color: white;
    animation: pulse 1.5s infinite;
}

.timeline-content {
    padding-left: 15px;
}

.timeline-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.timeline-content p {
    font-size: 13px;
    color: #666;
}

.timeline-date {
    font-size: 11px;
    color: #999;
}

.timeline-line {
    position: absolute;
    left: -10px;
    width: 2px;
    height: 30px;
    background: #E0E0E0;
}

/* Hasat Haritası */
.harvest-map {
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 30px;
}

.map-title {
    font-weight: 600;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--meyliva-green);
}

.map-stations {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.map-station {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 15px;
    background: white;
    border-radius: 16px;
    min-width: 100px;
}

.map-station.completed {
    background: var(--meyliva-green);
    color: white;
}

.map-station.completed .station-name,
.map-station.completed .station-location {
    color: white;
}

.station-icon {
    font-size: 32px;
    margin-bottom: 8px;
}

.station-name {
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}

.station-location {
    font-size: 10px;
    color: #888;
}

.station-check {
    margin-top: 8px;
    color: white;
}

.station-line {
    width: 40px;
    height: 2px;
    background: #A5D6A7;
}

/* Sipariş Detayları */
.order-details-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    margin-bottom: 30px;
}

.details-title {
    font-weight: 600;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--meyliva-green);
}

.details-products {
    margin-bottom: 20px;
}

.detail-product {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #F0F0F0;
}

.detail-product .product-icon {
    width: 45px;
    height: 45px;
    background: #F8F9FA;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.detail-product .product-info {
    flex: 1;
}

.detail-product .product-name {
    font-weight: 600;
    font-size: 14px;
}

.detail-product .product-badge {
    font-size: 10px;
    color: #F57C00;
}

.detail-product .product-qty {
    font-size: 13px;
    color: #888;
}

.detail-product .product-price {
    font-weight: 600;
}

.details-total {
    background: #F8F9FA;
    border-radius: 16px;
    padding: 15px;
    margin-bottom: 15px;
}

.details-total .total-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.details-total .total-row.grand {
    border-top: 1px solid #E0E0E0;
    margin-top: 8px;
    padding-top: 12px;
    font-weight: 700;
    font-size: 16px;
}

.details-total .total-row.discount {
    color: #2E7D32;
}

.details-payment {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-row {
    flex: 1;
    background: #F8F9FA;
    border-radius: 12px;
    padding: 12px;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
}

/* Eco Card */
.eco-card {
    background: white;
    border-radius: 24px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.eco-icon {
    display: flex;
    gap: 10px;
}

.eco-icon i {
    font-size: 40px;
    color: var(--meyliva-green);
}

.eco-content {
    flex: 1;
}

.eco-content h4 {
    margin-bottom: 8px;
}

.eco-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.eco-badges {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.eco-badges span {
    font-size: 11px;
    color: var(--meyliva-green);
}

/* Animasyonlar */
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(245,124,0,0.4); }
    50% { box-shadow: 0 0 0 10px rgba(245,124,0,0); }
}

/* Responsive */
@media (max-width: 768px) {
    .track-card {
        padding: 25px;
    }
    .track-input-group {
        flex-direction: column;
    }
    .summary-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .summary-info {
        grid-template-columns: 1fr;
    }
    .map-stations {
        flex-direction: column;
    }
    .station-line {
        width: 2px;
        height: 30px;
    }
    .eco-card {
        flex-direction: column;
        text-align: center;
    }
    /* ========== SOSYAL MEDYA BUTONLARI ========== */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background-color: transparent;
    position: relative;
    border-radius: 7px;
    cursor: pointer;
    transition: all .3s;
    text-decoration: none;
}

.social-svgContainer {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    backdrop-filter: blur(4px);
    letter-spacing: 0.8px;
    border-radius: 10px;
    transition: all .3s;
    border: 1px solid rgba(156, 156, 156, 0.466);
}

.social-svgIcon {
    width: 22px;
    height: 22px;
    fill: white;
}

.social-BG {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 9px;
    pointer-events: none;
    transition: all .3s;
}

/* Instagram Gradient */
.social-btn.instagram .social-BG {
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Facebook */
.social-btn.facebook .social-BG {
    background: #1877F2;
}

/* X (Twitter) */
.social-btn.x .social-BG {
    background: #000000;
}

/* Hover Effects */
.social-btn:hover .social-BG {
    transform: rotate(35deg);
    transform-origin: bottom;
}

.social-btn:hover .social-svgContainer {
    background-color: rgba(156, 156, 156, 0.466);
}

/* YouTube Bonus */
.social-btn.youtube .social-BG {
    background: #FF0000;
}
}

/* Responsive */
@media (max-width: 768px) {
    .success-card {
        padding: 30px 20px;
    }
    .success-actions {
        flex-direction: column;
    }
    .order-item {
        flex-wrap: wrap;
    }
    .detail-row {
        flex-direction: column;
        gap: 5px;
    }
}
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .checkout-steps .step span {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .checkout-steps .step label {
        font-size: 9px;
    }
}

@media (max-width: 768px) {
    .cart-table-header {
        display: none;
    }
    .cart-item {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 20px;
        border: 1px solid #f0f0f0;
        border-radius: 20px;
        margin-bottom: 15px;
    }
    .item-info {
        justify-content: space-between;
    }
    .item-price::before {
        content: "Fiyat: ";
        font-weight: 600;
    }
    .item-total::before {
        content: "Toplam: ";
        font-weight: 600;
    }
    .item-price, .item-total {
        display: flex;
        justify-content: space-between;
    }
    .item-quantity {
        justify-content: center;
    }
    .step-line {
        width: 30px;
    }
}

@keyframes growSprout {
    0% { height: 0; opacity: 0; }
    100% { height: 35px; opacity: 1; }
}

.leaf {
    position: absolute;
    width: 0;
    height: 0;
    background: #4CAF50;
    border-radius: 0 50% 0 50%;
    animation: growLeaf 0.8s ease-out forwards;
}

.leaf-left {
    bottom: 100%;
    left: 50%;
    transform: translateX(-10px) rotate(-45deg);
    animation-delay: 0.3s;
}

.leaf-right {
    bottom: 100%;
    left: 50%;
    transform: translateX(5px) rotate(20deg);
    animation-delay: 0.5s;
}

@keyframes growLeaf {
    0% { width: 0; height: 0; opacity: 0; }
    100% { width: 18px; height: 18px; opacity: 1; }
}

.loader-text {
    margin-top: 60px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    letter-spacing: 4px;
    color: #FBC02D;
    opacity: 0;
    animation: fadeText 0.8s ease 0.5s forwards;
}

@keyframes fadeText {
    from { opacity: 0; letter-spacing: 8px; }
    to { opacity: 1; letter-spacing: 4px; }
}

.loader-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.loader-dots span {
    width: 6px;
    height: 6px;
    background: #F57C00;
    border-radius: 50%;
    animation: dotPulse 1.2s infinite;
}

.loader-dots span:nth-child(2) { animation-delay: 0.2s; }
.loader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotPulse {
    0%, 100% { transform: scale(0.5); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 1; background: #FBC02D; }
}

/* ---------- FOOTER ---------- */
footer {
    background: var(--meyliva-soil);
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin-top: 4rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-colors {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 1.5rem;
}

.color-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

.color-dot.green { background: var(--meyliva-green); }
.color-dot.orange { background: var(--meyliva-orange); }
.color-dot.sun { background: var(--meyliva-sun); }

/* ---------- NEWSLETTER ---------- */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
}

.newsletter-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.newsletter-form input {
    flex: 1;
    padding: 14px 18px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hero-logo-img {
        width: 200px;
    }
    .section-title {
        font-size: 1.5rem;
    }
    .page-title {
        font-size: 1.8rem;
    }
    .filter-card {
        padding: 0.5rem 1rem;
        min-width: 70px;
    }
    .filter-icon {
        font-size: 1.2rem;
    }
    .filter-name {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    .newsletter-form {
        flex-direction: column;
    }
}