/* Genel Reset */
body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 20px 0;
  position: relative;
}
.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.main-navigation a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
.header-icons {
  float: right;
  font-size: 20px;
}

/* Menü Toggle Butonu */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 20px;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #d7f0e3, #f0fdfb);
  padding: 60px 0;
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  color: #1a5d3b;
}
.hero p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* CTA Button */
.cta-button {
  margin-top: 20px;
}
.btn-green {
  background-color: #1a5d3b;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}

/* Badge */
.badge {
  background-color: #e0ffe5;
  padding: 10px 0;
  text-align: center;
}
.badge-text {
  font-size: 1.1rem;
  font-weight: bold;
  color: #1a5d3b;
}

/* Promo Banner */
.promo-banner {
  background-color: #fff;
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.promo-banner h2 {
  font-size: 1.5rem;
  color: #333;
}

/* Guarantee */
.guarantee {
  background-color: #f0fdfb;
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
  color: #1a5d3b;
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 0;
}
.feature-box {
  flex: 1;
  min-width: 250px;
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}
.feature-box h3 {
  color: #1a5d3b;
  margin-bottom: 10px;
}
.feature-box p {
  font-size: 0.95rem;
}

/* Footer */
.site-footer {
  background-color: #1a5d3b;
  color: #fff;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
  .features {
    flex-direction: column;
  }

  .main-navigation ul {
    display: none;
    flex-direction: column;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ddd;
  }

  .main-navigation ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .header-icons {
    display: none;
  }
}
/* Ürün Sayfası */
.single-product {
  padding: 40px 0;
}
.product-title {
  font-size: 2rem;
  color: #1a5d3b;
  margin-bottom: 20px;
}
.product-image img {
  max-width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}
.product-description {
  font-size: 1rem;
  color: #444;
  margin-bottom: 30px;
}
.product-cart {
  margin-top: 20px;
}
/* Statik Sayfalar */
.page-content {
  padding: 40px 0;
}
.page-title {
  font-size: 2rem;
  color: #1a5d3b;
  margin-bottom: 20px;
}
.page-body {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
}
/* Hero Section - Beyaz Arka Planlı */
.hero-section {
  background-color: #fff;
  padding: 60px 0;
}
.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1;
  min-width: 300px;
}
.hero-content h1 {
  font-size: 2.4rem;
  color: #1a5d3b;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
}
.hero-badge {
  margin-top: 20px;
}
.hero-badge span {
  display: inline-block;
  background-color: #e0ffe5;
  color: #1a5d3b;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 6px;
}
.hero-badge p {
  font-size: 0.95rem;
  margin-top: 8px;
  color: #666;
}

/* Görsel Alanı */
.hero-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}
.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  max-height: 400px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
  }
  .hero-content, .hero-image {
    width: 100%;
  }
  .hero-image img {
    max-height: 300px;
  }
}
.hero-section {
  background-color: #fff;
  padding: 60px 0;
}
.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1;
  min-width: 300px;
}
.hero-content h1 {
  font-size: 2.4rem;
  color: #1a5d3b;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 20px;
}
.hero-badge {
  margin-top: 20px;
}
.hero-badge span {
  display: inline-block;
  background-color: #e0ffe5;
  color: #1a5d3b;
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 6px;
}
.hero-badge p {
  font-size: 0.95rem;
  margin-top: 8px;
  color: #666;
}

