/* ============= MODERN TYPOGRAPHY SYSTEM ================ */
:root {
  /* Font Size Hierarchy - Modern Scale */
  --font-size-xs: 0.75rem;      /* 12px */
  --font-size-sm: 0.875rem;     /* 14px */
  --font-size-base: 1rem;       /* 16px */
  --font-size-lg: 1.125rem;     /* 18px */
  --font-size-xl: 1.25rem;      /* 20px */
  --font-size-2xl: 1.5rem;      /* 24px */
  --font-size-3xl: 1.875rem;    /* 30px */
  --font-size-4xl: 2.25rem;     /* 36px */
  
  /* Font Weight System */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Line Height System - Better Readability */
  --line-height-tight: 1.25;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;
  
  /* Modern Spacing System - 8px base unit */
  --spacing-xs: 0.5rem;         /* 8px */
  --spacing-sm: 1rem;           /* 16px */
  --spacing-md: 1.5rem;         /* 24px */
  --spacing-lg: 2rem;           /* 32px */
  --spacing-xl: 3rem;           /* 48px */
  --spacing-2xl: 4rem;          /* 64px */
  --spacing-3xl: 5rem;          /* 80px */
  
  /* Section Spacing */
  --section-spacing: 4rem;      /* 64px - Modern section gaps */
  --section-spacing-mobile: 2.5rem; /* 40px - Mobile section gaps */

  /* Site content shell — header, kategori listeleri, modül sayfaları ile hizalı */
  --site-content-max-width: 1400px;
  --site-content-gutter: var(--spacing-lg, 2rem);
  --site-content-gutter-mobile: var(--spacing-md, 1.5rem);

  /* Brand (core components) */
  --core-brand: #45b8ac;
  --core-brand-dark: #3a9b8f;
  --core-surface: #f8fafb;
  --core-text: #2c3e50;
  --core-text-muted: #64748b;
}

/* Base Typography */
body {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-normal);
  line-height: var(--line-height-normal);
  color: #333;
}

/* Heading Hierarchy */
h1 {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-md);
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-sm);
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: var(--spacing-sm);
}

h4 {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-normal);
  margin-bottom: var(--spacing-xs);
}

h5 {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  margin-bottom: var(--spacing-xs);
}

h6 {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  line-height: var(--line-height-normal);
  margin-bottom: var(--spacing-xs);
}

p {
  font-size: var(--font-size-base);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-sm);
}

/* Modern Montserrat Font Classes */
.font_Montserrat {
  font-family: 'Montserrat', sans-serif;
  font-weight: var(--font-weight-normal);
}

.font_Montserrat-light {
  font-weight: var(--font-weight-normal);
}

.font_Montserrat-medium {
  font-weight: var(--font-weight-medium);
}

.font_Montserrat-semibold {
  font-weight: var(--font-weight-semibold);
}

.font_Montserrat-bold {
  font-weight: var(--font-weight-bold);
}

/* ============= MODERN SPACING UTILITIES ================ */

/* Section Spacing */
.section-spacing {
  margin-bottom: var(--section-spacing);
}

.section-spacing-top {
  margin-top: var(--section-spacing);
}

.section-spacing-bottom {
  margin-bottom: var(--section-spacing);
}

/* Container Spacing */
.container-spacing {
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
}

/* Site içerik kabuğu — container-fluid.modern-container ile aynı hizada */
.hoflayn-site-container,
.container-fluid.modern-container {
  width: 100%;
  max-width: var(--site-content-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--site-content-gutter);
  padding-right: var(--site-content-gutter);
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .hoflayn-site-container,
  .container-fluid.modern-container {
    padding-left: var(--site-content-gutter-mobile);
    padding-right: var(--site-content-gutter-mobile);
  }
}

/* Ana site .container kullanımları (pill nav, list vb.) — kenara yapışmayı önler */
.home-pill-nav .container,
.core-list-page > .container,
.core-list-browse-body .container {
  max-width: var(--site-content-max-width);
  padding-left: var(--site-content-gutter);
  padding-right: var(--site-content-gutter);
}

