/* Tipografi: Plus Jakarta Sans — header.php üzerinden Google Fonts */

/* Modera Mobilya */
:root {
  --kv-bg: #ebe6de;
  --kv-bg-soft: #ededed;
  --kv-surface: #faf8f5;
  --kv-text: #3d3835;
  --kv-muted: #7a726a;
  --kv-white: #ffffff;
  --kv-shadow: 0 20px 50px rgba(61, 56, 53, 0.12);
  --kv-shadow-soft: 0 8px 32px rgba(61, 56, 53, 0.08);
  --kv-radius-xl: 5px;
  --kv-radius-lg: 5px;
  --kv-glass: rgb(255, 255, 255);
  --kv-glass: rgb(255, 255, 255);
  --kv-glass: rgb(255, 255, 255);
  --kv-font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --kv-font-heading: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --kv-fs-body: 1rem;
  --kv-lh-body: 1.62;
  --kv-lh-heading: 1.22;
}

@media (min-width: 576px) {
  .container {
    max-width: 560px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 1000px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1180px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1380px;
  }
}

@media (min-width: 1600px) {
  .container {
    max-width: 1600px;
  }
}

/* Container-xxl — Standart genişlik */
@media (min-width: 576px) {
  .container-xxl {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container-xxl {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container-xxl {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container-xxl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container-xxl {
    max-width: 1320px;
  }
}

@media (min-width: 1600px) {
  .container-xxl {
    max-width: 1520px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
}

body {
  font-family: var(--kv-font-body) !important;
  font-size: var(--kv-fs-body);
  line-height: var(--kv-lh-body);
  font-weight: 400;
  color: var(--kv-text);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
}

a,
a:hover,
a:focus {
  text-decoration: none;
}

html::-webkit-scrollbar {
  width: 8px;
}

html::-webkit-scrollbar-track {
  background: var(--kv-bg);
}

html::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

html {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.2) var(--kv-bg);
}

/* ——— Header - Sadece navbar ——— */
.kv-header-wrap {
  position: relative;
  z-index: 10;
  padding: 1.25rem 0;
}

.kv-header-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
}

.kv-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-right: 2rem;
}

.kv-logo:hover {
  opacity: 0.85;
}

.kv-util {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-text);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
  font-size: 1.2rem;
}

.kv-util:hover {
  background: var(--kv-text);
  color: #fff;
  border-color: var(--kv-text);
}

.btn-language::after {
  margin-left: 0.25rem;
}

.kv-util.dropdown-toggle::after {
  display: none;
}

.language-dropdown {
  min-width: 200px;
  border: none;
  border-radius: 5px;
  box-shadow: 0 10px 40px rgba(61, 56, 53, 0.15);
  padding: 0.5rem 0;
  margin-top: 1rem;
}

.language-dropdown .dropdown-header {
  padding: 1rem 1.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--kv-muted);
  margin-bottom: 0;
}

.language-dropdown .dropdown-divider {
  margin: 0.5rem 0;
  border-color: rgba(61, 56, 53, 0.1);
}

.language-dropdown .dropdown-item {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--kv-text);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.language-dropdown .dropdown-item .flag {
  font-size: 1.25rem;
}

.language-dropdown .dropdown-item:hover {
  background: rgba(61, 56, 53, 0.05);
  color: var(--kv-text);
}

.language-dropdown .dropdown-item.active {
  background: var(--kv-text);
  color: #fff;
}

.language-dropdown .dropdown-item.active:hover {
  background: #2d2824;
}

.language-dropdown li:last-child .dropdown-item {
  border-radius: 0 0 5px 5px;
}

.kv-glass-nav {
  margin-top: 0.85rem;
  padding: 1rem 1.5rem;
  /* Opaklık isteğine göre %20'ye çekildi */
  background: rgba(255, 255, 255, 0.20);

  /* Blur değerleri her iki tarayıcı motoru için eşitlendi */
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);

  border-radius: var(--kv-radius-lg);

  /* Koyu temada derinlik için çok ince bir kenarlık eklemek cam efektini belirginleştirir */
  border: 1px solid rgba(255, 255, 255, 0.1);

  box-shadow: var(--kv-shadow-soft);
}

.kv-glass-nav .navbar-nav .nav-link {
  color: #ffff !important;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.7rem 1.1rem !important;
  border-radius: 999px;
  transition: background 0.2s;
}

.kv-glass-nav .navbar-nav .nav-link:hover,
.kv-glass-nav .navbar-nav .nav-link:focus {
  background: rgba(255, 255, 255, 0.55);
}

.kv-cart-btn {
  border-radius: 999px !important;
  border: 2px solid var(--kv-white) !important;
  background: rgba(255, 255, 255, 0.35) !important;
  color: var(--kv-text) !important;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.55rem 1.15rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  box-shadow: 0 4px 16px rgba(61, 56, 53, 0.08);
  transition: background 0.2s, transform 0.2s !important;
}

.kv-cart-btn:hover {
  background: var(--kv-white) !important;
  transform: translateY(-1px);
}

.kv-toggler {
  border: none;
  padding: 0.35rem 0.5rem;
  border-radius: 0.75rem;
  background: #ffffff;
}

.kv-toggler .navbar-toggler-icon {
  filter: invert(0.25);
}

/* ——— Mega Menu Styles ——— */
.mega-dropdown {
  position: static;
}

.mega-menu {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(26px) saturate(1.12);
  -webkit-backdrop-filter: blur(26px) saturate(1.12);
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 20px rgba(61, 56, 53, 0.1);
  padding: 2rem 0;
  margin-top: 0.25rem;
  display: none;
  top: 100%;
  z-index: 1000;
}

.mega-menu .container-xxl {
  padding-left: 2rem;
  padding-right: 2rem;
}

.mega-menu .row {
  row-gap: 2rem;
}

.mega-menu-title {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--kv-text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(61, 56, 53, 0.1);
}

.mega-menu-list a i {
  display: inline-block;
  font-size: 0.7rem;
  margin-right: 0.5rem;
  color: var(--kv-muted);
  transition: all 0.2s ease;
}

.mega-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mega-menu-list li {
  margin-bottom: 0.5rem;
}

.mega-menu-list a {
  color: var(--kv-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: inline-block;
  padding: 0.25rem 0;
}

.mega-menu-list a:hover {
  color: var(--kv-text);
  padding-left: 0.5rem;
}

.mega-menu-list a:hover i {
  color: var(--kv-text);
  transform: translateX(3px);
}

.dropdown-toggle::after {
  margin-left: 0.3rem;
  vertical-align: 0.1em;
}

/* ——— Normal nav dropdown (alt menü satırları, dar panel) ——— */
@media (min-width: 992px) {

  .kv-glass-nav.navbar-expand-lg .navbar-collapse.kv-nav-overflow-fix,
  .kv-glass-nav.navbar-expand-lg .navbar-nav.kv-nav-overflow-fix {
    overflow: visible;
  }
}

.kv-simple-dropdown {
  position: relative;
}

.kv-simple-dropdown-menu.dropdown-menu {
  margin: 0;
}

.kv-simple-dropdown-menu {
  position: absolute;
  left: 0;
  right: auto;
  top: calc(100% + 0.75rem);
  min-width: 180px;
  max-width: 20rem;
  padding: 0.5rem;
  display: none;
  z-index: 1025;
  border: none;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(61, 56, 53, 0.15);
}

.kv-simple-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 1.25rem;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  transform: rotate(45deg);
  border-radius: 2px;
}

.kv-simple-dropdown-menu .language-item {
  border-radius: 8px;
}

.kv-glass-nav .navbar-nav .kv-simple-dropdown:hover>.kv-simple-dropdown-menu,
.kv-glass-nav .navbar-nav .kv-simple-dropdown:focus-within>.kv-simple-dropdown-menu {
  display: block !important;
}

/* Mobile mega menu */
@media (max-width: 991px) {
  .mega-menu {
    position: relative;
    box-shadow: none;
    border-top: 1px solid rgba(61, 56, 53, 0.1);
    padding: 1rem;
  }

  .mega-menu .row>div {
    margin-bottom: 1.5rem;
  }

  .mega-menu-title {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .mega-menu-list a {
    font-size: 0.8rem;
  }

  .kv-simple-dropdown-menu {
    position: relative;
    left: auto;
    top: auto;
    min-width: 0;
    max-width: none;
    width: 100%;
    margin-top: 0;
    padding: 0.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 24px rgba(61, 56, 53, 0.1);
    border-top: 1px solid rgba(61, 56, 53, 0.08);
  }

  .kv-simple-dropdown-menu::before {
    display: none;
  }

  .kv-simple-dropdown-menu .language-item {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }
}

/* ====== MOBILE MENU OFFCANVAS ====== */
.kv-mobile-menu {
  width: 320px;
  background: #ffffff;
}

.kv-mobile-menu .offcanvas-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(61, 56, 53, 0.1);
}

.kv-mobile-menu .offcanvas-body {
  padding: 0;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-list>li {
  border-bottom: 1px solid rgba(61, 56, 53, 0.08);
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  color: var(--kv-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.mobile-nav-link i:first-child {
  font-size: 1.2rem;
  color: var(--kv-muted);
  width: 24px;
  text-align: center;
}

.mobile-nav-link:hover {
  background: rgba(61, 56, 53, 0.05);
  color: var(--kv-text);
}

.mobile-dropdown-toggle {
  position: relative;
}

.mobile-dropdown-toggle .bi-chevron-down {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.mobile-dropdown-toggle[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  background: rgba(61, 56, 53, 0.03);
  padding: 1rem 0;
}

.mobile-category {
  padding: 0.75rem 1.5rem;
}

.mobile-category-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--kv-text);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(61, 56, 53, 0.1);
}

.mobile-category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-category-list li {
  margin-bottom: 0.5rem;
}

.mobile-category-list a {
  color: var(--kv-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
  transition: all 0.2s ease;
}

.mobile-category-list a::before {
  content: "›";
  margin-right: 0.5rem;
  color: var(--kv-muted);
  font-size: 1.2rem;
  transition: all 0.2s ease;
}

.mobile-category-list a:hover {
  color: var(--kv-text);
  padding-left: 0.5rem;
}

.mobile-category-list a:hover::before {
  color: var(--kv-text);
}

.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(61, 56, 53, 0.1);
  margin-top: auto;
}

.mobile-language {
  margin-bottom: 1.25rem;
}

.mobile-language-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(61, 56, 53, 0.55);
  margin-bottom: 0.75rem;
}

.mobile-language-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.mobile-language-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 56, 53, 0.12);
  background: rgba(61, 56, 53, 0.04);
  color: var(--kv-text);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.mobile-language-item img {
  display: block;
  border-radius: 2px;
}

.mobile-language-item.active,
.mobile-language-item:hover {
  background: var(--kv-text);
  border-color: var(--kv-text);
  color: #fff;
}

.mobile-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.mobile-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(61, 56, 53, 0.05);
  color: var(--kv-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-social a:hover {
  background: var(--kv-text);
  color: #ffffff;
  transform: translateY(-2px);
}

.mobile-social i {
  font-size: 1.1rem;
}

/* ——— Hero: düz kutu + gölge ——— */
.kv-hero-section {
  padding: 0;
  background: var(--kv-bg-soft);
}

.heroSwiper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kv-hero-box {
  min-height: 98vh;
  border-radius: 0 0 20px 20px;
  box-shadow: none;
  background: transparent;
  overflow: hidden;
  position: relative;
}

.kv-hero-box>.carousel {
  min-height: min(78vh, 640px);
}

@media (min-width: 992px) {
  .kv-hero-box>.carousel {
    min-height: min(82vh, 720px);
  }
}

.kv-hero-box .carousel-inner,
.kv-hero-box .carousel-item {
  min-height: inherit;
}

.kv-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  /* Hero arkaplanı yumuşat */
  filter: blur(3px);
  transform: scale(1.03);
}

/* Hero styles moved to css/gsap.css */

