@font-face {
  font-family: 'QuicksandLocal';
  src: url('../fonts/Quicksand.ttf') format('truetype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --text: #333;
  --muted: #555555;
  --primary: #ed6c23;
  --primary-600: #cf5e1f;
  --border: #e7e7e7;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'QuicksandLocal', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, 'Apple Color Emoji', 'Segoe UI Emoji';
  background: var(--bg);
  color: var(--text);
}

/* Form kontrollerinde font mirası ve normalize */
button, input, select, textarea {
  font: inherit;
  color: inherit;
}

/* Tüm linklerde altı çizgiyi kaldır */
a {
  text-decoration: none;
}
input, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}

.top-menu-area {
  background: #eef1f3;
  padding: 30px 0;
}

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

.top-menu-area .logo {
  color: var(--text);
}

.top-menu-area .logo img {
  height: 32px;
  width: auto;
  display: block;
}

.top-menu-cta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}
.logo { color: var(--text); text-decoration: none; font-weight: 700; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 8px; }
.logo img { height: 30px; width: auto; display: block; }
.nav-links { display: flex; gap: 16px; align-items: center; }
.nav-links a { color: var(--muted); text-decoration: none; padding: 8px 10px; border-radius: 6px; }
.nav-links a.active, .nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.04); }
.nav-cta { display: flex; gap: 8px; align-items: center; }
.nav-search {
  flex: 1;
  max-width: 400px;
  margin-left: auto;
}

.search-form {
  display: flex;
  position: relative;
  width: 100%;
}

.search-form input {
  flex: 1;
  background: var(--panel);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 45px 10px 16px;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.search-form input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(237, 108, 35, 0.1);
}

.search-form button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: color 0.2s ease;
}

.search-form button:hover {
  color: var(--primary);
}

.nav-toggle { display: none; background: transparent; border: 0; color: var(--text); font-size: 20px; cursor: pointer; }

/* Mobile Menu */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: 0;
  width: 72%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: none;
}

.mobile-menu-overlay.is-open {
  transform: translateX(0);
}

.mobile-menu {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: var(--panel);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow-y: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-header h3 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--muted);
  cursor: pointer;
  padding: 5px;
  line-height: 1;
}

.mobile-menu-close:hover {
  color: var(--text);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  color: var(--muted);
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-weight: 500;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--primary);
  background: rgba(237, 108, 35, 0.1);
}

.mobile-menu-search {
  padding: 15px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mobile-search-form {
  display: flex;
  position: relative;
  width: 100%;
}

.mobile-search-form input {
  flex: 1;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 45px 12px 16px;
  border-radius: 25px;
  font-size: 14px;
  outline: none;
}

.mobile-search-form button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--muted);
  font-size: 16px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 15px;
}
.btn.btn-cart {
  padding: 12px 60px;
  background-color: #47b378;
  color: #fff !important;
  font-weight: 900 !important;
}
.btn.btn-compare {
  padding: 12px 25px;
  background-color: #fff;
  color: #ed6c23;
  border: 2px solid #ed6c23;
  font-weight: 900 !important;
}
.btn.btn-partner {
  padding: 12px 25px;
  background-color: #46bbb9;
  color: #fff !important;
  font-weight: 900 !important;
}
.price {
  font-size: 2rem;
  margin-bottom: 30px;
  display: block;
  font-weight: 900;
}
.mobile-menu-cta .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.btn { cursor: pointer; border:none; padding: 10px 14px; border-radius: 10px; font-weight: 900; }
.btn-primary { background: var(--primary); color: white; border-color: var(--primary-600); }
.btn-primary:hover { background: var(--primary-600); }
.btn-ghost { color: var(--primary); border-color: transparent; }
.btn-ghost { background: transparent; color: var(--text); }

.hero { padding: 72px 0 48px; }
.hero-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; align-items: center; }
.hero h1 { font-size: 40px; margin: 0 0 12px; }
.hero p { margin: 0 0 16px; color: var(--muted); }
.hero-controls { display: flex; gap: 12px; margin: 16px 0 8px; }
.select { position: relative; }
.select select { appearance: none; background: var(--panel); color: var(--text); border: 1px solid var(--border); padding: 10px 12px; border-radius: 10px; min-width: 220px; }