@media (max-width: 768px) {
  .home-pill-nav .container,
  .core-list-page > .container,
  .core-list-browse-body .container {
    padding-left: var(--site-content-gutter-mobile);
    padding-right: var(--site-content-gutter-mobile);
  }
}

/* Responsive Spacing */
@media (max-width: 768px) {
  :root {
    --section-spacing: var(--section-spacing-mobile);
  }
  
  h1 {
    font-size: var(--font-size-2xl);
  }
  
  h2 {
    font-size: var(--font-size-xl);
  }
  
  h3 {
    font-size: var(--font-size-lg);
  }
}

html, body, section, header {
  margin:0!important;
  padding:0!important;
  width:100%!important;
  }

a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none;
    text-decoration-line: none;
}


input[type="file"] {
  cursor: pointer!important;
  font: 300 14px sans-serif;
  color:#9e9e9e;
  }

input[type="file"]::-webkit-file-upload-button{
  font: 300 14px  sans-serif;
  background: #009688;
  border: 0;
  padding: 12px 25px;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  }

input[type="file"]::-ms-browse {
  font: 300 14px 'Roboto', sans-serif;
  background: #009688;
  border: 0;
  padding: 12px 25px;
  cursor: pointer;
  color: #fff;
  text-transform: uppercase;
  }

/* =========== MEMBERSHIP BAR ======== */

#myShopButton{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-decoration: none;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    transition: .4s;
}

#shoppingCartButton{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-decoration: none;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    /* overflow:hidden rozeti ::after ile kesiyordu; sayaç köşede taşmalı */
    overflow: visible;
    transition: .4s;
}

#ordersButton{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-decoration: none;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: visible;
    transition: .4s;
}

#membersButton{
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-decoration:none;
    min-width: 64px;
    height: 64px;
    border-radius:5em;
    overflow: hidden;
    transition: .4s;
    font-weight:500;
}

#myShopIcon{
    font-size: 1.6em;
    margin-top: -0.5em;
}

#shoppingCartIcon{
    font-size: 1.6em;
    margin-top: -0.5em;
}

#ordersIcon{
    font-size: 1.6em;
    margin-top: -0.5em;
}

#membersIcon{
    font-size: 1.6em;
    margin-bottom: -0.25em;
}

#membersButton:hover{
    color:#51585e;
}

#shoppingCartButton:hover, #ordersButton:hover, #membersButton:hover, #myShopButton:hover{
    background-color: #f7f7f7;
}

.dropdown-menu a:active {
    background-color: #292b2c;
    border-color: #292b2c;
}

/* ============= SLOGANLAR ================ */
.required{
  color: red!important;
  }

/* ============= KOK WHOWEARE (anasayfa değer önerisi) ================ */

.core-jumbo-banner {
  width: 100%;
  margin: 0 0 1rem;
  line-height: 0;
}

.core-jumbo-banner__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

section.core-whoweare {
  width: 100% !important;
  clear: both;
  padding: var(--section-spacing-mobile) 0 !important;
  background: linear-gradient(180deg, #fff 0%, var(--core-surface) 100%);
  box-sizing: border-box;
}

@media (min-width: 768px) {
  section.core-whoweare {
    padding-top: var(--section-spacing) !important;
    padding-bottom: var(--section-spacing) !important;
  }
}

.core-whoweare__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.core-whoweare__intro {
  width: 100%;
  max-width: 36rem;
  margin: 0 auto var(--spacing-xl);
}

.core-whoweare__eyebrow {
  margin: 0 0 var(--spacing-xs);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--core-brand);
}

.core-whoweare__title {
  margin: 0 0 var(--spacing-sm);
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--core-text);
  line-height: var(--line-height-tight);
}

@media (min-width: 768px) {
  .core-whoweare__title {
    font-size: var(--font-size-3xl);
  }
}

.core-whoweare__lead {
  margin: 0;
  font-size: var(--font-size-base);
  color: var(--core-text-muted);
  line-height: var(--line-height-relaxed);
}