/* Yüzen ürün kartı */
.kv-float-card {
  position: absolute;
  z-index: 3;
  top: 12%;
  right: 4%;
  width: min(280px, 88vw);
  padding: 1rem;
  border-radius: 0;
  background: var(--kv-glass-strong);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--kv-glass-border);
  box-shadow: 0 2px 12px rgba(61, 56, 53, 0.1);
}

@media (max-width: 767px) {
  .kv-float-card {
    display: none;
  }
}

.kv-float-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0.85rem;
}

.kv-float-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--kv-text);
}

.kv-float-card p {
  font-size: 0.8rem;
  color: var(--kv-muted);
  line-height: 1.45;
  margin-bottom: 0.75rem;
}

.kv-float-card .btn {
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  background: var(--kv-text);
  border: none;
  color: #fff;
}

.kv-float-card .btn:hover {
  background: #2a2623;
  color: #fff;
}

/* Slayt kontrolleri */
.kv-hero-ui {
  position: absolute;
  z-index: 3;
  right: 1.25rem;
  bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .kv-hero-ui {
    right: 2rem;
    bottom: 2rem;
  }
}

.kv-hero-counter {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.06em;
}

.kv-hero-counter .current {
  color: #fff;
  font-size: 1rem;
}

.kv-hero-ui button {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  transition: background 0.2s, transform 0.2s;
}

.kv-hero-ui button:hover {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.05);
}



.kv-section-with-bg {
  overflow: hidden;
  padding-top: 4rem;
}

@media (max-width: 768px) {
  .kv-section-with-bg {
    padding-top: 2rem;
  }
}


.kv-section-with-bg .container-xxl {
  position: relative;
  z-index: 1;
}

.kv-section-alt {
  background: var(--kv-bg-soft);
}


.kv-section.kv-section-deneyim {
  padding-top: clamp(2.75rem, 5vw, 4rem);
  padding-bottom: clamp(2.75rem, 5vw, 4rem);
}

.kv-section h2 {
  font-family: var(--kv-font-heading);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 0;
  text-align: left;
}

h2 {
  font-weight: 500 !important;
}

.kv-section .lead {
  color: var(--kv-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 40rem;
  text-align: left;
}

.gs-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.gs-section-header-left {
  flex: 1;
}

.gs-section-header-left h2 {
  margin-bottom: 0.5rem;
}

.kv-view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--kv-text);
  border-radius: 5px;
  color: var(--kv-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.kv-view-all-btn:hover {
  background: var(--kv-text);
  color: #fff;
  transform: translateY(-2px);
}

.kv-view-all-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.kv-view-all-btn:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .gs-section-header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    text-align: center;
  }

  .gs-section-header-left {
    text-align: center;
  }

  /* Ürün vitrinleri (.kv-shop): başlık + slogan aynı dikey eksende (başlığın ortası) */
  .kv-shop .gs-section-header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .kv-shop .gs-section-header-left h2,
  .kv-shop .gs-section-header h2 {
    text-align: center !important;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
  }

  .kv-shop .gs-section-header-left .lead {
    text-align: center;
    width: fit-content;
    max-width: min(40rem, calc(100% - 1.5rem));
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .kv-section-with-bg .gs-section-header-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .kv-section-with-bg .gs-section-header-left h2,
  .kv-section-with-bg .gs-section-header h2 {
    text-align: center !important;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
  }

  .kv-section-with-bg .gs-section-header-left .lead {
    text-align: center;
    width: fit-content;
    max-width: min(40rem, calc(100% - 1.5rem));
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  .kv-view-all-btn {
    order: 2;
    align-self: center;
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
  }

  .gs-section-header-left {
    order: 1;
  }

  .kv-section {
    display: flex;
    flex-direction: column;
  }

  .kv-section .gs-section-header {
    order: 1;
    margin-bottom: 1rem;
  }

  .kv-section .row {
    order: 2;
  }

  .kv-section .kv-view-all-btn {
    order: 3;
  }
}

.kv-card-round {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 1;
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.1);
  text-decoration: none;
  color: inherit;
}

.kv-card-round:hover {
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.1);
}

.kv-card-round.wide {
  aspect-ratio: 16/10;
}

.kv-card-round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.kv-card-round:hover img {
  transform: scale(1.05);
}

.kv-card-round .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(45, 40, 36, 0.75));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.kv-card-round .cap span {
  font-weight: 600;
  font-size: 0.95rem;
}

.kv-card-round .cap i {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv-card-round:hover .cap span {
  transform: translateX(4px);
}

.kv-card-round:hover .cap i {
  background: rgba(255, 255, 255, 0.35);
  transform: rotate(45deg) scale(1.1);
}

.kv-care-eyebrow {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--kv-muted);
}

.kv-care-head h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.kv-care-tile {
  background: var(--kv-surface);
  border-radius: var(--kv-radius-lg);
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(61, 56, 53, 0.07);
  box-shadow: var(--kv-shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kv-care-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--kv-shadow);
}

.kv-care-tile-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(61, 56, 53, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--kv-text);
  margin-bottom: 1rem;
}

.kv-care-tile h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.kv-care-tile p {
  font-size: 0.875rem;
  color: var(--kv-muted);
  line-height: 1.55;
  margin: 0;
}

.kv-care-strip {
  background: var(--kv-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--kv-glass-border);
  border-radius: var(--kv-radius-xl);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--kv-shadow-soft);
}

@media (min-width: 992px) {
  .kv-care-strip {
    padding: 2rem 2.25rem;
  }
}

.kv-care-strip h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.kv-care-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--kv-muted);
  margin-bottom: 0.5rem;
}

.kv-care-list li:last-child {
  margin-bottom: 0;
}

.kv-care-list i {
  color: #2d6a4f;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.kv-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--kv-text);
  text-decoration: none;
  border-bottom: 2px solid rgba(61, 56, 53, 0.2);
  padding-bottom: 0.15rem;
}

.kv-link:hover {
  color: var(--kv-text);
  border-color: var(--kv-text);
}




.kv-shop {
  background: var(--kv-bg-soft);
  padding: 4rem 0 4rem;
}

@media (max-width: 768px) {
  .kv-shop {
    padding: 2rem 0 2rem;
  }
}

.kv-banner {
  background: var(--kv-bg-soft);
  padding: 4rem 0 0rem;
}

.kv-shop-white {
  background: #ffffff;
}

.kv-product {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(61, 56, 53, 0.08);
  position: relative;
  padding: 5px;
}

.kv-product:hover {
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.08);
}

.kv-product .thumb {
  min-height: 300px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv-product-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: var(--kv-text);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  z-index: 2;
}

.kv-product-badge.special {
  background: #d32f2f;
}

.kv-product .thumb img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
  display: block;
}

.kv-product:hover .thumb img {
  transform: scale(1.05);
}

.kv-product .body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #ffffff;
}

.kv-product .cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--kv-muted);
  margin-bottom: 0.4rem;
  display: inline-block;
  transition: color 0.3s ease;
}

.kv-product:hover .cat {
  color: var(--kv-text);
}

.kv-product h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: var(--kv-text);
}

.kv-product h4 a {
  color: var(--kv-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.kv-product h4 a:hover {
  color: var(--kv-muted);
}

.kv-product .row-price {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(61, 56, 53, 0.1);
}

.kv-product .info-text {
  font-weight: 600;
  font-size: 0.80rem;
  color: var(--kv-muted);
  transition: color 0.3s ease;
  text-decoration: none;
}

.kv-product:hover .info-text {
  color: var(--kv-text);
}

.kv-btn-add {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid var(--kv-text);
  background: #ffffff;
  color: var(--kv-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  text-decoration: none;
}

.kv-btn-add i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.kv-product:hover .kv-btn-add {
  background: var(--kv-text);
  color: #fff;
  transform: scale(1.05);
}

.kv-product:hover .kv-btn-add i {
  transform: translateX(2px);
}

.kv-feature {
  background: var(--kv-surface);
  border-radius: var(--kv-radius-xl);
  overflow: hidden;
  box-shadow: var(--kv-shadow-soft);
  margin-bottom: 2rem;
}

.kv-feature-img {
  aspect-ratio: 16/11;
  min-height: 220px;
}

.kv-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kv-feature-body {
  padding: 2rem;
}

.kv-feature-body h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.kv-btn-solid {
  border-radius: 999px !important;
  background: var(--kv-text) !important;
  color: #fff !important;
  border: none !important;
  font-weight: 600;
  font-size: 0.8rem;
  padding: 0.65rem 1.35rem !important;
}

.kv-btn-solid:hover {
  background: #2a2623 !important;
  color: #fff !important;
}



.kv-editor-white {
  background: #ffffff;
}

.kv-editor-feature {
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 2px 12px rgba(61, 56, 53, 0.1);
}

.kv-editor-feature:hover {
  box-shadow: 0 2px 12px rgba(61, 56, 53, 0.1);
}

.kv-editor-feature-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.kv-editor-feature:hover .kv-editor-feature-img {
  transform: scale(1.05);
}

.kv-editor-feature-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.75rem 1.75rem 1.85rem;
  color: #fff;
  background: linear-gradient(to top, rgba(27, 24, 22, 0.92) 0%, rgba(27, 24, 22, 0.7) 60%, transparent 100%);
  transition: padding 0.3s ease;
}

.kv-editor-feature:hover .kv-editor-feature-overlay {
  padding: 2rem 1.75rem;
}

.kv-editor-feature-overlay h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0.85rem 0 0.6rem;
  transition: transform 0.3s ease;
}

.kv-editor-feature:hover .kv-editor-feature-overlay h3 {
  transform: translateX(4px);
}

.kv-editor-feature-overlay p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 42ch;
  margin-bottom: 1.15rem;
  line-height: 1.6;
}

.kv-editor-mini {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 0;
  background: var(--kv-surface);
  border: 1px solid rgba(61, 56, 53, 0.06);
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.08);
  position: relative;
  overflow: hidden;
}

.kv-editor-mini:hover {
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.08);
}

.kv-editor-mini-img {
  width: 140px;
  height: 110px;
  border-radius: 0;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(135deg, #f5f1ea 0%, #ebe6de 100%);
}

.kv-editor-mini img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.kv-editor-mini:hover img {
  transform: scale(1.05);
}

.kv-editor-mini-content {
  flex: 1;
  min-width: 0;
}

.kv-editor-mini .cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: linear-gradient(135deg, var(--kv-text) 0%, var(--kv-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 0.5rem;
}

.kv-editor-mini h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.65rem;
  line-height: 1.4;
  color: var(--kv-text);
  transition: color 0.3s ease;
}

.kv-editor-mini:hover h4 {
  color: #2d2824;
}

.kv-editor-mini .kv-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s ease;
}

.kv-editor-mini:hover .kv-link {
  gap: 0.75rem;
}

.kv-editor-mini .kv-link::after {
  content: '→';
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.kv-editor-mini:hover .kv-link::after {
  transform: translateX(4px);
}

@media (max-width: 575px) {
  .kv-editor-mini {
    flex-direction: column;
    text-align: center;
  }

  .kv-editor-mini-img {
    width: 100%;
    height: 160px;
  }
}

.kv-horizontal-banner {
  padding: 2rem 0 3rem;
  background: #ffffff;
}


.corporate-cards-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.5rem;
}

.corporate-big-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(61, 56, 53, 0.1);
  min-height: 450px;
  display: flex;
  flex-direction: column;
}

.big-card-image {
  flex: 1;
  overflow: hidden;
}

.big-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.corporate-big-card:hover .big-card-image img {
  transform: scale(1.05);
}

.big-card-content {
  padding: 2.5rem;
  background: #ffffff;
}

.card-year {
  display: inline-block;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(61, 56, 53, 0.1);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.big-card-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--kv-text);
  text-align: left !important;
}

.big-card-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--kv-muted);
  margin: 0;
}

