/* ============= 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 */
}

/* 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);
}

/* Modern Container with Better Spacing */
.container-fluid.modern-container {
  padding-left: var(--spacing-lg, 2rem);
  padding-right: var(--spacing-lg, 2rem);
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .container-fluid.modern-container {
    padding-left: var(--spacing-md, 1.5rem);
    padding-right: var(--spacing-md, 1.5rem);
  }
}

/* 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;
    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: hidden;
    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;
}

.textIconButtons{
    margin-top: -0.5em;
    font-size: 0.55em!important;
}

.textMembersButton{
    font-size: 0.75em;
    font-weight:400;
}

#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;
}

/* ============= BLOG ================ */

.blogButton{
  display: block;
  text-decoration: none;
  background: #F7CAC9;
  color: #FFF;
  width: 98px;
  height: 98px;
  font-size: 1em;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  transition: .4s;
  cursor: pointer;
}

.blogButton:hover{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  color: #FFF;
}

.blog-title{
  color: #3d3d3d;
  font-size: 1.5em;
  font-weight: 800;
  width: 100%;
}

.blog-desc{
  color: #3d3d3d;
  font-size: 1.1em;
  font-weight: 500;
  width: 100%;
}

.blog-box{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.box-img{
  width: 10em;
  height: 10em;
}

.box-img img{
  width: 10em;
  height: 10em;
  object-fit: cover;
}

.box-img-single img{
  width: 20em;
  height: 20em;
  object-fit: cover;
}

/* ============= SLOGANLAR ================ */
.required{
  color: red!important;
  }

.whoweare-item {
  height: 18em;
  padding:60px 30px;
  box-shadow: 0 0 10px rgba(0, 0, 0, .1);
  }

/* ============= SLOGANLAR ================ */

.border-light {
  width: 90px;
  }

.section-title {
  width: 30%;
  border: 1px solid #434444;
  }

/*=================== SMALL BOX - İLAN VER KUTULARI ===============*/

.small-box {
  border-radius: 0.25rem;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.125), 0 1px 3px rgba(0, 0, 0, 0.2);
  display: block;
  position: relative;
  }

.small-box:hover {
  background: rgba(0, 0, 0, 0.15);
  color: #ffffff;
  }

.small-box > .small-box-footer {
  background: rgba(0, 0, 0, 0.1);
  color: rgba(255, 255, 255, 0.8);
  display: block;
  padding: 3px 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  z-index: 10;
  height: 40px;
  }

.small-box > .small-box-footer:hover {
  background: rgba(0, 0, 0, 0.15);
  color: #ffffff;
  }

.small-box h4 {
  min-height: 92px;
  font-size: 2.2rem;
  font-weight: bold;
  padding: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  color: white;
  }

.small-box p {
  font-size: 1.2rem;
  color: white;
  }

.small-box p > small {
  color: #f8f9fa;
  display: block;
  font-size: 0.9rem;
  margin-top: 5px;
  }

.small-box .icon {
  color: rgba(0, 0, 0, 0.15);
  }

.small-box .icon > i {
  right: 20px;
  font-size: 48px;
  margin-top:15px;
  position: absolute;
  transition: all 0.3s linear;
  }

.small-box:hover .icon > i {
  font-size: 55px;
  }

.small-box:hover {
  text-decoration: none;
  }

/* ================= YENI RENK TANIMLARI (PASTEL / SOFT) ================= */

/* GENEL KUTU AYARLARI - Yukarıdaki .small-box tanımı (satır 211-280) kullanılıyor, tekrar tanımlamaya gerek yok */

/* GENEL HOVER TANIMINI YENİ RENKLER İÇİN DEVRE DIŞI BIRAK */
.small-box.box-soft-blue:hover,
.small-box.box-soft-green:hover,
.small-box.box-soft-orange:hover,
.small-box.box-soft-red:hover,
.small-box.box-soft-purple:hover,
.small-box.box-soft-gray:hover {
  background: inherit !important;
  color: inherit;
}

