/* =========================
   PROFESYONEL RESMİ TEMA
   ========================= */

/* Reset ve Temel Ayarlar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    color: #1e293b;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Container */
.container {
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   HEADER - Site Temasına Uygun Tasarım
   ========================= */
header, .header {
    background: linear-gradient(135deg, #6b5d4f 0%, #7a6a5c 30%, #8b7a6b 60%, #7a6a5c 100%);
    color: #ffffff;
    padding: 40px 0 36px;
    box-shadow: 0 4px 20px rgba(107, 93, 79, 0.25),
                0 2px 8px rgba(107, 93, 79, 0.15);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

header .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

header h1 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin: 0 0 12px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

header p {
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 500;
    opacity: 0.95;
    margin: 0 auto 28px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    letter-spacing: -0.01em;
}

/* Header Butonlar */
header .actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 8px;
}

header .actions a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-decoration: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

header .actions a i {
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, #7a6a5c 0%, #9d8875 50%, #8b7a6b 100%);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(122, 106, 92, 0.4),
                0 4px 12px rgba(122, 106, 92, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(122, 106, 92, 0.5),
                0 6px 16px rgba(122, 106, 92, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #8b7a6b 0%, #a8998a 50%, #9d8875 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* =========================
   MAIN CONTENT
   ========================= */
main {
    padding: 40px 0;
}

.section {
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 0 20px;
}

.section h2 {
    text-align: center;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
    margin: 0 0 14px 0;
}

.section .desc, .section p.desc {
    text-align: center;
    font-size: clamp(15px, 1.8vw, 16px);
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 36px;
    font-weight: 500;
}

/* =========================
   PRODUCT GRID
   ========================= */
.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding-bottom: 50px;
}

/* =========================
   PRODUCT CARD - Sade ve Nazik Tasarım
   ========================= */
.card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06),
                0 1px 4px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1),
                0 4px 12px rgba(15, 23, 42, 0.06);
    border-color: rgba(122, 106, 92, 0.3);
}

/* Kart Görsel Alanı */
.card .media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    aspect-ratio: 4 / 3;
    min-height: 250px;
}

.card .media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    background: #ffffff;
}

.card:hover .media img {
    transform: scale(1.05);
}

/* Instagram Badge */
.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
}

.badge i {
    font-size: 14px;
}

.card:hover .badge {
    background: rgba(0, 0, 0, 0.7);
    transform: scale(1.03);
}

/* Kart İçerik */
.card .content {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card .title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    color: #0f172a;
    margin: 0 0 10px 0;
    letter-spacing: -0.01em;
}

.card .desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin: 0 0 16px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

/* Instagram Butonu - Kart Altında */
.card .cta {
    margin-top: auto;
    padding-top: 12px;
}