/* Görsel Alanı */
.hero-image {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
}
.hero-image-wrapper {
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  overflow: hidden;
  margin: 0 auto;
}
.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
  }
  .hero-content, .hero-image {
    width: 100%;
  }
  .hero-image-wrapper {
    max-height: 300px;
  }
}
/* Hero Section - Geniş Görsel ve Büyük Font */
.hero-section {
  background-color: #fff;
  padding: 80px 0;
}
.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.hero-content {
  flex: 1;
  min-width: 300px;
}
.hero-content h1 {
  font-size: 3rem; /* BÜYÜK BAŞLIK */
  color: #1a5d3b;
  margin-bottom: 25px;
}
.hero-content p {
  font-size: 1.3rem; /* BÜYÜK AÇIKLAMA */
  color: #444;
  margin-bottom: 25px;
}
.hero-badge {
  margin-top: 25px;
}
.hero-badge span {
  display: inline-block;
  background-color: #e0ffe5;
  color: #1a5d3b;
  font-weight: bold;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 1rem;
}
.hero-badge p {
  font-size: 1rem;
  margin-top: 10px;
  color: #666;
}

/* Görsel Alanı - Genişletilmiş */
.hero-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}
.hero-image-wrapper {
  width: 100%;
  max-width: 550px;
  max-height: 500px;
  overflow: hidden;
  margin: 0 auto;
}
.hero-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .hero-layout {
    flex-direction: column;
    text-align: center;
  }
  .hero-content, .hero-image {
    width: 100%;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
  .hero-content p {
    font-size: 1.1rem;
  }
  .hero-image-wrapper {
    max-height: 350px;
  }
}
/* Üst Kampanya Barı */
.top-bar {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 6px 0;
  font-size: 0.9rem;
}

/* Logo ve Marka Adı */
.main-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}
.site-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #333;
  margin-left: 10px;
}

/* Menü */
.main-navigation {
  background-color: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 15px 0;
  margin: 0;
}
.nav-menu li {
  display: inline-block;
}
.nav-menu a {
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nav-menu a:hover {
  color: #1a5d3b;
}

/* Menü Toggle Butonu */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  text-align: right;
  padding: 10px 20px;
}

