html {
    scroll-behavior: smooth;
}

/* Header sabitse (sticky) başlık menünün altında kalmasın diye boşluk bırakır */
#tum-urunler {
    scroll-margin-top: 140px;
    /* Header yüksekliğine göre bu sayıyı artırabilirsin */
}

/* =========================================
   1. TEMEL AYARLAR VE DEĞİŞKENLER
   ========================================= */
:root {
    /* Renk Paleti (Doğal & Sıcak) */
    --primary-color: #e67e22;
    /* Turuncu */
    --primary-dark: #d35400;
    /* Koyu Turuncu */
    --secondary-color: #2c3e50;
    /* Lacivert */
    --text-color: #5d4037;
    /* Koyu Kahve */

    /* Arka Planlar */
    --light-bg: #fcf9f2;
    /* Sayfa Arka Planı */
    --card-bg: #ffffff;
    /* Kart Arka Planı */
    --sidebar-bg: #ffffff;
    /* Sepet Arka Planı */
    --footer-bg: #1a1a1a;
    /* Footer (Koyu Siyah) */
    --input-bg: #fff;
    --border-color: #eaddcf;
    --white: #ffffff;

    /* Diğer */
    --border-radius: 12px;
    --shadow: 0 8px 25px rgba(149, 157, 165, 0.15);
    --transition: all 0.3s ease;
    --font-family: 'Montserrat', sans-serif;
}


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

html,
body {
    /* --- Mevcut Tasarım Ayarların --- */
    font-family: var(--font-family);
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-image: linear-gradient(to bottom, #fcf9f2, #fdfbf7);

    /* --- Header İçin Gerekli Ayarlar --- */
    width: 100%;
    overflow-x: hidden;
    /* Yanlardan taşmayı engeller */

}

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

ul {
    list-style: none;
}

/* =========================================
   2. HEADER & NAVİGASYON
   ========================================= */
/* --- HEADER TEMEL TASARIMI (SABİTLEME YOK) --- */
header {
    position: relative;
    /* Normal duruş */
    z-index: 999;
    width: 100%;
    background-color: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    padding: 0;
    transition: all 0.3s ease;
    padding: 25px 5%;
}

/* --- JS İLE EKLENECEK SABİT SINIF --- */
/* Menü tepeye vurunca bu özellikler devreye girecek */
header.sticky-active {
    position: fixed;
    /* Artık sabit */
    top: 0;
    left: 0;
    animation: slideDown 0.3s ease-out;
    /* Yukarıdan kayarak gelme efekti */
}

/* Yumuşak geçiş animasyonu */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 55px;
    width: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.logo span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

/* Arama Çubuğu */
.search-container {
    flex-grow: 1;
    max-width: 500px;
    position: relative;
    display: flex;
    align-items: center;
}

.search-container input {
    width: 100%;
    padding: 0.7rem 1rem;
    padding-right: 3rem;
    border: 2px solid var(--border-color);
    border-radius: 50px;
    outline: none;
    font-family: inherit;
    transition: var(--transition);
    background-color: var(--input-bg);
    color: #333;
    font-size: 0.9rem;
}

.search-container input:focus {
    border-color: var(--primary-color);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.1);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

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

.search-suggestions {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    border-radius: 0 0 15px 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 1001;
    max-height: 350px;
    overflow-y: auto;
    margin-top: 5px;
    display: none;
}

.search-suggestions li {
    padding: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f5f5f5;
    gap: 10px;
}

.search-suggestions li:hover {
    background-color: #fff8f0;
}

.suggestion-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
    flex-shrink: 0;
}

.suggestion-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}

.suggestion-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

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

/* Menü Linkleri */
.nav-links {
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--secondary-color);
    position: relative;
    padding: 5px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Sepet İkonu */
.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--secondary-color);
    padding: 0.5rem;
    display: flex;
    align-items: center;
    background-color: #fff3e0;
    border-radius: 50%;
    flex-shrink: 0;
}

.cart-icon:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.cart-count {
    position: absolute;
    top: -2px;
    right: -5px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 5px;
    border-radius: 50%;
    font-weight: bold;
    border: 2px solid var(--white);
    min-width: 18px;
    text-align: center;
}

