/* ===== ARIN NATURE — DESIGN TOKENS ===== */
:root {
  --color-primary: #6B8E5A;
  --color-primary-light: #8BAF76;
  --color-primary-dark: #663e35;
  --color-secondary: #C9A96E;
  --color-secondary-light: #DFC89A;
  --color-accent: #C49A2B;
  --color-bg: #FFFAF5;
  --color-bg-alt: #FFF3E8;
  --color-bg-card: #FFFFFF;
  --color-text: #2D2A26;
  --color-text-light: #6B6560;
  --color-text-muted: #9E9791;
  --color-border: #E8DDD3;
  --color-whatsapp: #25D366;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
  --nav-height: 80px;
}

/* ===== DARK MODE ===== */
[data-theme="dark"] {
  --color-bg: #1a1a1a;
  --color-bg-alt: #222222;
  --color-bg-card: #2a2a2a;
  --color-text: #f0ece6;
  --color-text-light: #b8b0a6;
  --color-text-muted: #8a8279;
  --color-border: #3d3832;
  --color-primary: #8BAF76;
  --color-primary-light: #a3c48f;
  --color-primary-dark: #8BAF76;
  --color-accent: #C49A2B;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] .navbar {
  background: rgba(26, 26, 26, 1);
  border-bottom-color: rgba(61, 56, 50, 0.5);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(26, 26, 26, 1);
}

[data-theme="dark"] .hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #222 50%, #2a2520 100%);
}

[data-theme="dark"] .hero::before {
  background: radial-gradient(circle, rgba(139, 175, 118, 0.06) 0%, transparent 70%);
}

[data-theme="dark"] .hero-floating {
  background: rgba(42, 42, 42, 0.9);
  color: var(--color-text);
}

[data-theme="dark"] .footer {
  background: #111;
}

[data-theme="dark"] .cta-band {
  background: linear-gradient(135deg, #3a5a2e, #4A6B3E, #6B8E5A);
}

[data-theme="dark"] .modal {
  background: var(--color-bg-card);
}

[data-theme="dark"] .modal-close {
  background: rgba(42, 42, 42, 0.9);
  border-color: var(--color-border);
  color: var(--color-text);
}

[data-theme="dark"] .nav-links.open {
  background: var(--color-bg);
}

[data-theme="dark"] .nav-cta.open {
  background: var(--color-bg);
}

[data-theme="dark"] .product-card-image {
  background: #333;
}

/* Dark mode toggle button */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--color-text-light);
  background: transparent;
  border: 1px solid var(--color-border);
}

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

.theme-toggle .icon-sun {
  display: none;
}

.theme-toggle .icon-moon {
  display: block;
}

[data-theme="dark"] .theme-toggle .icon-sun {
  display: block;
}

[data-theme="dark"] .theme-toggle .icon-moon {
  display: none;
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text);
}

/* ===== UTILITIES ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 60px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 15px rgba(107, 142, 90, 0.3);
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 142, 90, 0.4);
}

.btn-outline {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  background: rgba(255, 250, 245, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 221, 211, 0.5);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 250, 245, 1);
  box-shadow: var(--shadow-sm);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 45px;
  width: auto;
  display: block;
}

.navbar:not([data-theme="dark"]) .nav-logo img {
  mix-blend-mode: multiply;
}

.nav-logo span {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text-light);
  position: relative;
  transition: var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-instagram {
  display: flex;
  align-items: center;
  color: var(--color-text-light);
  transition: var(--transition);
}

.nav-instagram:hover {
  color: #E4405F;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-bg-alt) 50%, #f0e6d8 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 142, 90, 0.08) 0%, transparent 70%);
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(107, 142, 90, 0.1);
  color: var(--color-primary-dark);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title span {
  color: var(--color-primary);
  font-style: italic;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  z-index: 2;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  margin: 0 auto;
}

.hero-floating {
  position: absolute;
  padding: 16px 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  font-size: 0.9rem;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
}

.hero-floating.f1 {
  top: 10%;
  right: -10%;
}

.hero-floating.f2 {
  bottom: 15%;
  left: -5%;
  animation-delay: -3s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ===== FEATURES ===== */
.features {
  background: var(--color-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: center;
  padding: 48px 32px;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  cursor: default;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(107, 142, 90, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--color-primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--color-primary);
  color: #fff;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ===== PRODUCT CARDS ===== */
.products-section {
  background: var(--color-bg-alt);
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9rem;
  background: var(--color-bg-card);
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  height: 160px; /* Mobilde Lavanta gibi kısa ve derli toplu durması için */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 769px) {
  .product-card-image {
    height: 250px; /* PC'de gereksiz uzunluğu bitirmek için */
  }
}

.product-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Görseli kutuya yay, taşmaları engelle */
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
  transform: scale(1.08);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--color-primary);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.product-card-info {
  padding: 20px;
}

.product-card-info h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.product-card-info p {
  color: var(--color-text); /* Daha belirgin ve koyu yapıldı */
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.product-price::after {
  content: ' ₺';
  font-size: 0.9rem;
}

/* No-image placeholder */
.no-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--color-bg-alt), var(--color-bg));
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.no-image-placeholder svg {
  opacity: 0.4;
}

/* ===== PRODUCT MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  display: flex;
  opacity: 1;
}

.modal {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  max-width: 960px;
  width: 100%;
  max-height: 85vh;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-xl);
  animation: modalIn 0.3s ease;
}

@keyframes modalIn {
  from {
    transform: scale(0.95) translateY(20px);
    opacity: 0;
  }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--color-border);
}

.modal-close:hover {
  background: var(--color-primary);
  color: #fff;
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 85vh;
}

.modal-gallery {
  padding: 24px;
  display: flex;
  flex-direction: column;
  min-width: 0; /* Fix grid blowout issue when thumbs are wide */
}

.modal-main-img {
  width: 100%;
  height: 350px;
  /* Explicit height to prevent tall images covering screen */
  object-fit: cover;
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  margin: 0 auto 12px auto; /* Tam ortalamayı garanti et */
  display: block; /* Margin auto çalışması için */
  flex-shrink: 0;
}

.modal-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  flex-shrink: 0;
  width: 100%;
}