/* İkonlar */
.header-icons {
  text-align: center;
  padding: 10px 0;
  font-size: 20px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .menu-toggle {
    display: block;
  }
  .header-icons {
    display: none;
  }
}
/* === Menü Boşluk Temizliği ve Stil Güncellemesi === */
.top-bar { ... }
.main-header { ... }
.site-title { ... }
.main-navigation { ... }
.nav-menu { ... }
.menu-toggle { ... }
/* vs... */
/* Genel Sıfırlama */
.site-header, .main-header, .main-navigation, .nav-menu, .logo-title {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Üst Kampanya Barı */
.top-bar {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.2;
  padding: 4px 0;
  margin: 0;
}

/* Logo ve Marka Adı */
.main-header {
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
.logo-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 0;
}
.site-title {
  font-size: 1.6rem;
  font-weight: bold;
  color: #333;
}

/* Menü */
.main-navigation {
  background-color: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.nav-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 32px;
  padding: 10px 0;
  margin: 0;
}
.nav-menu li {
  display: inline-block;
}
.nav-menu a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.nav-menu a:hover {
  color: #1a5d3b;
}

/* Menü Toggle Butonu */
.menu-toggle {
  display: none;
  font-size: 22px;
  cursor: pointer;
  text-align: right;
  padding: 8px 20px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .menu-toggle {
    display: block;
  }
}
/* Neden Çelik Kesme Tahtası Bölümü */
.why-steel {
  background-color: #fff;
  padding: 60px 0;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  color: #1a5d3b;
  margin-bottom: 40px;
}
.benefit-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.benefit-item {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}
.benefit-item h3 {
  font-size: 1.2rem;
  color: #1a5d3b;
  margin-bottom: 10px;
}
.benefit-item p {
  font-size: 0.95rem;
  color: #444;
}

/* CTA Butonu */
.cta-button {
  margin-top: 40px;
}
.btn-green {
  background-color: #1a5d3b;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-green:hover {
  background-color: #144c2f;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .benefit-grid {
    flex-direction: column;
    gap: 20px;
  }
}
/* Koyu Arka Planlı Tanıtım Bölümü */
.why-steel-dark {
  background-color: #1a1a1a;
  padding: 80px 0;
  color: #f0f0f0;
  text-align: center;
}
.why-steel-dark .section-title {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #e0ffe5;
}
.benefit-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.benefit-box {
  background-color: #fff;
  color: #333;
  padding: 25px;
  border-radius: 10px;
  max-width: 320px;
  flex: 1;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.benefit-box h3 {
  font-size: 1.2rem;
  color: #1a5d3b;
  margin-bottom: 10px;
}
.benefit-box p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* CTA Butonu */
.cta-button {
  margin-top: 50px;
}
.btn-green {
  background-color: #1a5d3b;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}
.btn-green:hover {
  background-color: #144c2f;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .benefit-grid {
    flex-direction: column;
    gap: 20px;
  }
}
/* SSS Bölümü */
.faq-section {
  background: linear-gradient(to bottom, #1a1a1a, #000);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.faq-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #e0ffe5;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.faq-item {
  margin-bottom: 20px;
  border-bottom: 1px solid #444;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.1rem;
  text-align: left;
  padding: 15px;
  cursor: pointer;
  position: relative;
}
.faq-question::after {
  content: "▼";
  position: absolute;
  right: 20px;
  font-size: 0.9rem;
}
.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 0.95rem;
  color: #ccc;
}

/* Aç/Kapa JS için aktif sınıf */
.faq-item.active .faq-answer {
  display: block;
}
.faq-item.active .faq-question::after {
  content: "▲";
}
/* Tüm görseller otomatik boyutlansın */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Kutular ve içerikler taşmasın */
.container, .benefit-box, .faq-item {
  box-sizing: border-box;
  word-wrap: break-word;
}

/* Sayfa genelinde padding/margin dengesi */
body, html {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
/* Hero ve Tanıtım Bölümleri */
.hero-layout,
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* Mobilde alt alta geçsin */
@media (max-width: 768px) {
  .hero-layout,
  .benefit-grid {
    flex-direction: column;
    align-items: center;
  }

  .hero-text,
  .hero-image,
  .benefit-box,
  .faq-item {
    width: 100%;
    max-width: 100%;
  }

  .faq-question {
    font-size: 1rem;
  }

  .site-title {
    font-size: 1.4rem;
  }
}
.menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .nav-menu.active {
    display: flex;
  }
}
/* Footer Genel */
.site-footer {
  background-color: #111;
  color: #eee;
  padding: 40px 20px 20px;
  font-size: 0.95rem;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand h3 {
  font-size: 1.4rem;
  color: #1a5d3b;
  margin-bottom: 10px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #eee;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: #1a5d3b;
}
.footer-contact p {
  margin: 5px 0;
}

/* Alt Telif Satırı */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #aaa;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/* Ürün Görseli */
.product-image {
  width: 100%;
  max-width: 600px; /* Masaüstü için ideal genişlik */
  border-radius: 20px; /* Oval kenarlar */
  box-shadow: 0 0 20px rgba(0,0,0,0.1); /* Hafif gölge */
  margin: 0 auto;
  display: block;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .product-image {
    max-width: 90%;
    border-radius: 16px;
  }
}
.contact-section {
  background-color: #f9f9f9;
  padding: 20px 20px;
  text-align: center;
}
.contact-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #1a5d3b;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}
.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}
.btn-black {
  background-color: #000;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
}
.btn-black:hover {
  background-color: #333;
}
.whatsapp-btn {
  display: block;
}
.whatsapp-note {
  font-size: 0.9rem;
  color: #555;
  margin-top: -10px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .contact-form {
    padding: 0 10px;
  }
}
/* === İletişim Formu Yeni Grid Düzeni === */
.contact-section {
  background-color: #f9f9f9;
  padding: 80px 20px;
}
.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.form-title,
.contact-title {
  font-size: 2rem;
  font-style: italic;
  color: #000;
  text-align: center;
  margin-bottom: 20px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .half {
  width: 100%;
}
.form-grid .full {
  grid-column: span 2;
  width: 100%;
}
.form-grid input,
.form-grid textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  box-sizing: border-box;
}
.form-grid textarea {
  resize: vertical;
  min-height: 120px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid .full {
    grid-column: span 1;
  }
}
.form-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  width: 100%;
}

