:root {
    --tc-bg: #f7faf5;
    --tc-surface: #ffffff;
    --tc-text: #14211a;
    --tc-muted: #637268;
    --tc-border: #dde7df;
    --tc-primary: #168f5b;
    --tc-secondary: #0f6f80;
    --tc-gold: #f1c84b;
    --tc-shadow: 0 18px 45px rgba(20, 33, 26, .12);
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--tc-bg);
    color: var(--tc-text);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.tc-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 46px;
    padding: 4px clamp(14px, 4vw, 44px);
    background: rgba(9, 20, 15, .48);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(16px);
}

body.admin-bar .tc-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .tc-header {
        top: 46px;
    }
}

.tc-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: Outfit, Inter, sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
}

.tc-brand-logo {
    width: clamp(98px, 10vw, 145px);
    max-height: 34px;
    height: auto;
    object-fit: contain;
}

.tc-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tc-menu a {
    display: inline-flex;
    padding: 9px 13px;
    border-radius: 999px;
    color: rgba(255, 255, 255, .92);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.tc-menu a:hover,
.tc-menu .current-menu-item a {
    background: rgba(255, 255, 255, .14);
    color: #fff;
}

.tc-language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    background: rgba(9, 20, 15, .34);
    color: rgba(255, 255, 255, .68);
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .05em;
}

.tc-language-switcher a {
    padding: 0;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .72);
    cursor: pointer;
    font: inherit;
    text-decoration: none;
}

.tc-language-switcher a.is-active,
.tc-language-switcher a:hover {
    color: #fff;
}

.tc-header-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.tc-cart-link {
    position: relative;
    display: inline-flex;
    width: 38px;
    height: 38px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    background: rgba(9, 20, 15, .42);
    color: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.tc-cart-icon {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.tc-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    display: inline-flex;
    min-width: 18px;
    height: 18px;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border: 2px solid rgba(9, 20, 15, .86);
    border-radius: 999px;
    background: var(--tc-gold);
    color: #13231a;
    font-size: .68rem;
    font-weight: 900;
    line-height: 1;
}

.tc-menu-button {
    display: none;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
}

.tc-menu-button span {
    width: 20px;
    height: 2px;
    background: #fff;
}

.tc-hero {
    position: relative;
    min-height: min(100vh, 760px);
    padding: 70px 18px 34px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    display: grid;
    align-items: center;
}

.tc-hero-overlay,
.tc-animal-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .22), rgba(0, 0, 0, .12) 45%, rgba(0, 0, 0, .45));
    pointer-events: none;
}

.tc-ambient {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.tc-ambient-leaves {
    background:
        radial-gradient(circle at 12% 18%, rgba(46, 204, 113, .24), transparent 8%),
        radial-gradient(circle at 84% 22%, rgba(241, 200, 75, .16), transparent 7%),
        radial-gradient(circle at 70% 82%, rgba(22, 143, 91, .18), transparent 10%);
    animation: tc-breathe 7s ease-in-out infinite;
}

.tc-ambient-water {
    background: linear-gradient(110deg, transparent 58%, rgba(255, 255, 255, .16), transparent 64%);
    opacity: .5;
    animation: tc-water-glint 9s linear infinite;
}

.tc-hero-content {
    position: relative;
    z-index: 4;
    max-width: 760px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
    text-shadow: 0 8px 30px rgba(0, 0, 0, .28);
}

.tc-hero-logo {
    width: min(520px, 78vw);
    height: auto;
    margin: 0 auto 14px;
    filter: drop-shadow(0 16px 24px rgba(0, 0, 0, .34));
}

.tc-hero h1,
.tc-section-heading h1,
.tc-section-heading h2,
.tc-animal-hero h1,
.tc-animal-story h2,
.tc-facts h2 {
    font-family: Outfit, Inter, sans-serif;
    line-height: .98;
}

.tc-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2.75rem, 7vw, 6rem);
    font-weight: 900;
}

.tc-hero p {
    max-width: 620px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, .93);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 800;
}

.tc-animal-map {
    position: absolute;
    inset: 0;
    z-index: 3;
    width: 100%;
    min-height: 100%;
    margin: 0;
    pointer-events: none;
}

.tc-map-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    animation: tc-character-idle 4.8s ease-in-out infinite;
    pointer-events: auto;
}

.tc-map-pin.is-perch {
    animation-name: tc-character-perch;
}

.tc-map-pin.is-splash {
    animation-name: tc-character-splash;
}