.core-whoweare__cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--spacing-lg);
  width: 100%;
  margin: 0;
}

@media (max-width: 991.98px) {
  .core-whoweare__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px) {
  .core-whoweare__cards {
    grid-template-columns: minmax(0, 1fr);
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.core-whoweare__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-lg) var(--spacing-md);
  background: #fff;
  border: 1px solid rgba(69, 184, 172, 0.12);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.core-whoweare__card:hover {
  transform: translateY(-4px);
  border-color: rgba(69, 184, 172, 0.35);
  box-shadow: 0 12px 32px rgba(69, 184, 172, 0.12);
}

.core-whoweare__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: var(--spacing-md);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--core-brand) 0%, var(--core-brand-dark) 100%);
  color: #fff;
  font-size: 1.35rem;
  box-shadow: 0 4px 14px rgba(69, 184, 172, 0.35);
}

.core-whoweare__card-title {
  margin: 0 0 var(--spacing-xs);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-semibold);
  color: var(--core-text);
  line-height: var(--line-height-tight);
}

.core-whoweare__card-text {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--core-text-muted);
  line-height: var(--line-height-relaxed);
}

/* ============= SLOGANLAR (legacy) ================ */

.border-light {
  width: 90px;
  }

.section-title {
  width: 30%;
  border: 1px solid #434444;
  }

/* =========================== RESPONSIVE =========================== */

@media screen and (min-width: 940px){
  .ortaklar img{
    height: 30px;
  }
}

@media screen and (min-width: 300px) and (max-width: 940px){
  .ortaklar img{
    height: 30px;
  }

  .ortakrow{
    /* Mobilde yatay kaymaya sebep oluyordu – genişliği ekrana sabitledik */
    width: 100%;
    text-align: center;
    margin-bottom: 12px;
  }
}

/* ============= MODERN PRODUCT CARD DESIGN ================ */

.product-card-wrapper {
  padding: 0 10px;
}

.product-card-modern {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Product Image Container */
.product-image-container {
  position: relative;
  width: 100%;
  padding-top: 75%; /* 4:3 aspect ratio */
  overflow: hidden;
  background: #f5f5f5;
}

.product-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
  transition: transform 0.3s ease;
}

.product-card-modern:hover .product-image {
  transform: scale(1.05);
}