.corporate-small-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.small-card {
  background: #ffffff;
  border: 1px solid rgba(61, 56, 53, 0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.small-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(61, 56, 53, 0.1);
  border-color: rgba(61, 56, 53, 0.15);
}

.small-card-icon {
  width: 60px;
  height: 60px;
  background: var(--kv-text);
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1.5rem;
}

.small-card h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.small-card p {
  font-size: 0.9rem;
  color: var(--kv-muted);
  margin: 0;
}

.small-card-full {
  grid-column: 1 / 3;
  padding: 2rem;
}

.small-card-features {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1.5rem;
}

.feature-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
}

.feature-mini i {
  font-size: 1.75rem;
  color: var(--kv-text);
}

.feature-mini span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--kv-text);
  white-space: nowrap;
}

.feature-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 50px rgba(61, 56, 53, 0.2);
}

.feature-card-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.feature-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-card:hover .feature-card-bg img {
  transform: scale(1.1);
}

.feature-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(61, 56, 53, 0.85) 0%, rgba(61, 56, 53, 0.7) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  color: #ffffff;
}

.feature-card-overlay i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.feature-card-overlay h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
}

.feature-card-overlay p {
  font-size: 0.85rem;
  margin: 0;
  opacity: 0.8;
}

.feature-card-wide {
  grid-column: 1 / 3;
  height: 140px;
}

.feature-wide-content {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  gap: 2rem;
}

.feature-wide-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.feature-wide-item i {
  font-size: 2rem;
  margin: 0;
}

.feature-wide-item span {
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.feature-wide-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 991px) {
  .corporate-cards-grid {
    grid-template-columns: 1fr;
  }

  .corporate-small-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card-wide {
    grid-column: span 2;
  }
}

@media (max-width: 576px) {
  .kv-corporate-cards {
    padding: 3rem 0;
  }

  .corporate-small-cards {
    grid-template-columns: 1fr;
  }

  .small-card-full {
    grid-column: 1;
  }

  .small-card-features {
    flex-direction: column;
    gap: 1.5rem;
  }

  .big-card-content {
    padding: 2rem 1.5rem;
  }
}

.kv-banner-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 5px;
}

.kv-banner-img {
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}

@media (max-width: 768px) {
  .kv-banner-img {
    min-height: 200px;
    max-height: 350px;
  }
}

.kv-projects {
  padding: 2rem 0 3rem;
  background: #ffffff;
}

.kv-project-card {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.kv-project-card:hover {
  box-shadow: 0 4px 20px rgba(61, 56, 53, 0.12);
}

.kv-project-img {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.kv-project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.kv-project-card:hover .kv-project-img img {
  transform: scale(1.05);
}

.kv-project-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.kv-project-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 0.5rem;
}

.kv-project-content p {
  font-size: 0.9rem;
  color: var(--kv-muted);
  margin: 0;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .kv-project-img {
    height: 220px;
  }
}

/* Premium ürün kartları - Yaratıcı tasarım */
.kv-premium-products {
  padding: 2rem 0 3rem;
  background: var(--kv-bg);
}

.kv-premium-card {
  position: relative;
  background: var(--kv-surface);
  border-radius: var(--kv-radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(61, 56, 53, 0.08);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(61, 56, 53, 0.05);
}

.kv-premium-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #d4cfc6, #ebe6de, #ffffff);
  border-radius: var(--kv-radius-xl);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.kv-premium-card:hover::before {
  opacity: 1;
}

.kv-premium-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 24px 64px rgba(61, 56, 53, 0.16);
}

.kv-premium-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 10;
  background: linear-gradient(135deg, var(--kv-text) 0%, #2d2824 100%);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(61, 56, 53, 0.3);
  animation: premium-badge-float 3s ease-in-out infinite;
}

@keyframes premium-badge-float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-6px) rotate(-2deg);
  }
}

.kv-premium-badge.special {
  background: linear-gradient(135deg, #d32f2f 0%, #f44336 100%);
  animation: premium-badge-glow 2s ease-in-out infinite;
}

@keyframes premium-badge-glow {

  0%,
  100% {
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 8px 32px rgba(211, 47, 47, 0.6);
    transform: scale(1.05);
  }
}

.kv-premium-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f1ea 0%, #ebe6de 100%);
}

.kv-premium-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(61, 56, 53, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.kv-premium-card:hover .kv-premium-img::before {
  opacity: 1;
}

.kv-premium-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: grayscale(0.05) brightness(1.02);
}

.kv-premium-card:hover .kv-premium-img img {
  transform: scale(1.15) rotate(1deg);
  filter: grayscale(0) brightness(1.05);
}

.kv-premium-body {
  padding: 1.75rem 1.75rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--kv-surface) 0%, rgba(250, 248, 245, 0.5) 100%);
}

.kv-premium-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  background: linear-gradient(135deg, var(--kv-text) 0%, var(--kv-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  margin-bottom: 0.65rem;
  transition: all 0.3s ease;
}

.kv-premium-card:hover .kv-premium-cat {
  letter-spacing: 0.22em;
}

.kv-premium-body h3 {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.65rem;
  color: var(--kv-text);
  transition: all 0.3s ease;
}

.kv-premium-card:hover .kv-premium-body h3 {
  color: #2d2824;
  transform: translateX(4px);
}

.kv-premium-body p {
  font-size: 0.9rem;
  color: var(--kv-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.kv-premium-card:hover .kv-premium-body p {
  color: var(--kv-text);
}

.kv-premium-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-top: 1.25rem;
  border-top: 2px solid transparent;
  background: linear-gradient(90deg, rgba(61, 56, 53, 0.1) 0%, transparent 50%, rgba(61, 56, 53, 0.1) 100%) top / 100% 2px no-repeat;
  transition: all 0.3s ease;
}

.kv-premium-card:hover .kv-premium-footer {
  background: linear-gradient(90deg, var(--kv-text) 0%, var(--kv-muted) 50%, var(--kv-text) 100%) top / 100% 2px no-repeat;
}

.kv-premium-btn {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  border: 2px solid var(--kv-text);
  background: var(--kv-surface);
  color: var(--kv-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(61, 56, 53, 0.12);
}

.kv-premium-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--kv-text) 0%, #2d2824 100%);
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 50%;
}

.kv-premium-btn i {
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.kv-premium-card:hover .kv-premium-btn {
  transform: rotate(135deg) scale(1.2);
  box-shadow: 0 10px 32px rgba(61, 56, 53, 0.25);
}

.kv-premium-card:hover .kv-premium-btn::before {
  transform: scale(1);
}

.kv-premium-card:hover .kv-premium-btn i {
  color: #fff;
  transform: rotate(-135deg);
}

/* Footer - Modern Black */
.kv-footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  padding: 6rem 0 0;
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

@media (max-width: 767px) {
  .kv-footer .container-xxl {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.kv-footer .container-xxl {
  position: relative;
  z-index: 2;
}

.kv-footer::before {
  display: none;
}

/* Footer Column */
.footer-column {
  position: relative;
}

.footer-column h6 {
  position: relative;
  display: inline-block;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}

/* Highlight Column */
.highlight-column {
  position: relative;
  padding: 2.5rem;
  background: rgba(255, 107, 0, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 107, 0, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.highlight-column::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--kv-primary) 0%, rgba(255, 107, 0, 0.3) 50%, transparent 100%);
  border-radius: 4px 0 0 4px;
}

/* Working Hours */
.working-hours {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kv-footer h6 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  margin-bottom: 0;
}

.kv-footer .footer-links li {
  margin-bottom: 0.85rem;
  position: relative;
  padding-left: 0;
  transition: padding-left 0.3s ease;
}

.kv-footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
  position: relative;
}

.kv-footer .footer-links a i {
  display: none;
}

.kv-footer .footer-links a:hover {
  color: #fff;
  padding-left: 8px;
}

.kv-footer .social-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.kv-footer .social-icon::before {
  display: none;
}

.kv-footer .social-icon i {
  position: relative;
  z-index: 1;
}

.kv-footer .social-icon:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #0a0a0a;
  transform: translateY(-3px);
}

.kv-footer .contact-info a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.kv-footer .contact-info a:hover {
  color: #ffffff;
  transform: translateX(5px);
}

.kv-footer .contact-info .icon-wrapper {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-primary);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.kv-footer .contact-info a:hover .icon-wrapper {
  background: rgba(255, 107, 0, 0.15);
  transform: scale(1.1);
}

.kv-footer .btn-primary {
  background: var(--kv-primary);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.kv-footer .btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.kv-footer .btn-primary:hover {
  background: #e65c00;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
}

.kv-footer .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 5rem;
  padding: 2.5rem 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kv-footer .footer-bottom a {
  transition: all 0.3s ease;
  color: rgba(255, 255, 255, 0.6);
}

.kv-footer .footer-bottom a:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* WhatsApp */
.kv-wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1050;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s;
}

.kv-wa:hover {
  color: #fff;
  transform: scale(1.08);
}

.toast {
  border-radius: 1rem;
}



/* Video alanı header ile birlikte */
.kv-hero-section .kv-section-deneyim {
  min-height: 100vh;
  position: relative;

}

.kv-hero-section .kv-section-deneyim video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.kv-header-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 0.75rem 0;
}

/* Video üzerinde yazı overlay */
.video-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.video-text-content {
  pointer-events: all;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  box-shadow: 0 20px 60px rgba(61, 56, 53, 0.2);
}

.video-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--kv-text);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.video-title span {
  font-weight: 700;
  display: block;
  background: linear-gradient(135deg, var(--kv-text) 0%, #8b7355 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.video-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  font-weight: 400;
  color: var(--kv-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.btn-video-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--kv-text);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(61, 56, 53, 0.2);
}

.btn-video-explore:hover {
  background: #2d2824;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(61, 56, 53, 0.3);
  color: #fff;
}

.btn-video-explore i {
  transition: transform 0.3s ease;
}

.btn-video-explore:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 991px) {
  .video-text-overlay {
    align-items: flex-end;
    padding-bottom: 2rem;
  }

  .video-text-content {
    padding: 2rem;
  }

  .video-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .video-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
}


/* Kurumsal Alan - Paralaks Katmanlar */
.corporate-parallax {
  padding: 2rem 0 3rem;
  background: linear-gradient(180deg, #faf8f5 0%, #f5f1ea 50%, #faf8f5 100%);
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 207, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 207, 198, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.parallax-content {
  position: relative;
  z-index: 2;
}

.parallax-intro {
  text-align: center;
  margin-bottom: 5rem;
}

.parallax-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
}

.title-line {
  display: block;
  color: var(--kv-text);
  transition: transform 0.3s ease;
}

.title-line:nth-child(2) {
  background: linear-gradient(135deg, var(--kv-text) 0%, #8b7355 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Kartlar */
.parallax-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.pcard {
  transition: transform 0.3s ease;
}

.pcard:hover {
  transform: translateY(-10px) !important;
}

.pcard-inner {
  background: #fff;
  padding: 2.5rem;
  border-radius: 5px;
  box-shadow: 0 10px 40px rgba(61, 56, 53, 0.08);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.pcard:hover .pcard-inner {
  box-shadow: 0 20px 60px rgba(61, 56, 53, 0.12);
}

.pcard-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--kv-text);
  transition: height 0.3s ease;
}

.pcard:hover .pcard-inner::before {
  height: 100%;
}

.pcard-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.pcard-icon {
  width: 50px;
  height: 50px;
  background: rgba(61, 56, 53, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-text);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.pcard:hover .pcard-icon {
  background: var(--kv-text);
  color: #fff;
  transform: rotate(360deg);
}

.pcard-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--kv-text);
  margin: 0;
}

.pcard-inner p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--kv-muted);
  margin-bottom: 1.5rem;
  flex: 1;
}

.pcard-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(61, 56, 53, 0.05);
  color: var(--kv-text);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 999px;
  align-self: flex-start;
}

/* İstatistikler */
.parallax-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 10px 40px rgba(61, 56, 53, 0.08);
}

.stat-box {
  text-align: center;
  padding: 1.5rem;
  position: relative;
}

