:root {
    --mega-nav-text: #111;
    --mega-nav-accent: #cf2013;
    --mega-nav-border: #d2d2d2;
    --mega-nav-card-border: #e1e1e1;
    --mega-nav-card-bg: #f5f5f5;
    --mega-nav-brands-bg: #f9f9f9;
    --mega-nav-swatch-border: #bcbcbc;
    --mega-nav-radius: 10px;
    --mega-nav-gutter: 1.5rem;
}

.mega-nav {
    display: none;
}

@media (min-width: 768px) {
    .mega-nav {
        display: block;
        width: 100%;
    }
}

.mega-nav__list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
}

.mega-nav__item {
    border-bottom: 3px solid transparent;
    flex: 1 0 0%;
    padding: 0 calc(var(--mega-nav-gutter) * 0.5) 8px;
    position: static;
    text-align: center;
}

.mega-nav__item--open {
    border-bottom-color: var(--mega-nav-accent);
}

.mega-nav__item--open .mega-nav__trigger {
    font-weight: 700;
}

.mega-nav__item--open .mega-nav__panel {
    max-height: 1000px;
    opacity: 1;
    visibility: visible;
}

.mega-nav__trigger {
    color: var(--mega-nav-text);
    display: inline-block;
    line-height: 24px;
    position: relative;
    text-decoration: underline;
    text-decoration-color: transparent;
}

.mega-nav__trigger:hover,
.mega-nav__trigger:focus {
    color: var(--mega-nav-text);
}

.mega-nav__panel {
    background-color: #fff;
    border-top: 1px solid var(--mega-nav-border);
    left: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 100%;
    visibility: hidden;
    width: 100%;
    z-index: 1001;
    transition:
        max-height 0.4s ease-in 0.25s,
        opacity 0.2s ease;
}

.mega-nav__panel::before,
.mega-nav__panel::after {
    background-color: #fff;
    border-top: 1px solid var(--mega-nav-border);
    content: "";
    height: calc(100% + 2px);
    position: absolute;
    top: -1px;
    width: 100vw;
    z-index: -1;
}

.mega-nav__panel::before {
    left: -100vw;
}

.mega-nav__panel::after {
    right: -100vw;
}

.mega-nav__panel-inner {
    margin-top: 20px;
    padding-bottom: 10px;
}

.mega-nav__layout {
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
}

.mega-nav__column {
    min-width: 0;
}

.mega-nav__column--categories {
    flex: 0 0 60%;
}

.mega-nav__column--quick-links {
    flex: 0 0 20%;
}

.mega-nav__column--feature,
.mega-nav__column--colors {
    flex: 0 0 20%;
}

.mega-nav__column--feature-lingerie {
    padding-top: 20px;
    flex: 0 0 100%;
}

.mega-nav__heading {
    color: var(--mega-nav-text);
    font-size: 18px;
    font-weight: 700;
    line-height: 25px;
    margin: 0 0 15px;
    text-align: left;
}