/* Product Badges */
.product-badge {
  position: absolute;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 12px;
  border-radius: 20px;
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.discount-badge {
  top: 10px;
  left: 10px;
  background: #dc3545;
  color: #fff;
}

.core-campaign-badge {
  top: 10px;
  left: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.core-campaign-badge--percent {
  background: #dc3545;
  color: #fff;
}

.core-campaign-badge--fixed {
  background: #e85d04;
  color: #fff;
}

.shipping-badge {
  bottom: 10px;
  left: 10px;
  background: #28a745;
  color: #fff;
}

/* Product Info Section */
.product-info {
  padding: 15px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-brand {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 8px;
  font-weight: 500;
}

.product-rating-section {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.product-rating-number {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}

.product-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.product-stars .star {
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  color: #ddd;
  position: relative;
}

.product-stars .star-full {
  color: #ffc107;
}

.product-stars .star-half {
  color: #ffc107;
  opacity: 0.5;
}

.product-stars .star-empty {
  color: #e0e0e0;
}

.product-reviews-count {
  font-size: 0.85rem;
  color: #666;
  margin-left: 4px;
}

.product-title {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.4;
  flex-grow: 1;
}

.product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: #007bff;
}

.product-price {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: auto;
}

.original-price {
  font-size: 0.9rem;
  color: #999;
  text-decoration: line-through;
}

.current-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .product-card-wrapper {
    padding: 0 5px;
  }
  
  .product-info {
    padding: 12px;
  }
  
  .product-title {
    font-size: 0.95rem;
  }
  
  .current-price {
    font-size: 1.05rem;
  }
}

/* ============= MODERN SECTION TITLE STYLING ================ */
.section-title-wrapper {
  max-width: var(--site-content-max-width);
  margin-left: auto;
  margin-right: auto;
  margin-top: var(--section-spacing, 4rem);
  margin-bottom: var(--spacing-lg, 2rem);
  padding: 0 var(--site-content-gutter);
  box-sizing: border-box;
}

.container > .section-title-wrapper {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

.section-title-modern {
  font-size: var(--font-size-2xl, 1.5rem);
  font-weight: var(--font-weight-semibold, 600);
  text-align: center;
  color: #333;
  margin-bottom: var(--spacing-md, 1.5rem);
  padding-bottom: var(--spacing-sm, 1rem);
  border-bottom: 2px solid #e0e0e0;
  font-family: 'Montserrat', sans-serif;
  line-height: var(--line-height-tight, 1.25);
}

/* Section Container Spacing */
.section-container {
  margin-bottom: var(--section-spacing, 4rem);
}

@media (max-width: 768px) {
  .section-title-wrapper {
    margin-top: var(--section-spacing-mobile, 2.5rem);
    padding-left: var(--site-content-gutter-mobile);
    padding-right: var(--site-content-gutter-mobile);
  }
  
  .section-title-modern {
    font-size: var(--font-size-xl, 1.25rem);
  }
}

/* ============= MODERN HEADER / NAVBAR STYLING ================ */

/* Sticky Header — block layout: .container margin:auto ile sayfada ortalanır (flex navbar bunu bozar) */
.navbar.topBar {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: var(--spacing-sm, 1rem) 0;
  display: block;
  width: 100%;
}

/* Bootstrap .navbar > .container { display:flex } yerine — içerik modern-header-row'da */
.navbar.topBar > .container {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (min-width: 992px) {
  .navbar.topBar > .container {
    max-width: 920px;
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }

  .modern-header-row {
    gap: 0.75rem;
  }

  .modern-search-form {
    max-width: 400px;
  }
}

.modern-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: var(--spacing-md, 1.5rem);
}

/* Site logosu — SVG/raster; admin yüklemesi boyutundan bağımsız sabit şerit yüksekliği */
.modern-logo-wrapper {
  flex: 0 0 auto;
  flex-shrink: 0;
  min-width: 120px;
  max-width: 220px;
  overflow: visible;
}

.modern-logo-wrapper .navbar-brand {
  display: inline-flex;
  align-items: center;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1;
  max-width: 100%;
}

.modern-logo {
  display: block;
  height: 50px;
  width: auto;
  max-width: 100%;
  max-height: 50px;
  object-fit: contain;
  object-position: left center;
}

/* Modern Search Bar */
.modern-search-form {
  flex: 1 1 auto;
  max-width: 600px;
  min-width: 0;
}

.modern-search-input-group {
  display: flex;
  align-items: stretch;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.15s ease-in-out;
}

.modern-search-input-group:focus-within {
  box-shadow:
    0 0 0 0.2rem rgba(0, 123, 255, 0.25),
    0 2px 4px rgba(0, 0, 0, 0.1);
}

.modern-search-input-group .form-control {
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base, 1rem);
  background-color: #fff;
  flex: 1 1 auto;
  min-width: 0;
  align-self: stretch;
}

.modern-search-input-group .form-control:focus {
  outline: none;
  box-shadow: none;
  background-color: #fff;
}

/* Tarayıcı otomatik doldurma — mavi yarı saydam kaplama input içinde kayık görünmesin */
.modern-search-input-group .form-control:-webkit-autofill,
.modern-search-input-group .form-control:-webkit-autofill:hover,
.modern-search-input-group .form-control:-webkit-autofill:focus,
.modern-search-input-group .form-control:-webkit-autofill:active,
.modern-search-input-group .form-control:autofill {
  -webkit-text-fill-color: #212529;
  caret-color: #212529;
  box-shadow: 0 0 0 1000px #fff inset !important;
  transition: background-color 99999s ease-out, color 99999s ease-out;
}

.modern-search-input-group .btn {
  border-radius: 0 8px 8px 0;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: var(--font-weight-medium, 500);
  flex-shrink: 0;
  align-self: stretch;
}

.modern-search-input-group .btn:focus {
  outline: none;
  box-shadow: none;
}

/* Modern Compact Buttons */
.modern-header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs, 0.5rem);
  flex-wrap: wrap;
  flex: 0 0 auto;
  flex-shrink: 0;
}

