crate-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    font-weight: 500;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0;
    border: 3px solid var(--background-color);
    padding: 16px;
    vertical-align: middle;
}

td::before {
  display: none;
  content: attr(data-key);
}

th {
    background-color: var(--ghost-accent-color);
    color: var(--background-color);
}

td {
    background-color: var(--card-background-color);
    color: var(--text-color);
    font-weight: 400;
}

select {
    font-family: 'MADE Outer Sans';
    background-color: var(--card-background-color);
    text-transform: uppercase;
    color: var(--text-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0;
    border: 1px solid var(--text-color);
    padding: 16px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none !important;
    box-shadow: none !important;
}

.select-wrapper {
    position: relative;
    width: 320px;
    display: flex;
    align-items: center;
    margin: 32px 0 38px 0;
}

.select-carret-icon {
    position: absolute;
    right: 14px;
    width: 18px;
    height: 18px;
    z-index: 3;
    pointer-events: none;
}

.hero-section-wrapper {
    min-height: 100svh !important;
}

.hero-section {
    flex-direction: column;
    justify-content: space-between;
    gap: 68px;
    padding-bottom: 92px;
}

.hero-bg-image::after {
    height: 500px;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    background: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

.crate-logo {
    position: relative;
    z-index: 3;
    max-width: 475px;
    width: 100%;
    overflow: unset;
}

.crate-info-text-inner {
    flex-direction: column;
    gap: 18px;
    max-width: 860px;
    text-align: left;
}

.crate-info-text-inner h2 {
    text-align: center;
    margin-top: 18px;
}

.crate-lure-pack {
    max-width: 320px;
    width: 100%;
}

.crate-logo img {
    transform: rotateZ(-8deg);
}

.hero-content h1 {
    font-size: 38px;
}

.crate-info-text-section {
    padding-bottom: calc(1.5 * var(--gap));
}

@media screen and (max-width: 1080px) {
    thead {
        display: none;
    }

    tbody {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    tr {
        display: flex;
        flex-direction: column;
    }

    td {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        padding-left: 50%;
        position: relative;
    }

    td::before {
        display: flex;
        text-align: left;
        width: 50%;
        position: absolute;
        left: 16px;
    }

    tr td:first-of-type {
        background-color: var(--ghost-accent-color);
        color: var(--background-color);
        font-weight: 500;
    }

    .crate-info-text-inner {
        flex-direction: column;
        gap: 18px;
        max-width: 860px;
        text-align: left;
    }

    .crate-info-text-inner h2 {
        text-align: center;
        margin-top: 18px;
    }

    .crate-lure-pack {
        max-width: 320px;
        width: 100%;
    }

    .crate-logo img {
        transform: rotateZ(-8deg);
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .crate-info-text-section {
        padding-bottom: calc(1.5 * var(--gap));
    }
}

@media screen and (max-width: 767px) { 
    th,
    td {
        font-size: 12px;
        padding: 12px;
        line-height: 130%;
    }

    td {
        padding-left: 50%;
    }

    tbody {
        gap: 18px;
    }

    td::before {
        left: 12px;
    }

    select {
        font-size: 12px;
        padding: 12px;
    }

    .select-wrapper {
        max-width: 320px;
        width: 100%;
        margin: 22px 0 24px 0;
    }

    .select-carret-icon {
        right: 10px;
        width: 15px;
        height: 15px;
    }

    .hero-section {
        padding-bottom: 82px;
    }

    .crate-logo {
        max-width: 80vw;
    }

    .crate-info-text-inner {
        gap: 10px;
    }

    .crate-info-text-inner h2 {
        margin-top: 15px;
    }

    .crate-lure-pack {
        max-width: 60vw;
        width: 100%;
    }

    .hero-content h1 {
        font-size: 28px;
    }
}