.tc-map-pin.is-still {
    animation: none;
}

.tc-map-pin:hover .tc-map-image {
    transform: scale(1.08) translateY(-4px);
    filter: drop-shadow(0 24px 18px rgba(0, 0, 0, .42)) drop-shadow(0 0 16px color-mix(in srgb, var(--accent) 42%, transparent));
}

.tc-map-image {
    display: block;
    width: clamp(74px, calc(var(--pin-size, 160px) * .75), var(--pin-size, 160px));
    height: clamp(74px, calc(var(--pin-size, 160px) * .75), var(--pin-size, 160px));
    overflow: visible;
    background: transparent;
    filter: drop-shadow(0 20px 16px rgba(0, 0, 0, .38));
    transition: transform .2s ease, filter .2s ease;
}

.tc-map-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tc-map-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, .86);
    color: var(--tc-primary);
    font-weight: 900;
}

.tc-map-label {
    position: absolute;
    left: 50%;
    bottom: -34px;
    transform: translateX(-50%);
    white-space: nowrap;
    opacity: 0;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    background: rgba(15, 32, 24, .78);
    color: #fff;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
    transition: opacity .18s ease;
    backdrop-filter: blur(12px);
}

.tc-map-label strong,
.tc-map-label small {
    display: block;
}

.tc-map-label small {
    margin-top: 2px;
    color: rgba(255, 255, 255, .76);
    font-size: .8rem;
}

.tc-map-pin:hover .tc-map-label {
    opacity: 1;
}

.tc-ecosystem-empty {
    position: absolute;
    left: 50%;
    bottom: 22px;
    max-width: 460px;
    padding: 12px 16px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 8px;
    background: rgba(15, 32, 24, .72);
    color: rgba(255, 255, 255, .9);
    text-align: center;
    font-weight: 800;
    backdrop-filter: blur(14px);
}

.tc-section {
    padding: 78px clamp(18px, 5vw, 70px);
}

.tc-page {
    min-height: 70vh;
    padding-top: 96px;
}

.tc-page-content {
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(22px, 4vw, 42px);
    border: 1px solid var(--tc-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 14px 34px rgba(20, 33, 26, .08);
}

.tc-page-content h1 {
    margin: 0 0 28px;
    font-family: Outfit, Inter, sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.tc-page-content .tc-content {
    color: var(--tc-text);
}

.tc-page-content .woocommerce {
    width: 100%;
}

.tc-section-heading {
    max-width: 760px;
    margin: 0 auto 42px;
    text-align: center;
}

.tc-section-heading h1,
.tc-section-heading h2 {
    margin: 0 0 16px;
    font-size: clamp(2.2rem, 5vw, 4rem);
}

.tc-section-heading p {
    margin: 0;
    color: var(--tc-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

.tc-grid {
    display: grid;
    max-width: 1180px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.tc-card {
    overflow: hidden;
    border: 1px solid var(--tc-border);
    border-radius: 8px;
    background: var(--tc-surface);
    box-shadow: 0 10px 28px rgba(20, 33, 26, .08);
    transition: transform .18s ease, box-shadow .18s ease;
}

.tc-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--tc-shadow);
}

.tc-card-image {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #dbe9df;
}

.tc-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.tc-card:hover .tc-card-image img {
    transform: scale(1.05);
}

.tc-placeholder {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: var(--tc-primary);
    font-weight: 900;
}

.tc-card-body {
    padding: 22px;
    border-top: 4px solid var(--accent, var(--tc-primary));
}

.tc-card-body h2,
.tc-card-body h3 {
    margin: 0 0 8px;
    font-family: Outfit, Inter, sans-serif;
    font-size: 1.7rem;
    line-height: 1.05;
}

.tc-card-body p {
    margin: 0 0 18px;
    color: var(--tc-muted);
}

.tc-local-name {
    font-style: italic;
}

.tc-card-link {
    color: var(--accent, var(--tc-primary));
    font-weight: 900;
}

.tc-empty {
    max-width: 900px;
    margin: 0 auto;
    padding: 34px;
    border: 1px dashed var(--tc-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, .7);
    color: var(--tc-muted);
    text-align: center;
    font-weight: 700;
}

.tc-shop-band {
    background: linear-gradient(180deg, #ffffff 0%, #f2f7f1 100%);
}

#coleccion.tc-section {
    display: grid;
    grid-template-columns: minmax(230px, 330px) minmax(0, 760px);
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 4vw, 42px);
    padding-top: clamp(14px, 2.5svh, 22px);
    padding-bottom: clamp(14px, 2.5svh, 22px);
}

#coleccion .tc-section-heading {
    max-width: 330px;
    margin: 0;
    text-align: left;
}

#coleccion .tc-section-heading h2 {
    margin-bottom: 8px;
    font-size: clamp(1.7rem, 3.4vw, 2.7rem);
}

