/* ── COOKIE CONSENT ── */

body.cookie-lock-scroll {
    overflow: hidden;
  }
  
  .cookie-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9999;
    align-items: flex-start;
    justify-content: center;
    padding: 8vh 16px;
    overflow-y: auto;
  }
  
  .cookie-modal {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 640px;
    border-radius: var(--border-radius, 12px);
    padding: 44px 40px 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  }
  
  .cookie-close {
    position: absolute;
    top: 16px;
    right: 18px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #666;
    line-height: 1;
  }
  
  .cookie-close:hover { color: var(--red, #e8202a); }
  
  .cookie-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 18px;
  }
  
  .cookie-logo {
    height: 56px;
    width: auto;
  }
  
  .cookie-title {
    font-family: var(--font-display, 'Oswald', sans-serif);
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 18px;
    padding-right: 24px;
  }
  
  .cookie-text {
    font-size: 14.5px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 28px;
  }
  
  .cookie-btn-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
  }
  
  .cookie-btn {
    flex: 1 1 150px;
    padding: 14px 18px;
    border-radius: var(--border-radius, 8px);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
  }
  
  .cookie-btn-dark {
    background: #2b2b2b;
    color: #fff;
  }
  
  .cookie-btn-dark:hover { background: var(--red, #e8202a); }
  
  .cookie-btn-outline {
    background: transparent;
    color: #2b2b2b;
    border: 1px solid #ccc;
  }
  
  .cookie-btn-outline:hover { border-color: var(--red, #e8202a); color: var(--red, #e8202a); }
  
  .cookie-footer-links {
    font-size: 13px;
    color: #555;
  }
  
  .cookie-footer-links a {
    color: #555;
    text-decoration: underline;
  }
  
  .cookie-footer-links a:hover { color: var(--red, #e8202a); }
  
  .cookie-sep {
    margin: 0 8px;
    color: #aaa;
  }
  
  /* ── SETTINGS PANEL ── */
  
  .cookie-category {
    border: 1px solid #eee;
    border-radius: var(--border-radius, 8px);
    padding: 16px 18px;
    margin-bottom: 14px;
  }
  
  .cookie-category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  
  .cookie-category-name {
    font-weight: 600;
    font-size: 15px;
  }
  
  .cookie-category-text {
    font-size: 13px;
    color: #666;
    margin: 8px 0 0;
    line-height: 1.5;
  }
  
  .cookie-switch {
    position: relative;
    display: inline-block;
    width: 42px;
    height: 24px;
    flex-shrink: 0;
  }
  
  .cookie-switch input { opacity: 0; width: 0; height: 0; }
  
  .cookie-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background-color: #ccc;
    border-radius: 999px;
    transition: 0.2s;
  }
  
  .cookie-slider::before {
    content: "";
    position: absolute;
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    border-radius: 50%;
    transition: 0.2s;
  }
  
  .cookie-switch input:checked + .cookie-slider {
    background-color: var(--red, #e8202a);
  }
  
  .cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(18px);
  }
  
  .cookie-switch-disabled .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
  }
  
  /* ── FLOATING REOPEN BUTTON ── */
  
  .cookie-reopen-btn {
    position: fixed;
    left: 18px;
    bottom: 18px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #2b2b2b;
    color: #fff;
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    transition: background 0.2s ease, transform 0.2s ease;
  }
  
  .cookie-reopen-btn:hover {
    background: var(--red, #e8202a);
    transform: scale(1.06);
  }
  
  /* ── GOOGLE MAPS PLACEHOLDER ── */
  
  .gmap-placeholder {
    height: 500px;
    width: 100%;
    background: #f2f2f2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    padding: 24px;
    border-radius: var(--border-radius, 8px);
  }
  
  .gmap-placeholder p {
    font-size: 14px;
    color: #555;
    max-width: 360px;
  }
  
  @media (max-width: 640px) {
    .cookie-modal { padding: 32px 22px 24px; }
    .cookie-btn { flex: 1 1 100%; }
  }