.stat-box:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
  background: rgba(61, 56, 53, 0.1);
}

.stat-value {
  font-size: 3rem;
  font-weight: 900;
  color: var(--kv-text);
  line-height: 1;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, var(--kv-text) 0%, #8b7355 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--kv-muted);
  font-weight: 500;
}

/* Responsive */
@media (max-width: 991px) {
  .corporate-parallax {
    padding: 2rem 0 3rem;
  }

  .parallax-intro {
    margin-bottom: 3rem;
  }

  .parallax-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pcard-inner {
    padding: 2rem;
  }

  .parallax-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }

  .stat-box::after {
    display: none;
  }

  .stat-value {
    font-size: 2.5rem;
  }
}


/* Brand Story - Modern Grid Layout */
.kv-brand-story {
  padding: 2rem 0 3rem;
  background: var(--kv-surface);
}

.kv-story-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  min-height: 600px;
}

.kv-story-text {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, var(--kv-text) 0%, #2d2824 100%);
  color: #fff;
  padding: 3rem;
  border-radius: var(--kv-radius-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.kv-story-text::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.kv-story-number {
  font-size: 5rem;
  font-weight: 700;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.kv-story-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.kv-story-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.kv-story-image {
  border-radius: var(--kv-radius-lg);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s ease;
}

.kv-story-image:hover {
  transform: scale(1.05);
  z-index: 10;
}

.kv-story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.kv-story-image:hover img {
  transform: scale(1.1);
}

.kv-story-img-1 {
  grid-column: span 2;
  grid-row: span 1;
}

.kv-story-img-2 {
  grid-column: span 1;
  grid-row: span 2;
}

.kv-story-img-3 {
  grid-column: span 1;
  grid-row: span 1;
}

.kv-story-feature {
  background: var(--kv-bg-soft);
  padding: 2rem;
  border-radius: var(--kv-radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.kv-story-feature:hover {
  background: #fff;
  border-color: var(--kv-text);
  transform: translateY(-5px);
}

.kv-story-feature i {
  font-size: 2.5rem;
  color: var(--kv-text);
  margin-bottom: 1rem;
  display: block;
}

.kv-story-feature h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--kv-text);
}

.kv-story-feature p {
  font-size: 0.9rem;
  color: var(--kv-muted);
  margin: 0;
}

.kv-story-cta {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--kv-bg);
  border-radius: var(--kv-radius-lg);
  padding: 2rem;
}

.kv-story-btn {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  background: var(--kv-text);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.4s ease;
  box-shadow: 0 8px 24px rgba(61, 56, 53, 0.2);
}

.kv-story-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(61, 56, 53, 0.3);
  gap: 1.5rem;
  color: #fff;
}

.kv-story-btn i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.kv-story-btn:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .kv-story-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .kv-story-text {
    grid-column: span 2;
    padding: 2rem;
  }

  .kv-story-text h2 {
    font-size: 2rem;
  }

  .kv-story-img-1,
  .kv-story-img-2,
  .kv-story-img-3 {
    grid-column: span 1;
    grid-row: span 1;
  }

  .kv-story-cta {
    grid-column: span 2;
  }
}

@media (max-width: 575px) {
  .kv-story-grid {
    grid-template-columns: 1fr;
  }

  .kv-story-text,
  .kv-story-img-1,
  .kv-story-img-2,
  .kv-story-img-3,
  .kv-story-cta {
    grid-column: span 1;
  }
}


@media (max-width: 575px) {
  .col-6.col-xl-4 {
    width: 100% !important;
    flex: 0 0 100% !important;
  }
}


.kv-card-round {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  aspect-ratio: 1;
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.1);
  text-decoration: none;
  color: inherit;
}

.kv-card-round:hover {
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.1);
}

.kv-card-round.wide {
  aspect-ratio: 16/10;
}

.kv-card-round img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.kv-card-round:hover img {
  transform: scale(1.05);
}

.kv-card-round .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  z-index: 2;
}

.kv-card-round .cap span {
  font-weight: 700;
  font-size: 1.0rem;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.kv-card-round:hover .cap span {
  transform: translateX(4px);
}

.kv-card-round .cap i {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.kv-card-round:hover .cap i {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(45deg) scale(1.1);
}


@media (max-width: 768px) {
  .kv-corporate-visual-wrapper {
    height: 350px;
  }
}

@media (max-width: 575px) {
  .kv-corporate-visual-wrapper {
    height: 250px;
  }
}




.kv-footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 0;
  color: rgba(255, 255, 255, 0.7);
}

.footer-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.footer-social a:hover {
  background: #ffffff;
  color: #0a0a0a;
  border-color: #ffffff;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.footer-contact i {
  color: #ffffff;
  font-size: 1.1rem;
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-link {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: #ffffff;
}

@media (max-width: 767px) {
  .footer-title {
    margin-top: 1.5rem;
  }

  .footer-title:first-child {
    margin-top: 0;
  }
}



.kv-hero-video-replacement {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.kv-hero-animated-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform-origin: center center;
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0);
  }

  25% {
    transform: scale(1.08) translate(-1%, -0.5%);
  }

  50% {
    transform: scale(1.12) translate(0.5%, -1%);
  }

  75% {
    transform: scale(1.06) translate(-0.5%, 0.5%);
  }

  100% {
    transform: scale(1.15) translate(1%, -0.5%);
  }
}

.kv-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.1) 40%,
      rgba(0, 0, 0, 0.55) 100%);
}

.kv-hero-section {
  padding: 0 !important;
  margin: 0;
}

.kv-hero-box {
  min-height: 100vh !important;
  position: relative;
}

.kv-hero-content {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4rem;
  padding-top: 2rem;
}

.kv-hero-content .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.kv-hero-eyebrow {
  font-family: var(--kv-font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  display: inline-block;
}

.kv-hero-content h1 {
  font-family: var(--kv-font-heading);
  font-size: clamp(1.85rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  max-width: 14ch;
}

.kv-hero-content p {
  font-family: var(--kv-font-body);
  color: rgba(255, 255, 255, 0.85);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 42ch;
  margin-bottom: 2rem;
}

.kv-hero-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  border-radius: 0 !important;
  border: 2px solid rgba(255, 255, 255, 0.85) !important;
  color: #fff !important;
  font-family: var(--kv-font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.85rem 2rem !important;
  background: transparent !important;
  text-decoration: none;
  transition: background 0.35s, color 0.35s, transform 0.35s !important;
}

.kv-hero-cta:hover {
  background: #fff !important;
  color: #3d3835 !important;
  transform: translateY(-2px);
}

.gs-hero-el {
  opacity: 0;
  transform: translateY(40px);
}

.kv-section-eyebrow {
  display: block;
  text-align: left;
  font-family: var(--kv-font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--kv-muted);
  margin-bottom: 0.75rem;
}

.gs-section-header {
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--kv-font-heading);
  color: var(--kv-text);
  line-height: var(--kv-lh-heading);
}

h1 {
  font-size: clamp(1.7rem, 3.8vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.2rem, 2.1vw, 1.50rem) !important;
  font-weight: 500 !important;
  letter-spacing: -0.02em;
  text-align: left;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.gs-section-header h2 {
  padding-left: 0;
  padding-bottom: 0;
  border-left: none;
  margin-bottom: 0;
  text-align: left;
}

h3 {
  font-size: clamp(1.05rem, 1.65vw, 1.3rem);
  font-weight: 600;
}

h4 {
  font-family: var(--kv-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.45;
}

h5 {
  font-family: var(--kv-font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

h6 {
  font-family: var(--kv-font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

p,
span,
a,
li,
button {
  font-family: var(--kv-font-body);
}

.lead {
  font-family: var(--kv-font-body);
  font-weight: 400;
  color: var(--kv-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 767px) {
  .kv-hero-content {
    padding-bottom: 2.5rem;
  }

  .kv-hero-content h1 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
    max-width: 100%;
  }

  .kv-hero-content p {
    font-size: 0.9rem;
    max-width: 100%;
  }
}


.kv-favorite-image-only {
  display: block;
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(61, 56, 53, 0.08);
  transition: all 0.3s ease;
}

.kv-favorite-image-only:hover {
  box-shadow: 0 4px 16px rgba(61, 56, 53, 0.12);
}

.kv-favorite-image-only img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.kv-favorite-image-only:hover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .kv-favorite-image-only img {
    height: auto;
    object-fit: contain;
  }
}


.horiz-products-wrapper {
  overflow: hidden;
}

.horiz-products-container {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}

.horiz-product-item {
  flex: 0 0 350px;
  width: 350px;
}

@media (max-width: 768px) {
  .horiz-product-item {
    flex: 0 0 280px;
    width: 280px;
  }
}

.swiper-navigation-buttons {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.swiper-button-prev-custom,
.swiper-button-next-custom,
.swiper-button-prev-custom-similar,
.swiper-button-next-custom-similar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--kv-text);
  background: transparent;
  color: var(--kv-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover,
.swiper-button-prev-custom-similar:hover,
.swiper-button-next-custom-similar:hover {
  background: var(--kv-text);
  color: #fff;
  transform: scale(1.05);
}

.swiper-button-prev-custom:disabled,
.swiper-button-next-custom:disabled,
.swiper-button-prev-custom-similar:disabled,
.swiper-button-next-custom-similar:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.swiper-button-prev-custom:disabled:hover,
.swiper-button-next-custom:disabled:hover,
.swiper-button-prev-custom-similar:disabled:hover,
.swiper-button-next-custom-similar:disabled:hover {
  background: transparent;
  color: var(--kv-text);
  transform: scale(1);
}

@media (max-width: 768px) {
  .swiper-navigation-buttons {
    display: none;
  }
}

.modern-hr-wrapper {
  margin: 1rem 0 1.5rem;
  position: relative;
}

.modern-hr {
  border: none;
  height: 2px;
  background: linear-gradient(to right,
      transparent,
      var(--kv-text) 20%,
      var(--kv-text) 80%,
      transparent);
  opacity: 0.15;
  margin: 0;
  position: relative;
}

.modern-hr::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  background: var(--kv-text);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(61, 56, 53, 0.1);
}



@media (max-width: 768px) {
  .modern-hr-wrapper {
    margin: 0.75rem 0 1.25rem;
  }
}

.search-dropdown-wrapper {
  position: relative;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 10px 40px rgba(61, 56, 53, 0.15);
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.search-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.search-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 1rem;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  transform: rotate(45deg);
  border-radius: 2px;
}

.search-dropdown .search-box {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(61, 56, 53, 0.04);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(61, 56, 53, 0.08);
  box-shadow: none;
}

.search-dropdown .search-input {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--kv-text);
  outline: none;
  padding: 0.85rem 0.5rem 0.85rem 1rem;
  min-width: 0;
}

.search-dropdown .search-input::placeholder {
  color: var(--kv-muted);
  font-weight: 400;
}

.search-dropdown .search-submit-btn {
  background: var(--kv-text);
  color: #fff;
  border: none;
  padding: 1.1rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 0 8px 8px 0;
}

.search-dropdown .search-submit-btn:hover {
  background: rgba(61, 56, 53, 0.85);
}

@media (max-width: 991px) {
  .search-dropdown {
    right: -0.5rem;
    min-width: 280px;
  }
}

.social-dropdown-wrapper {
  position: relative;
}

.social-dropdown {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 10px 40px rgba(61, 56, 53, 0.15);
  display: flex;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.social-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.social-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 1rem;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  transform: rotate(45deg);
  border-radius: 2px;
}

.social-link {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-text);
  background: rgba(61, 56, 53, 0.05);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.social-link:hover {
  background: var(--kv-text);
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .social-dropdown {
    right: -0.5rem;
  }

  .social-link {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

.language-dropdown-wrapper {
  position: relative;
}

.language-dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 0.5rem;
  box-shadow: 0 10px 40px rgba(61, 56, 53, 0.15);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

.language-dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -6px;
  right: 1rem;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  transform: rotate(45deg);
  border-radius: 2px;
}

.language-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--kv-text);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.language-item:hover {
  background: rgba(61, 56, 53, 0.08);
}

.language-item.active {
  background: var(--kv-text);
  color: #fff;
}

.language-item .flag {
  font-size: 1.5rem;
  line-height: 1;
}

@media (max-width: 768px) {
  .language-dropdown-menu {
    right: -0.5rem;
    min-width: 160px;
  }

  .language-item {
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
  }

  .language-item .flag {
    font-size: 1.3rem;
  }
}

/* ====== PRODUCTS PAGE STYLES ====== */
.products-hero-section {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  overflow: hidden;
  padding-top: 5rem;
  border-radius: 0 0 20px 20px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
  z-index: 1;
}

.products-hero-section .kv-header-wrap {
  position: relative;
  z-index: 10;
}

.products-hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

/* Kaynak sırası: başlık → breadcrumb; flex order ile breadcrumb altta, arada çok az boşluk */
.products-hero-section .hero-content .breadcrumb-modern {
  order: 1;
  margin-top: 0.5rem;
}

/* Koyu hero: sayfa başlığı — okunaklı boyut, harf biçimi olduğu gibi */
section.products-hero-section .hero-content h1.hero-page-title {
  margin: 0;
  max-width: min(100%, 42rem);
  padding: 0 0.75rem;
  box-sizing: border-box;
  font-size: clamp(1.45rem, 3.8vw, 2.4rem);
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  text-align: center;
  text-wrap: balance;
  text-transform: none !important;
  font-variant: normal !important;
}

.breadcrumb-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1rem;
}

.products-hero-section .breadcrumb-modern {
  font-family: var(--kv-font-body);
}

.breadcrumb-item {
  color: rgba(255, 255, 255, 0.8);
}


.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.5);
}

/* Hero — mobil: alçak görsel + breadcrumb tipografisi */
@media (max-width: 576px) {
  .products-hero-section {
    min-height: clamp(220px, 36vh, 300px);
    padding-top: 4.25rem;
    padding-bottom: 1rem;
  }

  .products-hero-section .breadcrumb-modern {
    font-family: var(--kv-font-body);
    font-size: clamp(0.78rem, 3.1vw, 0.9rem);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: 0.02em;
    gap: 0.35rem 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 100%;
    padding: 0 0.65rem;
    box-sizing: border-box;
  }

  .products-hero-section .breadcrumb-item {
    font-weight: 500;
  }



  .products-hero-section .breadcrumb-separator {
    font-size: 0.85em;
    font-weight: 400;
    opacity: 0.8;
  }

  section.products-hero-section .hero-content h1.hero-page-title {
    font-size: clamp(1.5rem, 4.2vw, 1.85rem);
    line-height: 1.2;
    letter-spacing: -0.015em;
    max-width: min(100%, 40rem);
    padding: 0 0.65rem;
  }
}

/* Products Section */
.products-section {
  padding: 4rem 0;
  background: #ffffff;
}

/* Toolbar */
.products-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--kv-bg-soft);
  border-radius: 12px;
  flex-wrap: wrap;
  gap: 1rem;
}