.modern-icon-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: #333;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  position: relative;
}

.modern-icon-button:hover {
  background-color: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modern-icon-button i {
  font-size: 1.25rem;
  margin-bottom: 2px;
}

.modern-icon-button .button-label {
  font-size: 0.7rem;
  font-weight: var(--font-weight-medium, 500);
  line-height: 1;
}

/* Navbar — ikon üstte, etiket altta (dikey yükseklik sabit) */
.modern-icon-button.modern-icon-button--labeled {
  width: 42px;
  min-width: 42px;
  height: auto;
  min-height: 44px;
  padding: 0.35rem 0.2rem 0.25rem;
  gap: 0.1rem;
}

.modern-icon-button.modern-icon-button--labeled:hover {
  transform: none;
}

.modern-icon-button__glyph {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modern-icon-button__glyph i {
  font-size: 1.15rem;
  margin-bottom: 0;
}

.modern-icon-button__caption {
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.05;
  text-align: center;
  max-width: 52px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #444;
}

.modern-icon-button.modern-icon-button--labeled.badge-button[data-badge]:not([data-badge=""])::after {
  top: 0;
  right: 0;
  transform: translate(35%, -35%);
}

.modern-icon-button.badge-button[data-badge]:not([data-badge=""])::after {
  content: attr(data-badge);
  position: absolute;
  /* Yuvarlak butonun üst-sağ köşesinin dışına taşır */
  top: 2px;
  right: 2px;
  transform: translate(45%, -45%);
  background: #dc3545;
  color: white;
  border-radius: 999px;
  padding: 2px 6px;
  font-size: 0.65rem;
  font-weight: var(--font-weight-bold, 700);
  min-width: 18px;
  min-height: 18px;
  line-height: 1.15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 20;
  box-shadow: 0 0 0 2px #fff;
  pointer-events: none;
}

.core-header-user-dropdown {
  min-width: 15rem;
}

.core-header-user-dropdown .core-user-menu-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 0.55rem 1rem 0.3rem;
  margin-bottom: 0;
  line-height: 1.35;
  white-space: normal;
  overflow-wrap: break-word;
}

.core-header-user-dropdown .dropdown-item + .core-user-menu-section-title,
.core-header-user-dropdown .core-user-menu-link + .core-user-menu-section-title {
  margin-top: 0.15rem;
  padding-top: 0.7rem;
  border-top: 1px solid #f0f2f5;
}

.core-header-user-dropdown .dropdown-divider + .core-user-menu-section-title {
  padding-top: 0.45rem;
  border-top: 0;
}

.core-user-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.core-user-menu-link__label {
  flex: 1 1 auto;
}

.core-user-menu-link__label i {
  margin-right: 0.4rem;
}

.core-user-menu-link__kicker {
  flex: 0 0 auto;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.core-header-user-dropdown .core-user-menu-link--seasonal {
  margin: 0.45rem 0.6rem 0.35rem;
  width: auto;
  border: 1px solid rgba(104, 65, 168, 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 216, 128, 0.55), transparent 34%),
    linear-gradient(135deg, #f4edff 0%, #fff3df 100%);
  color: #493366;
  box-shadow: 0 6px 16px rgba(79, 54, 112, 0.09);
}

.core-header-user-dropdown .core-user-menu-link--seasonal:hover {
  color: #342247;
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 216, 128, 0.72), transparent 36%),
    linear-gradient(135deg, #eee2ff 0%, #ffedcf 100%);
}

.core-user-menu-link--seasonal .core-user-menu-link__kicker {
  color: #fff;
  background: #6841a8;
}

.core-user-menu-link--seasonal > .bi-gift,
.core-user-menu-link--seasonal .bi-gift {
  color: #6841a8;
}

.core-mobile-nav__link.core-user-menu-link--seasonal {
  border: 1px solid rgba(104, 65, 168, 0.2);
  border-radius: 12px;
  background: linear-gradient(135deg, #f4edff 0%, #fff3df 100%);
  color: #493366;
}

.core-user-menu-badge {
  flex: 0 0 auto;
  background: #dc3545;
  color: #fff;
  border-radius: 999px;
  padding: 0.1rem 0.45rem;
  font-size: 0.7rem;
  font-weight: var(--font-weight-bold, 700);
  min-width: 1.1rem;
  line-height: 1.2;
  text-align: center;
}

.core-user-menu-badge[hidden],
.core-user-menu-badge:empty {
  display: none;
}

.core-user-menu-add-icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #45b8ac 0%, #3a9b8f 100%);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(69, 184, 172, 0.35);
}

.core-user-menu-link--add-product .core-user-menu-link__label i {
  margin-right: 0.35rem;
  opacity: 0.85;
}

/* Modern Blog Link */
.modern-blog-link {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: transparent;
  color: #666;
  text-decoration: none;
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: var(--font-weight-medium, 500);
  transition: all 0.2s ease;
}

.modern-blog-link:hover {
  background-color: #f5f5f5;
  color: #333;
  text-decoration: none;
}

.modern-blog-link i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Modern Dropdown Button */
.modern-dropdown-button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  background: transparent;
  border: none;
  color: #333;
  font-size: var(--font-size-sm, 0.875rem);
  font-weight: var(--font-weight-medium, 500);
  transition: all 0.2s ease;
  cursor: pointer;
}