.mega-nav__links-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.mega-nav__links {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.mega-nav__links--full {
    max-height: none;
}

.mega-nav__links-item {
    line-height: 19px;
    margin-bottom: 20px;
}

.mega-nav__links-item--media,
.mega-nav__links-item--swatch {
    min-width: auto;
}

.mega-nav__link {
    color: var(--mega-nav-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 19px;
    text-decoration: none;
}

.mega-nav__link:hover,
.mega-nav__link:focus {
    color: var(--mega-nav-text);
    text-decoration: underline;
}

.mega-nav__link--featured {
    border-bottom: 2px solid var(--mega-nav-text);
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
}

.mega-nav__link--featured:hover,
.mega-nav__link--featured:focus {
    border-bottom-color: #8e8e8e;
    text-decoration: none;
}

.mega-nav__link--accent {
    border-color: var(--mega-nav-accent);
    color: var(--mega-nav-accent);
}

.mega-nav__card {
    background-color: var(--mega-nav-card-bg);
    border: 1px solid var(--mega-nav-card-border);
    border-radius: var(--mega-nav-radius);
    margin-top: 0;
    padding: 20px 30px;
}

.mega-nav__card--rows {
    height: 100%;
    padding: 17.5px 30px;
}

.mega-nav__card--rows .mega-nav__heading {
    margin-bottom: 25px;
}

.mega-nav__card--rows .mega-nav__links {
    column-count: 3;
    column-gap: 70px;
    column-fill: auto;
}

.mega-nav__card .mega-nav__links-item {
    margin-bottom: 10px;
}

.mega-nav__card .mega-nav__link {
    color: var(--mega-nav-text);
    font-size: 14px;
    line-height: 19px;
}

.mega-nav__image {
    display: block;
    height: auto;
    max-width: 100%;
}

.mega-nav__swatch-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-nav__swatch {
    border-radius: 9999px;
    display: block;
    height: 32px;
    transition: opacity 0.2s;
    width: 32px;
}

.mega-nav__swatch--black {
    background-color: #000;
}

.mega-nav__swatch--blue {
    background-color: #0000ff;
}

.mega-nav__swatch--brown {
    background-color: #a52a2a;
}

.mega-nav__swatch--green {
    background-color: #008000;
}

.mega-nav__swatch--grey {
    background-color: #808080;
}

.mega-nav__swatch--hot-pink {
    background-color: #ff69b4;
}

.mega-nav__swatch--pink {
    background-color: #ffc0cb;
}

.mega-nav__swatch--purple {
    background-color: #800080;
}

.mega-nav__swatch--red {
    background-color: #ff0000;
}

.mega-nav__swatch--transparent {
    border: 1px solid var(--mega-nav-swatch-border);
}

.mega-nav__swatch-link {
    display: block;
    height: 100%;
    width: 100%;
}

.mega-nav__brands {
    background-color: var(--mega-nav-brands-bg);
    bottom: 0;
    padding: 20px 0 25px;
    position: relative;
    text-align: left;
    width: 100%;
}

.mega-nav__brands::before,
.mega-nav__brands::after {
    background-color: var(--mega-nav-brands-bg);
    content: "";
    height: 100%;
    position: absolute;
    top: 0;
    width: 100vw;
    z-index: -1;
}

.mega-nav__brands::before {
    left: -100vw;
}

.mega-nav__brands::after {
    right: -96vw;
}

.mega-nav__brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mega-nav__brand-item {
    align-items: center;
    background-color: #fff;
    border-radius: var(--mega-nav-radius);
    display: flex;
    min-height: 50px;
    padding: 8px 20px;
    width: max-content;
}

.mega-nav__brand-image {
    display: block;
    height: auto;
    max-height: 33px;
    width: auto;
}

.mega-nav__footer {
    margin: 30px 0;
}

.mega-nav__product-card {
    border: 1px solid var(--mega-nav-card-border);
    border-radius: var(--mega-nav-radius);
}

.mega-nav__product {
    align-items: center;
    display: flex;
    margin-top: 10px;
    padding: 15px 10px;
    text-align: left;
}

.mega-nav__product-image-wrap {
    align-items: center;
    display: flex;
    height: 140px;
    justify-content: center;
    width: 140px;
}

.mega-nav__product-image {
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.mega-nav__product-title {
    color: var(--mega-nav-text);
    font-size: 16px;
    font-weight: 600;
    line-height: 22px;
    text-decoration: none;
}

.mega-nav__product-title:hover,
.mega-nav__product-title:focus {
    text-decoration: underline;
}

#skip-to-main-content::before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: #111;
    opacity: 0;
    transition: opacity 0ms linear 200ms;
    pointer-events: none;
}

#skip-to-main-content.mega-nav-open::before {
    opacity: 0.8;
}



.footer {
    background-color: #111;
    padding: 36px 0 10px;
    color: #fff;
}

.footer *,
.footer *::before,
.footer *::after {
    box-sizing: border-box;
}

.footer a {
    color: #fff;
}

.footer img,
.footer svg {
    vertical-align: middle;
}

.footer img {
    max-width: none;
    display: inherit;
}

.footer__container {
    width: 100%;
    max-width: 1210px;
    margin-inline: auto;
    padding-inline: 12px;
}

.footer__utility-row,
.footer__main-row,
.footer__legal-row {
    display: flex;
    flex-wrap: wrap;
    margin-inline: -12px;
}

.footer__utility-item,
.footer__nav-column,
.footer__social-column,
.footer__legal-column {
    width: 100%;
    padding-inline: 12px;
}

.footer__utility-item {
    width: 50%;
}

.footer__nav-column,
.footer__social-column {
    width: 100%;
}

.footer__utility-link {
    display: block;
    margin-bottom: 36px;
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}

.footer__utility-link:hover,
.footer__utility-link:focus {
    color: #fff;
    text-decoration: underline;
}

.footer__utility-link:visited,
.footer__utility-link:active {
    color: #fff;
    text-decoration: none;
}

.footer__utility-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    border: 1px solid #fff;
    border-radius: 25px;
    vertical-align: middle;
    position: relative;
}