.toolbar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-filter {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--kv-text);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-filter:hover {
  background: #2d2824;
  transform: translateY(-2px);
}

.results-count {
  font-size: 0.95rem;
  color: var(--kv-muted);
}

.count-number {
  font-weight: 700;
  color: var(--kv-text);
}

.view-toggle {
  display: flex;
  gap: 0.5rem;
  background: #ffffff;
  padding: 0.25rem;
  border-radius: 8px;
}

.view-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: transparent;
  color: var(--kv-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn.active,
.view-btn:hover {
  background: var(--kv-text);
  color: #ffffff;
}

.sort-dropdown select {
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(61, 56, 53, 0.2);
  border-radius: 8px;
  background: #ffffff;
  color: var(--kv-text);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sort-dropdown select:focus {
  outline: none;
  border-color: var(--kv-text);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (max-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Pagination */
.pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.pagination {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-item {
  list-style: none;
}

.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  background: #ffffff;
  border: 1px solid rgba(61, 56, 53, 0.2);
  border-radius: 8px;
  color: var(--kv-text);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.page-link:hover {
  background: var(--kv-bg-soft);
  border-color: var(--kv-text);
}

.page-item.active .page-link {
  background: var(--kv-text);
  color: #ffffff;
  border-color: var(--kv-text);
}

.page-item.disabled .page-link {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Filters Offcanvas */
.offcanvas {
  width: 320px !important;
}

.offcanvas-header {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(61, 56, 53, 0.1);
}

.offcanvas-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.filters-content {
  padding: 1.5rem;
}

.filter-group {
  margin-bottom: 2rem;
}

.filter-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  user-select: none;
}

.filter-title i {
  transition: transform 0.3s ease;
}

.filter-title[aria-expanded="false"] i {
  transform: rotate(-90deg);
}


.filter-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  cursor: pointer;
  position: relative;
}

.filter-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.checkmark {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(61, 56, 53, 0.3);
  border-radius: 4px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.filter-option input:checked~.checkmark {
  background: var(--kv-text);
  border-color: var(--kv-text);
}

.filter-option input:checked~.checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  font-size: 0.85rem;
}

.option-text {
  flex: 1;
  font-size: 0.95rem;
  color: var(--kv-text);
}

.option-count {
  font-size: 0.85rem;
  color: var(--kv-muted);
}

.filter-search {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-search i {
  position: absolute;
  left: 1rem;
  color: var(--kv-muted);
}

.filter-search input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  border: 1px solid rgba(61, 56, 53, 0.2);
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.filter-search input:focus {
  outline: none;
  border-color: var(--kv-text);
}

.btn-reset {
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 2px solid var(--kv-text);
  border-radius: 8px;
  color: var(--kv-text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-reset:hover {
  background: var(--kv-text);
  color: #ffffff;
}

#filtersOffcanvas .btn-reset-offcanvas {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.75rem 1.25rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(61, 56, 53, 0.96) 0%, rgba(45, 40, 38, 0.98) 100%);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(61, 56, 53, 0.22);
}

#filtersOffcanvas .btn-reset-offcanvas:hover,
#filtersOffcanvas .btn-reset-offcanvas:active,
#filtersOffcanvas .btn-reset-offcanvas:focus {
  color: #fff;
  background: linear-gradient(135deg, rgba(61, 56, 53, 0.96) 0%, rgba(45, 40, 38, 0.98) 100%);
  transform: none;
  box-shadow: 0 4px 16px rgba(61, 56, 53, 0.22);
  filter: none;
}

#filtersOffcanvas .btn-reset-offcanvas i {
  font-size: 0.82rem;
  opacity: 0.95;
}

@media (max-width: 768px) {
  .products-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .toolbar-left,
  .toolbar-right {
    width: 100%;
    justify-content: space-between;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }

  .hero-content {
    padding: 6rem 0 3rem;
  }
}

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}


/* ====================================
     YENİ MODERN ÜRÜN DETAY TASARIMI
  ==================================== */

/* Product Showcase - Split Screen */
.product-showcase-modern {
  min-height: 100vh;
  background: #fff;
}

/* Immersive Gallery */
.immersive-gallery {
  position: relative;
  height: 100vh;
  background: #000;
}

.productMainSwiper {
  height: 100%;
}

.gallery-slide {
  position: relative;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}

/* Gallery Navigation */
.gallery-nav-modern {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.gallery-nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: none;
  background: var(--kv-text);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav-btn:hover {
  transform: scale(1.1);
  background: #2d2824;
}

.gallery-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--kv-text);
  font-size: 1.1rem;
  min-width: 60px;
  justify-content: center;
}

.gallery-counter .divider {
  color: var(--kv-muted);
}

/* Thumbnail Strip */
.thumbnail-strip {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 90%;
  max-width: 500px;
}

.productThumbSwiper {
  padding: 10px;
}

.thumb-item {
  width: 100%;
  height: 250px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.thumb-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productThumbSwiper .swiper-slide {
  opacity: 0.5;
  transition: all 0.3s ease;
}

.productThumbSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.productThumbSwiper .swiper-slide-thumb-active .thumb-item {
  border-color: #fff;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Product Info Sidebar */
.product-info-sidebar {
  height: 100vh;
  overflow-y: auto;
  background: linear-gradient(135deg, #faf8f5 0%, #ffffff 100%);
  position: sticky;
  top: 0;
}

.sidebar-content {
  padding: 4rem 3rem;
}

.category-badge-modern {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--kv-text);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.product-title-modern {
  font-family: var(--kv-font-heading);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--kv-text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

/* Rating Modern */
.rating-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(61, 56, 53, 0.1);
}

.stars-modern {
  display: flex;
  gap: 0.3rem;
}

.stars-modern i {
  color: #ffc107;
  font-size: 1.2rem;
}

.rating-count {
  font-size: 0.95rem;
  color: var(--kv-muted);
  font-weight: 500;
}

.product-desc-modern {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--kv-muted);
  margin-bottom: 3rem;
}

/* Features Grid Modern */
.features-grid-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.feature-item-modern {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.feature-item-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--kv-text) 0%, #2d2824 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 0.25rem;
}

.feature-text p {
  font-size: 0.85rem;
  color: var(--kv-muted);
  margin: 0;
}

/* CTA Buttons Modern */
.cta-buttons-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-modern {
  padding: 1.2rem 2rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-primary-modern {
  background: linear-gradient(135deg, var(--kv-text) 0%, #2d2824 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(61, 56, 53, 0.3);
}

.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(61, 56, 53, 0.4);
}

.btn-secondary-modern {
  background: #fff;
  color: var(--kv-text);
  border: 2px solid var(--kv-text);
}

.btn-secondary-modern:hover {
  background: var(--kv-text);
  color: #fff;
  transform: translateY(-3px);
}

/* Additional Info Modern */
.additional-info-modern {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--kv-text);
}

.info-item i {
  color: #4caf50;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Product Story Section */
.product-story-section {
  padding: 6rem 0;
  background: #fff;
}

.story-content {
  padding-right: 2rem;
}

.story-label {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--kv-bg);
  color: var(--kv-text);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.story-title {
  font-family: var(--kv-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--kv-text);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.story-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--kv-muted);
  margin-bottom: 3rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--kv-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 0.9rem;
  color: var(--kv-muted);
  margin: 0;
}

/* Story Image Grid */
.story-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  height: 500px;
}

.grid-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.grid-large {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.grid-small {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.grid-item:hover img {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 991px) {
  .product-showcase-modern .row {
    flex-direction: column-reverse;
  }

  .immersive-gallery {
    height: 60vh;
  }

  .product-info-sidebar {
    height: auto;
    position: relative;
  }

  .sidebar-content {
    padding: 3rem 2rem;
  }

  .features-grid-modern {
    grid-template-columns: 1fr;
  }

  .cta-buttons-modern {
    grid-template-columns: 1fr;
  }

  .story-content {
    padding-right: 0;
    margin-bottom: 3rem;
  }

  .story-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .story-image-grid {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .gallery-nav-modern {
    bottom: 20px;
    padding: 0.75rem 1.5rem;
    gap: 1rem;
  }

  .gallery-nav-btn {
    width: 40px;
    height: 40px;
  }

  .thumbnail-strip {
    bottom: 90px;
    width: 95%;
  }

  .thumb-item {
    height: 60px;
  }

  .sidebar-content {
    padding: 2rem 1.5rem;
  }

  .product-title-modern {
    font-size: 2rem;
  }

  .story-stats {
    grid-template-columns: 1fr;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .story-image-grid {
    grid-template-columns: 1fr;
    height: auto;
  }

  .grid-large,
  .grid-small {
    grid-column: 1;
    grid-row: auto;
    height: 250px;
  }
}

@media (max-width: 576px) {
  .immersive-gallery {
    height: 50vh;
  }

  .gallery-nav-modern {
    padding: 0.5rem 1rem;
    gap: 0.75rem;
  }

  .gallery-nav-btn {
    width: 35px;
    height: 35px;
  }

  .gallery-counter {
    font-size: 0.95rem;
  }

  .thumbnail-strip {
    display: none;
  }

  .features-grid-modern {
    gap: 1rem;
  }

  .feature-item-modern {
    padding: 1rem;
  }
}

.product-hero-gallery {
  padding: 4rem 0;
  background: linear-gradient(180deg, #faf8f5 0%, #fff 100%);
}

.product-title-section {
  text-align: center;
  margin-bottom: 3rem;
}

.product-category {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--kv-text);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}

.product-main-title {
  font-family: var(--kv-font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--kv-text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.product-rating-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.product-rating-main .stars {
  display: flex;
  gap: 0.3rem;
}

.product-rating-main .stars i {
  color: #ffc107;
  font-size: 1.2rem;
}

.product-rating-main span {
  font-size: 1rem;
  color: var(--kv-muted);
  font-weight: 600;
}

.gallery-wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}

.mainGallerySwiper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 700px;
  background: #f5f5f5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s ease;
  padding: 2rem;
}

.hero-slide:hover img {
  transform: scale(1.05);
}

.gallery-nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: var(--kv-text);
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.nav-btn:hover {
  transform: scale(1.1);
  background: #2d2824;
}

.nav-counter {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--kv-text);
  font-size: 1.2rem;
  min-width: 70px;
  justify-content: center;
}

.nav-counter .sep {
  color: var(--kv-muted);
  font-weight: 400;
}

.thumbnail-strip {
  margin-top: 2rem;
}

.thumbnailSwiper {
  padding: 10px 0;
}

.thumb {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  position: relative;
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnailSwiper .swiper-slide {
  opacity: 0.6;
  transition: all 0.3s ease;
}

.thumbnailSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.thumbnailSwiper .swiper-slide-thumb-active .thumb {
  border-color: var(--kv-text);
  box-shadow: 0 4px 15px rgba(61, 56, 53, 0.3);
}

.product-details-new {
  padding: 5rem 0;
  background: #fff;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.feat-card {
  background: var(--kv-bg);
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.feat-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--kv-text);
  background: #fff;
}

.feat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--kv-text) 0%, #2d2824 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: all 0.4s ease;
}

.feat-card:hover .feat-icon {
  transform: rotateY(360deg);
}

.feat-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 0.75rem;
}

.feat-card p {
  font-size: 0.95rem;
  color: var(--kv-muted);
  line-height: 1.6;
  margin: 0;
}

.desc-area {
  max-width: 1200px;
  margin: 0 auto 5rem;
}

.desc-header {
  text-align: center;
  margin-bottom: 3rem;
}

.desc-header h2 {
  font-family: var(--kv-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 1rem;
}

.header-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--kv-text) 0%, var(--kv-muted) 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.desc-content .lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--kv-text);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 500;
}