/* =========================================
   3. HERO SLIDER (ANA SAYFA)
   ========================================= */
.hero {
    position: relative;
    width: 100%;
    margin-bottom: 1rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    transition: opacity 0.5s ease-in-out;
    z-index: 0;
    min-height: 300px;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.6), rgba(230, 126, 34, 0.4));
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 1rem;
    width: 90%;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-btn {
    padding: 0.9rem 2.5rem;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
    display: inline-block;
}

.hero-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
}

/* =========================================
   4. FEATURES (4'LÜ ÖZELLİK KUTULARI)
   ========================================= */
.features-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* Masaüstünde tek satır (4'lü) */
    gap: 1rem;
    padding: 1.5rem;
    max-width: 1200px;
    margin: -2rem auto 0;
    position: relative;
    z-index: 5;
}

.feature-box {
    text-align: center;
    padding: 2rem 1rem;
    background: #1a1a1a;
    /* Koyu renk istendiği için */
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
    /* Zıplamayı engeller */
    cursor: default;
    color: white;
    /* Yazılar beyaz */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.feature-box i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    padding: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #fff;
}

.feature-box p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #ccc;
}

/* Feature Hover Efektleri */
.hover-natural:hover {
    border-bottom-color: #e67e22;
    transform: translateY(-5px);
}

.hover-fast:hover {
    border-bottom-color: #27ae60;
    transform: translateY(-5px);
}

.hover-gold:hover {
    border-bottom-color: #f1c40f;
    transform: translateY(-5px);
}

.hover-security:hover {
    border-bottom-color: #3498db;
    transform: translateY(-5px);
}

/* =========================================
   5. VİTRİN SLIDER (ÖNE ÇIKANLAR)
   ========================================= */
.showcase-slider-container {
    max-width: 1200px;
    margin: 3rem auto 2rem;
    padding: 0 1rem;
    position: relative;
}

.showcase-title {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.showcase-slider-wrapper {
    position: relative;
    padding: 0 50px;
}

.showcase-track-container {
    overflow: hidden;
    padding: 10px 0;
}

.showcase-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.showcase-slide {
    min-width: 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
}

.showcase-slide img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.showcase-slide img:hover {
    transform: scale(1.03);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--white);
    color: var(--secondary-color);
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.prev-arrow {
    left: 0;
}

.next-arrow {
    right: 0;
}

/* =========================================
   6. ÜRÜNLER (GRID & KARTLAR)
   ========================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.section-title {
    text-align: center;
    margin: 3rem 0 2rem;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
    margin: 8px auto 0;
    border-radius: 2px;
}

.section-title p {
    color: #666;
    font-size: 1rem;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.6rem 1.5rem;
    border: 1px solid #e0e0e0;
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: var(--transition);
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Masaüstü: 3 Sütun */
    gap: 2rem;
    margin-bottom: 5rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Badge */
.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.badge.new {
    background: #2ecc71;
}

.badge.hot {
    background: #e74c3c;
}

.badge.local {
    background: #9b59b6;
}

.product-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: opacity 0.3s ease;
    background-color: #f9f9f9;
}

.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.weight-select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-family: inherit;
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}

.add-to-cart-btn {
    width: 100%;
    padding: 0.9rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-to-cart-btn::before {
    content: '\f291';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}

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

/* =========================================
   7. İÇERİK SAYFALARI (HAKKIMIZDA, KARGO, İLETİŞİM)
   ========================================= */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), #34495e);
    color: white;
    padding: 3rem 0;
    text-align: center;
    margin-bottom: 3rem;
    border-radius: 0 0 20px 20px;
    box-shadow: var(--shadow);
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Hakkımızda */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 5px solid white;
    transform: rotate(-2deg);
}

.about-content h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.7;
}

.about-features {
    margin-top: 1.5rem;
}

.af-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--primary-color);
}

.af-item i {
    color: #27ae60;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.mission-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    border-top: 4px solid var(--primary-color);
}

.mission-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.mission-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.mission-card p {
    font-size: 0.9rem;
    color: #666;
}

/* Kargolama */
.delivery-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #fff3e0;
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1.5rem;
}

