/* GENEL AYARLAR */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f1ea; /* kırık krem */
  color: #222;
}

/* LAYOUT */
.layout {
  display: flex;
  min-height: 100vh;
}

/* SOL MENÜ */
.sidebar {
  width: 250px;
  background: #111;
  color: #fff;
  padding: 30px 20px;
  position: fixed;
  height: 100%;
}

.logo-wrap {
  text-align: center;
  margin-bottom: 40px;
}

.logo {
  max-width: 100%;
}

.menu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.menu a:hover {
  opacity: 0.7;
}

/* SAĞ TARAF */
.content {
  margin-left: 250px;
  padding: 40px;
  width: 100%;
}

/* HERO */
.hero {
  display: flex;
  gap: 70px;
  align-items: center;
  margin-bottom: 60px;
}


}
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;   /* yatay ortalama */
    justify-content: flex-start; /* yukarı hizalama */
    text-align: center;
}

.hero-media {
    width: 100%;
    display: flex;
    justify-content: center; /* resmi ortala */
}

.hero-media img {
    max-width: 500px;   /* maksimum genişlik */
    width: 100%;
    height: auto;
    display: block;
}

.hero-text h1 {
  font-size: 36px;
  margin-bottom: 20px;
}

.hero-text p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #111;
  color: #fff;
  text-decoration: none;
  margin-right: 10px;
}

.btn-outline {
  background: transparent;
  border: 1px solid #111;
  color: #111;
}

/* WHO */
.who {
  margin-bottom: 60px;
}

.who h2 {
  margin-bottom: 15px;
}

/* FOOTER */
.contact {
  padding-top: 30px;
  border-top: 1px solid #ccc;
}

.contact-title {
  font-weight: bold;
  margin-bottom: 10px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* AKTİF MENÜ */
.menu a.active {
  font-weight: bold;
  text-decoration: underline;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* masaüstü 4 sütun */
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid #ddd;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  margin-bottom: 12px;
}

.card h3 {
  margin-bottom: 6px;
  text-transform: uppercase;
  font-size: 16px;
}

.card p {
  font-size: 14px;
  line-height: 1.4;
  min-height: 60px; /* tanıtım metni uzunluğu yakın dursun */
  margin-bottom: 12px;
}

.card .btn {
  width: 100%;
  text-align: center;
}

/* MOBİL */
@media (max-width: 900px) {
  .sidebar {
    position: relative;
    width: 100%;
    height: auto;
  }

  .content {
    margin-left: 0;
    padding: 20px;
  }

  .hero {
    flex-direction: column;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr); /* mobil 2 sütun */
  }
}

.content h1 {
  font-size: 32px;
  margin-bottom: 40px;
  text-transform: uppercase;
}

/* ÜRÜN DETAY SAYFASI (YENİ DÜZEN) */
.product {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr; /* sol: görsel, sağ: bilgi */
  gap: 40px;
  align-items: start;
  margin-bottom: 60px;
}

.product-media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-img-wrap {
  position: relative;
}

.product-media img {
  width: 100%;
  display: block;
  border: 1px solid #ddd;
  background: #fff;
}

.sold-badge {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0,0,0,0.85);
  color: #fff;
  padding: 16px 34px;
  font-size: 26px;
  letter-spacing: 2px;
}

.product-info {
  width: 100%;
}

