/* === COOKIE CONSENT THEME === */
:root {
  --cc-btn-primary-bg: #CC39A6;
  --cc-btn-primary-hover-bg: #aa2d8a;
  --cc-btn-primary-border-color: #CC39A6;
  --cc-btn-primary-hover-border-color: #aa2d8a;
  --cc-toggle-on-bg: #CC39A6;
  --cc-link-color: #CC39A6;
}

/* === HEADER RESPONSIVE MOBILE === */
.header-desktop { display: block; }
.header-mobile { display: none !important; }

@media (max-width: 768px) {
  .header-desktop { display: none !important; }
  .header-mobile { display: block !important; }

  .header-mobile.header {
    background: #ffffff !important;
    position: relative !important;
    z-index: 100 !important;
    padding: 5px 10px !important;
    margin: 0 !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
    height: 60px !important;
    box-sizing: border-box !important;
  }
  .header-mobile .header-inner {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: 100% !important;
    height: 100% !important;
    gap: 10px !important;
  }
  .header-mobile .mobile-toggle {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 0 0 40px !important;
    order: 1 !important;
  }
  .header-mobile .mobile-toggle .button {
    background: transparent !important;
    border: none !important;
    padding: 5px !important;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  .header-mobile .mobile-toggle .ico-bar {
    display: block !important;
    width: 24px;
    height: 3px;
    background: #000 !important;
    margin: 4px 0;
    border-radius: 2px;
  }
  .header-mobile .logo {
    flex: 1 1 auto !important;
    text-align: center !important;
    margin: 0 !important;
    float: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    order: 2 !important;
    overflow: hidden;
  }
  .header-mobile .logo a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .header-mobile .logo img {
    display: block !important;
    max-height: 40px !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    object-fit: contain !important;
  }
  .header-mobile .header-tools {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex: 0 0 40px !important;
    order: 3 !important;
  }
  .header-mobile .search-toggle-btn {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    cursor: pointer;
    color: #000;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  .header-mobile .search-toggle-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5px;
  }
  .header-mobile .search-mobile {
    display: none !important;
    background: #ffffff;
    padding: 10px;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 99;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  }
  .header-mobile .search-mobile.active { display: block !important; }
  .header-mobile .search-mobile input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box;
  }
  nav { display: none !important; width: 100%; }
  body.nav-open nav {
    display: block !important;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 99999;
    overflow-y: auto;
    border-top: 1px solid #eee;
  }
  .navigation { display: block !important; padding: 20px; }
  .navigation ul li { padding: 12px 0; border-bottom: 1px solid #f5f5f5; }
  .navigation ul li a {
    font-size: 16px;
    color: #333;
    display: block;
    text-decoration: none;
  }
  .navigation ul li a img { vertical-align: middle; margin-right: 8px; }
}