.step-card h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.step-card p {
    font-size: 0.9rem;
    color: #666;
}

.shipping-rates-section {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 4rem;
}

.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    font-size: 0.95rem;
}

.styled-table thead tr {
    background-color: var(--secondary-color);
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
}

.styled-table tbody tr:nth-of-type(even) {
    background-color: #fcf9f2;
}

.highlight-row {
    font-weight: bold;
    color: var(--primary-color);
    background-color: #fff3e0 !important;
}

.info-note {
    background-color: #e3f2fd;
    border-left: 5px solid #2196f3;
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: 4px;
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.9rem;
}

/* İletişim (Yeni Kartlı Tasarım) */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card-item {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card-item:hover {
    transform: translateY(-5px);
}

.contact-card-item.highlight {
    border-top: 5px solid #25d366;
    background: #f0fff4;
}

.cc-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    background: #fff3e0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-card-item.highlight .cc-icon {
    color: #25d366;
    background: white;
}

.contact-card-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.contact-card-item p {
    color: #666;
    margin-bottom: 1rem;
}

.cc-link {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-decoration: none;
}

.cc-btn {
    display: inline-block;
    background-color: #25d366;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
}

.cc-btn:hover {
    background-color: #128c7e;
}

.address-map-section {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.address-box {
    padding: 2rem;
    background: #fcfcfc;
    border-radius: 15px;
    border: 1px solid #eee;
}

.address-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.address-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.address-text p {
    margin-bottom: 1rem;
    color: #555;
}

.large-map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
}

/* =========================================
   8. FOOTER (SİYAH & DÜZGÜN TASARIM)
   ========================================= */
footer {
    background-color: var(--footer-bg);
    color: #bbb;
    padding: 4rem 0 1.5rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    /* Orantılı sütunlar */
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: #999;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

/* İletişim Bilgileri Özel Tasarımı */
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
}

.contact-info-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 4px;
    /* İkonu metinle hizala */
}

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

.footer-label {
    font-weight: 700;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 2px;
}

.footer-sub {
    font-size: 0.85rem;
    color: #888;
}

.footer-link {
    color: #3498db !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 2px;
}

.footer-link:hover {
    color: #5dade2 !important;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #666;
    font-size: 0.85rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* =========================================
   9. SEPET & DİĞERLERİ
   ========================================= */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--sidebar-bg);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 3001;
    transition: right 0.3s ease;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1rem 1.5rem;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-footer {
    padding: 1.5rem;
    background-color: #fff;
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart-summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #666;
}

.cart-total-final {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary-color);
    border-top: 1px solid #eee;
    padding-top: 10px;
    text-align: right;
}

.sidebar-checkout-btn {
    width: 100%;
    padding: 0.9rem;
    background-color: #25d366;
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sidebar-view-cart-btn {
    width: 100%;
    padding: 0.8rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    display: block;
}

.sidebar-continue-btn {
    width: 100%;
    padding: 0.7rem;
    background-color: transparent;
    color: #888;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
}

/* WhatsApp Butonu */
.whatsapp-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 2000;
    /* Sidebar'ın (3001) altında kalsın diye düşük */
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Animasyon için bu satırları ekle: */
    transition: all 0.3s ease;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-btn {
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: transform 0.3s;
}

/* Sepet açılınca bu sınıf eklenecek ve buton gizlenecek */
.whatsapp-container.whatsapp-hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    /* Aşağı doğru kaybolsun */
    pointer-events: none;
    /* Tıklamayı engelle */
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 3000;
    display: none;
}

.overlay.active {
    display: block;
}

/* Ürün Detay */
.product-detail-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    /* Görsel biraz daha geniş olsun */
    gap: 4rem;
    background: linear-gradient(145deg, #1f1f1f, #161616);
    /* Hafif gradyanlı koyu zemin */
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    /* Güçlü gölge */
    border: 1px solid #333;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    /* Taşmaları gizle */
}

.gallery-container {
    display: flex;
    /* HTML'deki sırayı görsel olarak tersine çevirir. 
       Böylece kodda altta olan büyük resim üste, üstte olan küçük resimler alta gelir. */
    flex-direction: column-reverse;
    gap: 20px;
    /* Büyük resim ile küçük resimler arasındaki boşluk */
}