.footer__utility-icon img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer__utility-icon--shipping img {
    top: calc(50% - 2px);
}

.footer__section {
    margin-bottom: 0;
    border-bottom: 1px solid #bcbcbc;
}

.footer__section[open] .footer__section-chevron {
    transform: rotate(180deg);
}

.footer__nav-column:first-child .footer__section {
    border-top: 1px solid #fff;
}

.footer__nav-column:nth-child(3) .footer__section {
    border-bottom: none;
}

.footer__section-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 10px 20px 0;
    color: #fff;
    list-style: none;
    cursor: pointer;
}

.footer__section-title::-webkit-details-marker {
    display: none;
    content: "";
}

.footer__section-title-text {
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
}

.footer__section-chevron {
    transition: transform 0.5s ease;
}

.footer__section-content {
    padding: 0 0 20px;
    border-top: none;
}

.footer__link-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__link-item {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.footer__link-item:hover .footer__link {
    color: #fff;
    text-decoration: underline;
}

.footer__link {
    display: block;
    margin-bottom: 15px;
    color: #fff;
    text-decoration: none;
}

.footer__link:hover,
.footer__link:focus,
.footer__link:active,
.footer__link:visited {
    color: #fff;
}

.footer__link:hover,
.footer__link:focus {
    text-decoration: underline;
}

.footer__link--cookie {
    background-color: transparent !important;
    padding: 0 !important;
    font-size: 14px !important;
    line-height: 20px;
    color: #fff !important;
    text-decoration: none;
    cursor: pointer;
}

.footer__link--cookie:hover,
.footer__link--cookie:focus {
    text-decoration: underline;
}

.footer__social-column {
    position: relative;
    width: 100%;
    padding-top: 20px;
    margin-bottom: 29px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer__social-column::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: -12px;
    width: calc(100% + 24px);
    max-width: 100vw;
    height: 1px;
    background-color: #fff;
}

.footer__social-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px 45px;
    max-width: 162px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer__social-item {
    max-width: 24px;
}

.footer__social-link {
    display: block;
    color: #fff;
}

.footer__social-link:hover .footer__social-icon,
.footer__social-link:focus .footer__social-icon {
    color: #cf2013;
}

.footer__social-icon {
    color: #fff;
    transition: color 0.3s ease;
}

.footer__bizrate {
    position: relative;
    z-index: 1;
    width: 125px;
    height: 73px;
    margin-left: auto;
}

.footer__bizrate-overlay {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: block;
    width: 55px;
    height: 23px;
    background: #fff;
    opacity: 0;
    text-decoration: none;
}

.footer__bizrate-link {
    display: block;
}

.footer__bizrate-image {
    display: block;
    width: 125px;
    height: 73px;
}

.footer__legal-column {
    margin-bottom: 8px;
}

.footer__legal-text {
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    margin: 0;
}

.footer__visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

@media (min-width: 576px) {
    .footer__legal-column {
        width: 33.333333%;
    }
}

@media (min-width: 768px) {

    .footer__utility-item {
        width: 25%;
    }

    .footer__nav-column,
    .footer__social-column {
        width: 25%;
    }

    .footer__section {
        border-bottom: none;
    }

    .footer__nav-column:first-child .footer__section {
        border-top: none;
    }

    .footer__section-title {
        padding: 0 0 15px;
        cursor: default;
        pointer-events: none;
    }

    .footer__section-title-text {
        font-size: 14px;
    }

    .footer__section-chevron {
        display: none;
    }

    .footer__section-content {
        padding: 0;
    }

    .footer__link-item:last-child .footer__link {
        margin-bottom: 0;
    }

    .footer__social-column {
        display: block;
        padding-top: 0;
        margin-bottom: 0;
    }

    .footer__social-column::before {
        display: none;
    }

    .footer__social-list {
        align-items: end;
        position: absolute;
        right: 12px;
        bottom: 20px;
        max-width: 100%;
        max-height: 78px;
    }

    .footer__legal-row {
        padding: 10px 0;
        border-top: 1px solid #fff;
        margin-top: 30px;
    }
}


