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

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Kameron", serif;
}

/* ── TYPOGRAPHY ── */
h1 {
  text-align: center;
  padding: 20px 10px 10px;
  font-size: 48px;
  font-weight: 600;
}

h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ── BUTTONS ── */
.buttons {
  text-align: center;
  padding-bottom: 20px;
}

.buy {
  padding: 14px 28px;
  border-radius: 10px;
  background-color: #ffffff;
  border: 1.5px solid #f1c5b6;
  color: #333;
  font-size: 16px;
  font-family: "Kameron", serif;
  width: 180px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
}

.buy:hover {
  background-color: #f1c5b6;
  color: #ffffff;
  transform: translateY(-2px);
}

.buy-light {
  background-color: rgba(255,255,255,0.15);
  border-color: #ffffff;
  color: #ffffff;
}

.buy-light:hover {
  background-color: #ffffff;
  color: #269a6a;
}

.text-link {
  display: inline-block;
  color: #269a6a;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid #269a6a;
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.text-link:hover {
  opacity: 0.7;
}

/* ── HEADER ── */
#header {
  background-color: #269a6a;
  position: sticky;
  top: 0;
  z-index: 100;
}

header {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}

.logo {
  width: 70px;
  margin: 8px 0;
  display: block;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 8px;
}

nav ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 15px;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background-color 0.2s;
}

nav ul li a:hover {
  background-color: rgba(255,255,255,0.15);
}

/* hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBİL MENÜ ── */
#mobileMenu {
  display: none;
  background-color: #1e7d55;
  padding: 16px 24px;
}

#mobileMenu.open {
  display: block;
}

#mobileMenu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#mobileMenu ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.2);
}

/* ── PRODUCT SECTIONS ── */
.product-section {
  scroll-margin-top: 80px;
}

.bg-light {
  background-color: #f5f5f7;
}

.bg-green {
  background-color: #269a6a;
  color: #fff;
}

.bg-green h1,
.bg-green h2,
.bg-green p {
  color: #fff;
}

.bg-green .spec-list li span {
  color: rgba(255,255,255,0.7);
}

.product-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px 60px;
}

.product-intro {
  text-align: center;
  margin-bottom: 30px;
}

.product-tagline {
  font-size: 22px;
  color: #555;
  text-align: center;
  margin-bottom: 8px;
}

.bg-green .product-tagline {
  color: rgba(255,255,255,0.85);
}

.product-price {
  font-size: 28px;
  font-weight: 600;
  color: #269a6a;
  text-align: center;
  margin-bottom: 16px;
}

.bg-green .product-price {
  color: #fff;
}

/* ── GALLERY ── */
.product-gallery {
  text-align: center;
  margin-bottom: 40px;
}

.gallery-main {
  width: 100%;
  max-width: 860px;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
}

.gallery-main--tall {
  max-width: 500px;
}

.gallery-thumbs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.gallery-thumbs img {
  width: 160px;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s;
}

.gallery-thumbs img:hover {
  transform: scale(1.04);
}

/* ── PRODUCT DETAILS ── */
.product-details {
  max-width: 820px;
  margin: 0 auto;
}

.detail-block {
  margin-bottom: 36px;
}

.detail-img {
  width: 100%;
  max-width: 700px;
  border-radius: 12px;
  display: block;
  margin: 16px auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* ── SPEC LIST ── */
.spec-list {
  list-style: none;
  margin-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.bg-green .spec-list {
  border-top-color: rgba(255,255,255,0.2);
}

.spec-list li {
  display: flex;
  gap: 12px;
  padding: 8px 0;
  font-size: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.bg-green .spec-list li {
  border-bottom-color: rgba(255,255,255,0.15);
}

.spec-list li span {
  min-width: 100px;
  font-weight: 600;
  color: #888;
  flex-shrink: 0;
}

/* ── YOGA BLOK GRID ── */
.blok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 10px;
}

.blok-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px;
  overflow: hidden;
}

.blok-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.blok-card-body {
  padding: 20px;
}

.blok-card-body h2 {
  font-size: 20px;
  margin-bottom: 8px;
}

.blok-card-body p {
  font-size: 15px;
  line-height: 1.6;
}

/* ── FOOTER ── */
#footer {
  background-image: url(img/footer-bg.png);
  background-position: center;
  background-size: cover;
  margin-top: auto;
}

footer {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

#footerlinksAll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.footerlinks {
  padding: 30px 20px;
  min-width: 140px;
}

.footerlinks ul {
  list-style: none;
}

footer ul a {
  text-decoration: none;
  color: black;
}

footer ul li {
  list-style: none;
  padding-top: 12px;
  font-size: 15px;
}

#endOfBottom {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-top: 10px;
  padding-top: 16px;
}

#cr {
  font-size: 12px;
  color: #666;
}

/* ── MOBİL RESPONSIVE ── */
@media (max-width: 768px) {
  nav {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 22px;
  }

  .product-tagline {
    font-size: 18px;
  }

  .gallery-thumbs img {
    width: 100px;
    height: 85px;
  }

  .blok-grid {
    grid-template-columns: 1fr;
  }

  #footerlinksAll {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
  }

  #endOfBottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
