/* Cuisina9 profile — header v0.3.4 */
.tc-site-profile--cuisina9 {
    --tc-c9-navy: #0b0b2f;
    --tc-c9-ink: #201e1d;
    --tc-c9-muted: #665d58;
    --tc-c9-line: #e8e5e2;
    --tc-c9-gold: #b18a54;
}

.tc-c9-header {
    background: #fff;
    color: var(--tc-c9-ink);
    border-top: 3px solid #303236;
    border-bottom: 1px solid var(--tc-c9-line);
    box-shadow: none;
}

.tc-c9-header .tc-c9-header__inner {
    width: min(100% - 3.5rem, 1880px);
    max-width: 1880px;
    min-height: 86px;
    grid-template-columns: minmax(220px, auto) minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 2.6vw, 3.75rem);
}

.tc-c9-brand {
    display: inline-flex;
    align-items: center;
    gap: .85rem;
    min-width: 0;
    color: var(--tc-c9-ink);
    text-decoration: none;
}

.tc-c9-brand__mark {
    display: inline-flex;
    width: 72px;
    height: 60px;
    flex: 0 0 72px;
    align-items: center;
    justify-content: center;
}

.tc-c9-brand__logo {
    display: block;
    width: 72px;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}


.tc-c9-brand__copy {
    display: grid;
    gap: .16rem;
    line-height: 1;
}

.tc-c9-brand__name {
    color: #12142f;
    font-size: 1.22rem;
    font-weight: 700;
    letter-spacing: .015em;
    white-space: nowrap;
}

.tc-c9-brand__group {
    color: #6e6873;
    font-size: .62rem;
    font-weight: 500;
    letter-spacing: .035em;
    white-space: nowrap;
}

.tc-c9-brand__fallback {
    display: grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 50%;
    background: var(--tc-c9-navy);
    color: #fff;
    font-weight: 800;
}


.tc-c9-nav {
    justify-self: center;
}

.tc-c9-menu {
    gap: clamp(.7rem, 1.45vw, 1.75rem);
}

.tc-c9-menu > li > a {
    min-height: 48px;
    border-bottom: 0;
    color: #5d514c;
    font-size: .76rem;
    font-weight: 510;
    letter-spacing: .015em;
    text-transform: uppercase;
}

.tc-c9-menu > li.current-menu-item > a,
.tc-c9-menu > li.current-menu-ancestor > a,
.tc-c9-menu > li > a:hover,
.tc-c9-menu > li > a:focus-visible {
    color: #1f1b19;
    border-bottom-color: transparent;
}

.tc-c9-menu > .menu-item-has-children > a::after {
    content: "";
    width: 5px;
    height: 5px;
    margin-left: .45rem;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.tc-c9-menu .sub-menu {
    min-width: 260px;
    padding: .5rem;
    border-color: #e6e1dd;
    border-radius: 2px;
    box-shadow: 0 16px 35px rgb(31 26 23 / 11%);
}

.tc-c9-menu .sub-menu a {
    color: #443d39;
    font-size: .77rem;
}

.tc-c9-tools {
    display: flex;
    align-items: center;
    justify-self: end;
    gap: .8rem;
    white-space: nowrap;
}

.tc-c9-tool {
    position: relative;
    display: inline-flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    color: #191818;
    font-size: .74rem;
    font-weight: 540;
    letter-spacing: .025em;
    text-decoration: none;
}

.tc-c9-tool:hover,
.tc-c9-tool:focus-visible {
    color: var(--tc-c9-navy);
}

.tc-c9-tool svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.65;
}

.tc-c9-tool--account {
    width: 38px;
}

.tc-c9-tool--cart {
    padding-inline: .15rem;
}

.tc-c9-tool--cart .tc-cart-count {
    position: absolute;
    top: 0;
    right: -7px;
    min-width: 16px;
    min-height: 16px;
    padding: 0 4px;
    background: var(--tc-c9-gold);
    color: #fff;
    font-size: .55rem;
}

.tc-c9-tool--cart .tc-cart-count.is-empty {
    display: none;
}

.tc-c9-pro {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    justify-content: center;
    padding: .45rem 1rem;
    border-radius: 5px;
    background: var(--tc-c9-navy);
    color: #fff;
    font-size: .72rem;
    font-weight: 720;
    letter-spacing: .02em;
    text-decoration: none;
}