.btn-form {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.btn-form:hover {
  opacity: 0.9;
}

.btn-form:not(.btn-whatsapp) {
  background-color: #000;
  color: #fff;
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
}

.whatsapp-note {
  font-size: 0.9rem;
  color: #666;
  text-align: center;
  margin-top: -5px;
}



/* === Mobil Uyumlu Form Düzeni === */
@media (max-width: 768px) {
  .contact-form {
    padding: 0 10px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .form-grid .full,
  .form-grid .half {
    grid-column: span 1;
    width: 100%;
  }

  .form-actions {
    align-items: stretch;
    width: 100%;
  }

  .btn-form {
    width: 100%;
    font-size: 1rem;
    padding: 14px 20px;
  }

  .whatsapp-note {
    text-align: center;
    font-size: 0.9rem;
    margin-top: 5px;
  }
/* === İletişim Sayfası Boşluk Temizliği === */
body.page-id-33 #main-content,
body.page-id-33 .container.page-content {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
/* === Kayan Kampanya Şeridi === */
.promo-banner {
  background-color: #000;
  color: #fff;
  overflow: hidden;
  width: 100%;
  padding: 10px 0;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  z-index: 999;
}

.promo-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.promo-items {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 25s linear infinite;
}

.promo-items span {
  display: inline-block;
  margin-right: 50px;
  font-style: italic;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/* === Kayan Kampanya Şeridi === */
.promo-banner {
  background-color: #000 !important;
  color: #fff !important;
  width: 100%;
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  z-index: 999;
}

.promo-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.promo-items {
  display: inline-block;
  white-space: nowrap;
  animation: scrollLeft 20s linear infinite;
  font-size: 0.9rem;
  font-style: italic;
  color: #fff;
}

.promo-items span {
  display: inline-block;
  margin-right: 50px;
}

/* Animasyon */
@keyframes scrollLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
header .promo-banner {
  background-color: #000 !important;
}
/* === Kayan Kampanya Şeridi === */
.promo-banner {
  background-color: #000 !important;
  color: #fff !important;
  width: 100%;
  height: 40px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  box-sizing: border-box;
  position: relative;
  z-index: 999;
}

.promo-track {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.promo-items {
  display: inline-block;
  white-space: nowrap;
  font-size: 0.9rem;
  font-style: italic;
  color: #fff;
}
.product-page {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
}

.product-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.product-gallery img {
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.product-features li {
  margin-bottom: 10px;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.product-price {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.new-price {
  color: #e60023;
  font-weight: bold;
}

.discount-tag {
  background: #e60023;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-left: 10px;
}

.product-rating {
  margin-bottom: 20px;
  font-size: 1rem;
}

.shipping-info {
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: #444;
}

.purchase-buttons button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 20px;
  margin-right: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.purchase-buttons button:hover {
  background: #333;
}
.product-page {
  max-width: 900px;
  margin: auto;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
}

.product-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
}

.product-gallery img {
  max-width: 100%;
  margin-bottom: 20px;
  border-radius: 8px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.product-features li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.product-price {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.old-price {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}

.new-price {
  color: #e60023;
  font-weight: bold;
}

.discount-tag {
  background: #e60023;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.9rem;
  margin-left: 10px;
}

.product-rating {
  margin-bottom: 20px;
  font-size: 1rem;
}

.shipping-info {
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: #444;
}

.purchase-buttons button {
  background: #000;
  color: #fff;
  border: none;
  padding: 12px 20px;
  margin-right: 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.purchase-buttons button:hover {
  background: #333;
}