#coleccion .tc-section-heading p {
    font-size: .98rem;
    line-height: 1.45;
}

#coleccion.woocommerce ul.products,
#coleccion ul.products {
    display: flex;
    max-width: 760px;
    margin: 0;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

#coleccion ul.products::-webkit-scrollbar {
    display: none;
}

.tc-product-carousel {
    position: relative;
    min-width: 0;
}

#coleccion.woocommerce ul.products li.product,
#coleccion ul.products li.product {
    display: grid;
    flex: 0 0 min(640px, 100%);
    width: auto !important;
    margin: 0 !important;
    grid-template-columns: minmax(110px, 165px) minmax(0, 1fr);
    align-items: center;
    column-gap: 22px;
    padding: 10px 14px;
    scroll-snap-align: start;
}

#coleccion ul.products li.product a.woocommerce-LoopProduct-link {
    display: contents;
}

#coleccion ul.products li.product img {
    width: 100%;
    max-height: clamp(112px, 18svh, 145px);
    margin: 0 !important;
    object-fit: contain;
}

#coleccion ul.products li.product .woocommerce-loop-product__title {
    margin: 0 0 8px !important;
    font-family: Outfit, Inter, sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.8rem);
    line-height: 1.05;
}

#coleccion ul.products li.product .price {
    display: block;
    margin: 0 0 12px !important;
    color: var(--tc-primary);
    font-size: 1.15rem;
    font-weight: 900;
}

#coleccion ul.products li.product .button {
    width: fit-content;
    margin: 0 !important;
    padding: 10px 16px;
}

.tc-carousel-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;
    background: rgba(9, 20, 15, .76);
    color: #fff;
    box-shadow: 0 12px 28px rgba(20, 33, 26, .18);
    cursor: pointer;
    font-size: 1.8rem;
    line-height: 1;
}

.tc-carousel-prev {
    left: -18px;
}

.tc-carousel-next {
    right: -18px;
}

.tc-woo-main,
body.single-product {
    background: #f6faf5;
}

.tc-woo-main {
    min-height: 70vh;
    padding: 76px clamp(18px, 5vw, 70px) 70px;
}

.tc-woo-main .woocommerce-breadcrumb {
    max-width: 1180px;
    margin: 0 auto 20px;
    color: var(--tc-muted);
    font-weight: 700;
}

.woocommerce div.product,
.tc-woo-main .products,
.tc-woo-main .woocommerce-info,
.tc-woo-main .woocommerce-notices-wrapper {
    max-width: 1180px;
    margin: 0 auto;
}

.woocommerce div.product div.images img {
    border-radius: 8px;
    box-shadow: var(--tc-shadow);
}

.woocommerce div.product .summary {
    padding: 26px;
    border: 1px solid var(--tc-border);
    border-radius: 8px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 18px 45px rgba(20, 33, 26, .1);
}

.woocommerce div.product .product_title {
    font-family: Outfit, Inter, sans-serif;
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    line-height: .98;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--tc-primary);
    font-size: 1.7rem;
    font-weight: 900;
}

.woocommerce div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    border-radius: 999px;
    background: #527c2e;
    color: #fff;
    font-weight: 900;
    letter-spacing: .02em;
}

.tc-animal-hero {
    position: relative;
    height: clamp(170px, 25svh, 230px);
    min-height: 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 84% 24%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 26%),
        linear-gradient(115deg, rgba(3, 10, 8, .98) 0%, rgba(13, 33, 26, .92) 38%, rgba(27, 78, 87, .55) 68%, rgba(232, 180, 89, .22) 100%),
        #07120d;
    color: #fff;
}

.tc-animal-hero-image {
    position: absolute;
    top: 38px;
    right: clamp(12px, 6vw, 90px);
    bottom: 0;
    left: auto;
    width: min(28vw, 300px);
    opacity: .92;
    mix-blend-mode: normal;
    pointer-events: none;
}

.tc-animal-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 30px 30px rgba(0, 0, 0, .55));
}