.modern-dropdown-button:hover {
  background-color: #f5f5f5;
}

.modern-dropdown-button i {
  font-size: 1.25rem;
}

.core-mobile-menu-trigger {
  display: none;
  position: relative;
  z-index: 1041;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* Hamburger Menu for Mobile */
.modern-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
}

.modern-hamburger span {
  width: 24px;
  height: 2px;
  background: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 991.98px) {
  .navbar.topBar {
    padding: 0.5rem 0 0.95rem;
  }

  .navbar.topBar > .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .modern-header-row {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "logo actions"
      "search search";
    gap: 0.65rem 0.65rem;
    align-items: center;
    flex-wrap: unset;
  }

  .modern-logo-wrapper {
    grid-area: logo;
    flex: none;
    min-width: 120px;
    max-width: min(220px, 48vw);
    justify-self: start;
    overflow: visible;
  }

  .modern-header-actions {
    grid-area: actions;
    order: unset;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 0.35rem;
    max-width: 100%;
    position: relative;
    z-index: 2;
  }

  .modern-search-form {
    order: unset;
    grid-area: search;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-bottom: 0.15rem;
  }

  .modern-logo {
    max-width: 100%;
  }

  .core-header-desktop-only {
    display: none !important;
  }

  .core-mobile-menu-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-width: 44px;
    min-height: 44px;
    padding: 0.4rem 0.65rem;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    background: #fff;
    color: #333;
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
    cursor: pointer;
  }

  .core-mobile-menu-trigger i {
    font-size: 1.35rem;
    line-height: 1;
  }

  .core-mobile-menu-trigger__label {
    line-height: 1;
  }

  .modern-header-actions--seller .core-mobile-menu-trigger {
    padding: 0.45rem 0.75rem;
  }

  .modern-hamburger {
    display: none !important;
  }
}

@media (min-width: 992px) {
  .core-mobile-menu-trigger,
  .core-mobile-nav {
    display: none !important;
  }
}

/* Mobil tam ekran menü */
.core-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  pointer-events: none;
  visibility: hidden;
}

.core-mobile-nav:not(.is-open) {
  visibility: hidden;
  pointer-events: none;
}

.core-mobile-nav.is-open {
  pointer-events: auto;
  visibility: visible;
}

