@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --brand-green: #3d683a;
  --brand-green-dark: #2f552d;
  --brand-orange: #e46f25;
  --brand-orange-soft: #f58f4f;
  --text-900: #1f231f;
  --text-700: #3a3f3a;
  --text-500: #687068;
  --line-soft: rgba(61, 104, 58, 0.16);
  --surface-0: #ffffff;
  --surface-1: #f7f5ef;
  --surface-2: #eef1ea;
  --surface-3: rgba(255, 255, 255, 0.72);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --shadow-1: 0 10px 28px rgba(31, 35, 31, 0.08);
  --shadow-2: 0 18px 44px rgba(31, 35, 31, 0.12);
  --container-xl: 1240px;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Manrope", "Open Sans", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text-700);
  background:
    radial-gradient(circle at 20% -8%, rgba(228, 111, 37, 0.08), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(61, 104, 58, 0.08), transparent 26%),
    linear-gradient(180deg, #fbfaf7 0%, #f6f4ee 100%);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6 {
  font-family: "Fraunces", "Montserrat", "Open Sans", serif;
  color: var(--brand-green-dark);
  letter-spacing: -0.02em;
  font-weight: 700;
}

a {
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

::selection {
  background: rgba(228, 111, 37, 0.18);
  color: var(--text-900);
}

.header,
.navigation-wrapper,
main,
.footer,
.top-bar {
  width: 100%;
}

.header .container,
.navigation-wrapper .container,
main > .container,
.footer .container,
main .container {
  max-width: var(--container-xl);
}

.top-bar {
  position: relative;
  background: linear-gradient(90deg, var(--brand-green-dark), var(--brand-green));
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.78rem;
  letter-spacing: 0.85px;
  font-weight: 600;
  text-transform: uppercase;
}

.header {
  position: relative;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 35, 31, 0.08);
  box-shadow: 0 10px 28px rgba(22, 28, 22, 0.06);
  transition: background-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: background-color, box-shadow;
}

body.is-scrolled .header {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 14px 36px rgba(22, 28, 22, 0.08);
}

body.is-scrolled .navigation-wrapper {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 22px rgba(22, 28, 22, 0.12);
}

body.is-scrolled .header-icon {
  background: rgba(61, 104, 58, 0.08);
}

.header .navbar {
  min-height: 76px;
  gap: 1rem;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.logo {
  max-height: 52px;
  width: auto;
}

.search-form-container {
  width: min(100%, 660px);
}

.search-form {
  width: 100%;
}

.search-form .form-control {
  min-height: 44px;
  padding-inline: 1rem;
  border: 1px solid rgba(31, 35, 31, 0.14);
  border-right: 0;
  border-radius: 999px 0 0 999px;
  box-shadow: none;
}

.search-form .form-control:focus {
  border-color: rgba(61, 104, 58, 0.4);
  box-shadow: 0 0 0 0.2rem rgba(61, 104, 58, 0.12);
}

.search-btn,
.btn.search-btn {
  min-width: 48px;
  min-height: 44px;
  border-radius: 0 999px 999px 0;
  border-color: var(--brand-orange);
  background: var(--brand-orange);
  color: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.search-btn:hover,
.btn.search-btn:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(61, 104, 58, 0.25);
}

.header-icon {
  min-height: 44px;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(31, 35, 31, 0.08);
  background: rgba(61, 104, 58, 0.04);
  transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.header-icon:hover {
  border-color: rgba(61, 104, 58, 0.18);
  background-color: rgba(61, 104, 58, 0.08);
  color: var(--brand-green);
  transform: translateY(-1px);
}

.header-icon .badge,
.badge.rounded-pill {
  border-radius: 999px !important;
}

.navbar-toggler {
  border: 1px solid rgba(61, 104, 58, 0.14);
  border-radius: 999px;
  padding: 0.55rem 0.7rem;
  box-shadow: none;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.2rem rgba(61, 104, 58, 0.12);
}

.offcanvas {
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(31, 35, 31, 0.08);
  box-shadow: -18px 0 40px rgba(22, 28, 22, 0.12);
}

.offcanvas-header {
  border-bottom: 1px solid rgba(31, 35, 31, 0.08);
}

.offcanvas-body .navbar-nav {
  gap: 0.35rem;
}

.offcanvas-body .navbar-nav .nav-link,
.offcanvas-body .header-icon {
  border-radius: 16px;
}

.offcanvas-body .navbar-nav .nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(61, 104, 58, 0.12);
  background: rgba(61, 104, 58, 0.05);
  color: var(--brand-green) !important;
  transition: background-color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}

.offcanvas-body .navbar-nav .nav-link:hover {
  background: rgba(61, 104, 58, 0.08);
  border-color: rgba(61, 104, 58, 0.2);
  transform: translateX(2px);
}

.navigation-wrapper {
  background: linear-gradient(180deg, rgba(61, 104, 58, 0.96) 0%, rgba(44, 68, 43, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.navigation-wrapper .navbar-nav {
  gap: 0.35rem;
  padding-block: 0.35rem;
}

.navigation-wrapper .nav-link,
#mainNav .nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  color: rgba(255, 255, 255, 0.88) !important;
}

.navigation-wrapper .nav-item .nav-link,
#mainNav .nav-item .nav-link {
  position: relative;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.navigation-wrapper .nav-item .nav-link:hover,
#mainNav .nav-item .nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.navigation-wrapper .nav-item .nav-link.active,
#mainNav .nav-item .nav-link.active {
  background: rgba(255, 255, 255, 0.14);
  color: #fff !important;
}

.navigation-wrapper .nav-item .nav-link::after,
#mainNav .nav-item .nav-link::after {
  left: 0.95rem;
  right: 0.95rem;
}

.section-title {
  position: relative;
  display: inline-block;
  font-size: clamp(2rem, 3.7vw, 3.35rem);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-green-dark);
}

.section-subtitle {
  margin: 0 auto 2.1rem;
  max-width: 680px;
  text-align: center;
  color: var(--text-500);
  font-size: 1.02rem;
  line-height: 1.65;
}

.section-title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 0.8rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-orange), rgba(228, 111, 37, 0.22));
}

.category-card,
.product-card,
.why-us-section .card,
.card.shadow-sm,
.card.p-4,
.card.p-md-5 {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(61, 104, 58, 0.12);
  box-shadow: var(--shadow-1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 250, 247, 0.94) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.category-card:hover,
.product-card:hover,
.why-us-section .card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
  border-color: rgba(228, 111, 37, 0.28);
}

.card,
.card-body,
.card-footer,
.list-group-item {
  border-color: rgba(61, 104, 58, 0.1);
}

.breadcrumb,
#product-breadcrumb,
#category-breadcrumb {
  background: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(61, 104, 58, 0.12);
  border-radius: 999px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.form-control,
.form-select {
  min-height: 46px;
  border-radius: 14px;
  border: 1px solid rgba(31, 35, 31, 0.14);
  box-shadow: none;
  background-color: rgba(255, 255, 255, 0.92);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(61, 104, 58, 0.42);
  box-shadow: 0 0 0 0.2rem rgba(61, 104, 58, 0.1);
}

.btn {
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  min-height: 88svh;
  background: linear-gradient(180deg, rgba(61, 104, 58, 0.07), rgba(255, 255, 255, 0) 48%);
}