/* Ürün adı (çerçeve dışında, büyük) */
.product-title-out {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* Açıklama (üstte) */
.desc-top {
  margin-bottom: 18px;
  line-height: 1.7;
}

/* Ölçüler + Materyel kutusu */
.info-box {
  border: 1px solid #ddd;
  padding: 18px;
  margin-bottom: 18px;
  background: #fff;
}

.section {
  margin-bottom: 14px;
}

.section-title {
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 2px solid #000; /* altı çizili belirgin */
  display: inline-block;
  margin-bottom: 6px;
}

/* Fiyat kutusu */
.price-box {
  border: 4px solid #000;         /* daha kalın çerçeve */
  padding: 18px;
  text-align: center;
  margin-bottom: 18px;
  background: #fff;
}

.price-main {
  font-size: 34px;
  font-weight: 800;
  color: #b00020; /* kırmızı ton */
  letter-spacing: 1px;
}

.price-sub {
  font-size: 14px;
  margin-top: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.buy-btn {
  width: 100%;
  text-align: center;
  margin-bottom: 18px;
}

.mini-contact {
  font-size: 14px;
  line-height: 1.7;
}

/* MOBİL DETAY */
@media (max-width: 900px) {
  .product {
    grid-template-columns: 1fr;
  }
}

.card {
    position: relative;
}

.sold-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(200, 0, 0, 0.9);
    color: #fff;
    padding: 12px 25px;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 4px;
}

/* BOŞ ÜRÜN / DOLDURULACAK ALANLAR */
.todo{
  border: 2px dashed #b00020;
  background: rgba(176,0,32,0.06);
  padding: 8px 10px;
  border-radius: 6px;
}

.card.placeholder{
  background:#fff;
}

.ph-box{
  height: 220px;             /* kart görsel yüksekliğiyle uyumlu */
  border: 2px dashed #b00020;
  background: rgba(176,0,32,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:12px;
  padding: 12px;
}

.ph-image{
  min-height: 360px;
  border: 2px dashed #b00020;
  background: rgba(176,0,32,0.06);
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-weight:700;
  letter-spacing:1px;
  text-transform:uppercase;
  padding: 18px;
}
.about-section{
    background:#f7f4ef;
    padding:60px 20px;
}

.about-container{
    max-width:900px;
    margin:0 auto;
    line-height:1.8;
    font-size:18px;
    color:#222;
}

.about-container h2{
    font-size:32px;
    margin-bottom:30px;
    text-align:center;
}

.about-container p{
    margin-bottom:18px;
}
.about-page{
    padding:60px 20px;
    background:#f7f4ef;
}

.about-page-container{
    max-width:900px;
    margin:0 auto;
    line-height:1.9;
    font-size:18px;
    color:#222;
}

.about-page h1{
    font-size:36px;
    margin-bottom:30px;
}

.about-page h2{
    margin-top:40px;
    margin-bottom:15px;
    font-size:26px;
}
.contact-page{
    padding:60px 20px;
    background:#f7f4ef;
}

.contact-page-container{
    max-width:1000px;
    margin:0 auto;
    color:#222;
}

.contact-page h1{
    font-size:34px;
    margin-bottom:18px;
}

.contact-lead{
    font-size:18px;
    line-height:1.8;
    margin-bottom:28px;
}

.contact-cards{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
}

.contact-card{
    background:#fff;
    border:1px solid rgba(0,0,0,0.08);
    border-radius:12px;
    padding:18px;
}

.contact-card-title{
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:10px;
}

.contact-card-text{
    margin-bottom:14px;
    opacity:0.9;
}

.contact-note{
    margin-top:22px;
    padding:14px 16px;
    border-left:4px solid #111;
    background:rgba(0,0,0,0.04);
    border-radius:8px;
}

/* mobil */
@media (max-width: 760px){
  .contact-cards{
      grid-template-columns:1fr;
  }
}
img {
    user-select: none;
    -webkit-user-drag: none;
}

.hero-quote{
    margin-top: 20px;
    font-size: 28px;
    font-style: italic;
    letter-spacing: 1px;
    text-align: center;
}

.about-signature{
    margin-top: 30px;
    text-align: right;
    font-style: italic;
    font-weight: 600;
    letter-spacing: 2px;
}
.delivered-wrap{
  position: relative;
  display: block;
}

.delivered-badge{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border: 3px solid rgba(255,255,255,0.75);
  padding: 10px 18px;
  border-radius: 10px;
  pointer-events: none;   /* tıklamayı engellemez */
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}

/* küçük ekran için otomatik küçült */
@media (max-width: 760px){
  .delivered-badge{
    font-size: 26px;
    padding: 8px 14px;
  }
}
.contact-links i{
  margin-right:8px;
  font-size:18px;
  color:#E1306C;
}