.quick-search { display: flex; gap: 8px; margin-top: 8px; }
.quick-search input { flex: 1; background: var(--panel); color: var(--text); border: 1px solid var(--border); padding: 10px 12px; border-radius: 10px; }
.muted { color: var(--muted); }

.hero-art {
  height: 320px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(237,108,35,0.12), rgba(0,0,0,0.05));
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,1px,1px); white-space: nowrap; border: 0; }

/* Sections */
.section { padding: 40px 0; }
.section-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.section h2 { margin: 0; font-size: 24px; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 12px; border-radius: 999px; border: 1px solid var(--border); color: var(--text); text-decoration: none; background: #fff; }
.chip.is-active, .chip:hover { border-color: var(--primary); color: var(--primary); background: #fff7f0; }

/* Category grid */
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.category-card { border: 1px solid var(--border); border-radius: 12px; padding: 16px; background: var(--panel); }
.category-card h2 { margin: 0 0 8px; font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 8px; }
.category-card p { font-size: 14px; color: var(--muted); margin: 0 0 10px; }
.category-card .category-icon { color: var(--primary); }
.category-card ul { margin: 0; padding-left: 18px; color: var(--muted); }

@media (max-width: 900px) {
  .category-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .category-grid { grid-template-columns: 1fr; }
}

/* Slider */
.slider { position: relative; display: grid; grid-auto-flow: column; grid-auto-columns: 100%; overflow: hidden; border: 1px solid var(--border); border-radius: 16px; background: var(--panel); }
.slide { padding: 20px; display: none; }
.slide.is-active { display: block; }
.card { background: rgba(0,0,0,0.02); border: 1px solid var(--border); padding: 16px; border-radius: 12px; }
.slider-dots { display: flex; gap: 8px; justify-content: center; margin-top: 10px; }
.slider-dots button { width: 8px; height: 8px; border-radius: 999px; border: 0; background: #d9d9d9; cursor: pointer; }
.slider-dots button[aria-current="true"] { background: var(--primary); }

/* Home hero slider */
.home-slider { padding: 16px 0 8px; }
.slider-hero { border-radius: 16px; overflow: hidden; }
.slider-hero .slide { display: none; padding: 0; }
.slider-hero .slide.is-active { display: block; }
.slider-hero img { width: 100%; height: auto; display: block; }

/* Logos */
.logos-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
.logo-card { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; height: auto; display: grid; place-items: center; color: var(--muted); overflow: hidden; }
.logo-card img { width: 100%; height: auto; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
  .top-menu-cta { display: none; }
  .top-menu-area { padding: 20px 0; }
  .mobile-menu-overlay { display: block; }
}

/* Filters + Products */
.filter-row { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product-card { border: 1px solid var(--border); border-radius: 12px; padding: 14px; background: var(--panel); display: flex; flex-direction: column; gap: 10px; }
.product-media { height: 140px; border: 1px dashed var(--border); border-radius: 10px; background: #fff7f0; }
.product-title { margin: 0; font-size: 16px; }
.product-meta { margin: 0; color: var(--muted); font-size: 14px; }
.product-price { 
  font-size: 18px; 
  font-weight: 700; 
  color: var(--primary); 
  margin: 4px 0; 
}

/* Products Layout */
.products-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  margin-top: 20px;
}

/* Category Sidebar */
.category-sidebar {
  background: var(--panel);
  border-radius: 8px;
  padding: 24px;
  height: fit-content;
  position: sticky;
  top: 200px;
  border: 1px solid var(--border);
}

.category-sidebar h3 {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.category-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.category-item {
  border-bottom: 1px solid var(--border);
  padding-bottom: 8px;
  margin-bottom: 8px;
}

.category-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.category-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.category-toggle:hover {
  color: var(--primary);
}

.category-toggle i {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.category-toggle.active i {
  transform: rotate(180deg);
}

.subcategory-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.subcategory-list.active {
  max-height: 300px;
}

.subcategory-list li {
  margin: 0;
}

.subcategory-list a {
  display: block;
  padding: 6px 0 6px 16px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

/* Products Content */
.products-content {
  min-width: 0; /* Grid item overflow fix */
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .products-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .category-sidebar {
    position: static;
    order: 2;
  }
  
  .products-content {
    order: 1;
  }
}
.product-actions { display: flex; gap: 8px; justify-content: flex-end; }

/* Contact form */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-span-2 { grid-column: span 2; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-weight: 600; }
.form-field input, .form-field textarea, .form-field select { background: var(--panel); color: var(--text); border: 1px solid var(--border); padding: 10px 12px; border-radius: 10px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: 2px solid rgba(237,108,35,0.3); outline-offset: 1px; }
.error { color: #c0392b; min-height: 16px; }

/* Product detail */
.breadcrumb { color: var(--muted); font-size: 14px; margin-bottom: 10px; }
.breadcrumb a { color: inherit; text-decoration: none; }
.product-detail { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 20px; }
.pd-media { height: 360px; border: 1px solid var(--border); border-radius: 12px; background: #fff7f0; }
.pd-specs { margin: 0 0 12px; padding-left: 18px; color: var(--muted); }
.pd-cta { display: flex; gap: 8px; margin-top: 12px; }
.partner-card { display: flex; gap: 10px; align-items: center; border: 1px solid var(--border); border-radius: 12px; padding: 10px; margin-top: 12px; }
.partner-avatar { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; background: #fff7f0; color: var(--primary); font-weight: 700; }

/* Modal */
.modal { position: fixed; inset: 0; display: none; }
.modal[aria-hidden="false"] { display: block; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.4); }
.modal-dialog { position: relative; background: #fff; margin: 28vh auto; max-width: 640px; border-radius: 12px; border: 1px solid var(--border); overflow: hidden; }
.modal-header { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; border-bottom: 1px solid var(--border); }
.modal-body { padding: 14px; }
.modal-actions { display: flex; gap: 8px; justify-content: flex-end; padding: 0 14px 14px; }
.modal-close { background: transparent; border: 0; font-size: 22px; cursor: pointer; }

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; }
}

/* Campaigns */
.campaigns-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.campaign-card { position: relative; border: 1px solid var(--border); border-radius: 12px; padding: 14px; background: var(--panel); display: flex; flex-direction: column; gap: 8px; }
.campaign-title { margin: 0; font-size: 16px; }
.campaign-meta { margin: 0; color: var(--muted); font-size: 14px; }
.campaign-actions { display: flex; justify-content: flex-end; }
.campaign-badge { position: absolute; top: 12px; right: 12px; background: #fff7f0; color: var(--primary); border: 1px solid var(--border); padding: 4px 8px; border-radius: 999px; font-weight: 700; font-size: 12px; }
.campaign-media { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); }
.campaign-media img { width: 100%; height: auto; display: block; }

@media (max-width: 900px) {
  .campaigns-grid { grid-template-columns: 1fr; }
}

/* Tabs */
.tabs { display: flex; gap: 8px; margin-bottom: 10px; }
.tab { border: 1px solid var(--border); background: #fff; color: var(--text); border-radius: 999px; padding: 8px 12px; cursor: pointer; }
.tab.is-active, .tab:hover { border-color: var(--primary); color: var(--primary); background: #fff7f0; }
.tab-panels { }
.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* Tables */
.table-wrap { width: 100%; overflow: auto; }
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); }
.table thead th { background: #fff7f0; color: var(--primary); }

/* FAQ */
.faq details { border: 1px solid var(--border); border-radius: 10px; padding: 10px 12px; background: #fff; }
.faq details + details { margin-top: 8px; }
.faq summary { cursor: pointer; font-weight: 600; }

/* Auth */
.auth-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.auth-form { padding: 16px; }
.auth-container { max-width: 400px; margin: 0 auto; text-align: center; }
.login-title { font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.login-description { font-size: 16px; color: var(--muted); margin-bottom: 32px; line-height: 1.5; }
@media (max-width: 900px) {
  .auth-grid { grid-template-columns: 1fr; }
}

/* Footer */
.site-footer { border-top: 1px solid var(--border); background: #262b30; margin-top: 32px; color: white; }
.site-footer .logo { color: white; }
.site-footer .logo span { color: white; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 2fr 1fr; gap: 16px; padding: 90px 0; align-items: start; }
.footer-help strong { display: block; margin-bottom: 8px; color: white; }
.help-actions { display: flex; flex-direction: column; gap: 8px; }
.help-actions .btn-ghost { color: white; border-color: rgba(255,255,255,0.3); }
.help-actions .btn-ghost:hover { background: rgba(255,255,255,0.1); color: white; }
.footer-social { display: flex; gap: 8px; justify-content: flex-end; }
.social { width: 36px; height: 36px; border-radius: 999px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,0.3); color: white; text-decoration: none; }
.social:hover { background: rgba(255,255,255,0.1); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); font-size: 14px; }
.footer-links { display: flex; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer-links a:hover { color: var(--primary); }

/* Footer right menu */
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.footer-nav h4 { margin: 0 0 8px; font-size: 14px; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: .3px; }
.footer-nav ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.footer-nav a { color: white; text-decoration: none; }
.footer-nav a:hover { color: var(--primary); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-social { justify-content: flex-start; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-nav { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .filter-row { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-span-2 { grid-column: span 1; }
}

/* Registration Form Styles */
.registration-form {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.form-section {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

.section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--primary);
}

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

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field label {
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(237, 108, 35, 0.1);
}

.form-field textarea {
  min-height: 100px;
  resize: vertical;
}

.file-upload {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 100%;
}

.file-upload input[type="file"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: 2px dashed var(--border);
  border-radius: 10px;
  background: #fff7f0;
  color: var(--primary);
  font-weight: 600;
  transition: all 0.2s ease;
}

.file-upload:hover .file-upload-label {
  border-color: var(--primary);
  background: rgba(237, 108, 35, 0.05);
}

.required {
  color: #e74c3c;
}

.form-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.btn-submit {
  background: var(--primary);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.btn-submit:hover {
  background: var(--primary-600);
}

.btn-reset {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-reset:hover {
  background: var(--border);
  color: var(--text);
}

.form-help {
  background: #f8f9fa;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 20px;
}

.form-help h3 {
  margin: 0 0 8px 0;
  color: var(--primary);
  font-size: 16px;
}

.form-help p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .form-grid-2,
  .form-grid-3 {
    grid-template-columns: 1fr;
  }
  
  .form-actions {
    flex-direction: column;
  }
}

/* Blog Styles */
.main-content {
  padding: 40px 0;
  min-height: calc(100vh - 200px);
}

.blog-header {
  text-align: center;
  margin-bottom: 40px;
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(237,108,35,0.05), rgba(0,0,0,0.02));
  border-radius: 16px;
  border: 1px solid var(--border);
}

.blog-header h1 {
  font-size: 36px;
  margin: 0 0 16px;
  color: var(--text);
}

.blog-header p {
  font-size: 18px;
  color: var(--muted);
  margin: 0;
  max-width: 600px;
  margin: 0 auto;
}

.blog-categories {
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.blog-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.blog-media {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.blog-category {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.4;
}

.blog-title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.blog-excerpt {
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 16px;
  flex: 1;
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--muted);
  margin-top: auto;
}

.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-meta i {
  font-size: 12px;
}

.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.pagination-numbers {
  display: flex;
  gap: 8px;
}

.pagination-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  background: var(--panel);
  color: var(--text);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.2s ease;
}

.pagination-btn:hover,
.pagination-btn.is-active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

/* Blog Detail Styles */
.blog-detail {
  max-width: 800px;
  margin: 0 auto;
}

.blog-detail-header {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border);
}

.blog-detail-header .blog-category {
  position: static;
  display: inline-block;
  margin-bottom: 16px;
}

.blog-detail-title {
  font-size: 32px;
  line-height: 1.3;
  margin: 0 0 20px;
  color: var(--text);
}

.blog-detail .blog-meta {
  justify-content: center;
  gap: 24px;
}

.blog-detail-media {
  margin-bottom: 40px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.blog-detail-media img {
  width: 100%;
  height: auto;
  display: block;
}

.blog-detail-content {
  line-height: 1.8;
  font-size: 16px;
  color: var(--text);
}

.blog-detail-content h2 {
  font-size: 24px;
  margin: 40px 0 20px;
  color: var(--text);
}

.blog-detail-content h3 {
  font-size: 20px;
  margin: 30px 0 16px;
  color: var(--text);
}

.blog-detail-content p {
  margin-bottom: 20px;
}

.blog-detail-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.blog-detail-content li {
  margin-bottom: 8px;
}

.blog-detail-content blockquote {
  background: #f8f9fa;
  border-left: 4px solid var(--primary);
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
}

.blog-detail-content blockquote p {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--text);
}

.blog-detail-content blockquote cite {
  font-size: 14px;
  color: var(--muted);
  font-style: normal;
  font-weight: 600;
}

.blog-share {
  margin: 40px 0;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.blog-share h4 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 18px;
}

.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s ease;
}

.share-btn.facebook {
  background: #1877f2;
  color: white;
}

.share-btn.twitter {
  background: #1da1f2;
  color: white;
}

.share-btn.linkedin {
  background: #0077b5;
  color: white;
}

.share-btn.whatsapp {
  background: #25d366;
  color: white;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.related-posts {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.related-posts h3 {
  font-size: 24px;
  margin: 0 0 24px;
  color: var(--text);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.related-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--panel);
  transition: all 0.2s ease;
}

.related-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
}

.related-media {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.related-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-content {
  flex: 1;
}

.related-content h4 {
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.4;
}

.related-content h4 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-content h4 a:hover {
  color: var(--primary);
}

.related-date {
  font-size: 14px;
  color: var(--muted);
}

/* Home Product Grid Styles */
.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.home-product-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.home-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.home-product-media {
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff7f0;
}

.home-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.home-product-title {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text);
}

.home-product-meta {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 12px;
  line-height: 1.5;
}

.home-product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 16px;
}

.home-product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}

.home-product-actions .btn {
  flex: 1;
  text-align: center;
  font-size: 14px;
  padding: 10px 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .blog-header h1 {
    font-size: 28px;
  }
  
  .blog-header p {
    font-size: 16px;
  }
  
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .blog-detail-title {
    font-size: 24px;
  }
  
  .blog-detail .blog-meta {
    flex-direction: column;
    gap: 8px;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .share-btn {
    justify-content: center;
  }
  
  .related-grid {
    grid-template-columns: 1fr;
  }
  
  .related-card {
    flex-direction: column;
  }
  
  .related-media {
    width: 100%;
    height: 120px;
  }
  
  .home-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .home-product-card {
    padding: 16px;
  }
  
  .home-product-media {
    height: 140px;
  }
  
  .home-product-title {
    font-size: 16px;
  }
  
  .home-product-price {
    font-size: 18px;
  }
  
  .home-product-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .home-product-grid {
    grid-template-columns: 1fr;
  }
}

/* How It Works Section */
.how-it-works-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 20px;
  letter-spacing: 1px;
}

.how-it-works-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 24px;
  line-height: 1.4;
}

.how-it-works-header p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 16px;
}

.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  text-align: center;
  padding: 30px 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  border-color: var(--primary);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  position: relative;
  z-index: 2;
}

.step-number::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: linear-gradient(135deg, var(--primary), var(--primary-600));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.4;
}

.step-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsive for How It Works */
@media (max-width: 768px) {
  .how-it-works-header h2 {
    font-size: 28px;
  }
  
  .how-it-works-header h3 {
    font-size: 20px;
  }
  
  .how-it-works-header p {
    font-size: 15px;
  }
  
  .how-it-works-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .step-card {
    padding: 24px 16px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .step-content h4 {
    font-size: 16px;
  }
  
  .step-content p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .how-it-works-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .how-it-works-header {
    margin-bottom: 40px;
  }
}

/* Trust Section */
.trust-section {
  background: linear-gradient(135deg, rgba(237,108,35,0.05), rgba(0,0,0,0.02));
  border-radius: 20px;
  padding: 60px 40px;
  border: 1px solid var(--border);
}

.trust-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-visual {
  position: relative;
}

.trust-visual img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.trust-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 20px;
  line-height: 1.3;
}

.trust-text p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Mobile Responsive for Trust Section */
@media (max-width: 768px) {
  .trust-section {
    padding: 40px 20px;
  }
  
  .trust-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .trust-visual img {
    height: 250px;
  }
  
  .trust-text h2 {
    font-size: 24px;
  }
  
  .trust-text p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .trust-section {
    padding: 30px 16px;
  }
  
  .trust-visual img {
    height: 200px;
  }
  
  .trust-text h2 {
    font-size: 20px;
  }
  
  .trust-text p {
    font-size: 15px;
  }
}

/* About Page Styles */
.about-header {
  text-align: center;
  margin-bottom: 60px;
  padding: 40px 0;
  background: linear-gradient(135deg, rgba(237,108,35,0.05), rgba(0,0,0,0.02));
  border-radius: 16px;
  border: 1px solid var(--border);
}

.about-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 20px;
  line-height: 1.3;
}

.about-intro {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
  max-width: 800px;
  margin: 0 auto;
}

/* About Layout */
.about-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-sticky-nav {
  position: sticky;
  top: 100px;
  height: fit-content;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-sticky-nav h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.about-sticky-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.about-sticky-nav li {
  margin-bottom: 8px;
}

.about-sticky-nav a {
  display: block;
  padding: 8px 12px;
  color: var(--text);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.about-sticky-nav a:hover {
  background: rgba(237,108,35,0.1);
  color: var(--primary);
}

.about-sticky-nav a.active {
  background: var(--primary);
  color: white;
}

.about-content {
  max-width: 900px;
}

.about-section {
  margin-bottom: 50px;
  padding: 30px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-section h2 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.about-section p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin: 0 0 16px;
}

.about-section p:last-child {
  margin-bottom: 0;
}

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

.about-list li {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 8px;
}

.about-list li:last-child {
  margin-bottom: 0;
}

.about-list strong {
  color: var(--primary);
  font-weight: 600;
}

.about-conclusion {
  font-size: 18px !important;
  font-weight: 600 !important;
  color: var(--primary) !important;
  text-align: center !important;
  margin-top: 30px !important;
  padding: 20px !important;
  background: rgba(237,108,35,0.1) !important;
  border-radius: 12px !important;
  border: 1px solid rgba(237,108,35,0.2) !important;
}

/* Mobile Responsive for About Page */
@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .about-sticky-nav {
    position: static;
    order: -1;
    margin-bottom: 20px;
  }
  
  .about-sticky-nav h3 {
    font-size: 18px;
    text-align: center;
  }
  
  .about-sticky-nav ul {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }
  
  .about-sticky-nav li {
    margin-bottom: 0;
  }
  
  .about-sticky-nav a {
    padding: 6px 12px;
    font-size: 13px;
    white-space: nowrap;
  }
  
  .about-header h1 {
    font-size: 28px;
  }
  
  .about-intro {
    font-size: 16px;
  }
  
  .about-section {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .about-section h2 {
    font-size: 20px;
  }
  
  .about-section p {
    font-size: 15px;
  }
  
  .about-list li {
    font-size: 15px;
  }
  
  .about-conclusion {
    font-size: 16px !important;
  }
}

@media (max-width: 480px) {
  .about-header {
    padding: 30px 20px;
    margin-bottom: 40px;
  }
  
  .about-header h1 {
    font-size: 24px;
  }
  
  .about-intro {
    font-size: 15px;
  }
  
  .about-section {
    padding: 16px;
    margin-bottom: 20px;
  }
  
  .about-section h2 {
    font-size: 18px;
  }
  
  .about-section p {
    font-size: 14px;
  }
  
  .about-list li {
    font-size: 14px;
  }
}