.hero-section::before,
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-section::before {
  background:
    radial-gradient(circle at 18% 22%, rgba(228, 111, 37, 0.14), transparent 24%),
    radial-gradient(circle at 82% 14%, rgba(61, 104, 58, 0.14), transparent 20%),
    linear-gradient(180deg, rgba(9, 14, 9, 0.08), rgba(9, 14, 9, 0.28));
}

.hero-section::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 20% 80%, rgba(255, 255, 255, 0.015)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 20%);
  mix-blend-mode: screen;
  opacity: 0.42;
}

.hero-section {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 88svh;
}

.hero-background {
  min-height: 88svh;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  padding: clamp(1.25rem, 3vw, 2rem);
  position: relative;
  will-change: transform;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 18, 14, 0.48) 0%, rgba(14, 18, 14, 0.24) 45%, rgba(14, 18, 14, 0.08) 100%),
    linear-gradient(180deg, rgba(14, 18, 14, 0.16) 0%, rgba(14, 18, 14, 0.28) 100%);
  z-index: 0;
}

.home-cinematic-hero .slide-content {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  margin-left: clamp(0.5rem, 4vw, 5rem);
  padding: clamp(1.45rem, 3vw, 2.45rem) clamp(1.45rem, 3vw, 2.75rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 4px solid var(--brand-orange);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(10, 14, 10, 0.32) 0%, rgba(10, 14, 10, 0.1) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.12);
  text-align: left;
  will-change: transform;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.9rem;
  color: rgba(255, 255, 255, 0.86);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-kicker::before {
  content: "";
  width: 1.9rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand-orange);
}

.home-cinematic-hero .slide-content h1 {
  font-size: clamp(2.7rem, 5.6vw, 5.4rem);
  line-height: 0.92;
  margin: 0;
  letter-spacing: -0.06em;
  color: #fff;
  text-wrap: balance;
}

.home-cinematic-hero .slide-content p {
  max-width: 56ch;
  margin-top: 1rem;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  color: rgba(255, 255, 255, 0.86);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.hero-actions .btn {
  min-height: 48px;
  padding-inline: 1.2rem;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.hero-actions .btn.btn-primary {
  background: var(--brand-orange);
  border-color: var(--brand-orange);
}

.hero-actions .btn.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-actions .btn.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.42);
}









body[data-page="home"] .featured-categories-section,
body[data-page="home"] .product-carousel-section,
body[data-page="home"] .why-us-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.8)),
    radial-gradient(circle at 18% 0%, rgba(61, 104, 58, 0.05), transparent 24%);
}

body[data-page="category"] #category-page-container,
body[data-page="account"] #account-dashboard,
body[data-page="auth"] .auth-main {
  position: relative;
}

body[data-page="category"] #category-page-container .filter-sidebar,
body[data-page="product-detail"] #product-detail-content,
body[data-page="product-detail"] #product-detail-content .main-image-container,
body[data-page="product-detail"] #product-detail-content .tab-content,
body[data-page="account"] #account-dashboard .tab-content .card,
body[data-page="auth"] .auth-card {
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body[data-page="product-detail"] #product-detail-content {
  width: min(calc(100% - 2rem), var(--container-xl));
  margin-inline: auto;
  padding-block: clamp(2rem, 4vw, 3.5rem);
}

body[data-page="product-detail"] #product-detail-content > [class*="col-"] {
  padding-inline: clamp(0.5rem, 1.5vw, 0.9rem);
}

body[data-page="product-detail"] #product-detail-content .loading-spinner-container {
  min-height: 40vh;
}

.featured-categories-section,
.product-carousel-section,
.why-us-section {
  position: relative;
  isolation: isolate;
  overflow: clip;
  padding-block: clamp(4rem, 7.5vw, 6.5rem);
  contain: layout paint;
}

.featured-categories-section::before,
.product-carousel-section::before,
.why-us-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.85;
  z-index: 0;
}

.featured-categories-section::before {
  background:
    radial-gradient(circle at 12% 10%, rgba(228, 111, 37, 0.07), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(61, 104, 58, 0.07), transparent 22%);
}

.product-carousel-section::before {
  background:
    radial-gradient(circle at 80% 0%, rgba(61, 104, 58, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(61, 104, 58, 0.03) 100%);
}

.why-us-section::before {
  background:
    linear-gradient(180deg, rgba(228, 111, 37, 0.03) 0%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 50% 0%, rgba(61, 104, 58, 0.06), transparent 20%);
}

.featured-categories-section > .container,
.product-carousel-section > .container,
.why-us-section > .container {
  position: relative;
  z-index: 1;
  transform: translateY(var(--section-shift, 0px));
  transition: transform 0.2s ease;
  will-change: transform;
}

.featured-categories-section .section-title,
.product-carousel-section .section-title,
.why-us-section .section-title {
  margin-bottom: 0.8rem;
}

.featured-categories-section .section-subtitle,
.product-carousel-section .section-subtitle,
.why-us-section .section-subtitle {
  margin-bottom: 2.5rem;
}

.product-card .btn,
.btn-add-to-cart,
.btn.btn-primary,
.btn.btn-dark {
  border-radius: 999px;
  font-weight: 600;
}

.category-card,
.product-card {
  overflow: hidden;
}

.category-card img,
.product-card img {
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.category-card:hover img,
.product-card:hover img {
  transform: scale(1.04);
}

.main-image-container img {
  object-fit: contain;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.product-image-container {
  background: linear-gradient(180deg, rgba(61, 104, 58, 0.05), rgba(255, 255, 255, 0));
}

.product-card .card-body {
  padding-top: 1rem;
}

.product-card .card-footer {
  background: transparent;
}

.product-card .product-name,
.category-card .product-name {
  color: var(--text-900);
}

.product-card .price-new,
.category-card .price-new {
  color: var(--brand-green-dark) !important;
}

.filter-sidebar,
#account-dashboard .nav-menu-wrapper,
#account-dashboard .tab-content .card,
.checkout-summary-card,
.auth-card,
.main-image-container,
.product-detail-loaded-content .tab-content,
.product-short-description,
.product-meta-badges,
.contract-section,
.faq-item {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(61, 104, 58, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  contain: layout paint;
}

.filter-sidebar,
#account-dashboard .nav-menu-wrapper,
.checkout-summary-card,
.auth-card {
  padding: 1rem;
}

.filter-sidebar .filter-title {
  font-family: "Fraunces", serif;
  color: var(--brand-green-dark);
}

.quantity-control .btn,
.quantity-buttons-container .quantity-btn,
.decrease-quantity-btn,
.increase-quantity-btn {
  border-radius: 999px;
}

.btn.btn-primary,
.btn.btn-dark {
  background: linear-gradient(180deg, var(--brand-green) 0%, var(--brand-green-dark) 100%);
  border-color: transparent;
}

.btn.btn-primary:hover,
.btn.btn-dark:hover {
  background: linear-gradient(180deg, var(--brand-orange) 0%, var(--brand-orange-soft) 100%);
  border-color: transparent;
  transform: translateY(-1px);
}

.footer {
  position: relative;
  overflow: hidden;
  margin: clamp(1.5rem, 4vw, 3rem) auto !important;
  width: calc(100% - clamp(1.5rem, 5vw, 4rem));
  max-width: 1440px;
  border-radius: clamp(30px, 6vw, 60px) !important;
  padding: clamp(4rem, 6vw, 6rem) clamp(2rem, 4vw, 4rem) clamp(2.5rem, 4vw, 3.5rem) !important;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at top right, rgba(228, 111, 37, 0.18), transparent 45%),
    radial-gradient(circle at bottom left, rgba(61, 104, 58, 0.25), transparent 50%),
    linear-gradient(160deg, rgba(28, 42, 28, 0.98) 0%, rgba(14, 20, 14, 1) 100%);
  color: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25), inset 0 2px 0 rgba(255, 255, 255, 0.05);
  contain: layout paint;
}

.footer::before {
  content: "DAĞCIHAN";
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Fraunces", serif;
  font-size: clamp(6rem, 16vw, 18rem);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.015);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
  white-space: nowrap;
}

.footer::after {
  content: "";
  position: absolute;
  pointer-events: none;
  right: -10%;
  bottom: -20%;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(228, 111, 37, 0.15) 0%, transparent 60%);
  filter: blur(40px);
  z-index: 0;
}