.desc-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.desc-cols .col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.desc-cols .col h4 i {
  color: #4caf50;
  font-size: 1.3rem;
}

.desc-cols .col p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--kv-muted);
  margin: 0;
}

.cta-box {
  background: linear-gradient(135deg, var(--kv-text) 0%, #2d2824 100%);
  padding: 3rem 4rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 20px 60px rgba(61, 56, 53, 0.3);
}

.cta-text h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cta-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.cta-btns {
  display: flex;
  gap: 1rem;
}

.cta-btn {
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.cta-btn.primary {
  background: #fff;
  color: var(--kv-text);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.cta-btn.secondary:hover {
  background: #fff;
  color: var(--kv-text);
  transform: translateY(-3px);
}

@media (max-width: 1200px) {
  .feature-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .desc-cols {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 991px) {
  .hero-slide {
    height: 500px;
  }

  .floating-badge {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 2rem;
    max-width: 100%;
  }

  .gallery-nav {
    bottom: 20px;
    right: 20px;
    padding: 0.75rem 1.5rem;
  }

  .nav-btn {
    width: 45px;
    height: 45px;
  }

  .feature-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-box {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 2.5rem 2rem;
  }

  .cta-btns {
    flex-direction: column;
    width: 100%;
  }

  .cta-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .product-hero-gallery {
    padding: 2rem 0;
  }

  .hero-slide {
    height: 400px;
  }

  .floating-badge {
    padding: 1.5rem;
  }

  .badge-title {
    font-size: 1.5rem;
  }

  .gallery-nav {
    padding: 0.5rem 1rem;
    gap: 1rem;
  }

  .nav-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  .nav-counter {
    font-size: 1rem;
  }

  .thumb {
    height: 80px;
  }

  .product-details-new {
    padding: 3rem 0;
  }

  .feat-card {
    padding: 2rem 1.5rem;
  }

  .feat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .desc-area {
    margin-bottom: 3rem;
  }

  .desc-content .lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .hero-slide {
    height: 300px;
  }

  .thumbnail-strip {
    display: none;
  }

  .gallery-nav {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 15px;
  }

  .cta-text h3 {
    font-size: 1.35rem;
  }

  .cta-text p {
    font-size: 0.95rem;
  }
}

.product-section-clean {
  padding: 5rem 0;
  background: #fff;
}

.product-gallery-clean {
  position: sticky;
  top: 100px;
}

.mainProductSwiper {
  margin-bottom: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
}

.main-image {
  width: 100%;
  height: 600px;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mainProductSwiper .swiper-button-next,
.mainProductSwiper .swiper-button-prev {
  background: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mainProductSwiper .swiper-button-next:after,
.mainProductSwiper .swiper-button-prev:after {
  font-size: 18px;
  color: var(--kv-text);
  font-weight: 700;
}

.thumbProductSwiper .swiper-slide {
  cursor: pointer;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.thumbProductSwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.thumb-image {
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  background: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.thumbProductSwiper .swiper-slide-thumb-active .thumb-image {
  border-color: var(--kv-text);
}

.thumb-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-info-clean {
  position: sticky;
  top: 100px;
}

.product-cat {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--kv-bg);
  color: var(--kv-text);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 50px;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.product-name {
  font-family: var(--kv-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--kv-text);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.product-rating-clean {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e5e5e5;
}

.product-rating-clean .stars {
  display: flex;
  gap: 0.25rem;
}

.product-rating-clean .stars i {
  color: #ffc107;
  font-size: 1.1rem;
}

.product-rating-clean .rating-text {
  font-size: 0.95rem;
  color: var(--kv-muted);
}

.product-desc-clean {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--kv-muted);
  margin-bottom: 2rem;
}

.product-features-clean {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.feature-item-clean {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--kv-bg);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item-clean:hover {
  background: var(--kv-text);
  color: #fff;
  transform: translateX(5px);
}

.feature-item-clean i {
  font-size: 1.25rem;
  color: #4caf50;
}

.feature-item-clean:hover i {
  color: #fff;
}

.feature-item-clean span {
  font-size: 0.95rem;
  font-weight: 600;
}

.product-actions-clean {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.btn-action-primary,
.btn-action-secondary {
  padding: 1.25rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-action-primary {
  background: var(--kv-text);
  color: #fff;
}

.btn-action-primary:hover {
  background: #2d2824;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(61, 56, 53, 0.3);
}

.btn-action-secondary {
  background: #fff;
  color: var(--kv-text);
  border: 2px solid var(--kv-text);
}

.btn-action-secondary:hover {
  background: var(--kv-text);
  color: #fff;
  transform: translateY(-2px);
}

.product-description-clean {
  margin-top: 5rem;
  padding-top: 5rem;
  border-top: 1px solid #e5e5e5;
}

.product-description-clean h2 {
  font-family: var(--kv-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 2rem;
  text-align: center;
}

.desc-content-clean>p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--kv-muted);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.desc-grid-clean {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
}

.desc-item-clean {
  text-align: center;
  padding: 2rem;
  background: var(--kv-bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.desc-item-clean:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.desc-item-clean h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.desc-item-clean h4 i {
  font-size: 1.5rem;
  color: var(--kv-text);
}

.desc-item-clean p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--kv-muted);
  margin: 0;
}

@media (max-width: 991px) {

  .product-gallery-clean,
  .product-info-clean {
    position: relative;
    top: 0;
  }

  .product-gallery-clean {
    margin-bottom: 3rem;
  }

  .main-image {
    height: 450px;
  }

  .product-features-clean {
    grid-template-columns: 1fr;
  }

  .product-actions-clean {
    grid-template-columns: 1fr;
  }

  .desc-grid-clean {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .product-section-clean {
    padding: 3rem 0;
  }

  .main-image {
    height: 350px;
  }

  .thumb-image {
    height: 80px;
  }

  .product-description-clean {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}

@media (max-width: 576px) {
  .main-image {
    height: 300px;
    padding: 1rem;
  }

  .product-name {
    font-size: 1.75rem;
  }

  .thumb-image {
    height: 60px;
  }
}

.product-showcase-unique {
  padding: 5rem 0;
  background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
}

.product-header-unique {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid #e5e5e5;
}

.header-left {
  flex: 1;
}

.product-badge {
  display: inline-block;
  padding: 0.6rem 1.5rem;
  background: var(--kv-text);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.product-title-unique {
  font-family: var(--kv-font-heading);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--kv-text);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.rating-stars i {
  color: #ffc107;
  font-size: 1.3rem;
}

.rating-stars span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--kv-text);
  margin-left: 0.5rem;
}

.reviews-count {
  font-size: 1rem;
  color: var(--kv-muted);
}

.header-right {
  display: flex;
  gap: 1rem;
}

.btn-unique {
  padding: 1.25rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
}

.btn-primary-unique {
  background: var(--kv-text);
  color: #fff;
}

.btn-primary-unique:hover {
  background: #2d2824;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(61, 56, 53, 0.3);
}

.btn-secondary-unique {
  background: #fff;
  color: var(--kv-text);
  border: 2px solid var(--kv-text);
}

.btn-secondary-unique:hover {
  background: var(--kv-text);
  color: #fff;
  transform: translateY(-3px);
}

.gallery-unique {
  margin-bottom: 4rem;
}

.galleryUniqueSwiper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.gallery-image-unique {
  width: 100%;
  height: 650px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}

.gallery-image-unique img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.galleryUniqueSwiper .swiper-pagination {
  bottom: 30px;
}

.galleryUniqueSwiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.5;
}

.galleryUniqueSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--kv-text);
}

.info-cards-unique {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.info-card-unique {
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.info-card-unique:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--kv-text);
}

.card-icon-unique {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--kv-text) 0%, #2d2824 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
}

.info-card-unique:hover .card-icon-unique {
  transform: rotateY(180deg);
}

.card-icon-unique i {
  font-size: 2rem;
  color: #fff;
}

.card-content-unique h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 1rem;
}

.card-content-unique p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--kv-muted);
  margin: 0;
}

.features-grid-unique {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.feature-box-unique {
  background: var(--kv-bg);
  padding: 2rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.feature-box-unique:hover {
  background: var(--kv-text);
  color: #fff;
  transform: translateY(-5px);
}

.feature-box-unique i {
  font-size: 2rem;
  color: #4caf50;
}

.feature-box-unique:hover i {
  color: #fff;
}

.feature-box-unique span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--kv-text);
}

.feature-box-unique:hover span {
  color: #fff;
}

.additional-info-unique {
  background: #fff;
  padding: 4rem;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.additional-info-unique h2 {
  font-family: var(--kv-font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 2rem;
  text-align: center;
}

.info-text-unique p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--kv-muted);
  margin-bottom: 1.5rem;
}

.info-text-unique p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .info-cards-unique {
    grid-template-columns: 1fr;
  }

  .features-grid-unique {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .product-header-unique {
    flex-direction: column;
    gap: 2rem;
  }

  .header-right {
    width: 100%;
  }

  .btn-unique {
    flex: 1;
    justify-content: center;
  }

  .gallery-image-unique {
    height: 500px;
    padding: 2rem;
  }

  .features-grid-unique {
    grid-template-columns: repeat(2, 1fr);
  }

  .additional-info-unique {
    padding: 3rem 2rem;
  }
}

@media (max-width: 768px) {
  .product-showcase-unique {
    padding: 3rem 0;
  }

  .product-header-unique {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }

  .product-title-unique {
    font-size: 2rem;
  }

  .gallery-image-unique {
    height: 400px;
    padding: 1.5rem;
  }

  .info-card-unique {
    padding: 2rem;
  }

  .features-grid-unique {
    grid-template-columns: 1fr;
  }

  .additional-info-unique {
    padding: 2rem 1.5rem;
  }

  .info-text-unique p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .product-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .header-right {
    flex-direction: column;
  }

  .gallery-image-unique {
    height: 300px;
    padding: 1rem;
  }

  .card-icon-unique {
    width: 60px;
    height: 60px;
  }

  .card-icon-unique i {
    font-size: 1.5rem;
  }

  .card-content-unique h3 {
    font-size: 1.25rem;
  }
}

.product-magazine {
  padding: 5rem 0;
  background: #fff;
}

.magazine-title-area {
  text-align: center;
  margin-bottom: 4rem;
}

.magazine-cat {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: var(--kv-text);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.magazine-title {
  font-family: var(--kv-font-heading);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--kv-text);
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.magazine-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.magazine-rating .stars {
  display: flex;
  gap: 0.25rem;
}

.magazine-rating .stars i {
  color: #ffc107;
  font-size: 1.5rem;
}

.magazine-rating .rating-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--kv-text);
}

.magazine-rating .rating-count {
  font-size: 1rem;
  color: var(--kv-muted);
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  margin-bottom: 5rem;
}

.grid-item {
  overflow: hidden;
}

.grid-large {
  grid-column: 1 / 8;
  grid-row: 1 / 3;
}

.grid-info {
  grid-column: 8 / 13;
  grid-row: 1 / 2;
}

.grid-small-1 {
  grid-column: 1 / 5;
  grid-row: 3 / 4;
}

.grid-small-2 {
  grid-column: 5 / 9;
  grid-row: 3 / 4;
}

.grid-desc {
  grid-column: 8 / 13;
  grid-row: 2 / 3;
}

.grid-medium {
  grid-column: 9 / 13;
  grid-row: 3 / 4;
}

.magazine-image {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  transition: all 0.4s ease;
}

.magazine-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.magazine-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-box-magazine {
  background: var(--kv-text);
  color: #fff;
  padding: 3rem;
  border-radius: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.info-box-magazine h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.info-box-magazine p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.features-list-magazine {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.features-list-magazine li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
}

.features-list-magazine i {
  color: #4caf50;
  font-size: 1.25rem;
}

.cta-magazine {
  display: flex;
  gap: 1rem;
}

.btn-magazine {
  flex: 1;
  padding: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.btn-dark {
  background: #fff;
  color: var(--kv-text);
}

.btn-dark:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
}

.btn-light {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}

.btn-light:hover {
  background: #fff;
  color: var(--kv-text);
  transform: translateY(-2px);
}

.desc-box-magazine {
  background: var(--kv-bg);
  padding: 3rem;
  border-radius: 12px;
  height: 100%;
}

.desc-box-magazine h3 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 1.5rem;
}

.desc-box-magazine p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--kv-muted);
  margin: 0;
}

.full-desc-magazine {
  background: var(--kv-bg);
  padding: 5rem 4rem;
  border-radius: 20px;
}

.full-desc-magazine h2 {
  font-family: var(--kv-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 1.5rem;
}

.full-desc-magazine p {
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--kv-muted);
  margin: 0;
}

@media (max-width: 1200px) {
  .magazine-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .grid-large {
    grid-column: 1 / 7;
    grid-row: 1 / 2;
  }

  .grid-info {
    grid-column: 1 / 7;
    grid-row: 2 / 3;
  }

  .grid-small-1 {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }

  .grid-small-2 {
    grid-column: 4 / 7;
    grid-row: 3 / 4;
  }

  .grid-desc {
    grid-column: 1 / 7;
    grid-row: 4 / 5;
  }

  .grid-medium {
    grid-column: 1 / 7;
    grid-row: 5 / 6;
  }
}

@media (max-width: 768px) {
  .product-magazine {
    padding: 3rem 0;
  }

  .magazine-title-area {
    margin-bottom: 3rem;
  }

  .magazine-title {
    font-size: 2.5rem;
  }

  .magazine-rating {
    flex-direction: column;
    gap: 0.5rem;
  }

  .magazine-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .grid-large,
  .grid-info,
  .grid-small-1,
  .grid-small-2,
  .grid-desc,
  .grid-medium {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .magazine-image {
    min-height: 300px;
    padding: 1.5rem;
  }

  .info-box-magazine,
  .desc-box-magazine {
    padding: 2rem;
  }

  .cta-magazine {
    flex-direction: column;
  }

  .full-desc-magazine {
    padding: 3rem 2rem;
  }
}

@media (max-width: 576px) {
  .magazine-title {
    font-size: 2rem;
  }

  .magazine-image {
    min-height: 250px;
    padding: 1rem;
  }

  .info-box-magazine h3 {
    font-size: 1.5rem;
  }

  .full-desc-magazine {
    padding: 2rem 1.5rem;
  }
}

.corporate-simple-section {
  padding: 4rem 0;
  background: #ffffff;
}

.corporate-content-box {
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid rgba(61, 56, 53, 0.1);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.08);
  height: 100%;
}

.corporate-content-box h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(61, 56, 53, 0.1);
}

.corporate-content-box p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--kv-text);
  margin-bottom: 1rem;
}