.modal-thumbs img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  flex-shrink: 0;
}

.modal-thumbs img:hover,
.modal-thumbs img.active {
  border-color: var(--color-primary);
}

.modal-info {
  padding: 32px 28px 32px 8px;
  overflow-y: auto;
  max-height: 85vh;
}

.modal-info h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}

.modal-info .product-price {
  font-size: 1.4rem;
  margin-bottom: 16px;
  display: block;
}

.modal-info .modal-desc {
  color: var(--color-text); /* Daha okunaklı olması için koyulaştırıldı */
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: 0.92rem;
}

.modal-detail-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--color-accent);
}

.modal-detail-text {
  color: var(--color-text); /* Detay metinleri de koyulaştırıldı */
  font-size: 0.85rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

.modal-whatsapp {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 14px;
  margin-top: 8px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--color-text-light);
  margin-bottom: 16px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary), var(--color-primary-light));
  color: #fff;
  text-align: center;
  padding: 80px 24px;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
  color: #fff;
}

.cta-band p {
  opacity: 0.9;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.cta-band .btn {
  background: #fff;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.cta-band .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ===== CONTACT ===== */
.contact-section {
  background: var(--color-bg-alt);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.contact-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(107, 142, 90, 0.1);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-card p,
.contact-card a {
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.contact-card a:hover {
  color: var(--color-primary);
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 400px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

.map-consent {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.map-consent-inner {
  text-align: center;
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.map-consent-inner h3 {
  font-size: 1.3rem;
}

.map-consent-inner p {
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
  font-family: var(--font-display);
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul a {
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer ul a:hover {
  color: var(--color-primary-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== WHATSAPP FLOATING ===== */
.whatsapp-float,
.floating-wpp,
[class*="sticky-whatsapp"],
[class*="floating-whatsapp"] {
  display: none !important;
}

@keyframes pulse-wp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin: 0 auto 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-image {
    max-width: 400px;
    margin: 40px auto 0;
  }

  .hero-floating {
    display: none;
  }

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

  .modal {
    overflow-y: auto;
  }

  .modal-body {
    grid-template-columns: 1fr;
    max-height: none;
  }

  .modal-info {
    padding: 24px;
    max-height: none;
    overflow: visible;
  }

  .modal-gallery {
    max-height: none;
  }

  .modal-main-img {
    height: 280px;
    object-fit: cover;
  }

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

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 24px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    gap: 20px;
    z-index: 1005;
  }

  .nav-cta.open {
    display: flex;
    position: absolute;
    top: calc(var(--nav-height) + 200px);
    left: 0;
    right: 0;
    background: var(--color-bg);
    padding: 0 24px 24px;
    justify-content: center;
    z-index: 1005;
  }

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

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }

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

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
  }
  
  .stat {
    text-align: center;
  }
  
  .stat-number {
    font-size: 1.8rem; /* Sığması için küçültüldü */
    line-height: 1;
  }

  .stat-label {
    font-size: 0.7rem; /* Yazıların kesilmemesi için küçültüldü */
    white-space: normal; /* Alt satıra geçebilsinler */
  }

  .section {
    padding: 60px 0;
  }

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

  body.arin-mobile-pagebar-active .navbar,
  body.arin-mobile-pagebar-active header.mobile,
  body.arin-mobile-pagebar-active .mobile-header-space {
    display: none !important;
  }

  .arin-mobile-pagebar-wrap {
    display: block !important;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5005;
  }

  .arin-mobile-pagebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 78px;
    padding: 14px 16px;
    background: rgba(255, 250, 245, 0.98);
    border-bottom: 1px solid rgba(232, 221, 211, 0.75);
    box-shadow: 0 10px 24px rgba(101, 73, 43, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }

  .arin-mobile-pagebar-logo img {
    display: block;
    height: 44px;
    width: auto;
  }

  .arin-mobile-pagebar-toggle {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    border: 1px solid rgba(196, 154, 43, 0.45);
    background: rgba(255, 247, 235, 0.98);
    box-shadow: 0 8px 20px rgba(101, 73, 43, 0.08);
    flex-direction: column;
    gap: 5px;
  }

  .arin-mobile-pagebar-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #5b4338;
  }

  .arin-mobile-pagebar-menu {
    display: grid;
    gap: 0;
    background: rgba(255, 250, 245, 0.99);
    border-bottom: 1px solid rgba(232, 221, 211, 0.85);
    box-shadow: 0 18px 30px rgba(101, 73, 43, 0.1);
  }

  .arin-mobile-pagebar-menu[hidden] {
    display: none !important;
  }

  .arin-mobile-pagebar-menu a {
    padding: 14px 18px;
    color: var(--color-text);
    font-weight: 600;
    border-top: 1px solid rgba(232, 221, 211, 0.7);
  }

  .arin-mobile-search-slot {
    position: static;
    padding: 4px 12px 8px;
    background: rgba(255, 250, 245, 0.98);
    border-bottom: 1px solid rgba(232, 221, 211, 0.7);
    box-shadow: 0 10px 20px rgba(101, 73, 43, 0.06);
  }

  .arin-mobile-search-slot:empty {
    display: none !important;
    padding: 0 !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .arin-mobile-search-slot .arin-category-search {
    max-width: none;
    margin: 0 !important;
    padding-top: 0 !important;
    position: relative;
    z-index: 1 !important;
  }

  body.arin-mobile-pagebar-active .categories-body,
  body.arin-mobile-pagebar-active .product-body {
    padding-top: calc(var(--arin-mobile-pagebar-offset, 92px) + 16px) !important;
  }

  body.arin-mobile-pagebar-active.arin-mobile-search-in-marquee .categories-body {
    padding-top: var(--arin-mobile-pagebar-offset, 92px) !important;
  }

  body.arin-mobile-pagebar-active.arin-mobile-top-cleanup::before,
  body.arin-mobile-pagebar-active.arin-mobile-product-page::after,
  body.arin-mobile-pagebar-active .categories-body::before,
  body.arin-mobile-pagebar-active .product-body::before,
  body.arin-mobile-pagebar-active .arin-category-search::before {
    content: none !important;
    display: none !important;
  }

  body.arin-mobile-pagebar-active .arin-category-search {
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative;
    z-index: 1 !important;
  }

  .arin-mobile-search-slot .arin-category-search-input {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.96rem;
  }

  body.arin-mobile-pagebar-has-search .arin-category-products-grid {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .addons-marquee-bar.arin-mobile-search-host,
  .addons-marquee-bar.arin-mobile-search-host.amb-desktop-1.amb-mobile-1.amb-direction-0 {
    display: block !important;
    min-height: 0 !important;
    max-height: none !important;
    height: auto !important;
    margin: 0 !important;
    padding: 6px 12px 10px !important;
    background: rgba(255, 250, 245, 0.98) !important;
    border-bottom: 1px solid rgba(232, 221, 211, 0.7) !important;
    box-shadow: 0 10px 20px rgba(101, 73, 43, 0.06) !important;
    overflow: visible !important;
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
  }

  .addons-marquee-bar.arin-mobile-search-host > *:not(.arin-category-search) {
    display: none !important;
  }

  .addons-marquee-bar.arin-mobile-search-host .arin-category-search {
    max-width: none;
    margin: 0 !important;
    padding-top: 0 !important;
    position: relative;
    z-index: 1 !important;
  }

  .addons-marquee-bar.arin-mobile-search-host .arin-category-search-input {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.96rem;
  }

  html[data-theme="dark"] .arin-mobile-pagebar,
  body[data-theme="dark"] .arin-mobile-pagebar,
  body.theme-dark .arin-mobile-pagebar {
    background: rgba(20, 16, 14, 0.96);
    border-bottom-color: rgba(124, 100, 70, 0.34);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.34);
  }

  html[data-theme="dark"] .arin-mobile-pagebar-toggle,
  body[data-theme="dark"] .arin-mobile-pagebar-toggle,
  body.theme-dark .arin-mobile-pagebar-toggle {
    background: rgba(31, 25, 22, 0.98);
    border-color: rgba(201, 169, 110, 0.3);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.26);
  }

  html[data-theme="dark"] .arin-mobile-pagebar-toggle span,
  body[data-theme="dark"] .arin-mobile-pagebar-toggle span,
  body.theme-dark .arin-mobile-pagebar-toggle span {
    background: #f1e6d6;
  }

  html[data-theme="dark"] .arin-mobile-pagebar-menu,
  body[data-theme="dark"] .arin-mobile-pagebar-menu,
  body.theme-dark .arin-mobile-pagebar-menu,
  html[data-theme="dark"] .arin-mobile-search-slot,
  body[data-theme="dark"] .arin-mobile-search-slot,
  body.theme-dark .arin-mobile-search-slot,
  html[data-theme="dark"] .addons-marquee-bar.arin-mobile-search-host,
  body[data-theme="dark"] .addons-marquee-bar.arin-mobile-search-host,
  body.theme-dark .addons-marquee-bar.arin-mobile-search-host,
  html[data-theme="dark"] .addons-marquee-bar.arin-mobile-search-host.amb-desktop-1.amb-mobile-1.amb-direction-0,
  body[data-theme="dark"] .addons-marquee-bar.arin-mobile-search-host.amb-desktop-1.amb-mobile-1.amb-direction-0,
  body.theme-dark .addons-marquee-bar.arin-mobile-search-host.amb-desktop-1.amb-mobile-1.amb-direction-0 {
    background: rgba(20, 16, 14, 0.94) !important;
    border-bottom-color: rgba(124, 100, 70, 0.34) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22) !important;
  }

  html[data-theme="dark"] .arin-mobile-pagebar-menu a,
  body[data-theme="dark"] .arin-mobile-pagebar-menu a,
  body.theme-dark .arin-mobile-pagebar-menu a {
    color: #f1e6d6;
    border-top-color: rgba(124, 100, 70, 0.28);
  }
}

body.arin-injected-navbar .categories-body,
body.arin-injected-navbar .product-body {
  padding-top: calc(var(--nav-height) + 6px);
}

.arin-mobile-pagebar-wrap {
  display: none;
}

@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .product-card-info {
    padding: 12px;
  }

  .product-card-info h3 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .product-card-info p {
    font-size: 0.75rem;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    margin-bottom: 8px;
  }

  .product-price {
    font-size: 1.1rem;
  }

  .hero-title {
    font-size: 2rem;
  }

  .filter-bar {
    gap: 8px;
  }

  .filter-btn {
    padding: 8px 16px;
    font-size: 0.8rem;
  }

  .modal-gallery {
    padding: 16px;
  }
  
  .modal-body {
    grid-template-columns: 1fr; /* Mobilde alt alta olması için */
    max-height: none; /* Mobilde içeriğe göre uzasın */
  }

  .modal-main-img {
    height: 280px;
    object-fit: cover;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }
}



/* ===== CUSTOM INSTANT TOOLTIPS ===== */
[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  margin-top: 5px;
  background-color: var(--color-text);
  color: var(--color-bg);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Tiny arrow for the tooltip */
[data-tooltip]::before {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(0px);
  margin-top: -1px;
  border-width: 0 6px 6px 6px;
  border-style: solid;
  border-color: transparent transparent var(--color-text) transparent;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease, transform 0.15s ease;
  pointer-events: none;
  z-index: 1000;
}

[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ===== DARK MODE PREMIUM BRANDING ===== */
[data-theme="dark"] .nav-logo img {
  /* White Halo Effect - Keeps the original brand brown but makes it glow on black */
  filter: drop-shadow(0 0 1px #fff) drop-shadow(0 0 4px rgba(255, 255, 255, 0.5));
}

[data-theme="dark"] .btn-whatsapp {
  background: #128C7E !important;
  /* Deeper, more professional green */
  color: #fff !important;
  box-shadow: 0 4px 15px rgba(18, 140, 126, 0.4);
}

[data-theme="dark"] .nav-cta .btn-primary {
  background: #128C7E !important;
  color: #fff !important;
}

/* Dark Mode Map Button override */
[data-theme="dark"] .map-consent .btn-primary {
  background: #128C7E !important;
  border-color: #128C7E !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(18, 140, 126, 0.4);
}

[data-theme="dark"] .map-consent .btn-primary:hover {
  background: #0e6d62 !important;
  border-color: #0e6d62 !important;
}

/* ===== QUKA CATEGORY OVERRIDES ===== */
.hidden-cat-filter,
.category-filter-order,
.responsive-category-buttons,
.category-price-inputs,
[data-smart-cat-filter],
.p-g-mod-t-cat-display-0 .module-title,
.p-g-mod-t-cat-display-0 .module-description {
  display: none !important;
}

.arin-products-row {
  row-gap: 24px;
}

.arin-product-col {
  margin-bottom: 0;
}

.arin-product-col .card-product,
.arin-product-col .card-product-inner {
  height: 100%;
}

.arin-product-col .card-product-inner {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  padding: 0 0 18px 0;
}

.arin-product-col .card-product-inner:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.arin-product-col .image-wrapper {
  background: #fff;
  padding: 0;
  margin: 0;
}

.arin-product-col .image-wrapper .image {
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.arin-product-col .image-wrapper .image img,
.arin-product-col .image-wrapper .image picture,
.arin-product-col .image-wrapper .image source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arin-product-col .buttons,
.arin-product-col .buttons-wrapper,
.arin-product-col .quantity,
.arin-product-col .product-unit,
.arin-product-col .brand,
.arin-product-col .product-code,
.arin-product-col .barcode,
.arin-product-col .discount,
.arin-product-col .free-cargo-badge,
.arin-product-col .it-over,
.arin-product-col .card-product-content,
.arin-product-col .sale-price-basket,
.arin-product-col .rating-stars,
.arin-product-col .rating,
.arin-product-col .product-stars {
  display: none !important;
}

.arin-product-col .c-p-i-link {
  display: block;
  padding: 18px 18px 0 18px;
  text-decoration: none;
}

.arin-product-col .title {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1.3;
  color: var(--color-text);
  min-height: 2.8em;
  margin-bottom: 8px;
}

.arin-product-col .price-group {
  padding: 0 18px;
}

.arin-product-col .prices {
  display: block;
}

.arin-product-col .list-price {
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.arin-product-col .sale-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--color-primary-dark);
  font-weight: 700;
}

.arin-product-col .sale-price::after {
  content: ' ₺';
  font-size: 0.9rem;
}

.p-g-mod-t-cat-display-0 .pagination-wrapper {
  margin-top: 40px;
}

/* ===== QUKA CATEGORY OVERRIDES V2 ===== */
.p-g-mod-t-cat-filter,
.category-filter-order,
.responsive-category-buttons,
.category-price-inputs,
[data-smart-cat-filter],
.p-g-mod-t-cat-display-0 .module-title,
.p-g-mod-t-cat-display-0 .module-description {
  display: none !important;
}

.categories-body .p-g-mod-base-content {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.categories-body .row > [class*="col-"]:has(.hidden-cat-filter),
.categories-body .row > [class*="col-"]:has(.p-g-mod-t-cat-filter),
.categories-body .row > [class*="col-"]:has(.category-filter-order),
.categories-body .row > [class*="col-"]:has([data-smart-cat-filter]),
.categories-body .row > .col:has(.hidden-cat-filter),
.categories-body .row > .col:has(.p-g-mod-t-cat-filter),
.categories-body .row > .col:has(.category-filter-order),
.categories-body .row > .col:has([data-smart-cat-filter]) {
  display: none !important;
}

.categories-body .row > [class*="col-"]:has(.p-g-mod-t-cat-display-0),
.categories-body .row > .col:has(.p-g-mod-t-cat-display-0) {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Quka can keep the empty filter column visible on publish even when inner modules are hidden. */
.categories-body .col-list.col-0.d-none.col-sm-0.d-sm-none.col-md-0.d-md-none.col-lg-3.d-lg-block.col-xl-3.d-xl-block.p-g-b-c-0,
.categories-body .p-g-b-c-0 {
  display: none !important;
  width: 0 !important;
  max-width: 0 !important;
  flex: 0 0 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.categories-body .p-g-b-c-1,
.categories-body .col-list.p-g-b-c-1 {
  width: 100% !important;
  max-width: 100% !important;
  flex: 0 0 100% !important;
}

.categories-body .p-g-b-c-0 .p-g-mod,
.categories-body .p-g-b-c-0 .p-g-mod-body,
.categories-body .p-g-b-c-0 .hidden-cat-filter {
  display: none !important;
}

.categories-body .pattern-group .p-g-mod-t-20 > .p-g-mod-header {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 0 28px !important;
}

.categories-body .pattern-group .p-g-mod-t-20 > .p-g-mod-body {
  padding: 0 !important;
}

.arin-products-row {
  justify-content: center;
  row-gap: 32px;
  margin-left: auto;
  margin-right: auto;
  max-width: 1220px;
}

.arin-product-col {
  padding-left: 14px;
  padding-right: 14px;
  display: flex;
  justify-content: center;
}

.arin-product-col .sale-price::after {
  content: '' !important;
}

.arin-product-col .card-product {
  width: 100%;
  max-width: 390px;
  margin: 0;
  padding-bottom: 0;
  border: 0;
  background: transparent;
}

.arin-product-col .card-product-inner {
  min-height: 100%;
  border-width: 1px;
  border-color: rgba(166, 125, 82, 0.22);
  border-radius: 24px;
  padding-bottom: 22px;
}

.arin-product-col .image-wrapper .image {
  height: 300px;
}

.arin-product-col .c-p-i-link {
  padding: 22px 22px 0 22px;
}

.arin-product-col .title {
  font-size: 1.18rem;
  min-height: 3.1em;
  margin-bottom: 10px;
}

.arin-product-col .price-group {
  padding: 0 22px;
}

.arin-product-col .sale-price {
  font-size: 1.5rem;
}

.categories-body .pagination-wrapper {
  display: flex;
  justify-content: center;
}

.p-g-mod-t-cat-display-0 .module-title,
.p-g-mod-t-cat-display-0 .p-g-mod-header {
  display: none !important;
}

.arin-category-search {
  max-width: 1220px;
  margin: 8px auto 22px;
}

.arin-category-search-input {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(156, 116, 74, 0.24);
  border-radius: 999px;
  padding: 0 22px;
  background: linear-gradient(180deg, rgba(251, 243, 235, 0.98), rgba(245, 232, 219, 0.98));
  color: #4a2f24;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(101, 73, 43, 0.08);
}

.arin-category-search-input::placeholder {
  color: rgba(74, 47, 36, 0.62);
}

.arin-category-search-input:focus {
  outline: none;
  border-color: rgba(107, 142, 90, 0.55);
  box-shadow: 0 0 0 4px rgba(107, 142, 90, 0.12);
}

.categories-body .pattern-group,
.categories-body .pattern-group .p-g-mod,
.categories-body .pattern-group .p-g-mod-body {
  background: transparent !important;
}

.categories-body .addons-marquee-bar:not(.arin-mobile-search-host),
.categories-body .js-marquee-wrapper:not(.arin-mobile-search-host),
.categories-body .js-marquee,
.product-body .addons-marquee-bar:not(.arin-mobile-search-host),
.product-body .js-marquee-wrapper:not(.arin-mobile-search-host),
.product-body .js-marquee {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  visibility: hidden !important;
}

.arin-category-products-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 18px 0 6px;
}

.arin-category-card {
  background: linear-gradient(180deg, #f9efe3 0%, #f5e7d8 100%);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(156, 116, 74, 0.20);
  box-shadow: 0 18px 36px rgba(101, 73, 43, 0.08);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--color-text);
}

.arin-category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(101, 73, 43, 0.14);
}

.arin-category-card .product-card-image {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247,236,223,0.96), rgba(239,223,204,0.88));
  height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 14px 0;
}

.arin-category-card .product-card-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.arin-category-card .product-card-image img,
.arin-category-card .product-card-image picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.5s ease;
  border-radius: 18px;
}

.arin-category-card:hover .product-card-image img {
  transform: scale(1.05);
}

.arin-category-card .product-card-info {
  padding: 18px 22px 22px;
  text-align: center;
}

.arin-category-card .product-card-info h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 14px;
  min-height: 2.9em;
  color: #4a2f24;
}

.arin-category-card .product-price {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #6f4333;
  font-weight: 700;
}

.arin-category-card .product-price::after {
  content: '';
}

[data-theme="dark"] .categories-body .pattern-group,
[data-theme="dark"] .categories-body .pattern-group .p-g-mod,
[data-theme="dark"] .categories-body .pattern-group .p-g-mod-body {
  background: transparent !important;
}

[data-theme="dark"] .arin-category-card {
  background: linear-gradient(180deg, #31261f 0%, #261d17 100%);
  border-color: rgba(201, 169, 110, 0.20);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

[data-theme="dark"] .arin-category-card:hover {
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.34);
}

[data-theme="dark"] .arin-category-card .product-card-image {
  background: linear-gradient(180deg, rgba(66, 52, 43, 0.96), rgba(44, 34, 28, 0.92));
}

[data-theme="dark"] .arin-category-card .product-card-info h3 {
  color: #f0ece6;
}

[data-theme="dark"] .arin-category-card .product-price {
  color: #d8bc92;
}

html[data-theme="dark"] .arin-category-search-input,
body[data-theme="dark"] .arin-category-search-input,
body.theme-dark .arin-category-search-input {
  background: linear-gradient(180deg, rgba(49, 38, 31, 0.98), rgba(38, 29, 23, 0.98));
  border-color: rgba(201, 169, 110, 0.24);
  color: #f0ece6;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

html[data-theme="dark"] .arin-category-search-input::placeholder,
body[data-theme="dark"] .arin-category-search-input::placeholder,
body.theme-dark .arin-category-search-input::placeholder {
  color: rgba(240, 236, 230, 0.62);
}

html[data-theme="dark"] .arin-category-card,
body[data-theme="dark"] .arin-category-card,
body.theme-dark .arin-category-card {
  background: linear-gradient(180deg, #31261f 0%, #261d17 100%);
  border-color: rgba(201, 169, 110, 0.20);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

html[data-theme="dark"] .arin-category-card:hover,
body[data-theme="dark"] .arin-category-card:hover,
body.theme-dark .arin-category-card:hover {
  box-shadow: 0 28px 54px rgba(0, 0, 0, 0.34);
}

html[data-theme="dark"] .arin-category-card .product-card-image,
body[data-theme="dark"] .arin-category-card .product-card-image,
body.theme-dark .arin-category-card .product-card-image {
  background: linear-gradient(180deg, rgba(66, 52, 43, 0.96), rgba(44, 34, 28, 0.92));
}

html[data-theme="dark"] .arin-category-card .product-card-info h3,
body[data-theme="dark"] .arin-category-card .product-card-info h3,
body.theme-dark .arin-category-card .product-card-info h3 {
  color: #f0ece6;
}

html[data-theme="dark"] .arin-category-card .product-price,
body[data-theme="dark"] .arin-category-card .product-price,
body.theme-dark .arin-category-card .product-price {
  color: #d8bc92;
}

.product-profile-1 .product-short-desc,
.product-profile-1 .product-rate,
.product-profile-1 .product-transfer-discount,
.product-profile-1 .product-badges,
.product-profile-1 .social-share-special,
.product-profile-1 .product-unit,
.product-profile-1 .product-quantity,
.product-profile-1 .btn-cart,
.product-profile-1 .btn-fast-buy,
.product-profile-1 .product-size-box,
.product-profile-1 .related-products {
  display: none !important;
}

.product-profile-1 .product-buttons {
  display: flex;
  justify-content: flex-start;
  margin-top: 6px;
}

.product-profile-1 .product-short-desc {
  display: block !important;
  margin: 14px 0 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 249, 242, 0.96), rgba(247, 237, 224, 0.96));
  border: 1px solid rgba(156, 116, 74, 0.14);
  color: var(--color-text);
  line-height: 1.6;
  font-size: 0.95rem;
  box-shadow: 0 10px 22px rgba(101, 73, 43, 0.06);
  position: relative;
}

.product-profile-1 .product-short-desc::before {
  content: 'Kısa Bilgi';
  display: inline-block;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(107, 142, 90, 0.12);
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.arin-product-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 6px;
  color: var(--color-text-light);
}

.arin-product-brand .label {
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.arin-product-brand .value {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.product-profile-1 .product-buttons .btn-wp {
  min-width: 240px;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 600;
}

.arin-product-description {
  margin-top: 16px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(250,241,229,0.96), rgba(244,231,215,0.96));
  border: 1px solid rgba(156, 116, 74, 0.20);
  color: #4a2f24;
  line-height: 1.6;
  box-shadow: 0 12px 24px rgba(101, 73, 43, 0.08);
  position: relative;
  overflow: hidden;
}

.arin-product-description::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(107, 142, 90, 0.95), rgba(201, 169, 110, 0.95), rgba(102, 62, 53, 0.95));
}

.arin-product-description h1,
.arin-product-description h2,
.arin-product-description h3,
.arin-product-description h4 {
  color: #4a2f24;
  margin-bottom: 12px;
}

.arin-product-description p:last-child {
  margin-bottom: 0;
}

.arin-product-description-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.arin-product-description-shell-single {
  gap: 0;
  grid-template-columns: 1fr;
}

.arin-product-description-section {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 252, 247, 0.88);
  border: 1px solid rgba(156, 116, 74, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.arin-product-description-section[data-kind="list"] {
  grid-column: 1 / -1;
}

.arin-product-description-section h3 {
  display: block;
  margin: 0 0 6px;
  padding: 0;
  background: none;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  box-shadow: none;
}

.arin-product-description-section p,
.arin-product-description-section div,
.arin-product-description-section li {
  color: inherit;
  line-height: 1.6;
  font-size: 0.9rem;
}

.arin-product-section-text p {
  margin: 0;
}

.arin-product-inline-list {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.arin-product-description-section ul,
.arin-product-description-section ol {
  margin: 0;
  padding-left: 20px;
}

html[data-theme="dark"] .arin-product-description,
body[data-theme="dark"] .arin-product-description,
body.theme-dark .arin-product-description {
  background: linear-gradient(180deg, rgba(49,38,31,0.96), rgba(38,29,23,0.98));
  border-color: rgba(201, 169, 110, 0.20);
  color: #f0ece6;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

html[data-theme="dark"] .arin-product-description h1,
html[data-theme="dark"] .arin-product-description h2,
html[data-theme="dark"] .arin-product-description h3,
html[data-theme="dark"] .arin-product-description h4,
body[data-theme="dark"] .arin-product-description h1,
body[data-theme="dark"] .arin-product-description h2,
body[data-theme="dark"] .arin-product-description h3,
body[data-theme="dark"] .arin-product-description h4,
body.theme-dark .arin-product-description h1,
body.theme-dark .arin-product-description h2,
body.theme-dark .arin-product-description h3,
body.theme-dark .arin-product-description h4 {
  color: #f0ece6;
}

html[data-theme="dark"] .arin-product-description-section,
body[data-theme="dark"] .arin-product-description-section,
body.theme-dark .arin-product-description-section {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 169, 110, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

html[data-theme="dark"] .arin-product-description-section h3,
body[data-theme="dark"] .arin-product-description-section h3,
body.theme-dark .arin-product-description-section h3 {
  color: #d8bc92;
}

html[data-theme="dark"] .product-profile-1 .product-short-desc,
body[data-theme="dark"] .product-profile-1 .product-short-desc,
body.theme-dark .product-profile-1 .product-short-desc {
  background: linear-gradient(180deg, rgba(53, 43, 35, 0.96), rgba(44, 35, 29, 0.96));
  border-color: rgba(201, 169, 110, 0.14);
  color: #f0ece6;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

html[data-theme="dark"] .product-profile-1 .product-short-desc::before,
body[data-theme="dark"] .product-profile-1 .product-short-desc::before,
body.theme-dark .product-profile-1 .product-short-desc::before {
  background: rgba(216, 188, 146, 0.12);
  color: #d8bc92;
}

html[data-theme="dark"] .product-body,
html[data-theme="dark"] .product-body .pattern-group,
html[data-theme="dark"] .product-body .p-g-mod,
html[data-theme="dark"] .product-body .p-g-mod-body,
html[data-theme="dark"] .product-body .p-g-mod-base-content,
body[data-theme="dark"] .product-body,
body[data-theme="dark"] .product-body .pattern-group,
body[data-theme="dark"] .product-body .p-g-mod,
body[data-theme="dark"] .product-body .p-g-mod-body,
body[data-theme="dark"] .product-body .p-g-mod-base-content,
body.theme-dark .product-body,
body.theme-dark .product-body .pattern-group,
body.theme-dark .product-body .p-g-mod,
body.theme-dark .product-body .p-g-mod-body,
body.theme-dark .product-body .p-g-mod-base-content {
  background: #171412 !important;
  color: var(--color-text);
  border-color: rgba(201, 169, 110, 0.08) !important;
}

html[data-theme="dark"] .product-profile-1,
html[data-theme="dark"] .product-profile-1 > .row,
html[data-theme="dark"] .product-profile-1 > .row > [class*="col-"],
html[data-theme="dark"] .product-profile-1 > .row > .col,
body[data-theme="dark"] .product-profile-1,
body[data-theme="dark"] .product-profile-1 > .row,
body[data-theme="dark"] .product-profile-1 > .row > [class*="col-"],
body[data-theme="dark"] .product-profile-1 > .row > .col,
body.theme-dark .product-profile-1,
body.theme-dark .product-profile-1 > .row,
body.theme-dark .product-profile-1 > .row > [class*="col-"],
body.theme-dark .product-profile-1 > .row > .col {
  background: #171412 !important;
  border-color: rgba(201, 169, 110, 0.08) !important;
}

html[data-theme="dark"] .product-profile-1,
body[data-theme="dark"] .product-profile-1,
body.theme-dark .product-profile-1 {
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  color: #f0ece6;
}

html[data-theme="dark"] .product-body .carousel-outer,
html[data-theme="dark"] .product-body .carousel-inner,
html[data-theme="dark"] .product-body .carousel-item,
html[data-theme="dark"] .product-body .ppc-ctype-1,
html[data-theme="dark"] .product-body .ppc-ctype-2,
html[data-theme="dark"] .product-body .ppc-ctype-3,
html[data-theme="dark"] .product-body .product-carousel-desktop,
html[data-theme="dark"] .product-body .product-carousel-mobile,
body[data-theme="dark"] .product-body .carousel-outer,
body[data-theme="dark"] .product-body .carousel-inner,
body[data-theme="dark"] .product-body .carousel-item,
body[data-theme="dark"] .product-body .ppc-ctype-1,
body[data-theme="dark"] .product-body .ppc-ctype-2,
body[data-theme="dark"] .product-body .ppc-ctype-3,
body[data-theme="dark"] .product-body .product-carousel-desktop,
body[data-theme="dark"] .product-body .product-carousel-mobile,
body.theme-dark .product-body .carousel-outer,
body.theme-dark .product-body .carousel-inner,
body.theme-dark .product-body .carousel-item,
body.theme-dark .product-body .ppc-ctype-1,
body.theme-dark .product-body .ppc-ctype-2,
body.theme-dark .product-body .ppc-ctype-3,
body.theme-dark .product-body .product-carousel-desktop,
body.theme-dark .product-body .product-carousel-mobile {
  background: #211c19 !important;
  border-color: rgba(201, 169, 110, 0.14) !important;
}

html[data-theme="dark"] .ppc-ctype-1,
html[data-theme="dark"] .ppc-ctype-2,
html[data-theme="dark"] .ppc-ctype-3,
html[data-theme="dark"] .product-carousel-desktop,
html[data-theme="dark"] .product-carousel-mobile,
html[data-theme="dark"] .carousel,
html[data-theme="dark"] .carousel-outer,
html[data-theme="dark"] .carousel-inner,
html[data-theme="dark"] .carousel-item,
html[data-theme="dark"] .carousel-item.active,
body[data-theme="dark"] .ppc-ctype-1,
body[data-theme="dark"] .ppc-ctype-2,
body[data-theme="dark"] .ppc-ctype-3,
body[data-theme="dark"] .product-carousel-desktop,
body[data-theme="dark"] .product-carousel-mobile,
body[data-theme="dark"] .carousel,
body[data-theme="dark"] .carousel-outer,
body[data-theme="dark"] .carousel-inner,
body[data-theme="dark"] .carousel-item,
body[data-theme="dark"] .carousel-item.active,
body.theme-dark .ppc-ctype-1,
body.theme-dark .ppc-ctype-2,
body.theme-dark .ppc-ctype-3,
body.theme-dark .product-carousel-desktop,
body.theme-dark .product-carousel-mobile,
body.theme-dark .carousel,
body.theme-dark .carousel-outer,
body.theme-dark .carousel-inner,
body.theme-dark .carousel-item,
body.theme-dark .carousel-item.active {
  background-color: #211c19 !important;
  background-image: none !important;
}

html[data-theme="dark"] .product-profile-1 .title,
body[data-theme="dark"] .product-profile-1 .title,
body.theme-dark .product-profile-1 .title {
  color: #f0ece6;
}

html[data-theme="dark"] .product-body .carousel-item a,
body[data-theme="dark"] .product-body .carousel-item a,
body.theme-dark .product-body .carousel-item a {
  background: #211c19 !important;
}

html[data-theme="dark"] .product-body .carousel-control-prev,
html[data-theme="dark"] .product-body .carousel-control-next,
body[data-theme="dark"] .product-body .carousel-control-prev,
body[data-theme="dark"] .product-body .carousel-control-next,
body.theme-dark .product-body .carousel-control-prev,
body.theme-dark .product-body .carousel-control-next {
  color: #f0ece6 !important;
}

html[data-theme="dark"] .arin-product-brand .label,
body[data-theme="dark"] .arin-product-brand .label,
body.theme-dark .arin-product-brand .label {
  color: #a79c91;
}

html[data-theme="dark"] .arin-product-brand .value,
body[data-theme="dark"] .arin-product-brand .value,
body.theme-dark .arin-product-brand .value {
  color: #d8bc92;
}

html[data-theme="dark"] .product-profile-1 .prices .sale-price,
body[data-theme="dark"] .product-profile-1 .prices .sale-price,
body.theme-dark .product-profile-1 .prices .sale-price {
  color: #f4d7aa !important;
}

html[data-theme="dark"] .arin-product-close,
body[data-theme="dark"] .arin-product-close,
body.theme-dark .arin-product-close {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(201, 169, 110, 0.16);
  color: #f0ece6;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
}

html[data-theme="dark"] .arin-product-close:hover,
body[data-theme="dark"] .arin-product-close:hover,
body.theme-dark .arin-product-close:hover {
  color: #d8bc92;
  border-color: rgba(216, 188, 146, 0.24);
}

html[data-theme="dark"] .arin-product-close-icon,
body[data-theme="dark"] .arin-product-close-icon,
body.theme-dark .arin-product-close-icon {
  background: rgba(216, 188, 146, 0.12);
  color: #d8bc92;
}

.product-body .sekmeli-urunler,
.product-body .product-details-tab-product-details-tab-colorful,
.product-body .product-comments,
.product-body [class*="product-detail-tab"],
.product-body [class*="product-details-tab"],
.product-body [class*="sekmeli-urunler"] {
  display: none !important;
}

.product-body .p-g-mod:has(.btn-cart),
.product-body .p-g-mod:has(.btn-fast-buy),
.product-body .p-g-mod:has(.card-product),
.product-body .p-g-mod:has(.arin-product-col),
.product-body .p-g-mod:has(.products-grid),
.product-body .p-g-mod:has(.arin-products-row) {
  display: none !important;
}

@media (max-width: 991px) {
  .arin-product-col .card-product {
    max-width: none;
  }

  .arin-product-col .image-wrapper .image {
    height: 260px;
  }

  .arin-category-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .arin-category-card .product-card-image {
    height: 250px;
  }
}

@media (max-width: 575.98px) {
  .arin-products-row {
    row-gap: 14px;
    max-width: 100%;
  }

  .arin-product-topbar {
    justify-content: flex-start;
    margin-top: 14px;
    margin-bottom: 14px;
  }

  .arin-product-close {
    width: 100%;
    justify-content: center;
  }

  .arin-product-col {
    padding-left: 6px;
    padding-right: 6px;
  }

  .arin-product-col .card-product-inner {
    border-radius: 18px;
    padding-bottom: 16px;
  }

  .arin-product-col .image-wrapper .image {
    height: 165px;
  }

  .arin-product-col .c-p-i-link {
    padding: 14px 14px 0 14px;
  }

  .arin-product-col .title {
    font-size: 0.96rem;
    min-height: 2.9em;
    margin-bottom: 8px;
  }

  .arin-product-col .price-group {
    padding: 0 14px;
  }

  .arin-product-col .sale-price {
    font-size: 1.16rem;
  }

  .arin-category-products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .arin-category-card {
    border-radius: 18px;
  }

  .arin-category-card .product-card-image {
    height: 190px;
    padding: 10px 10px 0;
  }

  .arin-category-card .product-card-info {
    padding: 12px;
  }

  .arin-category-card .product-card-info h3 {
    font-size: 0.95rem;
    margin-bottom: 8px;
    min-height: 2.9em;
  }

  .arin-category-card .product-price {
    font-size: 1.1rem;
  }
}

.product-profile-1 {
  padding-top: 88px;
}

.arin-product-topbar {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  margin-bottom: 18px;
}

.arin-product-close {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 249, 242, 0.96);
  border: 1px solid rgba(156, 116, 74, 0.18);
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(101, 73, 43, 0.08);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), color var(--transition);
}

.arin-product-close:hover {
  transform: translateY(-1px);
  color: var(--color-primary-dark);
  border-color: rgba(107, 142, 90, 0.34);
  box-shadow: 0 10px 24px rgba(101, 73, 43, 0.12);
}

.arin-product-close-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(107, 142, 90, 0.12);
  color: var(--color-accent);
  font-size: 1.1rem;
  line-height: 1;
}

.product-profile-1 .title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  margin-bottom: 18px;
  color: var(--color-text);
}

.product-profile-1 .product-profile-info {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.product-profile-1 .product-profile-info li {
  border: 0 !important;
  padding: 0 0 10px !important;
  color: var(--color-text-light);
}

.product-profile-1 .product-price-group {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 8px 0 14px;
}

.product-profile-1 .prices .sale-price {
  font-family: var(--font-display);
  font-size: 2rem !important;
  font-weight: 700;
  color: var(--color-primary-dark) !important;
}

.product-profile-1 .prices .list-price {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.product-profile-1 .btn-wp {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  background: var(--color-whatsapp) !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.product-profile-1 .btn-wp:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 991px) {
  .categories-body .p-g-mod.p-g-mod-t-39,
  .categories-body .p-g-mod.p-g-mod-t-39 .p-g-mod-header,
  .categories-body .p-g-mod.p-g-mod-t-39 .p-g-mod-body,
  .product-body .p-g-mod.p-g-mod-t-39,
  .product-body .p-g-mod.p-g-mod-t-39 .p-g-mod-header,
  .product-body .p-g-mod.p-g-mod-t-39 .p-g-mod-body {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
  }

  .categories-body .p-g-mod-header,
  .categories-body .p-g-m-h-info,
  .categories-body .p-g-m-h-i-title,
  .product-body .p-g-mod-header,
  .product-body .p-g-m-h-info,
  .product-body .p-g-m-h-i-title {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
  }

  header.mobile .h-banner,
  header.desktop .h-banner,
  .h-banner,
  [class*="h-banner"] {
    display: none !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
  }

  .categories-body .arin-category-search {
    position: relative;
    z-index: 999;
    margin-top: 0;
    padding-top: 12px;
  }

  .categories-body,
  .product-body {
    position: relative;
  }

  .categories-body::before,
  .product-body::before {
    content: '';
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    height: 52px;
    background: var(--color-bg);
    z-index: 998;
    pointer-events: none;
  }

  .product-body .product-profile-1 {
    position: relative;
    z-index: 999;
    padding-top: 96px;
  }

  .categories-body .arin-category-search::before {
    content: '';
    position: absolute;
    left: -24px;
    right: -24px;
    top: -36px;
    height: 60px;
    background: var(--color-bg);
    z-index: -1;
  }

  .arin-product-description-shell {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  body.arin-mobile-top-cleanup header.mobile {
    display: block !important;
    visibility: visible !important;
    z-index: 4502 !important;
  }

  body.arin-mobile-top-cleanup .mobile-header-space {
    display: block !important;
    height: 60px !important;
    visibility: visible !important;
  }

  body.arin-mobile-top-cleanup::before {
    content: '';
    position: fixed;
    top: calc(var(--arin-nav-cover-top, var(--nav-height)) - 2px);
    left: 0;
    right: 0;
    height: calc(var(--arin-nav-cover-height, 100px) + 4px);
    background: var(--color-bg);
    z-index: 4500;
    pointer-events: none;
  }

  body.arin-mobile-product-page::after {
    content: '';
    position: fixed;
    top: calc(var(--arin-nav-cover-top, var(--nav-height)) - 1px);
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-bg);
    z-index: 4504;
    pointer-events: none;
  }

  body.arin-mobile-top-cleanup .navbar,
  body.arin-mobile-top-cleanup header.mobile {
    z-index: 4502;
  }

  body.arin-mobile-category-page .arin-category-search,
  body.arin-mobile-product-page .product-profile-1 {
    position: relative;
    z-index: 4503;
  }

  body.arin-mobile-category-page .arin-category-search {
    margin-top: 0;
    padding-top: 10px;
  }

  body.arin-mobile-category-page .arin-category-search::before {
    content: '';
    position: absolute;
    top: -34px;
    left: -20px;
    right: -20px;
    height: 86px;
    background: var(--color-bg);
    z-index: -1;
    pointer-events: none;
  }

  body.arin-mobile-category-page .arin-category-search-input {
    background: linear-gradient(180deg, rgb(251, 243, 235), rgb(245, 232, 219));
  }

  body.arin-mobile-product-page .product-profile-1 {
    padding-top: 96px;
  }
}