.footer .container {
  position: relative;
  z-index: 1;
  width: min(100%, var(--container-xl));
  margin-inline: auto;
  padding-inline: clamp(1rem, 2.5vw, 1.5rem);
}

.footer .row {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1.1rem, 2vw, 2rem) clamp(1rem, 2vw, 1.4rem);
  width: 100%;
  margin: 0;
}

.footer .row > [class*="col-"] {
  min-width: 0;
  width: auto;
  max-width: none;
  flex: initial;
  margin: 0 !important;
}

.footer .row > .col-lg-3,
.footer .row > .col-md-6 {
  grid-column: span 3;
}

.footer .row > .col-lg-4 {
  grid-column: span 4;
}

.footer .row > .col-md-12 {
  grid-column: span 12;
}

.footer .row.align-items-center {
  margin-top: 0.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  align-items: center;
}

.footer .row.align-items-center > .col-md-6 {
  grid-column: span 6;
}

.footer .row.align-items-center > .text-md-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer .footer-title {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  margin-bottom: 1.25rem;
  position: relative;
  text-transform: uppercase;
}

.footer .footer-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer .footer-links li + li {
  margin-top: 0.5rem;
}

.footer .footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}

.footer p a,
.footer a {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.footer .footer-links a:hover,
.footer p a:hover,
.footer a:hover {
  color: #fff !important;
  opacity: 1;
}

.footer .footer-links a:hover {
  transform: translateX(4px);
}

.footer p {
  color: rgba(255, 255, 255, 0.65) !important;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.footer i {
  color: rgba(255, 255, 255, 0.4);
}

.footer hr {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  margin: 2.5rem 0 !important;
}

.footer .social-icons a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.08);
}

.footer .social-icons a i {
  color: #fff;
  font-size: 1.05rem !important;
  margin: 0 !important;
}

.footer .social-icons a:hover {
  background-color: var(--brand-orange);
}

.footer .small {
  color: rgba(255, 255, 255, 0.82) !important;
}

.footer img[alt*="Ödeme"],
.footer img[alt*="Güvenli"],
.footer .witly-logo {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer .row.align-items-center .text-md-end > img {
  max-width: min(360px, 100%);
}

.footer .witly-logo {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer .witly-logo-link:hover .witly-logo {
  opacity: 1;
}

.auth-main {
  min-height: 100vh;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.auth-card {
  width: min(100%, 460px);
}

.auth-logo {
  max-height: 60px;
  width: auto;
}

body[data-page="auth"] .alert.d-none {
  display: none !important;
}

/* Cart and checkout */
#cart-content-wrapper .cart-thumb {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

#cart-content-wrapper .quantity-control {
  width: 120px;
}

.checkout-summary-card {
  top: 100px;
}

#summary-items-list .list-group-item {
  border-radius: 8px;
  margin-bottom: 0.35rem;
  border: 1px solid rgba(61, 104, 58, 0.14);
}

/* Docs pages */
body.doc-page {
  background:
    radial-gradient(circle at top, rgba(228, 111, 37, 0.08), transparent 30%),
    linear-gradient(180deg, #fbf8f4 0%, #f6f2eb 100%);
  color: #3c2f27;
}

body.doc-page .doc-container {
  width: min(calc(100% - 2rem), 980px);
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(214, 183, 139, 0.22);
  border-radius: 28px;
  box-shadow: 0 18px 42px rgba(53, 38, 25, 0.07);
  padding: clamp(1.25rem, 3vw, 2.25rem);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

body.doc-page h2 {
  text-align: center;
  color: #7d5a3c;
  border-bottom: 1px solid rgba(214, 183, 139, 0.6);
  padding-bottom: 12px;
  margin-bottom: 1.75rem;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  letter-spacing: -0.02em;
}

body.doc-page .doc-container > * + * {
  margin-top: 1rem;
}

body.doc-page .faq-item h4 {
  color: #7d5a3c;
  font-weight: 700;
}

body.doc-page .faq-item {
  margin-bottom: 1.25rem;
}

body.doc-page .faq-item p {
  background-color: #f3eee9;
  border-left: 4px solid #d6b78b;
  border-radius: 4px;
  padding: 1rem;
  line-height: 1.7;
}

/* Fluid media */
img,
video,
canvas,
svg {
  max-width: 100%;
}

/* Mobile hardening */
@media (max-width: 991.98px) {
  .search-form-container {
    width: 100%;
  }

  .checkout-summary-card {
    position: static !important;
  }

  #cart-content-wrapper .table-responsive {
    border: 1px solid var(--line-soft);
    border-radius: var(--radius-sm);
    background: #fff;
    padding: 0.2rem;
  }

  .hero-section {
    min-height: 76svh;
  }

  .hero-section {
    height: 76svh;
  }

  .hero-background {
    min-height: 76svh;
    padding: 1rem;
  }

  .home-cinematic-hero .slide-content {
    margin-left: auto;
    margin-right: auto;
    width: min(100%, 580px);
  }

  
}

@media (max-width: 767.98px) {
  .top-bar {
    font-size: 0.72rem;
    letter-spacing: 0.55px;
    padding-inline: 0.6rem;
  }

  .logo {
    max-height: 42px;
  }

  .header-icon {
    padding: 0.5rem 0.6rem;
    font-size: 0.92rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.7rem;
  }

  .hero-section {
    min-height: 72svh;
  }

  .hero-section {
    height: 72svh;
  }

  .hero-background {
    min-height: 72svh;
  }

  .home-cinematic-hero .slide-content {
    width: 100%;
    padding: 1rem 1rem 1.1rem;
    border-radius: 22px;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .home-cinematic-hero .slide-content h1 {
    font-size: clamp(1.95rem, 8vw, 2.9rem);
  }

  .hero-kicker {
    letter-spacing: 0.12em;
  }

  .hero-actions {
    gap: 0.6rem;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .featured-categories-section,
  .product-carousel-section,
  .why-us-section {
    padding-block: clamp(2.75rem, 9vw, 4rem);
  }

  #cart-content-wrapper .table {
    min-width: 620px;
    font-size: 0.92rem;
  }

  #cart-content-wrapper .cart-thumb {
    width: 64px;
    height: 64px;
  }

  #cart-content-wrapper .quantity-control {
    width: 94px;
  }

  .auth-main {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .auth-card {
    border-radius: 12px;
    padding: 1.2rem !important;
  }

  .footer {
    padding: 2.4rem 0 1.8rem !important;
  }

  .footer .row {
    gap: 2rem 1rem;
  }

  .footer .row > .col-lg-3,
  .footer .row > .col-lg-4,
  .footer .row > .col-md-6,
  .footer .row > .col-md-12 {
    grid-column: span 12;
  }

  .footer .row.align-items-center {
    text-align: center;
    row-gap: 0.85rem;
  }

  .footer .row.align-items-center > .col-md-6 {
    grid-column: 1 / -1;
  }

  .footer .row.align-items-center > .text-md-end {
    justify-content: center;
  }
}

/* Motion layer */
.fx-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.56s ease var(--fx-delay, 0ms),
    transform 0.56s ease var(--fx-delay, 0ms);
}

.fx-reveal.is-visible {
  opacity: 1;
  transform: none;
}

.product-card,
.category-card,
.why-us-section .card,
.auth-card {
  transform-style: preserve-3d;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.scroll-float {
  will-change: transform;
  transform: translate3d(0, var(--scroll-y, 0px), 0);
}

@media (prefers-reduced-motion: reduce) {
  .fx-reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .scroll-float {
    transform: none !important;
    will-change: auto;
  }

  .footer::before,
  .footer::after {
    display: none !important;
  }
}

/* Legacy inline-style hardening: keep performance-focused values even when page-specific styles still exist. */
.header,
.home-cinematic-hero .slide-content,


body.doc-page .doc-container {
  backdrop-filter: blur(4px) !important;
  -webkit-backdrop-filter: blur(4px) !important;
}

.footer::after {
  filter: none !important;
}

@media (max-width: 767.98px) {
  .header,
  .home-cinematic-hero .slide-content,
  
}

.page-masthead {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: end;
  padding: clamp(1.35rem, 3vw, 2.2rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(61, 104, 58, 0.12);
  border-radius: 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(228, 111, 37, 0.12), transparent 24%),
    radial-gradient(circle at 88% 12%, rgba(61, 104, 58, 0.1), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 239, 0.92));
  box-shadow: var(--shadow-1);
  overflow: clip;
}

.page-masthead::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), transparent 38%),
    linear-gradient(180deg, rgba(61, 104, 58, 0.02), transparent 55%);
  opacity: 0.92;
}