.gallery-thumbnails {
    display: flex;
    flex-direction: row;
    /* Yan yana sıralansınlar */
    justify-content: center;
    /* Ortaya hizalansınlar */
    gap: 15px;
    /* Birbirleri arasındaki boşluk */
    width: 100%;
}


.thumbnail-img {
    /* KARE YAPISI */
    width: 80px !important;
    /* Genişlik sabit */
    height: 80px !important;
    /* Yükseklik sabit (Genişlikle aynı = Kare) */

    object-fit: cover;
    /* Resmi kutuya sığdır, uzatma/basıklaştırma yapma */
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    /* Kenarlık payı */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* Hafif gölge */

    /* SIKIŞMAYI ÖNLEME */
    flex-shrink: 0;
    background: #000;
}

.thumbnail-img.active,
.thumbnail-img:hover {
    opacity: 1;
    border-color: #e67e22;
    /* Turuncu vurgu */
    transform: translateY(-5px);
    /* Seçilince hafif yukarı kalksın */
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.2);
}

.gallery-main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 1px solid #333;
}

.main-img {
    width: 100%;
    height: auto;
    max-height: 600px;
    /* Çok uzun görseller sayfayı bozmasın */
    object-fit: contain;
    /* Resmi asla kesme, sığdır */
    cursor: zoom-in;
    /* Tıklanabilir olduğunu göster */
    transition: opacity 0.3s;

    /* KORUMA: Seçilemez yap */
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
    /* Sürüklemeyi engelle */
    display: block;
    transition: transform 0.4s ease;
}

.main-img:hover {
    transform: scale(1.08);
    /* Resmin üzerine gelince yaklaşma efekti */
}

/* --- YENİ EKLENECEK KISIM: LIGHTBOX (TAM EKRAN MODU) --- */
.lightbox-modal {
    display: none;
    /* Varsayılan gizli */
    position: fixed;
    z-index: 99999;
    /* En üstte */
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    /* Koyu arkaplan */
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);

    /* KORUMA */
    -webkit-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--primary-color);
    text-decoration: none;
    cursor: pointer;
}

/* --- MOBİL UYUMLULUK (Sadece mobilde yatay olsun) --- */
@media (max-width: 768px) {
    .gallery-container {
        flex-direction: column-reverse;
        /* Mobilde küçük resimler altta olsun */
    }

    .gallery-thumbnails {
        flex-direction: row;
        /* Yan yana diz */
        width: 100%;
        justify-content: center;
        /* Ortala */
        flex-wrap: wrap;
        /* Sığmazsa alt satıra geçsin */
    }

    .thumbnail-img {
        width: 70px !important;
        height: 70px !important;
    }
}

/* =========================================
   10. RESPONSIVE (MOBİL UYUM)
   ========================================= */