/* 1. MAVİ TON (Mobilyalar İçin) */
.box-soft-blue {
background-color: #e3f2fd !important; /* Çok açık buz mavisi */
border: 1px solid #bbdefb;
}
.box-soft-blue h4 { color: #1565c0 !important; }      /* Başlık: Koyu Mavi */
.box-soft-blue p { color: #1565c0 !important; }        /* Paragraf: Koyu Mavi */
.box-soft-blue .icon > i { color: #2196f3 !important; } /* İkon: Orta Mavi */
.box-soft-blue .small-box-footer { background: rgba(33, 150, 243, 0.1) !important; color: #1565c0 !important; }
.box-soft-blue:hover { background-color: #bbdefb !important; } /* Hover'da bir tık koyulaşma */


/* 2. YEŞİL TON (Dekorasyon İçin) */
.box-soft-green {
background-color: #e8f5e9 !important; /* Çok açık nane yeşili */
border: 1px solid #c8e6c9;
}
.box-soft-green h4 { color: #2e7d32 !important; }     /* Başlık: Koyu Yeşil */
.box-soft-green p { color: #2e7d32 !important; }      /* Paragraf: Koyu Yeşil */
.box-soft-green .icon > i { color: #4caf50 !important; }
.box-soft-green .small-box-footer { background: rgba(76, 175, 80, 0.1) !important; color: #2e7d32 !important; }
.box-soft-green:hover { background-color: #c8e6c9 !important; }


/* 3. TURUNCU/SARI TON (Tekstil İçin) */
.box-soft-orange {
background-color: #fff3e0 !important; /* Çok açık krem/turuncu */
border: 1px solid #ffe0b2;
}
.box-soft-orange h4 { color: #e65100 !important; }    /* Başlık: Koyu Turuncu */
.box-soft-orange p { color: #e65100 !important; }     /* Paragraf: Koyu Turuncu */
.box-soft-orange .icon > i { color: #ff9800 !important; }
.box-soft-orange .small-box-footer { background: rgba(255, 152, 0, 0.1) !important; color: #e65100 !important; }
.box-soft-orange:hover { background-color: #ffe0b2 !important; }


/* 4. KIRMIZI/PEMBE TON (Aydınlatma İçin) */
.box-soft-red {
background-color: #ffebee !important; /* Çok açık gül pembesi */
border: 1px solid #ffcdd2;
}
.box-soft-red h4 { color: #c62828 !important; }       /* Başlık: Koyu Kırmızı */
.box-soft-red p { color: #c62828 !important; }        /* Paragraf: Koyu Kırmızı */
.box-soft-red .icon > i { color: #f44336 !important; }
.box-soft-red .small-box-footer { background: rgba(244, 67, 54, 0.1) !important; color: #c62828 !important; }
.box-soft-red:hover { background-color: #ffcdd2 !important; }


/* 5. MOR TON (Ekstra) */
.box-soft-purple {
background-color: #f3e5f5 !important; /* Çok açık mor */
border: 1px solid #e1bee7;
}
.box-soft-purple h4 { color: #6a1b9a !important; }    /* Başlık: Koyu Mor */
.box-soft-purple p { color: #6a1b9a !important; }      /* Paragraf: Koyu Mor */
.box-soft-purple .icon > i { color: #9c27b0 !important; }
.box-soft-purple .small-box-footer { background: rgba(156, 39, 176, 0.1) !important; color: #6a1b9a !important; }
.box-soft-purple:hover { background-color: #e1bee7 !important; }


/* 6. GRİ TON (Varsayılan/Yedek) */
.box-soft-gray {
background-color: #f5f5f5 !important;
border: 1px solid #e0e0e0;
}
.box-soft-gray h4 { color: #616161 !important; }
.box-soft-gray p { color: #616161 !important; }
.box-soft-gray .icon > i { color: #9e9e9e !important; }
.box-soft-gray .small-box-footer { background: rgba(158, 158, 158, 0.1) !important; color: #616161 !important; }
.box-soft-gray:hover { background-color: #e0e0e0 !important; }

/* ============= ÜRÜNLER GRUBU (ESKİ STİLLER - GERİYE UYUMLULUK İÇİN) ================ */
/* NOT: Bu stiller artık kullanılmıyor, yeni modern product-card-modern stilleri kullanılıyor */
/* Gelecekte kaldırılabilir, şimdilik geriye uyumluluk için bırakıldı */

.product-grid{
  padding: 20px;
}

.product-grid:hover{
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.image{
  position: relative;
  width: 100%;
  height: 12em;
}

.image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(67, 68, 68, 0.7);
}

.image:hover .overlay{
  opacity: 1;
}

.detail{
  color: #fff;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  align-items: center;
}

.buy{
  background-color: transparent;
  color: #434444;
  border-radius: 0!important;
  border: 1px solid #434444!important;
  width: 100%;
}

.buy:hover{
  background-color: #434444;
  color: #fff!important;
}

.marka{
  padding: 1px;
  background-color: darkcyan;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  max-width: 100%;
  }

.fiyat{
  padding: 4px;
  background-color: #FF6F61;
  color: white;
  border-radius: 6px;
  font-weight: 600;
  max-width: 100%;
  font-size: 0.75em;
  }

.fiyat span{
  font-size: 0.8em;
  }

.productPr{
  text-align: center;
  font-weight: 600;
  font-size: 0.7em;
  margin-bottom: -0.5em;
  }

.productPrCek{
  text-align: center;
  font-weight: 600;
  font-size: 1.2em;
  }

.uresimkutu{
  width: 184px;
  height: 200px;
  }

.uresim{
  max-width: 183px;
  max-height: 200px;
  }

/* =========================== 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;
}

.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 {
  margin-top: var(--section-spacing, 4rem);
  margin-bottom: var(--spacing-lg, 2rem);
  padding: 0 var(--spacing-lg, 2rem);
}

.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: 0 var(--spacing-md, 1.5rem);
  }
  
  .section-title-modern {
    font-size: var(--font-size-xl, 1.25rem);
  }
}

/* ============= MODERN HEADER / NAVBAR STYLING ================ */

/* Sticky Header */
.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;
}

/* Modern Single Column Layout */
.modern-header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--spacing-lg, 2rem);
}

.modern-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-md, 1.5rem);
}

/* Responsive Logo */
.modern-logo {
  max-width: 200px;
  height: auto;
  width: auto;
}

@media (max-width: 768px) {
  .modern-logo {
    max-width: 150px;
  }
}

/* Modern Search Bar */
.modern-search-form {
  flex: 1;
  max-width: 600px;
  min-width: 250px;
}

.modern-search-input-group {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.modern-search-input-group .form-control {
  border: none;
  border-radius: 0;
  padding: 0.75rem 1rem;
  font-size: var(--font-size-base, 1rem);
}

.modern-search-input-group .btn {
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  border: none;
  font-weight: var(--font-weight-medium, 500);
}

/* Modern Compact Buttons */
.modern-header-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-xs, 0.5rem);
  flex-wrap: wrap;
}

.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;
}

.modern-icon-button.badge-button[data-badge]:not([data-badge=""])::after {
  content: attr(data-badge);
  position: absolute;
  top: -4px;
  right: -4px;
  background: #dc3545;
  color: white;
  border-radius: 10px;
  padding: 2px 6px;
  font-size: 0.65rem;
  font-weight: var(--font-weight-bold, 700);
  min-width: 18px;
  text-align: center;
  z-index: 10;
}

/* 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;
}

/* 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: 991px) {
  .modern-header-row {
    flex-wrap: wrap;
  }
  
  .modern-search-form {
    order: 3;
    width: 100%;
    max-width: 100%;
  }
  
  .modern-header-actions {
    order: 2;
  }
  
  .modern-hamburger {
    display: flex;
    order: 1;
  }
}

@media (max-width: 576px) {
  .modern-header-container {
    padding: 0 var(--spacing-sm, 1rem);
  }
  
  .modern-icon-button {
    width: 40px;
    height: 40px;
  }
  
  .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;
  }
}

/* ============= SELLER INFO STYLING ================ */
.seller-info-icon {
  font-size: 1.6em;
}

.seller-info-text {
  font-size: 1.2em;
  font-style: italic;
  margin-left: 0.5rem;
}

.seller-info-empty {
  color: grey;
}

/* ============= HIT CATEGORY TITLE STYLING ================ */
.hit-category-title {
  border: 0.2px solid grey;
}

/* ============= FORGOT PASSWORD RESULT STYLING ================ */
#sifremiUnuttumSonuc {
  color: red;
}