.page-masthead > * {
  position: relative;
  z-index: 1;
}

.page-masthead .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.85rem;
  color: var(--brand-green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-masthead .eyebrow::before {
  content: "";
  width: 2rem;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-orange), rgba(228, 111, 37, 0.2));
}

.page-masthead .page-title {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  color: var(--brand-green-dark);
  text-wrap: balance;
}

.page-masthead .page-copy {
  margin: 1rem 0 0;
  max-width: 58ch;
  color: var(--text-500);
  font-size: 1rem;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-self: end;
  justify-self: end;
}

.page-masthead-compact {
  padding: 1.2rem 1.3rem 1.35rem;
}

.page-masthead-compact .page-title {
  max-width: 18ch;
  font-size: clamp(1.95rem, 3vw, 2.8rem);
}

body[data-page="account"] #account-dashboard {
  width: min(calc(100% - 2rem), var(--container-xl));
  margin-inline: auto;
  padding-block: clamp(2rem, 5vw, 3.5rem);
}

body[data-page="account"] .account-page-masthead {
  background:
    radial-gradient(circle at 10% 0%, rgba(228, 111, 37, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 239, 0.92));
}

body[data-page="account"] .account-shell-grid {
  row-gap: 1.2rem;
}

body[data-page="account"] .account-summary-card {
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.84) !important;
  border: 1px solid rgba(61, 104, 58, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow-1);
}

body[data-page="account"] #account-dashboard .nav-pills {
  gap: 0.5rem;
}

body[data-page="account"] #account-dashboard .nav-pills .nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid rgba(61, 104, 58, 0.1);
  border-radius: 18px;
  background: rgba(61, 104, 58, 0.04);
  color: var(--text-700);
  font-weight: 700;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body[data-page="account"] #account-dashboard .nav-pills .nav-link:hover {
  transform: translateX(3px);
  background: rgba(61, 104, 58, 0.08);
  border-color: rgba(61, 104, 58, 0.16);
}

body[data-page="account"] #account-dashboard .nav-pills .nav-link.active {
  background: linear-gradient(180deg, rgba(61, 104, 58, 0.96), rgba(47, 85, 45, 0.98));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 14px 32px rgba(47, 85, 45, 0.16);
}

body[data-page="account"] .account-content-shell {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

body[data-page="account"] .account-pane-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(61, 104, 58, 0.12);
  border-radius: 26px;
  box-shadow: var(--shadow-1);
}

body[data-page="account"] .account-pane-card .card-body {
  padding: clamp(1.2rem, 2vw, 1.6rem);
}

body[data-page="account"] .account-empty-state {
  padding: 1.5rem 1.25rem;
  border: 1px dashed rgba(61, 104, 58, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
  color: var(--text-500);
}

body[data-page="account"] .account-order-card {
  overflow: hidden;
  border: 1px solid rgba(61, 104, 58, 0.12) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-1);
}

body[data-page="account"] .account-order-card .accordion-button {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 239, 0.92));
  box-shadow: none;
}

body[data-page="account"] .account-order-card .accordion-button:not(.collapsed) {
  color: var(--brand-green-dark);
  background: rgba(61, 104, 58, 0.08);
}

body[data-page="account"] .account-order-card .accordion-body {
  background: rgba(255, 255, 255, 0.94);
}

body[data-page="admin"] {
  padding-bottom: 0;
  background:
    radial-gradient(circle at 0% 0%, rgba(228, 111, 37, 0.1), transparent 26%),
    radial-gradient(circle at 100% 0%, rgba(61, 104, 58, 0.1), transparent 22%),
    linear-gradient(180deg, #fbfaf7 0%, #f3f0e8 100%);
}

body[data-page="admin"] .admin-header {
  background: rgba(16, 23, 17, 0.84);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(16, 23, 17, 0.16);
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}

body[data-page="admin"] .admin-header .navbar {
  min-height: 78px;
}

body[data-page="admin"] .admin-header .header-icon,
body[data-page="admin"] .admin-header .nav-link.dropdown-toggle {
  color: #fff !important;
}

body[data-page="admin"] .admin-header .header-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

body[data-page="admin"] .admin-header .header-icon:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
}

body[data-page="admin"] .admin-brand-mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(228, 111, 37, 0.9), rgba(228, 111, 37, 0.68));
  color: #fff;
  box-shadow: 0 12px 26px rgba(228, 111, 37, 0.22);
}

body[data-page="admin"] .admin-brand-copy {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.05;
}

body[data-page="admin"] .admin-brand-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

body[data-page="admin"] #admin-dashboard-container {
  min-height: calc(100svh - 78px);
}

body[data-page="admin"] .admin-shell > .container-fluid {
  max-width: 1480px;
  padding-inline: clamp(0.9rem, 2.5vw, 1.5rem);
}

body[data-page="admin"] .admin-sidebar-panel {
  margin: 1.5rem 0 2rem;
  padding: 0.9rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(61, 104, 58, 0.12);
  box-shadow: var(--shadow-1);
}

body[data-page="admin"] .admin-sidebar-inner {
  padding: 0 !important;
}

body[data-page="admin"] .sidebar .nav-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: 18px;
  margin-bottom: 0.4rem;
  background: transparent;
  color: var(--text-700);
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

body[data-page="admin"] .sidebar .nav-link:hover {
  transform: translateX(3px);
  background: rgba(61, 104, 58, 0.06);
  border-color: rgba(61, 104, 58, 0.12);
}

