:root {
    --text-highlight: #FFD100;
    --bg-summary-hover: #2E2F4B;
    --text-color: white;
    --text-hover-color: white;
    --bg-summary: #23253A;
}

/* =========================
   Breadcrumb / Hero Video
========================= */

.breadcumb-wrapper {
    position: relative;
    left: 50%;
    margin-left: -50vw;
    width: 100vw;
    box-sizing: border-box;

    min-height: 600px;
    height: 600px;
    overflow: hidden;
    padding: 0;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcumb-wrapper > .container {
    position: relative;
    max-width: 1320px;
    width: 100%;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
    z-index: 2;
    left: auto;
}

.breadcumb-wrapper {
    min-height: 320px;
    height: 320px;
    overflow: hidden;
    padding: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcumb-wrapper > .container {
    max-width: 100vw;
    height: 100%;
    padding: 0 1rem;
    z-index: 2;
}

.breadcumb-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    transform: none;
    z-index: -1;
    display: block;
}

@media (min-width: 768px) {
    .breadcumb-wrapper {
        min-height: 600px;
        height: 600px;
    }

    .breadcumb-bg-video {
        height: 600px;
    }
}

@media (max-width: 767px) {
    .breadcumb-wrapper {
        min-height: 220px;
        height: 220px;
    }

    .breadcumb-bg-video {
        height: 220px;
        object-position: center top;
    }

    .breadcumb-wrapper > .container {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .breadcumb-title {
        margin-top: 0.5rem;
        font-size: 1.6rem !important;
        line-height: 1.2;
    }

    .breadcumb-wrapper .breadcrumb {
        font-size: 0.75rem;
        margin-bottom: 0.25rem;
    }

    .breadcumb-menu,
    .breadcumb-title,
    .breadcumb-wrapper .breadcrumb {
        display: none !important;
    }
}

.breadcumb-content {
    position: relative;
    z-index: 3;

    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding-top: 0;
    padding-bottom: 0;
}
.breadcumb-wrapper > .container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.breadcumb-title {
    margin-bottom: 10px;
}

.breadcumb-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

@media (max-width: 767px) {
    .breadcumb-wrapper {
        min-height: 220px;
        height: 220px;
    }

    .breadcumb-content {
        display: none !important;
    }
}
/* =========================
   Discount message
========================= */

.discount-message {
    background: #1e4620;
    color: #d4edda;
    padding: 8px 12px;
    border-radius: 4px;
    margin-top: 8px;
    font-size: 0.9em;
    display: none;
}

/* =========================
   Buttons
========================= */

.btn-group-custom {
    display: inline-flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.btn-group-custom .vs-btn {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 10px 20px;
    font-size: 16px;
}

/* =========================
   Custom tabs container
========================= */

@media (min-width: 768px) {
    .custom-tab-container {
        max-width: 100%;
        padding-left: 150px;
        padding-right: 100px;
    }

    .custom-tab-container .tab-content .desc-content {
        font-size: 18px;
        line-height: 1.8;
    }

    .custom-tab-container .nav-pills .nav-link {
        font-size: 16px;
        padding: 10px 20px;
        margin-right: 8px;
    }
}

/* =========================
   Custom tabs
========================= */

.custom-tabs {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 1rem;
}

.tab-arrow,
.tab-button {
    color: var(--text-highlight);
    border: none;
    cursor: pointer;
}

.tab-arrow {
    flex: 0 0 auto;
    background: transparent;
    font-size: 1.5rem;
    padding: 0 0.5rem;
    transition: opacity 0.2s;
}

.tab-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.tab-buttons-wrapper {
    overflow: hidden;
    flex: 1 1 auto;
}

.tab-buttons {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.3s;
}

.tab-button {
    flex: 0 0 auto;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem;
    background: var(--bg-summary);
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s;
}

.tab-button.active {
    background: var(--text-highlight);
    color: var(--text-color);
}

.tab-button:not(.active):hover {
    background: var(--bg-summary);
    color: var(--text-hover-color);
}

.custom-tab-content .tab-pane {
    display: none;
}

.custom-tab-content .tab-pane.active {
    display: block;
}

summary.active-category,
summary.active-subcategory {
    background-color: #fc0;
    color: #fff;
}

/* =========================
   SweetAlert buttons
========================= */

.swal-confirm-btn,
.swal-deny-btn {
    border: none;
    color: #fff;
    padding: 10px 20px;
}

.swal-confirm-btn {
    background-color: green;
    border-radius: 5px;
}

.swal-deny-btn {
    background-color: #1e90ff;
    border-radius: 5px;
}

.swal-cancel-btn {
    background-color: #aaa;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}

/* =========================
   Deal card
========================= */

.deal-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border: 2px solid gold;
    background: transparent;
    border-radius: 10px;
    color: gold;
}

.deal-card__icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: gold;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.deal-card__title {
    font-size: 14px;
    font-weight: 700;
    color: gold;
}

.deal-card__text,
.deal-card__until {
    font-size: 12px;
    color: gold;
}

.deal-card__badge {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    background: gold;
    padding: 2px 8px;
    border-radius: 999px;
}

/* =========================
   Dynamic fields disabled
========================= */

#dynamicFields[inert] {
    opacity: 0.95;
}

#dynamicFields[inert] * {
    cursor: not-allowed !important;
}

/* =========================
   Dropdown select
========================= */

.vs-dropdown-select {
    background: #222;
    color: #fff;
    border: 1px solid #444;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}