@media (max-width: 1024px) {

    /* Tablet Yatay */
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    /* Tablette özellikler 2'li */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {

    /* Tablet Dikey ve Büyük Telefon */
    nav {
        padding: 0.8rem;
        gap: 0.8rem;
    }

    .nav-links {
        display: none;
        /* JS ile açılır menü yapılabilir veya gizlenir */
        width: 100%;
        order: 4;
        justify-content: center;
    }

    .search-container {
        order: 3;
        width: 100%;
        margin-top: 0.5rem;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .features-section {
        grid-template-columns: 1fr;
    }

    /* Mobilde özellikler alt alta */

    /* MOBİLDE 2'Lİ ÜRÜN IZGARASI */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-image {
        height: 160px;
    }

    .product-title {
        font-size: 1rem;
    }

    .add-to-cart-btn {
        padding: 0.6rem;
        font-size: 0.85rem;
    }

    .showcase-slide {
        min-width: 50%;
    }

    /* Vitrin mobilde 2'li */

    /* Detay Sayfası Mobil */
    .product-detail-container {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .gallery-container {
        flex-direction: column-reverse;
        height: auto;
    }

    .gallery-thumbnails {
        flex-direction: row;
        width: 100%;
        height: 80px;
        overflow-x: auto;
    }

    .thumbnail-img {
        width: 80px;
        height: 80px;
    }

    .gallery-main {
        height: 300px;
    }

    /* Diğer Sayfalar Mobil */
    .about-grid,
    .contact-wrapper,
    .address-map-section,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

@media (max-width: 480px) {

    /* Küçük Telefon */
    .product-grid {
        gap: 0.8rem;
    }

    /* Aralığı biraz daha kıs */
    .showcase-slide {
        min-width: 100%;
    }

    /* Vitrin mobilde tekli */
    .hero h1 {
        font-size: 1.8rem;
    }

    .cart-footer {
        padding: 1rem;
    }
}

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

.cart-list {
    background: var(--card-bg);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
}

.cart-page-item {
    display: grid;
    grid-template-columns: 4fr 2fr 1fr 0.5fr;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.2s;
}

.cart-page-item:hover {
    background-color: #fafafa;
}

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

.cp-product-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* DÜZELTME: SEPET GÖRSELİ BOYUTU */
.cp-product-info img {
    width: 90px !important;
    height: 90px !important;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.cp-text h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.cp-text p {
    color: #888;
    font-size: 0.9rem;
}

.cp-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
    font-weight: bold;
    color: var(--secondary-color);
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cp-total {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 1.1rem;
    text-align: right;
}

.cp-remove {
    text-align: right;
    padding-right: 10px;
}

.remove-btn {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.remove-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.order-summary {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    height: fit-content;
    border: 1px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.checkout-btn {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
    display: block;
}

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

/* --- SEPET YAN PANEL (SIDEBAR) DÜZELTMESİ --- */
/* Mevcut .cart-item ve .cart-item-info CSS'lerinin yerine bunu kullanın veya altına ekleyin */

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    /* Alt çizgi rengi */
    gap: 10px;
}

.cart-item-info {
    display: flex;
    align-items: center;
    gap: 15px;
    /* Resim ile yazı arasındaki boşluk */
    flex: 1;
    /* Alanı doldur */
}

/* !!! EN ÖNEMLİ KISIM: Resim boyutunu kısıtlar !!! */
.cart-item-info img {
    width: 60px !important;
    /* Genişlik sabit 60px */
    height: 60px !important;
    /* Yükseklik sabit 60px */
    object-fit: cover;
    /* Resmi kutuya sığdır */
    border-radius: 8px;
    /* Köşeleri yuvarla */
    flex-shrink: 0;
    /* Resmin sıkışmasını engelle */
    border: 1px solid #eee;
}

.cart-item-info div {
    display: flex;
    flex-direction: column;
}

.cart-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.cart-item-info .cart-item-price {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}


.cart-item-controls {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    /* Oval, modern görünüm */
    overflow: hidden;
    /* İçerik taşarsa gizle */
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    /* Hafif gölge */
    margin-left: auto;
    /* Sağa yasla */
}

/* - ve + Butonları */
.cart-item-btn {
    background: none;
    border: none;
    padding: 0 12px;
    /* Yatay dolgu */
    font-size: 1.2rem;
    /* Yazı boyutu */
    font-weight: 500;
    color: #7f8c8d;
    /* Koyu gri renk */
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    /* Sabit yükseklik */
}

.cart-item-btn:hover {
    background-color: #f8f9fa;
    /* Hover'da açık gri arka plan */
    color: var(--primary-color);
    /* Hover'da ana renk (turuncu) */
}

/* Ortadaki Miktar Sayısı */
.cart-item-quantity-value {
    padding: 0 14px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--secondary-color);
    min-width: 36px;
    /* Minimum genişlik */
    text-align: center;
    border-left: 1px solid #e0e0e0;
    /* Sol çizgi */
    border-right: 1px solid #e0e0e0;
    /* Sağ çizgi */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    /* Butonlarla aynı yükseklik */
    background-color: #fff;
}

#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.toast {
    background: #333;
    color: #fff;
    padding: 15px 25px;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease, fadeOut 0.5s ease 2.5s forwards;
    min-width: 250px;
}

.toast.success {
    border-left: 5px solid #2ecc71;
}

.toast.error {
    border-left: 5px solid #e74c3c;
}

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

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

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* =========================================
   SSS (ACCORDION) SAYFASI STİLLERİ
   ========================================= */

/* SSS Bölümü Genel Ayarlar */
.faq-section {
    padding: 2rem 0;
    width: 100%;
}

.faq-container {
    max-width: 800px;
    /* Okumayı kolaylaştırmak için genişliği sınırlar */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    /* Kutular arası boşluk */
}

/* Soru Kartı (Kutu) */
.faq-item {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    /* Hafif gölge */
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

/* Kutu Aktif Olduğunda (Açıldığında) */
.faq-item.active {
    border-color: var(--primary-color);
    /* Turuncu kenarlık */
    box-shadow: 0 8px 25px rgba(230, 126, 34, 0.15);
    /* Turuncu gölge */
}

/* Soru Butonu */
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.2rem 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    /* Yazı solda, ok sağda */
    align-items: center;
    cursor: pointer;
    font-family: var(--font-family);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-color);
}

/* Ok İkonu */
.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.4s ease;
    /* Dönme animasyonu hızı */
    color: #999;
}

/* Aktifken İkonun Hali */
.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    /* Oku ters çevir */
    color: var(--primary-color);
}

/* Cevap Alanı (Animasyonlu Açılma İçin) */
.faq-answer {
    max-height: 0;
    /* Başlangıçta kapalı */
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    /* Pürüzsüz açılma efekti */
    background-color: #fdfdfd;
}

.answer-content {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
    /* Soru ile cevap arasına ince çizgi */
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .answer-content {
        padding: 0 1rem 1rem 1rem;
    }
}

/* =========================================
   YENİ EKLENEN ÖZELLİKLER (SAYAÇ, SKELETON, VB.)
   ========================================= */

/* 1. SİPARİŞ SAYACI (TOP BAR) */

.shipping-timer-bar strong {
    color: #f1c40f;
    /* Sarı vurgu */
    font-weight: 700;
}

/* 2. EKMEK KIRINTISI (BREADCRUMBS) */
.breadcrumb-nav {
    padding: 1rem 0;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.breadcrumb-nav a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

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

.breadcrumb-separator {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb-current {
    color: #999;
    font-weight: 500;
}

/* 3. SKELETON LOADING (İSKELET EFEKTİ) */
/* Resim yüklenene kadar görünecek animasyonlu arka plan */
.skeleton-bg {
    background: #eee;
    background: linear-gradient(110deg, #ececec 8%, #f5f5f5 18%, #ececec 33%);
    border-radius: 5px;
    background-size: 200% 100%;
    animation: 1.5s shine linear infinite;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

@keyframes shine {
    to {
        background-position-x: -200%;
    }
}

/* Resim kapsayıcısı (Skeleton için gerekli) */
.img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    /* Ürün kartı resim yüksekliği */
    overflow: hidden;
    background-color: #f0f0f0;
}

/* Resim yüklendiğinde görünecek (Fade-in efekti) */
.product-image {
    position: relative;
    z-index: 2;
    opacity: 0;
    /* JS ile 1 yapılacak */
    transition: opacity 0.5s ease;
}

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

/* 4. AKILLI KARGO UYARI ÇUBUĞU (SEPET İÇİN) */
.smart-shipping-alert {
    background-color: #e3f2fd;
    border: 1px solid #2196f3;
    color: #0d47a1;
    padding: 10px 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
    animation: fadeIn 0.5s ease;
}

.smart-shipping-alert i {
    font-size: 1.2rem;
    color: #2196f3;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

/* --- SEPET KAPATMA BUTONU TASARIMI --- */
.close-cart {
    background: transparent;
    /* Arkadaki beyazlığı kaldırır */
    border: none;
    /* Kenarlığı kaldırır */
    color: #ecf0f1;
    /* İkon rengi (Beyazımsı) - Arka plan koyu olduğu için */
    font-size: 1.5rem;
    /* İkonu büyüt */
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

/* Üzerine gelince (Hover) */
.close-cart:hover {
    color: var(--primary-color);
    /* Turuncu renk */
    transform: rotate(90deg);
    /* Hafif döndürme efekti */
    background-color: rgba(255, 255, 255, 0.1);
    /* Hafif bir arka plan parlaması */
}

/* =========================================
   SİPARİŞ SAYACI & KAYAN DUYURU BANDI
   ========================================= */
.shipping-timer-bar {
    position: relative;
    z-index: 1001;
    background-color: var(--secondary-color, #2c3e50);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;

    /* GÜNCELLEME: Yüksekliği buradan artırabilirsin (Eskisi 40px idi) */
    min-height: 60px;

    /* Yazı boyutunu da biraz büyütelim ki sırııtmasın */
    font-size: 1.1rem;
    font-weight: 500;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    /* Alt satıra geçmeyi engelle */
    box-sizing: border-box;
}

.marquee-content {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 50s linear infinite;
}


.marquee-content span {
    display: inline-block;
    padding-right: 50px;
    /* Mesajlar arası boşluk */
    font-size: 0.95rem;
    font-weight: 500;
}

.marquee-content strong {
    color: #f1c40f;
    /* Sarı vurgu */
    font-weight: 700;
}

.marquee-content i {
    margin-right: 8px;
    color: var(--primary-color);
    /* İkonlar turuncu */
}

/* Animasyon Tanımı */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Mouse üzerine gelince durdur (Okumak için) */
.shipping-timer-bar:hover .marquee-content {
    animation-play-state: paused;
}

/* --- BREADCRUMB (NAVİGASYON) STİLİ --- */
.breadcrumb-nav {
    width: 100%;
    padding: 20px 0 10px 0;
    /* Üstten ve alttan boşluk */
    font-size: 0.95rem;
    color: #b0b0b0;
    /* Hafif gri metin */
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    /* Öğeler arası boşluk */
}

.breadcrumb-nav a {
    color: #ffffff;
    /* Linkler beyaz */
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #e67e22;
    /* Üzerine gelince turuncu olsun (marka rengin) */
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    font-size: 0.8rem;
    color: #666;
    /* Ok işareti daha sönük */
}

.breadcrumb-nav .current {
    color: #e67e22;
    /* Şu anki sayfa (Ürün adı) turuncu */
    font-weight: 600;
    pointer-events: none;
    /* Tıklanamaz olsun */
}

/* Mobilde çok yer kaplamasın diye yazı boyutunu küçültelim */
@media (max-width: 768px) {
    .breadcrumb-nav {
        font-size: 0.85rem;
        padding: 15px 10px;
    }
}

/* Sağ Taraf: Yazılar ve Butonlar */
.detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Ürün Başlığı */
.detail-info h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Rozet (Badge) Stili */
.detail-info span[style*="background"] {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Fiyat Alanı */
.detail-price {
    font-size: 2.5rem;
    color: #e67e22;
    /* Ana marka rengin */
    font-weight: 700;
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Açıklama Metni */
.detail-desc {
    color: #cccccc;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    border-left: 3px solid #e67e22;
    /* Solda turuncu çizgi */
    padding-left: 20px;
}

/* Gramaj Seçimi */
select[id^="weight-select-detail"] {
    background-color: #252525;
    color: #fff;
    border: 2px solid #444;
    padding: 15px;
    border-radius: 12px;
    font-size: 1.1rem;
    cursor: pointer;
    width: 100%;
    margin-bottom: 1.5rem;
    transition: 0.3s;
}

select[id^="weight-select-detail"]:hover,
select[id^="weight-select-detail"]:focus {
    border-color: #e67e22;
    background-color: #333;
}

/* SEPETE EKLE BUTONU (En Canlı Kısım) */
.add-to-cart-btn.large {
    background: linear-gradient(90deg, #e67e22, #f39c12);
    /* Canlı geçiş */
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 20px 0;
    width: 100% !important;
    /* Butonu tam genişlik yap */
    border: none;
    border-radius: 15px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.add-to-cart-btn.large:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(230, 126, 34, 0.6);
}

.add-to-cart-btn.large:active {
    transform: scale(0.98);
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        /* Mobilde tek sütun */
        gap: 2rem;
        padding: 2rem;
    }

    .detail-info h1 {
        font-size: 2.2rem;
    }

    body {
        padding-top: 80px;
        /* Mobilde header daha küçükse burayı düşür */
    }
}