body[data-page="admin"] .sidebar .nav-link.active {
  background: linear-gradient(180deg, rgba(61, 104, 58, 0.96), rgba(47, 85, 45, 0.98));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(47, 85, 45, 0.16);
}

body[data-page="admin"] .admin-content {
  padding-top: 1.5rem !important;
  padding-bottom: 2rem !important;
}

body[data-page="admin"] .admin-view-intro {
  margin-bottom: 1.1rem;
}

.admin-surface {
  position: relative;
  padding: clamp(1rem, 2vw, 1.35rem);
  border: 1px solid rgba(61, 104, 58, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 239, 0.92)),
    radial-gradient(circle at 90% 0%, rgba(61, 104, 58, 0.05), transparent 22%);
  box-shadow: var(--shadow-1);
  overflow: clip;
}

.admin-surface + .admin-surface {
  margin-top: 1rem;
}

.admin-surface-compact {
  padding: 0.95rem 1rem;
}

.admin-loading-state {
  min-height: 30vh;
  display: grid;
  place-items: center;
}

.admin-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.admin-metric {
  padding: 1.15rem 1.2rem;
  border: 1px solid rgba(61, 104, 58, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 246, 241, 0.9));
  box-shadow: 0 14px 32px rgba(31, 35, 31, 0.08);
}

.admin-metric-label {
  display: block;
  color: var(--text-500);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-metric-value {
  display: block;
  margin-top: 0.65rem;
  color: var(--brand-green-dark);
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 2.8vw, 2.7rem);
  line-height: 1;
}

.admin-metric-note {
  margin: 0.75rem 0 0;
  color: var(--text-500);
  font-size: 0.92rem;
}

.admin-status-rail {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.admin-status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.admin-status-pill.is-warning {
  background: rgba(255, 193, 7, 0.16);
  color: #8a5a00;
}

.admin-status-pill.is-success {
  background: rgba(25, 135, 84, 0.12);
  color: #196241;
}

.admin-status-pill.is-danger {
  background: rgba(220, 53, 69, 0.12);
  color: #9f2633;
}

.admin-table-shell .table-responsive {
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
}

.admin-data-table {
  margin-bottom: 0;
}

.admin-data-table thead th {
  background: rgba(61, 104, 58, 0.06);
  border-bottom-color: rgba(61, 104, 58, 0.12);
  color: var(--text-500);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.admin-data-table tbody td {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
  border-color: rgba(61, 104, 58, 0.08);
}

.admin-empty-state {
  width: 100%;
  grid-column: 1 / -1;
  padding: 1.5rem;
  border: 1px dashed rgba(61, 104, 58, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
  color: var(--text-500);
}

.admin-status-rail:empty {
  display: none;
}

body[data-page="admin"] .admin-mobile-nav {
  height: 66px;
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid rgba(61, 104, 58, 0.12);
  box-shadow: 0 -12px 28px rgba(31, 35, 31, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

body[data-page="admin"] .admin-mobile-nav a {
  color: var(--text-500);
  font-weight: 700;
}

body[data-page="admin"] .admin-mobile-nav a.active {
  color: var(--brand-green);
}

body[data-page="admin"] .modal-content {
  border: 1px solid rgba(61, 104, 58, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 54px rgba(31, 35, 31, 0.14);
}

body[data-page="admin"] .modal-header,
body[data-page="admin"] .modal-footer {
  border-color: rgba(61, 104, 58, 0.1);
}

body[data-page="admin"] .image-preview {
  margin-top: 0.85rem;
  border-radius: 18px;
  border-color: rgba(61, 104, 58, 0.12);
  background: var(--surface-1);
}

body[data-page="admin"] .admin-footer {
  padding: 0 0 5.8rem;
}

body[data-page="admin"] .admin-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(61, 104, 58, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-1);
}

body[data-page="admin"] .admin-footer p {
  margin: 0;
  color: var(--text-500);
}

@media (max-width: 991.98px) {
  .page-masthead {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .page-actions {
    justify-self: start;
  }

  .admin-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="admin"] .admin-sidebar-panel {
    margin-bottom: 1rem;
  }
}

@media (max-width: 767.98px) {
  .page-masthead {
    padding: 1.1rem 1rem 1.2rem;
    border-radius: 24px;
  }

  .page-masthead .page-title {
    max-width: none;
    font-size: clamp(1.9rem, 8vw, 3rem);
  }

  .page-actions {
    width: 100%;
  }

  .page-actions .btn {
    width: 100%;
  }

  body[data-page="account"] .account-summary-card {
    padding: 0.5rem;
  }

  .admin-metrics-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="admin"] .admin-content {
    padding-bottom: 6rem !important;
  }

  body[data-page="admin"] .admin-footer {
    padding-bottom: 6.8rem;
  }

  body[data-page="admin"] .admin-footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Final page-level overrides against legacy inline CSS blocks */
body[data-page="home"] .top-bar,
body[data-page="home"] .header,
body[data-page="home"] .navigation-wrapper,
body[data-page="home"] .hero-section,
body[data-page="home"] .hero-section,
body[data-page="home"] .hero-background,
body[data-page="home"] .home-cinematic-hero .slide-content,
body[data-page="home"] .featured-categories-section,
body[data-page="home"] .product-carousel-section,
body[data-page="home"] .why-us-section,
body[data-page="home"] .footer,
body[data-page="category"] .footer,
body[data-page="product-detail"] .footer,
body[data-page="account"] #account-dashboard,
body[data-page="admin"] .admin-header,
body[data-page="admin"] .admin-sidebar-panel,
body[data-page="admin"] .admin-surface {
  box-shadow: inherit;
}

body[data-page="home"] .top-bar {
  background: linear-gradient(90deg, var(--brand-green-dark), var(--brand-green)) !important;
}

body[data-page="home"] .header {
  background: rgba(255, 255, 255, 0.88) !important;
  border-bottom: 1px solid rgba(31, 35, 31, 0.08) !important;
  box-shadow: 0 10px 28px rgba(22, 28, 22, 0.06) !important;
}

body[data-page="home"] .navigation-wrapper {
  background: linear-gradient(180deg, rgba(61, 104, 58, 0.96) 0%, rgba(44, 68, 43, 0.98) 100%) !important;
}

body[data-page="home"] .hero-section {
  min-height: 88svh !important;
  background: linear-gradient(180deg, rgba(61, 104, 58, 0.07), rgba(255, 255, 255, 0) 48%) !important;
}

body[data-page="home"] .hero-section {
  height: 88svh !important;
}

body[data-page="home"] .hero-background {
  min-height: 88svh !important;
  padding: clamp(1.25rem, 3vw, 2rem) !important;
  display: flex !important;
  align-items: center !important;
}

body[data-page="home"] .home-cinematic-hero .slide-content {
  width: min(100%, 720px) !important;
  margin-left: clamp(0.5rem, 4vw, 5rem) !important;
  padding: clamp(1.45rem, 3vw, 2.45rem) clamp(1.45rem, 3vw, 2.75rem) !important;
  border-radius: 32px !important;
  border-left: 4px solid var(--brand-orange) !important;
  background: linear-gradient(135deg, rgba(10, 14, 10, 0.32) 0%, rgba(10, 14, 10, 0.1) 100%) !important;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.12) !important;
}

body[data-page="home"] .home-cinematic-hero .slide-content h1 {
  font-family: "Fraunces", serif !important;
  font-size: clamp(2.7rem, 5.6vw, 5.4rem) !important;
  line-height: 0.92 !important;
  letter-spacing: -0.06em !important;
  color: #fff !important;
}

body[data-page="home"] .home-cinematic-hero .slide-content p {
  font-size: clamp(1rem, 1.8vw, 1.12rem) !important;
  color: rgba(255, 255, 255, 0.86) !important;
}

body[data-page="home"] .hero-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.75rem !important;
}

body[data-page="home"] .hero-actions .btn,
body[data-page="home"] .product-card .btn,
body[data-page="category"] .product-card .btn,
body[data-page="product-detail"] .btn.btn-primary {
  border-radius: 999px !important;
}

body[data-page="home"] .section-title,
body[data-page="category"] .section-title,
body[data-page="product-detail"] .section-title {
  font-family: "Fraunces", serif !important;
  font-size: clamp(2rem, 3.7vw, 3.35rem) !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  color: var(--brand-green-dark) !important;
}

body[data-page="home"] .section-subtitle,
body[data-page="category"] .section-subtitle {
  color: var(--text-500) !important;
}

body[data-page="home"] .featured-categories-section .category-card,
body[data-page="home"] .product-card,
body[data-page="home"] .why-us-section .card,
body[data-page="category"] .product-card,
body[data-page="category"] .filter-sidebar,
body[data-page="product-detail"] .main-image-container,
body[data-page="product-detail"] .product-detail-loaded-content .tab-content,
body[data-page="cart"] .card,
body[data-page="checkout"] .card,
body[data-page="account"] .account-pane-card,
body[data-page="admin"] .admin-surface,
body[data-page="admin"] .admin-sidebar-panel {
  border-radius: 24px !important;
  border: 1px solid rgba(61, 104, 58, 0.12) !important;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(251, 250, 247, 0.94) 100%) !important;
  box-shadow: var(--shadow-1) !important;
}

body[data-page="home"] .footer,
body[data-page="category"] .footer,
body[data-page="product-detail"] .footer,
body[data-page="cart"] .footer,
body[data-page="checkout"] .footer,
body[data-page="account"] .footer {
  background:
    radial-gradient(circle at top right, rgba(228, 111, 37, 0.12), transparent 26%),
    radial-gradient(circle at 12% 6%, rgba(255, 255, 255, 0.05), transparent 22%),
    linear-gradient(180deg, rgba(47, 85, 45, 0.98) 0%, rgba(37, 67, 35, 0.99) 100%) !important;
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 3.5vw, 2.75rem) !important;
}

body[data-page="home"] .footer .row,
body[data-page="category"] .footer .row,
body[data-page="product-detail"] .footer .row,
body[data-page="cart"] .footer .row,
body[data-page="checkout"] .footer .row,
body[data-page="account"] .footer .row {
  display: grid !important;
}

/* Homepage cinematic redesign */
body[data-page="home"] .home-main {
  background:
    radial-gradient(circle at top left, rgba(228, 111, 37, 0.08), transparent 18%),
    radial-gradient(circle at 82% 12%, rgba(61, 104, 58, 0.1), transparent 20%),
    linear-gradient(180deg, #f8f4ee 0%, #fbfaf7 26%, #f3f0e8 100%);
}

body[data-page="home"] .home-cinematic-hero {
  min-height: 100svh !important;
  padding-bottom: clamp(4.5rem, 8vw, 6.5rem);
  background:
    radial-gradient(circle at 12% 18%, rgba(228, 111, 37, 0.16), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(61, 104, 58, 0.18), transparent 20%),
    linear-gradient(180deg, rgba(10, 14, 10, 0.02) 0%, rgba(10, 14, 10, 0.14) 100%) !important;
}

body[data-page="home"] .home-cinematic-hero::before {
  background:
    linear-gradient(115deg, rgba(9, 13, 10, 0.58) 0%, rgba(9, 13, 10, 0.18) 42%, rgba(9, 13, 10, 0.28) 100%),
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.08), transparent 18%) !important;
}

