:root {
  --dark-bar: #000000;
  --mint-bg: #eff6f4;     
  --teal-text: #2a6659;   
  --magenta: #890070;     
  --header-bg: #ffffff;  
  --logo-blue: #0d1685;  
  --nav-bg: #ffffff;      
  --nav-text: #1a1a1a;   
  --nav-active: #2a6659; 
  --nav-highlight: #a50000;
  --icon-dark: #1a1a1a;   
  --search-bg: #ededef;   
  --white: #ffffff;
  --gray-border: #e2e2e4;
}

* { 
  box-sizing: border-box; 
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: #222;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

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

ul { 
  list-style: none; 
}

button { 
  font-family: inherit; 
  cursor: pointer; 
}
.site-header {
  width: 100%;
  position: relative;
  z-index: 100;
}

.promo-bar {
  background:rgba(0, 3, 36, 1) !important;
  color: #fff;
  text-align: center;
  height: 30px;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-bar p {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.site-header > img {
  display: block;
  width: 100%;
  height: auto; 
}

.main-header {
  background: var(--header-bg);
  display: flex;
  align-items: center;           
  justify-content: space-between;
  padding: 22px 48px;            
  width: 100%;
  max-width: 1440px; 
  margin: 0 auto;
  gap: 35px;                     
}

.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

/* LOGO BOYUTLANDIRMASI VE ORALANTISI */
.logo img {
  height: 60px;                  
  width: auto;
  display: block;
  object-fit: contain;
}

.search-wrap {
  flex: 1;
  max-width: 620px;              
  position: relative;
  display: flex;
  align-items: center;
  background: var(--search-bg);
  border-radius: 24px;
  padding: 0 18px 0 22px;
  height: 44px;    
}

.search-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 14px;
  color: #1a1a1a;
  width: 100%;
}

.search-input::placeholder {
  color: #757577;
}

.search-btn {
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.search-btn .lucide {
  width: 18px;
  height: 18px;
  stroke: var(--icon-dark);
  stroke-width: 1.8;
}

.search-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #ffffff;
  border: 1px solid var(--gray-border);
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  padding: 20px;
  display: none;
  z-index: 150;
}

.search-dropdown.open {
  display: block;
}

.search-dropdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
}

.close-search {
  background: transparent;
  border: none;
  font-size: 18px;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-search .lucide {
  width: 16px;
  height: 16px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  background: #f1f1f3;
  color: #333;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  border: none;
  transition: background 0.2s;
}

.chip:hover {
  background: #e2e2e5;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;                     
  flex-shrink: 0;
}

.account-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;                      
  font-size: 14px;               
  font-weight: 500;
  color: var(--icon-dark);
  cursor: pointer;
  white-space: nowrap;
}

.account-item::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: var(--gray-border);
  margin-left: 14px;
}

.account-item .lucide {
  width: 22px;
  height: 22px;
  stroke: var(--icon-dark);
  stroke-width: 1.6;
}

.action-item {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  flex-shrink: 0;
  transition: border-color 0.2s;
}

.action-item:hover {
  border-color: #ccc;
}

.action-item .lucide {
  width: 20px !important;        
  height: 20px !important;
  stroke: var(--icon-dark);
  stroke-width: 1.6;             
  fill: none;
  display: block;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #ffffff;
  border: 1px solid var(--gray-border);
  border-radius: 6px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  min-width: 160px;
  padding: 6px 0;
  display: none;
  z-index: 160;
}

.account-item:hover .account-dropdown,
.account-item.open .account-dropdown {
  display: block;
}

.account-dropdown a {
  display: flex;         
  align-items: center;   
  padding: 10px 16px;
  font-size: 13px;
  color: #333;
  transition: all 0.2s ease;
}

.account-dropdown a::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid #222;  
  border-top: 1.5px solid #222;    
  transform: rotate(45deg);        
  margin-right: 10px;              
}

.account-dropdown a:hover {
  background: #f5f5f7;
  color: var(--nav-active);
}

.badge {
  position: absolute;
  top: -4px;                     
  right: -4px;
  background: #000000;           
  color: #ffffff;
  font-size: 10px;                
  font-weight: 700;
  width: 20px;                   
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff; 
  line-height: 1;
}

.category-nav {
  background: var(--nav-bg);
  width: 100%;
}

.category-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;       
  flex-wrap: wrap;
  gap: 22px;                     
  max-width: 1440px;
  margin: 0 auto;
  padding: 12px 48px;
}

.category-nav ul li {
  position: relative; 
}

.category-nav a {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--nav-text);
  padding: 6px 0;
  display: inline-block;
  white-space: nowrap;
}

.category-nav li.active a {
  color: #358D32;
}

.category-nav li.highlight a {
  color: var(--nav-highlight);
  font-weight: 300;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--gray-border);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
  padding: 24px;
  display: none; 
  gap: 40px;
  min-width: 750px;
  z-index: 200;
  border-radius: 0 0 8px 8px;
}

.category-nav ul li:hover .mega-menu {
  display: flex;
}

.quick-cats {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;                    
  padding: 20px 30px;            
  background: #ffffff;
  flex-wrap: nowrap;             
  overflow-x: auto;              
  max-width: 1440px;
  margin: 0 auto;
  scrollbar-width: none;         
}

.quick-cats::-webkit-scrollbar {
  display: none;                 
}
.quick-cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  width: 100px; 
  text-align: center;
  gap: 12px;                     
  flex-shrink: 0;                
  cursor: pointer; 
}

.quick-cat img {
  width: 100px;                   
  height: 100px;                  
  border-radius: 50%;
  object-fit: scale-down;        
  background: #ffffff;
  border: 3px solid #cacaca;     
  padding: 2px; 
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.quick-cat:hover img {
  transform: scale(1.08);             
  background-color: #0E5DB5; 
  border-color: #0E5DB5;     
  filter: brightness(1); 
}

.quick-cat span {
  font-size: 12.5px;               
  font-weight: 400;
  color: #333333;
  line-height: 1.4;
  display: block;
  max-width: 105px;
  transition: color 0.2s ease;
}

.quick-cat:hover span {
  color: var(--logo-blue);
}
@media (max-width: 1100px) {
  .main-header {
    padding: 12px 24px;
    gap: 20px;
  }
  
  .category-nav ul {
    gap: 5px;
    padding: 10px 20px;
  }
}