.core-mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.core-mobile-nav.is-open .core-mobile-nav__backdrop {
  opacity: 1;
}

.core-mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 22rem);
  max-width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.core-mobile-nav.is-open .core-mobile-nav__panel {
  transform: translateX(0);
}

.core-mobile-nav__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.85rem;
  border-bottom: 1px solid #eef1f4;
  background: linear-gradient(180deg, #f8fafb 0%, #fff 100%);
}

.core-mobile-nav__user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.core-mobile-nav__avatar {
  font-size: 2rem;
  color: #45B8AC;
  line-height: 1;
  flex-shrink: 0;
}

.core-mobile-nav__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.25;
  word-break: break-word;
}

.core-mobile-nav__subtitle {
  font-size: 0.8125rem;
  color: #6b7280;
  margin-top: 0.15rem;
}

.core-mobile-nav__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: #f3f4f6;
  color: #374151;
  flex-shrink: 0;
  cursor: pointer;
}

.core-mobile-nav__body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem 0.85rem 1.25rem;
}

.core-mobile-nav__section + .core-mobile-nav__section {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #f0f2f5;
}

.core-mobile-nav__section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #9ca3af;
  padding: 0 0.35rem 0.45rem;
}

.core-mobile-nav__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
  padding: 0.65rem 0.75rem;
  margin-bottom: 0.2rem;
  border-radius: 12px;
  color: #1f2937;
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}

.core-mobile-nav__link i {
  width: 1.25rem;
  text-align: center;
  font-size: 1.1rem;
  color: #45B8AC;
  flex-shrink: 0;
}

.core-mobile-nav__link:hover,
.core-mobile-nav__link:focus {
  background: rgba(69, 184, 172, 0.08);
  color: #0f766e;
  text-decoration: none;
}

.core-mobile-nav__link--accent {
  background: rgba(69, 184, 172, 0.1);
  font-weight: 600;
}

.core-mobile-nav__add-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  background: #fff;
  color: #3a9b8f;
  font-size: 0.72rem;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.core-mobile-nav__add-badge i {
  width: auto;
  font-size: 0.72rem;
  color: inherit;
}

.core-mobile-nav__link--danger i {
  color: #dc3545;
}

.core-mobile-nav__link--danger:hover,
.core-mobile-nav__link--danger:focus {
  background: rgba(220, 53, 69, 0.08);
  color: #b02a37;
}

body.core-mobile-nav-open {
  overflow: hidden;
}

@media (max-width: 576px) {
  .modern-icon-button {
    width: 40px;
    height: 40px;
  }

  .modern-icon-button.modern-icon-button--labeled {
    width: 38px;
    min-width: 38px;
    min-height: 40px;
    padding: 0.3rem 0.15rem 0.2rem;
  }

  .modern-icon-button__glyph i {
    font-size: 1.05rem;
  }

  .modern-icon-button__caption {
    font-size: 0.58rem;
    max-width: 46px;
  }
  
  .modern-icon-button i {
    font-size: 1.1rem;
  }
  
  .modern-icon-button .button-label {
    font-size: 0.65rem;
  }
  
  .modern-blog-link {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }

  .core-mobile-menu-trigger__label {
    display: none;
  }

  .core-mobile-menu-trigger {
    padding: 0.45rem;
  }
}

/* ============= HIT CATEGORY TITLE STYLING ================ */
.hit-category-title {
  border: 0.2px solid grey;
}

/* Hit kategori şeridi — geçici devre dışı (görünüm korunur) */
/* Hit kategori şeridi: yalnızca masaüstü (md ve üzeri) */
@media (max-width: 767.98px) {
  .core-hit-nav {
    display: none !important;
  }
}

.core-hit-nav--disabled .core-hit-nav__item {
  cursor: default;
  pointer-events: none;
  opacity: 1;
  color: inherit;
}

.core-hit-nav--disabled .nav-link {
  cursor: default;
}

/* ============= FORGOT PASSWORD RESULT STYLING ================ */
#sifremiUnuttumSonuc {
  color: red;
}