.corporate-image {
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.1);
  width: 100%;
  max-height: 500px;
  height: auto;
  object-fit: cover;
}

@media (max-width: 991px) {
  .corporate-simple-section {
    padding: 3rem 0;
  }

  .corporate-content-box {
    padding: 1.5rem;
  }
}

.contact-section {
  padding: 4rem 0;
  background: #ffffff;
}

.contact-divider {
  width: fit-content;
  min-width: 200px;
  height: 4px;
  background: linear-gradient(90deg, var(--kv-text) 0%, rgba(61, 56, 53, 0.3) 100%);
  border: none;
  margin: 1rem 0 1.5rem 0;
  opacity: 1;
  border-radius: 2px;
  position: relative;
}

.contact-divider::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: var(--kv-text);
  border-radius: 50%;
}

.contact-info-box h2,
.contact-form-box h2 {
  display: inline-block;
}

.contact-info-box .contact-divider {
  width: 100%;
  max-width: 250px;
}

.contact-form-box .contact-divider {
  width: 100%;
  max-width: 280px;
}

.contact-info-box {
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid rgba(61, 56, 53, 0.1);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.08);
  height: 100%;
}

.contact-info-box h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0;
  border: none;
}

.contact-info-box>p {
  color: var(--kv-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(61, 56, 53, 0.08);
}

.contact-item:last-of-type {
  border-bottom: none;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 56, 53, 0.05);
  border-radius: 50%;
  color: var(--kv-text);
  font-size: 1.25rem;
}

.contact-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--kv-text);
}

.contact-text p {
  font-size: 0.9rem;
  color: var(--kv-muted);
  margin: 0;
  line-height: 1.6;
}

.contact-text a {
  color: var(--kv-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-text a:hover {
  color: var(--kv-text);
}

.contact-social {
  padding-top: 2rem;
}

.contact-social h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--kv-text);
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 56, 53, 0.05);
  border-radius: 50%;
  color: var(--kv-text);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--kv-text);
  color: #ffffff;
  transform: translateY(-3px);
}

.contact-form-box {
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid rgba(61, 56, 53, 0.1);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.08);
}

.contact-form-box h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0;
  border: none;
}

.contact-form-box>p {
  color: var(--kv-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--kv-text);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  color: var(--kv-text);
  background: #ffffff;
  border: 1px solid rgba(61, 56, 53, 0.2);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--kv-text);
  box-shadow: 0 0 0 3px rgba(61, 56, 53, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-check {
  margin-bottom: 1.5rem;
}

.form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  border: 1px solid rgba(61, 56, 53, 0.3);
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--kv-text);
  border-color: var(--kv-text);
}

.form-check-label {
  font-size: 0.85rem;
  color: var(--kv-muted);
  margin-left: 0.5rem;
  cursor: pointer;
}

.form-check-label a {
  color: var(--kv-text);
}

.btn-submit {
  padding: 0.875rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--kv-text);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-submit:hover {
  background: #2d2824;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 56, 53, 0.2);
}

.map-section {
  padding: 0 0 4rem 0;
  background: #ffffff;
}

.map-wrapper {
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.1);
}

@media (max-width: 991px) {
  .contact-section {
    padding: 3rem 0;
  }

  .contact-info-box,
  .contact-form-box {
    padding: 1.5rem;
  }

  .map-section {
    padding: 0 0 3rem 0;
  }
}

.product-modern-section {
  padding: 4rem 0;
  background: #ffffff;
}

.product-modern-wrapper {
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(61, 56, 53, 0.08);
  margin-bottom: 3rem;
}

.product-gallery-modern {
  background: #fafafa;
  padding: 2rem;
}

.gallery-image-modern {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
}

.gallery-image-modern img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.swiper-button-next-modern,
.swiper-button-prev-modern {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.swiper-button-next-modern:after,
.swiper-button-prev-modern:after {
  font-size: 16px;
  color: var(--kv-text);
  font-weight: 700;
}

.thumbProductSwiperModern {
  margin-top: 1.5rem;
}

.thumb-modern {
  width: 100%;
  height: 80px;
  background: #ffffff;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.thumb-modern img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.thumbProductSwiperModern .swiper-slide-thumb-active .thumb-modern {
  border-color: var(--kv-text);
}

.product-info-modern {
  padding: 3rem;
}

.product-category-modern {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--kv-muted);
  margin-bottom: 1rem;
}

.product-title-modern {
  font-family: var(--kv-font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.product-rating-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(61, 56, 53, 0.1);
}

.stars-modern {
  display: flex;
  gap: 0.25rem;
  color: #ffa500;
  font-size: 1rem;
}

.rating-count-modern {
  font-size: 0.9rem;
  color: var(--kv-muted);
}

.product-description-modern {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--kv-text);
  margin-bottom: 2rem;
}

.product-features-modern {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(61, 56, 53, 0.03);
  border-radius: 5px;
}

.product-features-modern h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--kv-text);
}

.features-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.features-list-modern li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--kv-text);
}

.features-list-modern i {
  color: #2d6a4f;
  font-size: 0.9rem;
}

.product-buttons-modern {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-modern-primary,
.btn-modern-secondary {
  flex: 1;
  min-width: 180px;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-modern-primary {
  background: var(--kv-text);
  color: #ffffff;
}

.btn-modern-primary:hover {
  background: #2d2824;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 56, 53, 0.2);
}

.btn-modern-secondary {
  background: #ffffff;
  color: var(--kv-text);
  border: 2px solid var(--kv-text);
}

.btn-modern-secondary:hover {
  background: var(--kv-text);
  color: #ffffff;
}

.product-details-modern {
  margin-top: 3rem;
}

.product-details-modern h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

.detail-card-modern {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(61, 56, 53, 0.1);
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(61, 56, 53, 0.08);
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.detail-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(61, 56, 53, 0.12);
}

.detail-icon-modern {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(61, 56, 53, 0.05);
  border-radius: 50%;
  color: var(--kv-text);
  font-size: 1.5rem;
}

.detail-card-modern h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--kv-text);
}

