/* 
 * Karadağ Kuyumculuk Ana Stil Dosyası
 * Dark tema ve lüks tasarım elementleri içerir
 */

/* TEMEL STILLER */
:root {
    --primary-color: #facc0f;/* #9f8e44; Altın rengi */
    --secondary-color: #c7b36a; /* Daha açık altın rengi */
    --dark-color: #1a1a1a;      /* Neredeyse siyah */
    --dark-bg: #121212;         /* Koyu arka plan */
    --dark-bg-light: #1e1e1e;   /* Biraz daha açık koyu arka plan */
    --text-color: #e0e0e0;      /* Açık gri metin rengi */
    --border-color: #333333;    /* Sınır çizgileri için koyu gri */
    --hover-color: #d4af37;     /* Altın hover rengi */
    --white: #ffffff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    --transition: all 0.3s ease-in-out;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

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

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

ul {
    list-style: none;
}

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

/* BUTONLAR */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--dark-color);
    padding: 10px 25px;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
}

.btn:hover {
    background-color: var(--hover-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 8px 20px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 6px 15px;
    font-size: 12px;
}

/* HEADER */
header {
    background-color: var(--dark-bg);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 68.5px;
    display: block;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

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

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

/* HERO SECTION */
.hero {
    background-color: var(--dark-bg-light);
    padding: 0 15px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    width: 100%;
    height: 100%;
    align-items: center;
}

/* HERO GOLD PRICES */
.hero .gold-prices {
    padding: 25px;
    height: fit-content;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero .gold-prices h2 {
    color: #f8c146;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    font-weight: 600;
}

.date-picker {
    display: flex;
    align-items: center;
}

.date-input {
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 0.9rem;
}

.date-input:focus {
    outline: none;
    border-color: #d4af37;
}

.date-input::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.date-input::-webkit-inner-spin-button,
.date-input::-webkit-clear-button {
    filter: invert(1);
}

.price-update-time {
    color: #888;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
}

.price-table {
    width: 100%;
}

.price-table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 5px;
}

.price-table-header > div {
    font-size: 11px;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.col-name {
    text-align: left !important;
    font-weight: 600;
    color: #d4af37;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
    transition: background-color 0.2s ease;
}

.price-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

.price-row:last-child {
    border-bottom: none;
}

.price-name {
    text-align: left;
}

.price-main {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.price-sub {
    font-size: 10px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-buy, .price-sell {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: center;
}

.price-change {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    padding: 4px 6px;
    border-radius: 4px;
}

.price-change.positive {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
}

.price-change.negative {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

.price-change.notr {
    color: #cbd5e1; /* slate-300 */
    background: rgba(203, 213, 225, 0.12);
}

/* Loading message (global) */
.loading-message {
  padding: 12px 0;
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 8px;
}
.loading-message .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--primary-color);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* HERO SLIDER */
.hero-slider {
    height: 100%;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

.hero-slider .swiper-slide {
    position: relative;
}

.slide-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.slide-overlay h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.slide-overlay p {
    color: var(--text-color);
    font-size: 18px;
    margin-bottom: 25px;
    max-width: 400px;
}

/* Swiper Navigation */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: var(--primary-color);
    background-color: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: var(--transition);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
}

.hero-slider .swiper-button-next:after,
.hero-slider .swiper-button-prev:after {
    font-size: 20px;
    font-weight: 700;
}

.hero-slider .swiper-pagination-bullet {
    background-color: var(--text-color);
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.hero-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}





/* FEATURED PRODUCTS */
.featured-products {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.featured-products h2,
.categories h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 32px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.product-card {
    background-color: var(--dark-bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.product-image {
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-info {
    padding: 15px;
}

.product-info h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--white);
}

.product-category {
    color: var(--text-color);
    font-size: 14px;
    margin-bottom: 15px;
}

.view-all {
    text-align: center;
    margin-top: 20px;
}

/* HAKKIMIZDA KISACA */
.about-short {
    padding: 60px 0;
    background-color: var(--dark-bg-light);
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 32px;
}

.about-content p {
    margin-bottom: 30px;
    line-height: 1.8;
}

/* KATEGORİLER */
.categories {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

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

.category-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    background-color: var(--dark-bg-light);
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.category-image {
    height: 150px;
    overflow: hidden;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.category-card:hover .category-image img {
    transform: scale(1.05);
}

.category-card h3 {
    text-align: center;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

/* FOOTER */
footer {
    background-color: var(--dark-bg-light);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-about h3,
.footer-contact h3,
.footer-social h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links h3,
.footer-hours h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

.footer-hours p {
    color: #ccc;
    margin-bottom: 0.5rem;
}

.footer-hours p i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.footer-contact p {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary-color);
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--dark-bg);
    color: var(--text-color);
    border-radius: 50%;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
}

/* SAYFA BAŞLIKLARI */
.page-title {
    background-color: var(--dark-bg-light);
    padding: 40px 0;
    text-align: center;
}

.page-title h1 {
    color: var(--primary-color);
    font-size: 36px;
}

/* ÜRÜN LİSTELEME SAYFASI */
.products-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.products-section .container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

/* Yeni ürün listesi düzeni için özel container */
.products-container-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 30px;
}

.filter-sidebar {
    background-color: var(--dark-bg-light);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    height: fit-content;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 8px;
}

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

.filter-group ul li a {
    display: block;
    padding: 5px 0;
    color: var(--text-color);
    transition: var(--transition);
}

.filter-group ul li a:hover,
.filter-group ul li a.active {
    color: var(--primary-color);
    padding-left: 5px;
}

.search-box {
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 10px 40px 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--dark-bg);
    color: var(--text-color);
}

.search-box button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

/* Ürün Listesi Grid Düzeni - 3 ürün yan yana */
.products-content {
    width: 100%;
}

#productGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

/* Load more anchor should not occupy a grid cell like a product card */
#load-more-anchor {
    display: block;
    grid-column: 1 / -1; /* span full row to avoid leaving an empty grid cell */
    height: 0;          /* take no vertical space */
    margin: 0;
    padding: 0;
    border: 0;
    line-height: 0;
    overflow: hidden;
    scroll-margin-top: 80px; /* adjust if you have a sticky header */
}

/* EKMEK KIRINTI */
.breadcrumb {
    background-color: var(--dark-bg-light);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.8rem;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
}

.breadcrumb ul li {
    position: relative;
    margin-right: 30px;
}

.breadcrumb ul li:after {
    content: "›";
    position: absolute;
    right: -18px;
    top: 0;
    color: var(--text-color);
}

.breadcrumb ul li:last-child:after {
    display: none;
}

.breadcrumb ul li.active {
    color: var(--primary-color);
}

/* ÜRÜN DETAY SAYFASI */
.product-detail {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

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

.product-gallery {
    position: relative;
}

/* Ana Galeri Swiper Stilleri */
.product-gallery-main {
    width: 100%;
    max-width: 600px;
    height: 400px;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
}

.product-gallery-main .swiper-slide {
    /* Swiper kendi genişlik/yükseklik hesaplamalarını yapmalı */
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-gallery-main .swiper-slide img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Navigasyon Butonları */
.product-gallery-main .swiper-button-next,
.product-gallery-main .swiper-button-prev {
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    margin-top: -22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.product-gallery-main .swiper-button-next:after,
.product-gallery-main .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 600;
}

.product-gallery-main .swiper-button-next:hover,
.product-gallery-main .swiper-button-prev:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

/* Pagination */
.product-gallery-main .swiper-pagination {
    bottom: 15px;
}

.product-gallery-main .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    opacity: 1;
    transition: all 0.3s ease;
}

.product-gallery-main .swiper-pagination-bullet-active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
}

/* Thumbnail Swiper Stilleri */
.product-gallery-thumbs {
    width: 100%;
    height: 100px;
    box-sizing: border-box;
    padding: 10px 0;
}

.product-gallery-thumbs .swiper-slide {
    /* Yüzde yerine sabit genişlik kullanarak hesap hatalarını önle */
    width: 130px !important;
    flex: 0 0 100px !important;
    height: 100%;
    opacity: 0.4;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-gallery-thumbs .swiper-slide-thumb-active {
    opacity: 1;
    border: 2px solid var(--primary-color);
}

.product-gallery-thumbs .swiper-slide:hover {
    opacity: 0.8;
}

.product-gallery-thumbs .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--white);
}

.product-meta {
    margin-bottom: 20px;
    font-size: 14px;
}

.product-meta span {
    display: inline-block;
    margin-right: 20px;
}

.product-meta span a {
    color: var(--primary-color);
}

.product-description {
    margin-bottom: 30px;
}

.product-description p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-features {
    background-color: var(--dark-bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.product-features li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.product-features li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.product-contact {
    padding: 20px;
    background-color: var(--dark-bg-light);
    border-radius: 8px;
    text-align: center;
}

.product-contact p {
    margin-bottom: 15px;
}

/* BENZER ÜRÜNLER */
.related-products {
    padding: 60px 0;
    background-color: var(--dark-bg-light);
}

.related-products h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 32px;
}

/* HAKKIMIZDA SAYFASI */
.about-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.about-section .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 28px;
}

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

.value-card {
    background-color: var(--dark-bg-light);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.value-icon {
    margin-bottom: 20px;
    font-size: 40px;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--white);
}



/* MAKALE SAYFASI */
.article-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.article-container {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.toc {
    background-color: var(--dark-bg-light);
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 110px;
}

.toc h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

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

.toc li {
    margin-bottom: 8px;
}

.toc a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.toc a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

article {
    background-color: var(--dark-bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

article h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
}

article h2 {
    color: var(--white);
    margin: 30px 0 15px 0;
    font-size: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

article p {
    margin-bottom: 15px;
    line-height: 1.6;
}

article ul {
    margin: 15px 0;
    padding-left: 20px;
}

article li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-info {
    background-color: var(--dark-bg);
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    border-left: 4px solid var(--primary-color);
}

.contact-info p {
    margin-bottom: 5px;
}

/* İLETİŞİM SAYFASI */
.contact-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

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

.contact-info {
    background-color: var(--dark-bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.info-item h3 {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 18px;
}

.social-contacts {
    margin-top: 30px;
}

.social-contacts h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-form {
    background-color: var(--dark-bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit {
    margin-top: 30px;
}

.map-section {
    padding: 60px 0;
    background-color: var(--dark-bg-light);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-meta .stock-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    border: 1px solid var(--border-color);
}

.product-meta .stock-status.in-stock {
    color: #0bbf5e;
    background: rgba(11, 191, 94, 0.1);
    border-color: rgba(11, 191, 94, 0.25);
}

.product-meta .stock-status.out-of-stock {
    color: #ff5a5a;
    background: rgba(255, 90, 90, 0.1);
    border-color: rgba(255, 90, 90, 0.25);
}

.product-description p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-description p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.product-features {
    background-color: var(--dark-bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.product-features li {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 10px;
}

.product-features li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.product-contact {
    padding: 20px;
    background-color: var(--dark-bg-light);
    border-radius: 8px;
    text-align: center;
}

.product-contact p {
    margin-bottom: 15px;
}

/* BENZER ÜRÜNLER */
.related-products {
    padding: 60px 0;
    background-color: var(--dark-bg-light);
}

.related-products h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-size: 32px;
}

/* HAKKIMIZDA SAYFASI */
.about-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.about-section .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    text-align: left;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-text h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 28px;
}

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

.value-card {
    background-color: var(--dark-bg-light);
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.value-icon {
    margin-bottom: 20px;
    font-size: 40px;
    color: var(--primary-color);
}

.value-card h3 {
    margin-bottom: 15px;
    color: var(--white);
}



/* MAKALE SAYFASI */
.article-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

.article-container {
    display: grid;
    grid-template-columns: 1fr 250px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.toc {
    background-color: var(--dark-bg-light);
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 110px;
}

.toc h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 18px;
}

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

.toc li {
    margin-bottom: 8px;
}

.toc a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.toc a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

article {
    background-color: var(--dark-bg-light);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

article h1 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
    text-align: center;
}

article h2 {
    color: var(--white);
    margin: 30px 0 15px 0;
    font-size: 20px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

article p {
    margin-bottom: 15px;
    line-height: 1.6;
}

article ul {
    margin: 15px 0;
    padding-left: 20px;
}

article li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.contact-info {
    background-color: var(--dark-bg);
    padding: 15px;
    border-radius: 5px;
    margin: 15px 0;
    border-left: 4px solid var(--primary-color);
}

.contact-info p {
    margin-bottom: 5px;
}

/* İLETİŞİM SAYFASI */
.contact-section {
    padding: 60px 0;
    background-color: var(--dark-bg);
}

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

.contact-info {
    background-color: var(--dark-bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 3px;
}

.info-item h3 {
    margin-bottom: 5px;
    color: var(--white);
    font-size: 18px;
}

.social-contacts {
    margin-top: 30px;
}

.social-contacts h3 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 18px;
}

.contact-form {
    background-color: var(--dark-bg-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit {
    margin-top: 30px;
}

.map-section {
    padding: 60px 0;
    background-color: var(--dark-bg-light);
}

.map-section h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}