.tc-animal-hero-overlay {
    background:
        linear-gradient(90deg, rgba(2, 8, 6, .86) 0%, rgba(2, 8, 6, .62) 38%, rgba(2, 8, 6, .08) 72%),
        linear-gradient(0deg, rgba(2, 8, 6, .7) 0%, transparent 42%),
        radial-gradient(circle at 16% 18%, rgba(255, 255, 255, .14), transparent 24%);
}

.tc-animal-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    height: 100%;
    min-height: 0;
    max-width: 1180px;
    margin: 0 auto;
    padding: 56px 20px 20px;
    flex-direction: column;
    justify-content: flex-end;
}

.tc-back-link {
    width: fit-content;
    margin-bottom: 7px;
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .9);
    backdrop-filter: blur(12px);
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.tc-animal-hero h1 {
    max-width: 620px;
    margin: 0 0 8px;
    font-size: clamp(2rem, 4.4vw, 3.6rem);
    font-weight: 900;
    text-shadow: 0 18px 34px rgba(0, 0, 0, .5);
}

.tc-animal-hero p {
    margin: 0;
    font-size: clamp(.9rem, 1.6vw, 1.15rem);
    font-style: italic;
    font-weight: 700;
}

.tc-tagline {
    max-width: 560px;
    margin-top: 7px !important;
    color: rgba(255, 255, 255, .9);
    font-size: clamp(.86rem, 1.45vw, 1rem) !important;
    font-style: normal !important;
    line-height: 1.45;
}

.tc-species {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 34%, rgba(255, 255, 255, .14));
    box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
    backdrop-filter: blur(10px);
}

.tc-animal-detail,
.tc-story-explore-grid {
    display: grid;
    max-width: 1180px;
    margin: 0 auto;
}

.tc-animal-detail {
    grid-template-columns: minmax(0, 1fr);
    gap: 44px;
}

.tc-story-explore-band {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(238, 246, 243, .94)),
        radial-gradient(circle at 100% 0%, rgba(241, 200, 75, .22), transparent 34%);
}

.tc-story-explore-grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: clamp(26px, 4vw, 54px);
    align-items: start;
}

.tc-animal-story h2,
.tc-facts h2,
.tc-explore-panel h2 {
    margin-top: 0;
    font-size: 2.25rem;
}

.tc-content {
    color: var(--tc-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.tc-facts {
    align-self: start;
    padding: 26px;
    border: 1px solid var(--tc-border);
    border-radius: 8px;
    background: var(--tc-surface);
    box-shadow: 0 10px 28px rgba(20, 33, 26, .08);
}

.tc-experience-band {
    background: #101f18;
    color: #fff;
}

.tc-explore-panel {
    position: sticky;
    top: 92px;
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: #10231b;
    color: #fff;
    box-shadow: 0 18px 42px rgba(13, 34, 24, .18);
}

.tc-explore-panel-heading p {
    margin: 0 0 20px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.65;
}

.tc-explore-panel .tc-action-grid {
    grid-template-columns: 1fr;
    gap: 14px;
}

.tc-explore-panel .tc-action-card {
    min-height: 132px;
}

.tc-experience-band .tc-section-heading p {
    color: rgba(255, 255, 255, .72);
}

.tc-action-grid {
    display: grid;
    max-width: 1180px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tc-action-card {
    min-height: 150px;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background:
        radial-gradient(circle at 85% 20%, rgba(241, 200, 75, .18), transparent 28%),
        rgba(255, 255, 255, .08);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .18);
}

.tc-action-card span {
    display: block;
    margin-bottom: 12px;
    color: var(--tc-gold);
    font-size: .82rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tc-action-card strong {
    display: block;
    font-family: Outfit, Inter, sans-serif;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.08;
}

.tc-video-band {
    background: #eef6f3;
}

.tc-video-grid {
    display: grid;
    max-width: 1180px;
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.tc-video-card {
    overflow: hidden;
    border-radius: 8px;
    background: #07120d;
    box-shadow: var(--tc-shadow);
    aspect-ratio: 9 / 16;
}

.tc-video-card iframe,
.tc-video-card video {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    object-fit: cover;
}

.tc-fact {
    display: grid;
    gap: 6px;
    padding: 16px 0;
    border-top: 1px solid var(--tc-border);
}

.tc-fact span {
    color: var(--tc-muted);
    font-weight: 800;
}

.tc-fact ul {
    margin: 4px 0 0;
    padding-left: 18px;
    color: var(--tc-text);
    font-weight: 700;
    line-height: 1.55;
}

@keyframes tc-character-idle {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-7px) scale(1.015);
    }
}

@keyframes tc-character-perch {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(-1deg) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) rotate(1deg) scale(1.02);
    }
}

