/** Shopify CDN: Minification failed

Line 255:0 Expected "}" to go with "{"

**/
  body:has(.vc-cookie-banner:not([hidden])) {
    overflow-y: auto !important;
  }

  .vc-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2147483647;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    pointer-events: none; /* Allow clicks through banner wrapper */
  }

  .vc-cookie-banner[hidden] {
    display: none !important;
  }

  .vc-cookie-banner:not([hidden]) {
    transform: translateY(0);
  }

  .vc-cookie-banner__dialog {
    pointer-events: auto; /* Re-enable clicks on actual banner */
  }

  /* Note: Accessibility widget positioning is handled in vc-accessibility.css */

  .vc-cookie-banner__dialog {
    max-width: 100%;
    width: 100%;
    margin: 0;
    background: #fff;
    border-top: 2px solid var(--vc-pink, #870041);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  }

  .vc-cookie-banner__content {
    padding: 8px 8px;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    align-items: center;
  }

  @media (min-width: 750px) {
    .vc-cookie-banner__content {
      padding: 8px 40px;
    }
  }

  .vc-cookie-banner__text {
    margin: 0;
    font-size: 0.7rem;
    line-height: 1.2;
    color: #666;
  }

  .vc-cookie-banner__link {
    color: var(--vc-pink, #870041);
    text-decoration: underline;
    transition: opacity 0.2s ease;
  }

  .vc-cookie-banner__link:hover {
    opacity: 0.8;
  }

  .vc-cookie-banner__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
  }

  .vc-cookie-banner__button {
    flex: 1;
    min-width: 165px;
    padding: 5px 8px;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .vc-cookie-banner__button--accept-all {
    background: var(--vc-pink, #870041);
    color: #fff;
  }

  .vc-cookie-banner__button--accept-all:hover {
    background: var(--vc-pink-hover, #96003c);
  }

  .vc-cookie-banner__button--customize {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
  }

  .vc-cookie-banner__button--customize:hover {
    background: #f5f5f5;
  }

  /* Expandable Details Area */
  .vc-cookie-banner__details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .vc-cookie-banner__details:not([hidden]) {
    max-height: 60vh;
    overflow-y: auto;
  }

  .vc-cookie-banner__details-content {
    padding: 20px 40px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .vc-cookie-banner__details-title {
    margin: 0 0 16px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
  }

  .vc-cookie-banner__details-intro {
    margin-bottom: 20px;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
  }

  .vc-cookie-banner__categories {
    margin-bottom: 20px;
  }

  /* Hide/show elements when expanded */
  .vc-cookie-banner--expanded .vc-cookie-banner__text,
  .vc-cookie-banner--expanded .vc-cookie-banner__buttons {
    display: none;
  }

  .vc-cookie-category {
    margin-bottom: 16px;
    padding: 12px;
    background: #f9f9f9;
    border-radius: 6px;
  }

  .vc-cookie-category__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
  }

  .vc-cookie-category__checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
  }

  .vc-cookie-category__checkbox:disabled {
    cursor: not-allowed;
    opacity: 0.6;
  }

  .vc-cookie-category__title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin: 0;
  }

  .vc-cookie-category__required {
    font-size: 0.75rem;
    color: #999;
    font-weight: normal;
  }

  .vc-cookie-category__services {
    margin-left: 28px;
    font-size: 0.8rem;
    color: #666;
    line-height: 1.5;
  }

  .vc-cookie-category__service {
    margin: 2px 0;
  }

  .vc-cookie-banner__details-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
  }

  .vc-cookie-banner__button--save {
    background: var(--vc-pink, #870041);
    color: #fff;
  }

  .vc-cookie-banner__button--save:hover {
    background: var(--vc-pink-hover, #96003c);
  }

  .vc-cookie-banner__button--back {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
  }

  .vc-cookie-banner__button--back:hover {
    background: #f5f5f5;
  }

  @media (max-width: 749px) {
    .vc-cookie-banner__content {
      grid-template-columns: 1fr;
      gap: 12px;
    }

    .vc-cookie-banner__buttons {
      flex-direction: column;
      gap: 6px;
    }

    .vc-cookie-banner__button {
      min-width: 100%;
      padding: 8px 12px;
      font-size: 0.75rem;
    }

    .vc-cookie-banner__details-content {
      padding: 16px;
    }

    .vc-cookie-banner__details-buttons {
      flex-direction: column;
    }