body[data-page="home"] .home-cinematic-hero::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05), transparent 22% 78%, rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 18%, rgba(9, 13, 10, 0.12) 100%) !important;
  opacity: 0.7 !important;
}

body[data-page="home"] .home-cinematic-hero .hero-section,
body[data-page="home"] .home-cinematic-hero .hero-background {
  min-height: min(100svh, 960px) !important;
  height: min(100svh, 960px) !important;
}

body[data-page="home"] .home-cinematic-hero .hero-background {
  padding: 0 !important;
}

body[data-page="home"] .hero-scene-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: clamp(3.2rem, 8vw, 6.2rem);
  padding-bottom: clamp(5.4rem, 10vw, 7.4rem);
}

body[data-page="home"] .hero-scene-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  align-items: end;
  gap: clamp(1.25rem, 3vw, 2.4rem);
  min-height: min(78svh, 760px);
}

body[data-page="home"] .home-cinematic-hero .slide-content {
  width: auto !important;
  max-width: 760px !important;
  margin-left: 0 !important;
  padding: clamp(1.55rem, 3vw, 2.4rem) clamp(1.35rem, 3vw, 2.6rem) !important;
  border-radius: 34px !important;
  border-left: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  background:
    linear-gradient(145deg, rgba(9, 13, 10, 0.54) 0%, rgba(9, 13, 10, 0.2) 48%, rgba(9, 13, 10, 0.08) 100%) !important;
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
}

body[data-page="home"] .home-cinematic-hero .slide-content h1 {
  max-width: 9ch;
}

body[data-page="home"] .hero-lead {
  max-width: 54ch;
  margin-bottom: 0;
}

body[data-page="home"] .hero-meta-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.5rem;
}

body[data-page="home"] .hero-meta-pill {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.95rem 1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

body[data-page="home"] .hero-meta-pill strong {
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  color: #fff;
}

body[data-page="home"] .hero-meta-pill span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
}

body[data-page="home"] .hero-side-rail {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-self: stretch;
  justify-content: flex-end;
}

body[data-page="home"] .hero-side-label,
body[data-page="home"] .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  color: var(--brand-orange);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body[data-page="home"] .hero-side-label::before,
body[data-page="home"] .section-kicker::before {
  content: "";
  width: 2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

body[data-page="home"] .hero-side-card,
body[data-page="home"] .hero-side-stat,
body[data-page="home"] .home-story-card,
body[data-page="home"] .home-closing-panel {
  border: 1px solid rgba(61, 104, 58, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(246, 243, 237, 0.92) 100%);
  box-shadow: 0 26px 50px rgba(35, 41, 35, 0.08);
}

body[data-page="home"] .hero-side-card {
  padding: clamp(1.2rem, 2vw, 1.5rem);
  border-radius: 28px;
}

body[data-page="home"] .hero-side-kicker {
  margin: 0 0 0.55rem;
  color: var(--text-500);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .hero-side-card h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.55rem, 2vw, 2.1rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--brand-green-dark);
}

body[data-page="home"] .hero-side-card p {
  margin: 0.85rem 0 0;
  color: var(--text-500);
  line-height: 1.6;
}

body[data-page="home"] .hero-inline-link,
body[data-page="home"] .section-inline-link,
body[data-page="home"] .category-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--brand-green-dark);
  font-weight: 700;
  text-decoration: none;
}