.card .cta .btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    background: linear-gradient(135deg, #7a6a5c 0%, #9d8875 100%);
    color: #ffffff;
    box-shadow: 0 3px 12px rgba(122, 106, 92, 0.25),
                0 2px 6px rgba(122, 106, 92, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.card .cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(122, 106, 92, 0.35),
                0 3px 8px rgba(122, 106, 92, 0.25);
    background: linear-gradient(135deg, #8b7a6b 0%, #a8998a 100%);
}

.card .cta .btn:active {
    transform: translateY(0);
}

.card .cta .btn i {
    font-size: 18px;
}

/* =========================
   FOOTER
   ========================= */
.footer {
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    padding: 40px 0;
    margin-top: 80px;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.04);
}

.footer-content {
    width: min(1200px, 92vw);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-content p {
    margin: 0;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.footer-content a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #3b82f6;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.footer-content a:hover {
    color: #1e40af;
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-2px);
}

.footer-content a i {
    font-size: 16px;
}

/* =========================
   EMPTY STATE
   ========================= */
.empty-state {
    background: rgba(249, 115, 22, 0.08);
    border: 2px solid rgba(249, 115, 22, 0.2);
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    text-align: center;
}

.empty-state p {
    color: #64748b;
    margin-bottom: 24px;
    font-size: 17px;
    line-height: 1.7;
}

.empty-state strong {
    color: #f97316;
    font-weight: 700;
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    
    .card .media {
        aspect-ratio: 4 / 3;
        min-height: 200px;
    }
    
    .card .content {
        padding: 14px;
    }
    
    .card .title {
        font-size: 14px;
    }
    
    .card .desc {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .card .cta .btn {
        padding: 10px 16px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    header {
        padding: 32px 0 28px;
    }
    
    header h1 {
        font-size: clamp(26px, 5vw, 32px);
        margin-bottom: 10px;
    }
    
    header p {
        font-size: clamp(14px, 2vw, 16px);
        margin-bottom: 24px;
    }
    
    header .actions {
        gap: 12px;
    }
    
    header .actions a {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .section h2 {
        font-size: clamp(22px, 4vw, 28px);
        margin-bottom: 12px;
    }
    
    .section .desc {
        font-size: clamp(14px, 2vw, 15px);
        margin-bottom: 28px;
    }
    
    .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .card {
        max-width: 100%;
    }
    
    .card .media {
        aspect-ratio: 4 / 3;
        min-height: 220px;
    }
    
    .card .content {
        padding: 16px;
    }
    
    .card .title {
        font-size: 15px;
        margin-bottom: 8px;
    }
    
    .card .desc {
        font-size: 13px;
        margin-bottom: 14px;
    }
    
    .card .cta .btn {
        padding: 11px 18px;
        font-size: 14px;
    }
    
    .badge {
        top: 10px;
        right: 10px;
        padding: 6px 10px;
        font-size: 11px;
    }
    
    header .actions {
        flex-direction: column;
        width: 100%;
    }
    
    header .actions a {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .section {
        padding: 0 16px;
    }
    
    header {
        padding: 28px 0 24px;
    }
    
    header h1 {
        font-size: 24px;
        margin-bottom: 8px;
    }
    
    header p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    header .actions {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    header .actions a {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .section h2 {
        font-size: 24px;
    }
    
    .card {
        border-radius: 16px;
    }
    
    .card .content {
        padding: 20px;
    }
}

/* =========================
   ANIMASYONLAR
   ========================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

/* =========================
   SHOWCASE SECTION
   ========================= */

/* ====== SECTION WRAPPER ====== */
.ms-showcase{
  --bg: #7a6a5c;          /* kahve ton */
  --panel: rgba(255,255,255,.10);
  --stroke: rgba(255,255,255,.18);
  --text: rgba(255,255,255,.96);
  --muted: rgba(255,255,255,.78);
  --btn: rgba(255,255,255,.12);
  --btnHover: rgba(255,255,255,.22);

  background: linear-gradient(135deg, #7a6a5c 0%, #8b7a6b 50%, #7a6a5c 100%);
  border-radius: 24px;
  overflow: hidden;
  padding: 48px 40px;
  color: var(--text);
  box-shadow: 0 20px 60px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.1);
  position: relative;
}

.ms-showcase::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(255,255,255,.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.ms-showcase > *{
  position: relative;
  z-index: 1;
}

.ms-showcase *{ 
  box-sizing: border-box;
}

.ms-grid{
  display: grid;
  grid-template-columns: 1.05fr 1.95fr;
  gap: 40px;
  align-items: stretch;
}

/* ====== LEFT SIDE (ABOUT) ====== */
.ms-left{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 12px 8px;
}

.ms-left h2{
  margin: 0 0 20px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 900;
  color: #ffffff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  text-shadow: 0 2px 8px rgba(0,0,0,.15);
}

.ms-left p{
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 500;
  font-size: 16px;
  max-width: 48ch;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: -0.01em;
}

.ms-left p:last-of-type{
  margin-bottom: 28px;
}

.ms-left .ms-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  width: fit-content;
  padding: 16px 28px;
  border-radius: 14px;
  border: 2px solid var(--stroke);
  background: var(--btn);
  color: var(--text);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  text-decoration: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
}

.ms-left .ms-btn i{
  font-size: 18px;
}

.ms-left .ms-btn:hover{
  transform: translateY(-3px);
  background: var(--btnHover);
  border-color: rgba(255,255,255,.35);
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.ms-left .ms-btn:active{
  transform: translateY(-1px);
}

/* ====== RIGHT SIDE (CARDS) ====== */
.ms-right{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-content: stretch;
}

.ms-card{
  background: rgba(255,255,255,.1);
  border: 1.5px solid var(--stroke);
  border-radius: 20px;
  overflow: hidden;
  min-height: 280px;
  display:flex;
  flex-direction:column;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}

.ms-card:hover{
  transform: translateY(-6px) scale(1.02);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
  box-shadow: 0 20px 50px rgba(0,0,0,.25), 0 8px 24px rgba(0,0,0,.15);
}

.ms-media{
  height: 220px;
  background: rgba(0,0,0,.2);
  overflow: hidden;
  position: relative;
}

.ms-media::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,.05) 100%);
  pointer-events: none;
  z-index: 1;
}

.ms-media img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.ms-card:hover .ms-media img{
  transform: scale(1.08);
}

.ms-body{
  padding: 18px 18px 20px;
  display:flex;
  flex-direction:column;
  gap: 10px;
  flex: 1;
}

.ms-title{
  margin:0;
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255,255,255,.92);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.4;
}

.ms-desc{
  margin:0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ====== PRICE: HIDE ====== */
.ms-price{ display:none !important; }

/* Eğer sistemde fiyat classın farklıysa bunlar da kapatsın */
.price, .product-price, .amount, .woocommerce-Price-amount{
  display:none !important;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 980px){
  .ms-showcase{ 
    padding: 36px 28px; 
    border-radius: 20px;
  }
  .ms-grid{ 
    grid-template-columns: 1fr; 
    gap: 32px;
  }
  .ms-left{ 
    padding: 8px 4px;
    text-align: center;
  }
  .ms-left p{ 
    max-width: none; 
  }
  .ms-left .ms-btn{
    margin: 0 auto;
  }
}

@media (max-width: 640px){
  .ms-showcase{ 
    padding: 28px 20px;
    border-radius: 18px;
  }
  .ms-grid{ 
    gap: 28px;
  }
  .ms-right{ 
    grid-template-columns: 1fr; 
    gap: 16px;
  }
  .ms-media{ 
    height: 240px; 
  }
  .ms-card{
    min-height: 300px;
  }
  .ms-left h2{
    font-size: 26px;
    margin-bottom: 16px;
  }
  .ms-left p{
    font-size: 15px;
    margin-bottom: 20px;
  }
  .ms-body{
    padding: 16px;
  }
}

/* =========================
   FEATURES SECTION
   ========================= */
.features-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 50px;
}

.feature-card{
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 28px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08),
              0 2px 8px rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15),
              0 8px 20px rgba(15, 23, 42, 0.1);
  border-color: rgba(122, 106, 92, 0.3);
}

.feature-icon{
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, #7a6a5c 0%, #9d8875 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(122, 106, 92, 0.25);
  transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon{
  transform: scale(1.1) rotate(5deg);
}

.feature-icon i{
  font-size: 36px;
  color: #ffffff;
}

.feature-card h3{
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
}

.feature-card p{
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* =========================
   CTA SECTION
   ========================= */
.cta-section{
  text-align: center;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 24px;
  padding: 60px 40px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.cta-section h2{
  margin-bottom: 16px;
}

.cta-section .desc{
  margin-bottom: 32px;
}

/* =========================
   MS-CARD LINK STYLES
   ========================= */
.ms-card a{
  text-decoration: none;
  color: inherit;
  display: block;
  height: 100%;
}

.ms-card:hover{
  cursor: pointer;
}

/* =========================
   RESPONSIVE - FEATURES
   ========================= */
@media (max-width: 1024px) {
  .features-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .features-grid{
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card{
    padding: 32px 24px;
  }
  
  .cta-section{
    padding: 40px 24px;
  }
}

/* =========================
   HERO SECTION
   ========================= */
.hero-section{
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 60px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero-section::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(122, 106, 92, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-title{
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.hero-subtitle{
  font-size: clamp(16px, 2vw, 20px);
  color: #64748b;
  margin: 0 0 48px;
  font-weight: 500;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.hero-products{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

/* 3x3 Grid Layout - 3 üstte, 3 altta */
.hero-products-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 50px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  align-items: stretch;
  justify-items: stretch;
}

.hero-product-card{
  flex: 0 1 auto;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.08),
              0 2px 8px rgba(0,0,0,.06);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  animation: heroCardFadeIn 0.6s ease forwards;
  max-width: 220px;
  border: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Grid item için özel stil */
.hero-products-grid .hero-product-card{
  max-width: 100%;
  width: 100%;
  height: 100%;
}

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

/* 4 ürün için özel düzen - daha kompakt */
.hero-product-card.hero-card-1{
  transform: scale(0.92);
  max-width: 200px;
  z-index: 1;
}

.hero-product-card.hero-card-2{
  transform: scale(0.96);
  max-width: 210px;
  z-index: 2;
}

.hero-product-card.hero-card-3{
  transform: scale(0.96);
  max-width: 210px;
  z-index: 2;
}

.hero-product-card.hero-card-4{
  transform: scale(0.92);
  max-width: 200px;
  z-index: 1;
}

/* 3 veya daha az ürün için eski stil (fallback) */
.hero-product-card:nth-child(1):not(.hero-card-4) ~ .hero-product-card:nth-child(2),
.hero-product-card:nth-child(1):not(.hero-card-4) ~ .hero-product-card:nth-child(3){
  transform: scale(1);
  z-index: 2;
  max-width: 280px;
}

.hero-product-card:nth-child(1):not(.hero-card-4){
  transform: scale(0.85);
  max-width: 220px;
}

.hero-product-card:nth-child(3):not(.hero-card-4):last-child{
  transform: scale(0.85);
  max-width: 220px;
}

.hero-product-card:hover{
  transform: translateY(-6px) scale(1.03) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,.12),
              0 4px 12px rgba(0,0,0,.08);
  z-index: 10 !important;
  border-color: rgba(122, 106, 92, 0.3);
}

.hero-product-card a{
  text-decoration: none;
  color: inherit;
  display: block;
}

.hero-product-image{
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  flex-shrink: 0;
}

.hero-product-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  background: #ffffff;
}

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

.hero-product-info{
  padding: 14px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-product-info h3{
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-type-badge{
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  margin-top: 4px;
}

.product-type-badge.car{
  background-color: #e3f2fd;
  color: #1976d2;
}

.product-type-badge.figure{
  background-color: #fce4ec;
  color: #c2185b;
}

.hero-cta{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-hero-primary{
  background: linear-gradient(135deg, #7a6a5c 0%, #9d8875 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(122, 106, 92, 0.35),
              0 4px 12px rgba(122, 106, 92, 0.25);
}

.btn-hero-primary:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(122, 106, 92, 0.45),
              0 6px 16px rgba(122, 106, 92, 0.35);
}

.btn-hero-secondary{
  background: #ffffff;
  color: #7a6a5c;
  border: 2px solid #7a6a5c;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

.btn-hero-secondary:hover{
  transform: translateY(-3px);
  background: #7a6a5c;
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(122, 106, 92, 0.25);
}

/* =========================
   ABOUT SECTION
   ========================= */
.about-section{
  background: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.about-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.about-grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-left{
  padding: 20px 0;
}

.about-title{
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #0f172a;
  margin: 0 0 24px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.about-text{
  font-size: 17px;
  color: #64748b;
  line-height: 1.8;
  margin: 0 0 20px;
  font-weight: 500;
}

.about-features{
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-feature-item{
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
}

.about-feature-item i{
  color: #7a6a5c;
  font-size: 20px;
}

.about-btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7a6a5c 0%, #9d8875 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(122, 106, 92, 0.35),
              0 4px 12px rgba(122, 106, 92, 0.25);
  margin-top: 8px;
}

.about-btn:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(122, 106, 92, 0.45),
              0 6px 16px rgba(122, 106, 92, 0.35);
}

.about-right{
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.about-product-card{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.12),
              0 4px 16px rgba(0,0,0,.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
}

.about-product-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,.2),
              0 8px 24px rgba(0,0,0,.15);
}

.about-product-card a{
  text-decoration: none;
  color: inherit;
  display: block;
}

.about-product-image{
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 400px;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.about-product-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  image-rendering: high-quality;
  background: #ffffff;
}

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

.about-product-overlay{
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 100%);
  padding: 24px;
  color: #ffffff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.about-product-card:hover .about-product-overlay{
  transform: translateY(0);
}

.about-product-overlay h4{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.3;
}

.about-product-overlay span{
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.9;
}

/* =========================
   RESPONSIVE - HERO & ABOUT
   ========================= */
@media (max-width: 1024px) {
  .hero-products{
    gap: 16px;
  }
  
  .hero-product-card{
    max-width: 180px !important;
    transform: scale(0.92) !important;
  }
  
  .hero-product-card.hero-card-2,
  .hero-product-card.hero-card-3{
    max-width: 190px !important;
    transform: scale(0.94) !important;
  }
  
  .hero-product-image{
    aspect-ratio: 4 / 3;
    min-height: 180px;
  }
  
  .hero-product-info{
    padding: 12px;
  }
  
  .hero-product-info h3{
    font-size: 12px;
  }
  
  .about-grid{
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .hero-section{
    padding: 48px 0 60px;
  }
  
  .hero-title{
    margin-bottom: 14px;
    font-size: clamp(24px, 5vw, 32px);
  }
  
  .hero-subtitle{
    margin-bottom: 32px;
    font-size: clamp(15px, 2vw, 18px);
  }
  
  .hero-products{
    flex-direction: row;
    align-items: center;
    gap: 12px;
    margin-bottom: 36px;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .hero-products-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    padding: 0 15px;
  }
  
  .hero-product-card{
    max-width: calc(50% - 6px) !important;
    width: 100%;
    transform: scale(1) !important;
    min-width: 160px;
  }
  
  .hero-products-grid .hero-product-card{
    max-width: 100% !important;
    min-width: auto;
  }
  
  .hero-product-card.hero-card-1,
  .hero-product-card.hero-card-2,
  .hero-product-card.hero-card-3,
  .hero-product-card.hero-card-4{
    transform: scale(1) !important;
    max-width: calc(50% - 6px) !important;
  }
  
  .hero-product-image{
    aspect-ratio: 4 / 3;
    min-height: 160px;
  }
  
  .hero-product-info{
    padding: 10px;
  }
  
  .hero-product-info h3{
    font-size: 11px;
  }
  
  .hero-cta{
    flex-direction: column;
    width: 100%;
  }
  
  .btn-hero-primary,
  .btn-hero-secondary{
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  
  .about-grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .about-left{
    text-align: center;
  }
  
  .about-features{
    align-items: center;
  }
  
  .about-product-image{
    aspect-ratio: 4 / 3;
    min-height: 320px;
  }
  
  .about-product-overlay{
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  }
}

@media (max-width: 480px) {
  .hero-products-grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .hero-product-image{
    aspect-ratio: 4 / 3;
    min-height: 200px;
  }
}