@keyframes tc-character-splash {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0) scale(1);
    }
    45% {
        transform: translate(-50%, -50%) translateY(-12px) scale(1.03);
    }
    60% {
        transform: translate(-50%, -50%) translateY(2px) scale(.99);
    }
}

@keyframes tc-breathe {
    0%, 100% {
        transform: scale(1);
        opacity: .72;
    }
    50% {
        transform: scale(1.04);
        opacity: .9;
    }
}

@keyframes tc-water-glint {
    0% {
        transform: translateX(-30%);
    }
    100% {
        transform: translateX(30%);
    }
}

.tc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 34px clamp(18px, 5vw, 70px);
    background: #102018;
    color: rgba(255, 255, 255, .84);
}

.tc-footer p {
    margin: 6px 0 0;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    border: 1px solid var(--tc-border);
    border-radius: 8px;
    overflow: hidden;
    background: var(--tc-surface);
    box-shadow: 0 10px 28px rgba(20, 33, 26, .08);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .button {
    margin-left: 14px;
    margin-right: 14px;
}

.woocommerce ul.products li.product .button {
    margin-bottom: 16px;
    border-radius: 999px;
    background: var(--tc-primary);
    color: #fff;
}

@media (max-width: 860px) {
    .tc-menu-button {
        display: inline-flex;
    }

    .tc-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        display: none;
        padding: 12px 18px 18px;
        background: rgba(9, 20, 15, .94);
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .tc-nav.is-open {
        display: block;
    }

    .tc-menu {
        align-items: stretch;
        flex-direction: column;
    }

    .tc-menu a {
        width: 100%;
    }

    .tc-brand-logo {
        width: 118px;
        max-height: 30px;
    }

    .tc-language-switcher {
        margin-left: auto;
    }

    .tc-grid,
    .tc-animal-detail,
    .tc-story-explore-grid,
    .tc-action-grid,
    .tc-video-grid {
        grid-template-columns: 1fr;
    }

    .tc-explore-panel {
        position: static;
    }

    #coleccion.woocommerce ul.products li.product,
    #coleccion ul.products li.product {
        flex-basis: min(520px, 100%);
        grid-template-columns: 130px minmax(0, 1fr);
    }

    #coleccion.tc-section {
        grid-template-columns: 1fr;
    }

    #coleccion .tc-section-heading {
        max-width: 760px;
        text-align: center;
    }

    .tc-animal-map {
        min-height: 340px;
    }

    .tc-animal-hero {
        min-height: auto;
    }

    .tc-animal-hero-image {
        top: 50px;
        right: -4vw;
        width: min(46vw, 240px);
        opacity: .58;
    }

    .tc-animal-hero-content {
        height: 100%;
        min-height: 0;
        padding-top: 60px;
    }

    .tc-map-label {
        display: none;
    }

    .tc-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
.tc-hero {
        min-height: 92vh;
        padding-top: 62px;
    }

    .tc-hero-logo {
        width: min(390px, 86vw);
    }

    .tc-animal-map {
        min-height: 300px;
    }

    .tc-map-pin:nth-child(n+5) {
        display: none;
    }

    #coleccion.woocommerce ul.products li.product,
    #coleccion ul.products li.product {
        flex-basis: min(390px, 100%);
        grid-template-columns: 105px minmax(0, 1fr);
        column-gap: 14px;
        padding: 10px 12px;
    }

    #coleccion ul.products li.product img {
        max-height: 118px;
    }

    #coleccion ul.products li.product .button {
        padding: 8px 12px;
        font-size: .82rem;
    }

    .tc-carousel-arrow {
        width: 32px;
        height: 32px;
        font-size: 1.45rem;
    }

    .tc-carousel-prev {
        left: -8px;
    }

    .tc-carousel-next {
        right: -8px;
    }

    .tc-animal-hero-image {
        top: 64px;
        right: -18vw;
        width: 70vw;
        opacity: .3;
    }

    .tc-animal-hero-content {
        height: 100%;
        min-height: 0;
        padding: 62px 18px 22px;
    }

    .tc-animal-hero h1 {
        font-size: clamp(2.3rem, 14vw, 4rem);
    }
}