body[data-page="home"] .hero-inline-link::after,
body[data-page="home"] .section-inline-link::after,
body[data-page="home"] .category-card-link::after {
  content: "↗";
  font-size: 0.88rem;
}

body[data-page="home"] .hero-side-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

body[data-page="home"] .hero-side-stat {
  padding: 1rem 1.05rem;
  border-radius: 24px;
}

body[data-page="home"] .hero-side-stat strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--brand-green-dark);
  font-size: 0.98rem;
}

body[data-page="home"] .hero-side-stat span {
  color: var(--text-500);
  line-height: 1.55;
  font-size: 0.92rem;
}

body[data-page="home"] .hero-scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(9, 13, 10, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="home"] .home-story-strip {
  position: relative;
  z-index: 3;
  margin-top: clamp(-4.5rem, -5vw, -3rem);
  padding: 0 0 clamp(2rem, 5vw, 3rem);
}

body[data-page="home"] .home-story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

body[data-page="home"] .home-story-card {
  min-height: 100%;
  padding: 1.4rem;
  border-radius: 28px;
}

body[data-page="home"] .story-index {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--brand-orange);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

body[data-page="home"] .home-story-card h3 {
  margin: 0 0 0.6rem;
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  line-height: 1.05;
  color: var(--brand-green-dark);
}

body[data-page="home"] .home-story-card p {
  margin: 0;
  color: var(--text-500);
  line-height: 1.65;
}

body[data-page="home"] .home-editorial-section {
  padding-block: clamp(4.4rem, 8vw, 7rem) !important;
}

body[data-page="home"] .section-heading-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.75fr);
  gap: 1.5rem;
  align-items: end;
  margin-bottom: 1.35rem;
}

body[data-page="home"] .section-heading-shell--split {
  grid-template-columns: minmax(0, 1fr) auto;
}

body[data-page="home"] .home-editorial-section .section-title {
  max-width: 12ch;
  margin: 0.55rem 0 0;
  font-size: clamp(2.2rem, 4vw, 4rem) !important;
  line-height: 0.96 !important;
  letter-spacing: -0.055em !important;
  text-transform: none !important;
}

body[data-page="home"] .home-editorial-section .section-subtitle {
  margin: 0;
  max-width: 52ch;
  font-size: 1rem !important;
  line-height: 1.75;
}

body[data-page="home"] .section-divider-line {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

body[data-page="home"] .section-divider-line span {
  width: min(160px, 24vw);
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-orange), rgba(228, 111, 37, 0.16));
}

body[data-page="home"] #featured-categories-wrapper {
  counter-reset: home-category;
}

body[data-page="home"] #featured-categories-wrapper > .col {
  counter-increment: home-category;
}

body[data-page="home"] .featured-categories-section .category-card {
  display: flex !important;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1rem !important;
  position: relative;
  border-radius: 30px !important;
}

body[data-page="home"] .featured-categories-section .category-card::before {
  content: counter(home-category, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(61, 104, 58, 0.25);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

body[data-page="home"] .category-card-media {
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  padding: 0.75rem;
  background: linear-gradient(180deg, rgba(61, 104, 58, 0.08), rgba(228, 111, 37, 0.08));
}

body[data-page="home"] .featured-categories-section .category-card img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border-radius: 18px !important;
  object-fit: cover;
}

body[data-page="home"] .category-card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

body[data-page="home"] .category-card-eyebrow,
body[data-page="home"] .product-card-label {
  color: var(--text-500);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body[data-page="home"] .featured-categories-section .category-card h5 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: 1.45rem !important;
  line-height: 1.04;
  color: var(--brand-green-dark);
}

body[data-page="home"] .home-values-grid .col-md-4 {
  display: flex;
}

body[data-page="home"] .why-us-section .card {
  width: 100%;
  text-align: left;
  padding: 1.8rem !important;
  border-radius: 30px !important;
}

body[data-page="home"] .why-us-section .card i {
  width: 3.8rem;
  height: 3.8rem;
  display: grid;
  place-items: center;
  margin: 0 0 1.2rem !important;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(228, 111, 37, 0.16), rgba(61, 104, 58, 0.08));
  color: var(--brand-green-dark) !important;
  font-size: 1.35rem !important;
}

body[data-page="home"] .why-us-section .card h3 {
  margin: 0 0 0.65rem;
  font-family: "Fraunces", serif;
  font-size: 1.52rem;
  color: var(--brand-green-dark);
}

body[data-page="home"] .why-us-section .card p {
  margin: 0;
  color: var(--text-500);
  line-height: 1.7;
}

body[data-page="home"] .product-stage-shell {
  position: relative;
  padding: clamp(1rem, 2vw, 1.35rem);
  border-radius: 34px;
  border: 1px solid rgba(61, 104, 58, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 245, 240, 0.88) 100%);
  box-shadow: 0 20px 44px rgba(35, 41, 35, 0.06);
}

body[data-page="home"] .product-stage-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 8% 8%, rgba(228, 111, 37, 0.08), transparent 18%),
    radial-gradient(circle at 92% 10%, rgba(61, 104, 58, 0.08), transparent 18%);
  pointer-events: none;
}

body[data-page="home"] .product-carousel {
  padding: 0.25rem;
}

body[data-page="home"] .product-card {
  gap: 1rem;
  padding: 1rem !important;
  border-radius: 30px !important;
}

body[data-page="home"] .product-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(61, 104, 58, 0.08), rgba(228, 111, 37, 0.08));
}

body[data-page="home"] .product-image-container a {
  display: block;
}

body[data-page="home"] .product-image-container img {
  aspect-ratio: 4 / 4.25;
  object-fit: cover;
}

body[data-page="home"] .product-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-green-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body[data-page="home"] .product-card .product-name {
  margin-bottom: 0.75rem !important;
}

body[data-page="home"] .product-card .product-name a {
  display: inline-block;
  font-family: "Fraunces", serif;
  font-size: 1.36rem;
  line-height: 1.06;
  color: var(--brand-green-dark) !important;
}

body[data-page="home"] .product-card .product-price {
  margin-bottom: 0.85rem !important;
}

body[data-page="home"] .product-card-note {
  margin-bottom: 1rem;
  color: var(--text-500);
  line-height: 1.65;
  font-size: 0.94rem;
}

body[data-page="home"] .product-card .btn {
  min-height: 48px;
}

body[data-page="home"] .product-carousel-section.bg-light {
  background:
    linear-gradient(180deg, rgba(245, 241, 233, 0.8), rgba(255, 255, 255, 0.84)),
    radial-gradient(circle at 12% 10%, rgba(61, 104, 58, 0.08), transparent 18%) !important;
}

body[data-page="home"] .home-closing-scene {
  padding: clamp(1rem, 2vw, 2rem) 0 clamp(4.25rem, 7vw, 6rem);
}

body[data-page="home"] .home-closing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: center;
  padding: clamp(1.5rem, 3vw, 2.3rem);
  border-radius: 34px;
}

body[data-page="home"] .home-closing-copy h2 {
  margin: 0.55rem 0 0.65rem;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: var(--brand-green-dark);
}

body[data-page="home"] .home-closing-copy p {
  margin: 0;
  max-width: 56ch;
  color: var(--text-500);
  line-height: 1.75;
}

body[data-page="home"] .home-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  justify-content: flex-end;
}

