#bbw-cookie-consent[hidden] {
    display: none !important;
}

#bbw-cookie-consent {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100000;
    color: #fff;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, .18);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .25);
    font-family: Inter, Arial, sans-serif;
}

.bbw-cookie-consent__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding-top: 16px;
    padding-bottom: 24px;
}

.cookie-container-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.bbw-cookie-consent__message {
    margin: 0;
    font-size: 12px;
}

.bbw-cookie-consent__message a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.bbw-cookie-consent__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 12px;
}

.bbw-cookie-consent-accept__button {
    min-width: 147px;
    height:30px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 4px;
    background: #fff;
    color: #000;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.bbw-cookie-consent__button {
    min-width: 168px;
    height:30px;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 4px;
    color: #fff;
    background: transparent;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.bbw-cookie-consent-accept__button:hover,
.bbw-cookie-consent-accept__button:focus-visible {
    background: #ECECEC;
}

.bbw-cookie-consent__button:hover,
.bbw-cookie-consent__button:focus-visible {
    background: rgba(255, 255, 255, .12);
}

.bbw-cookie-consent__button--accept {
    color: #080808;
    background: #fff;
    border-color: #fff;
}

.bbw-cookie-consent__button--accept:hover,
.bbw-cookie-consent__button--accept:focus-visible {
    background: #e6e6e6;
}

.bbw-cookie-consent__button:focus-visible {
    outline: 3px solid #70a7ff;
    outline-offset: 2px;
}

/* Keep all consent choices equally prominent and easy to compare. */
#bbw-cookie-consent .bbw-cookie-consent__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(132px, 1fr));
    gap: 12px;
}

#bbw-cookie-consent .bbw-cookie-consent__button {
    min-width: 132px;
    color: #fff;
    background: transparent;
    border-color: rgba(255, 255, 255, .75);
}

#bbw-cookie-consent .bbw-cookie-consent__button:hover,
#bbw-cookie-consent .bbw-cookie-consent__button:focus-visible {
    background: rgba(255, 255, 255, .12);
}

#bbw-cookie-manage[hidden],
#bbw-cookie-settings[hidden] {
    display: none !important;
}

#bbw-cookie-manage {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 100001;
    padding: 9px 14px;
    color: #fff;
    background: #050505;
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .24);
    cursor: pointer;
    font: 700 13px/1.2 Inter, Arial, sans-serif;
}

#bbw-cookie-manage:hover,
#bbw-cookie-manage:focus-visible {
    background: #252525;
}

#bbw-cookie-manage:focus-visible,
.bbw-cookie-settings__close:focus-visible,
.bbw-cookie-settings__button:focus-visible {
    outline: 3px solid #70a7ff;
    outline-offset: 2px;
}

#bbw-cookie-settings {
    position: fixed;
    inset: 0;
    z-index: 100002;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, .64);
    font-family: Inter, Arial, sans-serif;
}

.bbw-cookie-settings__panel {
    width: min(680px, 100%);
    max-height: min(760px, 90vh);
    overflow: auto;
    padding: 24px;
    color: #111;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .3);
}

.bbw-cookie-settings__header {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.bbw-cookie-settings__header h2,
.bbw-cookie-settings__category h3 {
    margin: 0;
}

.bbw-cookie-settings__header h2 {
    font-size: 22px;
    line-height: 1.25;
}

.bbw-cookie-settings__header p,
.bbw-cookie-settings__category p {
    margin: 7px 0 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.5;
}

.bbw-cookie-settings__close {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    color: #111;
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 27px;
    line-height: 1;
}

.bbw-cookie-settings__category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    border-top: 1px solid #e5e7eb;
}

.bbw-cookie-settings__category h3 {
    font-size: 15px;
    line-height: 1.3;
}

.bbw-cookie-settings__toggle {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    color: #374151;
    font-size: 13px;
    white-space: nowrap;
}

.bbw-cookie-settings__toggle input {
    width: 18px;
    height: 18px;
    accent-color: #111;
}

.bbw-cookie-settings__actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 20px;
}

.bbw-cookie-settings__button {
    min-height: 42px;
    padding: 8px 12px;
    color: #111;
    background: #fff;
    border: 1px solid #111;
    border-radius: 4px;
    cursor: pointer;
    font: 700 13px/1.2 Inter, Arial, sans-serif;
}

.bbw-cookie-settings__button:hover {
    color: #fff;
    background: #111;
}

@media (max-width: 768px) {
    .bbw-cookie-consent__inner {
        align-items: stretch;
        padding: 24px 16px;
    }

    #bbw-cookie-consent .cookie-container-content {
        align-items: stretch;
        flex-direction: column;
        gap: 36px;
        max-width: none;
    }

    .bbw-cookie-consent__message {
        width: 100%;
        max-width: none;
        font-size: 14px;
    }

    #bbw-cookie-consent .bbw-cookie-consent__actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        width: 100%;
    }

    .bbw-cookie-consent__button, .bbw-cookie-consent-accept__button {
        width: 100%;
        min-width: 0;
        min-height: 44px;
        border-radius: 8px;
        font-size: 14px;
    }

    #bbw-cookie-manage {
        right: 12px;
        bottom: 12px;
    }

    .bbw-cookie-settings__panel {
        padding: 18px;
    }

    .bbw-cookie-settings__category {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .bbw-cookie-settings__actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 360px) {
    .bbw-cookie-consent__message {
        font-size: 14px;
    }

    .bbw-cookie-consent__button, .bbw-cookie-consent-accept__button {
        font-size: 14px;
    }
}


@media (min-width: 912px) {
  .cookie-container-content{
    max-width: 900px;
  }
}

@media (min-width: 1125px) {
  .cookie-container-content{
    max-width: 1111px;
  }
}

@media (min-width: 1335px) {
  .cookie-container-content{
    max-width: 1326px;
  }
}
