
@font-face {
  font-family: 'Gilroy-Regular';
  src: url('../gilroy/Gilroy-Regular.woff') format('woff'),
       url('../gilroy/Gilroy-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


* {
  box-sizing: border-box; 
}

body {
  font-family: 'Gilroy-Regular', sans-serif;
  margin: 0 !important;     
  padding: 0 !important;    
  background-color: #f8f8f8;
  overflow-x: hidden;
}


img {
  vertical-align: bottom; 
}


.main-header + *,
#fizyowe-overlay-menu + * {
  margin-top: 0 !important;
  padding-top: 0 !important;
}



.header-logo img {
  height: 75px !important;
  width: auto;
}


.header-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}
.header-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 24px;
  align-items: center;
}
.header-nav a {
  text-decoration: none;
  color: #404141;
  font-size: 15px;
  font-weight: normal;
  padding: 8px 0;
  transition: color 0.2s;
}
.header-nav a:hover {
  color: #2daae1;
}


.header-nav a.online-diet-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #2daae1; 
    color: white !important; 
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(45, 170, 225, 0.2);
}

.header-nav a.online-diet-btn:hover {
    background-color: #2591c0; 
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(45, 170, 225, 0.3);
    color: white !important;
}

.header-nav a.online-diet-btn svg {
    
    width: 18px;
    height: 18px;
    stroke-width: 2px;
}


.main-header {
  background-color: white;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  position: relative; 
  width: 100%;
  z-index: 500;
  margin-bottom: 0 !important; 
}

.header-container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}


.appointment-button-group {
  border-radius: 9999px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  display: flex; 
  overflow: hidden; 
  align-items: center;
  background-color: white; 
  padding: 0;
  border: 1px solid #e0e0e0;
}

.appointment-text-button {
  background-color: transparent;
  border: none;
  color: #2c2c2a;
  padding: 10px 18px 10px 20px; 
  text-decoration: none;
  font-weight: 500;
  transition: none;
  border-radius: 0; 
  font-size: 14px;
  height: 100%; 
  display: flex;
  align-items: center;
}
.appointment-icon-button {
  background-color: #2daae1; 
  border-radius: 50%; 
  padding: 6px; 
  width: 32px; 
  height: 32px; 
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px 0 0; 
  box-shadow: none; 
}
.appointment-icon-button svg {
  color: white; 
  width: 18px;
  height: 18px;
  transform: none; 
}


.icon-buttons {
  display: flex;
  align-items: center;
  border-radius: 9999px; 
  border: 1px solid #e0e0e0;
  background-color: white;
  padding: 0; 
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05); 
  height: 48px;
}

.action-icon-button {
  background-color: transparent;
  border: none;
  padding: 6px 10px;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  position: relative; 
}
.action-icon-button:first-child {
  padding-right: 8px;
}
.action-icon-button:hover {
  background-color: transparent; 
}
.action-icon-button svg {
  width: 18px; 
  height: 18px;
  stroke: #555; 
  stroke-width: 2;
  fill: none;
}
.action-icon-button.grid-icon svg {
  stroke: none;
  fill: #555;
}
.action-icon-button:first-child::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%; 
  background-color: #e0e0e0;
}


.menu-toggle-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 600;
}

@media (max-width: 768px) {
  .header-container {
    max-width: 100%;
    padding: 10px 15px;
  }
  .header-nav, .header-actions {
    display: none;
  }
  .menu-toggle-button {
    display: block;
  }
  .header-logo img {
    height: 65px !important;
  }
}