@media (max-width: 1199.98px) {
  body[data-page="home"] .hero-scene-grid,
  body[data-page="home"] .section-heading-shell,
  body[data-page="home"] .home-closing-panel {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .hero-side-rail {
    max-width: 560px;
  }
}


/* --- MOBİL RESPONSIVE OPTİMİZASYON --- */
@media (max-width: 991.98px) {
  /* Genel Section Boşlukları */
  body[data-page="home"] .home-editorial-section {
    padding-block: 3.5rem !important;
  }
  body[data-page="home"] .hero-scene-shell {
    padding-top: 2rem;
    padding-bottom: 3.5rem;
  }
  body[data-page="home"] .section-title {
    font-size: 1.5rem !important;
    margin-bottom: 1.2rem !important;
    line-height: 1.2;
  }
  body[data-page="home"] .section-subtitle {
    font-size: 0.95rem !important;
    margin-bottom: 1.8rem !important;
  }

  /* Header - Top Bar */
  body[data-page="home"] .top-bar {
    padding: 0.4rem 0.5rem !important;
    font-size: 0.72rem;
    letter-spacing: 0.3px;
  }

  /* Header - Navbar */
  body[data-page="home"] .header .navbar {
    min-height: 60px;
    padding-top: 0.4rem !important;
    padding-bottom: 0.4rem !important;
  }
  body[data-page="home"] .header .logo {
    max-height: 40px !important;
  }
  body[data-page="home"] .header .header-icon {
    padding: 0.4rem 0.6rem;
    min-height: 40px;
    border-radius: 12px;
  }
  body[data-page="home"] .header .navbar-brand {
    padding: 0;
  }
  body[data-page="home"] .header .navbar-toggler {
    padding: 0.4rem 0.5rem;
    border-radius: 12px;
  }
  
  /* Hero Section */
  body[data-page="home"] .home-cinematic-hero,
  body[data-page="home"] .home-cinematic-hero .hero-section,
  body[data-page="home"] .home-cinematic-hero .hero-background {
    min-height: 480px !important;
    height: auto !important;
  }
  body[data-page="home"] .hero-background {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-color: var(--bg-dark) !important;
    padding: 1.5rem 1rem !important;
    align-items: flex-end !important;
  }
  body[data-page="home"] .hero-scene-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: auto;
  }
  body[data-page="home"] .home-cinematic-hero .slide-content {
    max-width: 100% !important;
    padding: 1.5rem !important;
    border-radius: 20px !important;
    margin-top: 0;
    backdrop-filter: blur(6px);
    background: rgba(14, 20, 14, 0.7) !important;
  }
  body[data-page="home"] .home-cinematic-hero .slide-content h1 {
    font-size: 1.8rem !important;
    margin-bottom: 0.6rem !important;
    line-height: 1.15;
  }
  body[data-page="home"] .hero-lead {
    font-size: 0.95rem !important;
    margin-bottom: 1.2rem !important;
    line-height: 1.5;
  }
  body[data-page="home"] .hero-actions .btn {
    font-size: 0.85rem !important;
    padding: 0.7rem 1rem !important;
    border-radius: 12px;
  }

  /* Hero İstatistikler ve Rozetler */
  body[data-page="home"] .hero-meta-row,
  body[data-page="home"] .hero-side-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
  body[data-page="home"] .hero-meta-row {
    margin-top: 1.2rem;
  }
  body[data-page="home"] .hero-meta-pill {
    padding: 0.7rem 0.8rem;
    font-size: 0.75rem;
    border-radius: 12px;
  }
  body[data-page="home"] .hero-side-card {
    display: none; /* Mobilde ekstra yer kaplamaması için gizlendi */
  }

  /* Hikaye ve Değerler için Mobilde Özel Tasarım */
  body[data-page="home"] .home-values-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
  }

  /* Ana Ekran Hikaye Kutuları Mobilde Tek Satır Minimal (Yanyana) */
  body[data-page="home"] .home-story-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
  }
  
  body[data-page="home"] .home-story-card {
    flex: none !important;
    padding: 0.8rem 0.4rem !important;
    border-radius: 12px !important;
    min-height: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  body[data-page="home"] .home-values-grid .col-md-4 {
    flex: none !important;
    max-width: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  body[data-page="home"] .why-us-section .card {
    padding: 0.8rem 0.4rem !important;
    border-radius: 12px !important;
    height: 100% !important;
    text-align: center !important;
    align-items: center;
    justify-content: flex-start;
    display: flex;
    flex-direction: column;
  }
  
  /* Minimal 3-kolon text boyutları */
  body[data-page="home"] .story-index {
    font-size: 0.65rem;
    margin-bottom: 0.4rem;
    margin-left: auto;
    margin-right: auto;
  }
  body[data-page="home"] .home-story-card h3 {
    font-size: 0.72rem !important;
    margin-bottom: 0.35rem !important;
    line-height: 1.2 !important;
  }
  body[data-page="home"] .home-story-card p {
    font-size: 0.62rem !important;
    line-height: 1.35 !important;
  }

  body[data-page="home"] .why-us-section .card h3 {
    font-size: 0.72rem !important;
    margin-bottom: 0.35rem !important;
    line-height: 1.2 !important;
  }
  body[data-page="home"] .why-us-section .card p {
    font-size: 0.62rem !important;
    line-height: 1.35 !important;
  }
  body[data-page="home"] .why-us-section .card i {
    font-size: 0.9rem !important;
    width: 2rem !important;
    height: 2rem !important;
    margin-bottom: 0.4rem !important;
  }

  /* Story Strip Offset Adjustment */
  body[data-page="home"] .home-story-strip {
    margin-top: -3.5rem;
    position: relative;
    z-index: 10;
  }

  /* Kategoriler */
  body[data-page="home"] .featured-categories-section .category-card {
    padding: 1.2rem 0.5rem !important;
    border-radius: 16px !important;
  }
  body[data-page="home"] .featured-categories-section .category-card img {
    width: 72px !important;
    height: 72px !important;
    margin-bottom: 0.8rem !important;
  }
  body[data-page="home"] .featured-categories-section .category-card h5 {
    font-size: 0.9rem !important;
  }

  /* Ürün Kartları */
  body[data-page="home"] .product-card {
    border-radius: 16px !important;
  }
  body[data-page="home"] .product-card .product-info {
    padding: 1rem !important;
  }
  body[data-page="home"] .product-card .product-name {
    font-size: 0.95rem !important;
    min-height: 2.6em !important;
    line-height: 1.3;
  }
  body[data-page="home"] .product-card .price-new {
    font-size: 1.2rem !important;
  }
  body[data-page="home"] .product-card .btn-add-to-cart {
    font-size: 0.85rem !important;
    padding: 0.6rem !important;
    border-radius: 10px;
  }

  /* Kapanış Paneli & Bölüm Başlıkları */
  body[data-page="home"] .home-closing-panel {
    border-radius: 20px !important;
    padding: 2rem 1.5rem !important;
  }
  body[data-page="home"] .section-inline-link,
  body[data-page="home"] .home-closing-actions {
    justify-content: flex-start;
  }
  body[data-page="home"] .section-heading-shell--split {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
  }
  body[data-page="home"] .hero-scroll-cue {
    display: none;
  }
}

@media (max-width: 767.98px) {
  /* Telefonlar için ekstra ufak ayarlar */
  body[data-page="home"] .home-cinematic-hero,
  body[data-page="home"] .home-cinematic-hero .hero-section,
  body[data-page="home"] .home-cinematic-hero .hero-background {
    min-height: 420px !important;
  }
}