.tc-c9-pro:hover,
.tc-c9-pro:focus-visible {
    background: #15154a;
    color: #fff;
}

.tc-c9-nav-toggle {
    border-color: #ded9d5;
    color: var(--tc-c9-navy);
}

@media (max-width: 1250px) {
    .tc-c9-header .tc-c9-header__inner {
        width: calc(100% - 2rem);
        grid-template-columns: minmax(190px, 1fr) auto auto;
        gap: 1rem;
    }

    .tc-c9-brand__mark { width: 62px; height: 52px; flex-basis: 62px; }
    .tc-c9-brand__logo { width: 62px; height: auto; max-height: 52px; }
    .tc-c9-brand__name { font-size: 1.05rem; }
    .tc-c9-brand__group { font-size: .56rem; }

    .tc-c9-nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .tc-c9-nav {
        display: none;
        grid-column: 1 / -1;
        justify-self: stretch;
        padding: .3rem 0 1rem;
    }
    .tc-c9-nav.is-open { display: block; }
    .tc-c9-menu { display: grid; gap: 0; }
    .tc-c9-menu > li > a {
        min-height: 44px;
        padding: .5rem 0;
        border-bottom: 1px solid var(--tc-c9-line);
    }
    .tc-c9-menu .sub-menu {
        position: static;
        opacity: 1;
        pointer-events: auto;
        transform: none;
        box-shadow: none;
        border: 0;
        border-left: 1px solid var(--tc-c9-line);
        margin: 0 0 .4rem .5rem;
        padding: 0 0 0 1rem;
    }
}

@media (max-width: 760px) {
    .tc-c9-header { border-top-width: 2px; }

    .tc-c9-header .tc-c9-header__inner {
        min-height: 72px;
        grid-template-columns: 1fr auto auto;
        width: calc(100% - 1.4rem);
        gap: .45rem;
    }

    .tc-c9-brand { gap: .4rem; }
    .tc-c9-brand__mark { width: 58px; height: 46px; flex-basis: 58px; }
    .tc-c9-brand__logo { width: 58px; height: auto; max-height: 46px; }
    .tc-c9-brand__copy { display: none; }

    .tc-c9-tool--account { width: 34px; }
    .tc-c9-tool__label,
    .tc-c9-pro { display: none; }
    .tc-c9-tool--cart { min-width: 32px; }

    .tc-c9-tools { gap: .15rem; }
    .tc-c9-nav-toggle { min-height: 38px; padding-inline: .65rem; }
}


/* Cuisina9 footer — WordPress menus + TikiCore settings, matching the original brand. */
.tc-footer--cuisina9 {
    margin-top: 0;
    background: #171738;
    color: #fff;
}
.tc-footer--cuisina9 .tc-footer__grid {
    display: grid;
    grid-template-columns: 1.05fr 1.1fr 1.05fr .95fr;
    gap: clamp(2.2rem, 4vw, 5rem);
    padding-block: 1.55rem 1.45rem;
}
.tc-footer--cuisina9 .tc-footer__column h2 {
    margin: 0 0 .85rem;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
}
.tc-footer--cuisina9 .tc-footer__column p {
    margin: 0;
    color: #fff;
    font-size: .78rem;
    line-height: 1.5;
}
.tc-footer--cuisina9 .tc-footer__column strong { font-weight: 700; }
.tc-footer--cuisina9 .tc-footer__column a {
    color: #fff;
    text-decoration: none;
}
.tc-footer--cuisina9 .tc-footer__column a:hover,
.tc-footer--cuisina9 .tc-footer__column a:focus-visible {
    color: #d9d9ea;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.tc-footer--cuisina9 .tc-footer-list {
    display: grid;
    gap: .2rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.tc-footer--cuisina9 .tc-footer-list a {
    display: inline-block;
    font-size: .78rem;
    line-height: 1.42;
}
.tc-footer--cuisina9 .tc-footer__bottom-wrap {
    background: #1a1a1a;
}
.tc-footer--cuisina9 .tc-footer__bottom {
    padding-block: 1rem;
    border-top: 0;
}
.tc-footer--cuisina9 .tc-footer__bottom p {
    margin: 0;
    color: #fff;
    font-size: .76rem;
}
@media (max-width: 920px) {
    .tc-footer--cuisina9 .tc-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem 3rem;
    }
}
@media (max-width: 620px) {
    .tc-footer--cuisina9 .tc-footer__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding-block: 1.5rem 1.35rem;
    }
}