.detail-card-modern p {
  font-size: 0.9rem;
  color: var(--kv-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .product-modern-section {
    padding: 3rem 0;
  }

  .product-info-modern {
    padding: 2rem;
  }

  .gallery-image-modern {
    height: 350px;
  }

  .features-list-modern {
    grid-template-columns: 1fr;
  }

  .product-buttons-modern {
    flex-direction: column;
  }

  .btn-modern-primary,
  .btn-modern-secondary {
    width: 100%;
  }
}

.product-detail-page {
  background: linear-gradient(180deg, #ffffff 0%, #f7f5f2 55%, #ffffff 100%);
}

.product-detail-page .product-rich-section {
  background: transparent;
}

.product-rich-section {
  padding: 4rem 0;
  background: #ffffff;
}

.product-gallery-rich {
  position: relative;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(61, 56, 53, 0.08);
}

.gallery-image-rich {
  width: 100%;
  height: 100%;
  background: #fafafa;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.gallery-image-rich img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.thumbProductSwiperRich {
  margin-top: 1.5rem;
}

.thumb-rich {
  width: 100%;
  height: 100px;
  background: #fafafa;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}

.thumb-rich img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.thumbProductSwiperRich .swiper-slide-thumb-active .thumb-rich {
  border-color: var(--kv-text);
  background: #ffffff;
}

.product-badges-rich {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.badge-rich {
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.badge-new {
  background: #2d6a4f;
  color: #ffffff;
}

.badge-quality {
  background: #ffa500;
  color: #ffffff;
}

.product-info-rich {
  background: #ffffff;
  border-radius: 5px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(61, 56, 53, 0.08);
  height: 100%;
}

.product-header-rich {
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(61, 56, 53, 0.1);
  margin-bottom: 1.5rem;
}

.product-category-rich {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #ffffff;
  background: var(--kv-text);
  padding: 0.4rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 1rem;
}

.product-title-rich {
  font-family: var(--kv-font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--kv-text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.product-code-rich {
  font-size: 0.85rem;
  color: var(--kv-muted);
  margin: 0;
}

.product-code-rich strong {
  color: var(--kv-text);
}

.product-rating-rich {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(61, 56, 53, 0.1);
  margin-bottom: 1.5rem;
}

.stars-rich {
  display: flex;
  gap: 0.2rem;
  color: #ffa500;
  font-size: 1.1rem;
}

.rating-count-rich {
  font-size: 1rem;
  font-weight: 700;
  color: var(--kv-text);
}

.review-count-rich {
  font-size: 0.85rem;
  color: var(--kv-muted);
}

.product-description-rich,
.product-specs-rich,
.product-features-rich {
  margin-bottom: 2rem;
}

.product-description-rich h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--kv-text);
}

.product-specs-rich h3,
.product-features-rich h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--kv-text);
}

.product-description-rich p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #0a0a0a;
  margin-bottom: 0.75rem;
}

.specs-list-rich {
  list-style: none;
  padding: 0;
  margin: 0;
}

.specs-list-rich li {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(61, 56, 53, 0.08);
  font-size: 0.9rem;
}

.specs-list-rich li:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--kv-muted);
  font-weight: 500;
}

.spec-value {
  color: var(--kv-text);
  font-weight: 600;
  text-align: right;
}

.features-grid-rich {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-item-rich {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(61, 56, 53, 0.03);
  border-radius: 5px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--kv-text);
}

.feature-item-rich i {
  color: #2d6a4f;
  font-size: 1.1rem;
}

.product-actions-rich {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.btn-rich-primary,
.btn-rich-secondary,
.btn-rich-outline {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-rich-primary {
  background: var(--kv-text);
  color: #ffffff;
}

.btn-rich-primary:hover {
  background: #2d2824;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(61, 56, 53, 0.2);
}

.btn-rich-secondary {
  background: #2d6a4f;
  color: #ffffff;
}

.btn-rich-secondary:hover {
  background: #245a42;
}

.btn-rich-outline {
  background: #ffffff;
  color: var(--kv-text);
  border: 2px solid rgba(61, 56, 53, 0.2);
}

.btn-rich-outline:hover {
  border-color: var(--kv-text);
  background: rgba(61, 56, 53, 0.03);
}

.product-tabs-rich {
  margin-top: 4rem;
  background: #ffffff;
  border-radius: 5px;
  box-shadow: 0 2px 12px rgba(61, 56, 53, 0.08);
  overflow: hidden;
}

.nav-tabs-rich {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid rgba(61, 56, 53, 0.1);
  background: #fafafa;
}

.nav-item-rich {
  flex: 1;
}

.nav-link-rich {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--kv-muted);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.nav-link-rich:hover {
  color: var(--kv-text);
  background: rgba(61, 56, 53, 0.03);
}

.nav-link-rich.active {
  color: var(--kv-text);
  background: #ffffff;
}

.tab-content-rich {
  padding: 2.5rem;
}

.tab-pane-rich {
  display: none;
}

.tab-pane-rich.active {
  display: block;
}

.tab-pane-rich h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--kv-text);
}

.tab-pane-rich p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--kv-text);
  margin-bottom: 1rem;
}

.detail-list-rich {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-list-rich li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--kv-text);
}

.detail-list-rich i {
  color: #2d6a4f;
  font-size: 0.9rem;
}

.care-card-rich,
.delivery-card-rich {
  padding: 1.5rem;
  background: #fafafa;
  border-radius: 5px;
  text-align: center;
  height: 100%;
}

.care-card-rich i,
.delivery-card-rich i {
  font-size: 2.5rem;
  color: var(--kv-text);
  margin-bottom: 1rem;
}

.care-card-rich h5,
.delivery-card-rich h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--kv-text);
}

.care-card-rich p,
.delivery-card-rich p {
  font-size: 0.85rem;
  color: var(--kv-muted);
  line-height: 1.6;
  margin: 0;
}

.delivery-card-rich {
  text-align: left;
}

.delivery-card-rich i {
  display: block;
  text-align: center;
}

.delivery-card-rich ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.delivery-card-rich li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.85rem;
  color: var(--kv-text);
}

.delivery-card-rich li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d6a4f;
  font-weight: 700;
}

@media (max-width: 991px) {
  .product-rich-section {
    padding: 3rem 0;
  }

  .gallery-image-rich {
    height: 400px;
  }

  .thumb-rich {
    height: 70px;
  }

  .product-info-rich {
    margin-top: 2rem;
  }

  .features-grid-rich {
    grid-template-columns: 1fr;
  }

  .nav-tabs-rich {
    flex-direction: column;
  }

  .nav-link-rich {
    justify-content: flex-start;
  }

  .tab-content-rich {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .product-rich-section {
    padding: 1.5rem 0 2rem;
  }

  .product-rich-section>.container-xxl>.row.g-4 {
    --bs-gutter-x: 0.75rem;
    --bs-gutter-y: 0.75rem;
  }

  .product-rich-section .product-info-rich {
    margin-top: 0;
    padding: 1rem;
  }

  .productSwiper {
    overflow: visible !important;
  }

  .productSwiper .swiper-wrapper {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    transform: none !important;
  }

  .productSwiper .swiper-slide {
    width: 100% !important;
    margin: 0 !important;
  }

  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    display: none !important;
  }
}

.product-rich-detail-section {
  padding: 0rem 0 4.25rem;
  background: transparent;
}

.product-rich-detail-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--kv-font-heading);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--kv-text);
  margin: 0 0 1.65rem;
  padding: 0;
  line-height: 1.2;
  width: 100%;
  letter-spacing: -0.02em;
}

.product-rich-detail-heading::before {
  content: "";
  width: 4px;
  height: 1.35em;
  min-height: 1.75rem;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--kv-text) 0%, rgba(61, 56, 53, 0.45) 100%);
  border-radius: 3px;
}

.product-rich-detail-body.kv-prose {
  box-sizing: border-box;
  width: 100%;
  max-width: none;
  margin: 0;
  background: #ffffff;
  border-radius: 8px;
  padding: 2.15rem 2.4rem;
  border: 1px solid rgba(61, 56, 53, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 8px 32px rgba(61, 56, 53, 0.08),
    0 2px 8px rgba(61, 56, 53, 0.04);
  font-family: var(--kv-font-body);
  font-size: 0.97rem;
  line-height: 1.78;
  color: rgba(61, 56, 53, 0.92);
  overflow-x: auto;
}

.product-rich-detail-body.kv-prose>*:first-child {
  margin-top: 0;
}

.product-rich-detail-body.kv-prose p {
  margin-bottom: 1rem;
}

.product-rich-detail-body.kv-prose p:last-child {
  margin-bottom: 0;
}

.product-rich-detail-body.kv-prose h1,
.product-rich-detail-body.kv-prose h2,
.product-rich-detail-body.kv-prose h3,
.product-rich-detail-body.kv-prose h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
  font-weight: 700;
  color: var(--kv-text);
  line-height: 1.3;
}

.product-rich-detail-body.kv-prose h1:first-child,
.product-rich-detail-body.kv-prose h2:first-child,
.product-rich-detail-body.kv-prose h3:first-child {
  margin-top: 0;
}

.product-rich-detail-body.kv-prose ul,
.product-rich-detail-body.kv-prose ol {
  margin: 0 0 1rem;
  padding-left: 1.25rem;
}

.product-rich-detail-body.kv-prose li {
  margin-bottom: 0.3rem;
}

.product-rich-detail-body.kv-prose li::marker {
  color: rgba(61, 56, 53, 0.35);
}

.product-rich-detail-body.kv-prose img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 0.35rem 0 1rem;
  box-shadow: 0 4px 20px rgba(61, 56, 53, 0.07);
}

.product-rich-detail-body.kv-prose a {
  color: var(--kv-text);
  transition: color 0.15s ease;
}

.product-rich-detail-body.kv-prose a:hover {
  color: #2d6a4f;
}

.product-rich-detail-body.kv-prose blockquote {
  margin: 1.15rem 0;
  padding: 0.65rem 0 0.65rem 1rem;
  border-left: 3px solid rgba(61, 56, 53, 0.12);
  color: rgba(61, 56, 53, 0.82);
  font-style: italic;
}

.product-rich-detail-body.kv-prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  margin: 1rem 0;
}

.product-rich-detail-body.kv-prose th,
.product-rich-detail-body.kv-prose td {
  border: 1px solid rgba(61, 56, 53, 0.1);
  padding: 0.5rem 0.65rem;
  text-align: left;
}

.product-rich-detail-body.kv-prose th {
  background: rgba(61, 56, 53, 0.04);
  font-weight: 600;
}

a.btn-rich-primary,
a.btn-rich-secondary {
  text-decoration: none;
}

a.btn-rich-primary:hover,
a.btn-rich-secondary:hover {
  color: #ffffff;
}

@media (max-width: 767px) {
  .product-rich-detail-section {
    padding: 0rem 0 3rem;
  }

  .product-rich-detail-body.kv-prose {
    padding: 1.5rem 1.25rem;
  }

  .product-rich-detail-heading {
    margin-bottom: 1.25rem;
  }
}

.product-related-gallery-section {
  padding: 0rem 0 3.5rem;
  background: transparent;
}

.product-related-gallery-heading {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--kv-font-heading);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  color: var(--kv-text);
  margin: 0 0 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.product-related-gallery-heading::before {
  content: "";
  width: 4px;
  height: 1.35em;
  min-height: 1.75rem;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--kv-text) 0%, rgba(61, 56, 53, 0.45) 100%);
  border-radius: 3px;
}

.product-related-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-related-gallery-item {
  display: block;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(61, 56, 53, 0.09);
  box-shadow: 0 4px 20px rgba(61, 56, 53, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #fff;
}

.product-related-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(61, 56, 53, 0.12);
}

.product-related-gallery-imgwrap {
  display: block;
  aspect-ratio: 1;
  background: #fafafa;
}

.product-related-gallery-imgwrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .product-related-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575px) {
  .product-related-gallery-section {
    padding-bottom: 2.5rem;
  }

  .product-related-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.corporate-image-box {
  padding: 0 !important;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.corporate-image-glightbox {
  display: block;
  width: 100%;
  height: 100%;
}

.corporate-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.corporate-simple-section .col-12.mb-5 {
  margin-bottom: 1.5rem !important;
}

@media (max-width: 991px) {
  .corporate-image-box {
    margin-bottom: 1.5rem !important;
    height: 350px !important;
  }
}
@media (max-width: 768px) {
  .toolbar-right {
    display: none;
  }
}