/**
 * Dynamic Mega Menu — 6-Column Luxury Layout & Bottom Brand Ribbon
 *
 * @package Orevea
 */

.orevea-mega-menu {
    border-top: 1px solid rgba(58, 36, 32, .06);
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.orevea-mega-menu__tabs {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
    margin: 0;
    padding: 0;
    overflow-x: auto;
}

.orevea-mega-menu__item {
    position: static;
}

.orevea-mega-menu__tab {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 14px 0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #241411;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all .2s ease;
}

.orevea-mega-menu__item.is-active > .orevea-mega-menu__tab,
.orevea-mega-menu__item:hover > .orevea-mega-menu__tab {
    color: #8b7355;
    border-bottom-color: #8b7355;
}

.orevea-mega-menu__item--promo .orevea-mega-menu__tab {
    color: #d32f2f !important;
    font-weight: 800;
}

.orevea-tab-arrow {
    font-size: 9px;
    opacity: 0.6;
}

/* Mega Menu Dropdown Panel */
.orevea-mega-menu__panel {
    position: absolute;
    top: 100%;
    left: 20px;
    right: 20px;
    z-index: 999;
    background: #ffffff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 22px 50px rgba(58, 36, 32, 0.14);
    border: 1px solid rgba(58, 36, 32, 0.08);
    border-top: none;
    padding: 32px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s cubic-bezier(0.16, 1, 0.3, 1), transform .25s cubic-bezier(0.16, 1, 0.3, 1), visibility .25s;
    pointer-events: none;
}

.orevea-mega-menu__item:hover > .orevea-mega-menu__panel,
.orevea-mega-menu__item:focus-within > .orevea-mega-menu__panel {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Dynamic Grid Layout */
.orevea-mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 24px;
    align-items: start;
    margin-bottom: 28px;
}

/* When all 6 columns present */
.orevea-mega-menu__grid:has(.orevea-megamenu-card--promo):has(.orevea-megamenu-card--brands) {
    grid-template-columns: 1.35fr 1fr 1fr 1fr 1fr 1.35fr;
}

/* Promo Cards */
.orevea-megamenu-card {
    background: linear-gradient(145deg, #fcfaf7 0%, #f7f3ec 100%);
    border: 1px solid rgba(58, 36, 32, 0.06);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 320px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(36, 20, 17, 0.03);
    transition: transform .25s ease, box-shadow .25s ease;
}

.orevea-megamenu-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(36, 20, 17, 0.07);
}

.orevea-megamenu-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 18px;
    font-weight: 700;
    color: #241411;
    margin: 0 0 8px;
    line-height: 1.25;
}

.orevea-megamenu-card__desc {
    font-size: 11.5px;
    color: #6d5d54;
    margin: 0 0 16px;
    line-height: 1.45;
}

.orevea-megamenu-card__btn {
    display: inline-block;
    background: #241411;
    color: #ffffff !important;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    padding: 8px 18px;
    border-radius: 999px;
    text-decoration: none;
    text-transform: uppercase;
    align-self: flex-start;
    margin-bottom: 16px;
    transition: all .2s ease;
    box-shadow: 0 2px 8px rgba(36, 20, 17, 0.15);
}

.orevea-megamenu-card__btn:hover {
    background: #6b2e2a;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(107, 46, 42, 0.25);
}

.orevea-megamenu-card__img {
    margin-top: auto;
    text-align: center;
    overflow: hidden;
    border-radius: 8px;
}

.orevea-megamenu-card__img img {
    max-width: 100%;
    height: 140px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform .35s cubic-bezier(0.25, 1, 0.5, 1);
}

.orevea-megamenu-card:hover .orevea-megamenu-card__img img {
    transform: scale(1.06);
}

/* Category Columns */
.orevea-mega-menu__col-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #241411;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(58, 36, 32, 0.08);
}

.orevea-col-icon {
    font-size: 14px;
}

.orevea-mega-menu__list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.orevea-mega-menu__list li {
    margin: 0;
    padding: 0;
}

.orevea-mega-menu__list a {
    font-size: 12px;
    color: #55483f;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: color .15s ease, transform .15s ease;
}

.orevea-mega-menu__list a:hover {
    color: #8b7355;
    transform: translateX(3px);
}

.orevea-mega-menu__list--icons a {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Link Badges */
.orevea-link-badge {
    font-size: 8.5px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 999px;
    margin-left: 6px;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    line-height: 1.2;
}

.orevea-link-badge--hot,
.orevea-link-badge--promo {
    background: #ffebee;
    color: #c62828;
    border: 1px solid rgba(198, 40, 40, .2);
}

.orevea-link-badge--new,
.orevea-link-badge--nouveau {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid rgba(46, 125, 50, .2);
}

.orevea-link-badge--top,
.orevea-link-badge--bestseller {
    background: #fff8e1;
    color: #e65100;
    border: 1px solid rgba(230, 81, 0, .2);
}

.orevea-mega-menu__seeall {
    font-size: 11.5px;
    font-weight: 700;
    color: #8b7355;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
    transition: all .15s ease;
}

.orevea-mega-menu__seeall:hover {
    color: #6b2e2a;
    text-decoration: underline;
    transform: translateX(2px);
}

/* Bottom Strip */
.orevea-mega-menu__bottom-strip {
    border-top: 1px solid rgba(58, 36, 32, 0.08);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.orevea-mega-menu__strip-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #7b6e66;
}

.orevea-mega-menu__strip-logos {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.orevea-strip-logo {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #241411;
    text-decoration: none;
    text-transform: uppercase;
    padding: 5px 10px;
    border: 1px solid rgba(58, 36, 32, 0.1);
    border-radius: 6px;
    background: #fbf9f5;
    transition: all .2s ease;
}

.orevea-strip-logo:hover {
    border-color: #8b7355;
    color: #8b7355;
    background: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(36, 20, 17, 0.06);
}

.orevea-strip-more {
    font-size: 11px;
    font-weight: 700;
    color: #241411;
    text-decoration: none;
    transition: color .2s ease;
}

.orevea-strip-more:hover {
    color: #8b7355;
}

@media (max-width: 1024px) {
    .orevea-mega-menu__grid {
        grid-template-columns: 1fr 1fr;
    }
    .orevea-megamenu-card {
        display: none;
    }
}
