:root {
    --bg: #eceef1;
    --surface: #ffffff;
    --surface-soft: #f4f6f8;
    --ink: #0f2430;
    --muted: #5d6e7d;
    --line: #d0d5dc;
    --accent: #f58220;
    --accent-strong: #d86a12;
    --accent-soft: #ffb36a;
    --accent-rgb: 245, 130, 32;
    --brand-blue: #1f6f8f;
    --brand-blue-dark: #155772;
    --brand-blue-rgb: 31, 111, 143;
    --brand-gray: #d1d3d6;
    --accent-cool: #1f6f8f;
    --radius-xl: 28px;
    --radius-lg: 18px;
    --radius-md: 14px;
    --shadow-sm: 0 10px 24px rgba(8, 13, 22, 0.08);
    --shadow-md: 0 18px 44px rgba(8, 13, 22, 0.12);
    --shadow-lg: 0 30px 80px rgba(8, 13, 22, 0.22);
    --max: 1220px;
}

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    background:
        radial-gradient(circle at 8% 12%, rgba(var(--brand-blue-rgb), 0.12), transparent 27%),
        radial-gradient(circle at 90% 85%, rgba(var(--accent-rgb), 0.11), transparent 28%),
        linear-gradient(180deg, #f7f8fa 0%, #eceef1 100%);
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Barlow", Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at 8% 12%, rgba(var(--brand-blue-rgb), 0.12), transparent 27%),
        radial-gradient(circle at 90% 85%, rgba(var(--accent-rgb), 0.11), transparent 28%),
        linear-gradient(180deg, #f7f8fa 0%, #eceef1 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
    background-size: 24px 24px;
    mask-image: radial-gradient(circle at center, black 25%, transparent 88%);
    opacity: 0.3;
    z-index: -1;
}

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

.container {
    width: min(var(--max), 94vw);
    margin-inline: auto;
}

.topbar {
    width: 100%;
    margin: 0;
    background: linear-gradient(90deg, #154e67, #1f6f8f 50%, #215f7a);
    color: #eaf1fd;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 0.72rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    z-index: 50;
    margin-top: 0;
    border-top: none;
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-right: 1.5rem;
    /* Asegura el loop perfecto compensando el gap */
    flex-shrink: 0;
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: 700;
    opacity: 0.95;
}

.marquee-group span {
    flex-shrink: 0;
}

.marquee-group .separator {
    opacity: 0.5;
    font-size: 1rem;
    display: inline-block;
}

@keyframes scroll-marquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(-50%, 0, 0);
    }
}


.main-nav {
    position: sticky;
    top: 0;
    z-index: 40;
    width: 100%;
    margin: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px) saturate(120%);
    border-bottom: 1px solid rgba(140, 155, 175, 0.24);
    box-shadow: 0 8px 24px rgba(11, 16, 26, 0.06);
}

.main-nav-inner {
    display: grid;
    grid-template-columns: 255px minmax(250px, 1fr) auto;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 0 0.95rem;
}

.brand {
    font-family: "Space Grotesk", Arial, sans-serif;
    font-size: 1.62rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    transform: rotate(15deg);
    background: linear-gradient(145deg, #2a84a8, #1f6f8f 52%, #f58220 100%);
    box-shadow:
        0 8px 18px rgba(var(--brand-blue-rgb), 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.search-wrap {
    display: flex;
    align-items: center;
    justify-self: center;
    margin-inline: auto;
    background: #ffffff;
    border: 1px solid #dce3eb;
    border-radius: 999px;
    padding: 3px;
    transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    max-width: 500px;
    width: 100%;
}

.search-wrap:focus-within {
    border-color: var(--accent);
    box-shadow: 0 4px 12px rgba(var(--accent-rgb), 0.2);
}

.search-wrap input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    outline: none;
    color: var(--ink);
    font-family: inherit;
}

.search-wrap button {
    background: linear-gradient(145deg, #ffab4d, #f58220 58%, #d86a12);
    color: #fff;
    border: 0;
    width: 46px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: transform 0.2s ease, filter 0.2s ease;
    padding: 0;
    box-shadow: 0 8px 16px rgba(var(--accent-rgb), 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.search-wrap button:hover {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.search-wrap button svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-actions {
    display: flex;
    gap: 0.72rem;
    font-weight: 700;
    font-size: 0.92rem;
    align-items: center;
}

.hamburger-btn {
    width: 46px;
    height: 42px;
    border-radius: 12px;
    border: 1px solid #cfd8e3;
    background: linear-gradient(180deg, #ffffff, #f3f7fc);
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hamburger-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--accent-rgb), 0.45);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.12);
}

.hamburger-btn span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: #1f2937;
}

.store-menu {
    position: fixed;
    inset: 0;
    z-index: 120;
    pointer-events: none;
    display: none;
}

.store-menu.is-open {
    pointer-events: auto;
}

.store-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 12, 20, 0.46);
    opacity: 0;
    transition: opacity 0.25s ease;
}

.store-menu-panel {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: min(390px, 92vw);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border-left: 1px solid rgba(126, 143, 165, 0.28);
    box-shadow: -22px 0 40px rgba(15, 23, 42, 0.17);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.store-menu.is-open .store-menu-backdrop {
    opacity: 1;
}

.store-menu.is-open .store-menu-panel {
    transform: translateX(0);
}

.store-menu-head {
    padding: 1rem 1rem 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5ecf5;
}

.store-menu-head h3 {
    margin: 0;
    font-size: 1.25rem;
}

.menu-close-btn {
    width: 34px;
    height: 34px;
    border: 1px solid #d5dde8;
    border-radius: 10px;
    background: #fff;
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
}

.store-menu-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #e5ecf5;
}

.menu-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    min-height: 42px;
    font-weight: 800;
    border: 1px solid transparent;
}

.menu-pill-contact {
    color: #ffffff;
    background: linear-gradient(145deg, #ffab4d, #f58220 58%, #d86a12);
    box-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.32);
}

.menu-pill-cart {
    color: #ffffff;
    background: linear-gradient(145deg, #1d6f8f, #165c78 60%, #11495f);
    box-shadow: 0 10px 20px rgba(var(--brand-blue-rgb), 0.28);
}

.store-menu-body {
    padding: 0.95rem 1rem 1.4rem;
    overflow-y: auto;
}

.menu-section-title {
    margin: 0 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 800;
}

.menu-category-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.58rem;
}

.menu-category-link,
.menu-category-item>summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #d8e2ef;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff, #f4f8fd);
    min-height: 44px;
    padding: 0.65rem 0.8rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
}

.menu-category-item>summary {
    list-style: none;
}

.menu-category-item>summary::-webkit-details-marker {
    display: none;
}

.menu-category-item[open]>summary {
    border-color: rgba(var(--accent-rgb), 0.32);
}

.menu-subcategory-list {
    margin-top: 0.42rem;
    margin-left: 0.4rem;
    display: grid;
    gap: 0.36rem;
}

.menu-subcategory-list a {
    border-radius: 10px;
    padding: 0.52rem 0.65rem;
    background: #ffffff;
    border: 1px solid #e5edf7;
    color: #243247;
    font-size: 0.92rem;
}

.menu-subcategory-list a:hover {
    border-color: rgba(var(--accent-rgb), 0.3);
}

.menu-view-all {
    font-weight: 700;
    color: var(--accent-strong) !important;
}

.menu-lock {
    overflow: hidden;
}

.pill-link {
    border: 1px solid rgba(126, 143, 165, 0.36);
    padding: 0.56rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff, #f4f7fb);
    box-shadow: 0 6px 16px rgba(16, 24, 36, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.pill-link:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--accent-rgb), 0.42);
    box-shadow: 0 10px 18px rgba(16, 24, 36, 0.11);
}

.category-row {
    border-top: 1px solid rgba(126, 143, 165, 0.2);
    padding: 0.78rem 0 0.96rem;
}

.category-scroller {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-item {
    position: relative;
    padding-bottom: 12px;
    margin-bottom: -12px;
}

.nav-category-link {
    padding: 0.32rem 0;
    border-bottom: 2px solid transparent;
    font-weight: 700;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: #1a2436;
    letter-spacing: 0.01em;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-category-link:hover {
    color: var(--accent-strong);
    border-color: rgba(var(--accent-rgb), 0.45);
}

.nav-caret {
    width: 7px;
    height: 7px;
    border-right: 1.8px solid currentColor;
    border-bottom: 1.8px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    opacity: 0.8;
}

.category-btn {
    border: 1px solid rgba(126, 143, 165, 0.32);
    background: linear-gradient(180deg, #ffffff, #f6f8fc);
    padding: 0.54rem 0.9rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    display: inline-flex;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.category-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(var(--accent-rgb), 0.45);
    box-shadow: 0 10px 18px rgba(16, 24, 36, 0.1);
}

.category-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% - 2px);
    padding-top: 12px;
    z-index: 100;
    min-width: 260px;
    display: none;
}

.category-dropdown-inner {
    background: #ffffff;
    border: 1px solid rgba(126, 143, 165, 0.15);
    border-radius: 12px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    padding: 0.8rem;
    overflow: hidden;
}

.category-item:hover .category-dropdown,
.category-item:focus-within .category-dropdown,
.category-item.is-open .category-dropdown {
    display: block;
    animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-title {
    margin: 0.3rem 0.5rem 0.6rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #8fa0b5;
    font-weight: 800;
}

.category-dropdown a {
    display: block;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.94rem;
    transition: background 0.2s, color 0.2s;
}

.category-dropdown a:hover {
    background: #f7fafc;
    color: var(--accent);
}

.dropdown-view-all {
    margin-top: 0.5rem;
    border-top: 1px solid #edf2f7;
    padding-top: 0.8rem !important;
    color: var(--accent) !important;
    font-weight: 700 !important;
}

.empty-inline {
    margin: 0;
    color: var(--muted);
    font-weight: 600;
}

main {
    flex: 1 0 auto;
    width: min(var(--max), 94vw);
    margin: 0 auto;
    padding-top: 1.3rem;
    padding-bottom: 0;
}

main>*:last-child {
    margin-bottom: 0 !important;
}

.section:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 1.4rem;
}

/* Hero Premium */
.hero-shell {
    position: relative;
    background-color: #05131e;
    border-radius: 26px;
    color: #fff;
    overflow: hidden;
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.4);
    isolation: isolate;
}

.hero-bg-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-bg-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-copy {
    padding: clamp(2rem, 5vw, 4rem);
    z-index: 2;
}

.hero-copy .kicker {
    margin: 0 0 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-size: 0.8rem;
    color: #d1d5db;
    font-weight: 700;
}

.hero-copy h1 {
    margin: 0;
    line-height: 0.95;
    font-size: clamp(2.2rem, 5.5vw, 4.5rem);
    text-transform: uppercase;
    max-width: 12ch;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero-copy .sub {
    margin-top: 1.2rem;
    max-width: 45ch;
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.6;
}

.hero-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-premium {
    appearance: none;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 0.86rem 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: inherit;
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -120%;
    width: 45%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-20deg);
    transition: left 0.35s ease;
}

.btn-premium:hover {
    transform: translateY(-1px);
}

.btn-premium:hover::before {
    left: 140%;
}

.btn-premium:active {
    transform: translateY(0);
}

.btn-primary {
    color: #ffffff;
    border-color: rgba(var(--accent-rgb), 0.45);
    background: linear-gradient(145deg, #ffad52, #f58220 58%, #d86a12);
    box-shadow:
        0 12px 24px rgba(var(--accent-rgb), 0.36),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -8px 14px rgba(132, 68, 19, 0.32);
}

.hero-visual {
    display: none;
}

.shoe-shape {
    width: min(85%, 520px);
    aspect-ratio: 4 / 2.3;
    border-radius: 50%;
    background:
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.15), transparent 40%),
        linear-gradient(135deg, #194960, #236f8f 50%, #143f53);
    transform: rotate(-12deg);
    box-shadow:
        0 40px 70px -10px rgba(0, 0, 0, 0.5),
        inset -2px -4px 20px rgba(255, 255, 255, 0.05),
        inset 4px 4px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    animation: floatShoe 6s ease-in-out infinite;
}

@keyframes floatShoe {

    0%,
    100% {
        transform: rotate(-12deg) translateY(0);
    }

    50% {
        transform: rotate(-12deg) translateY(-12px);
    }
}

.orb {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    filter: blur(2px);
}

.orb-one {
    width: 190px;
    height: 190px;
    background: rgba(var(--brand-blue-rgb), 0.32);
    top: 14%;
    right: 16%;
}

.orb-two {
    width: 130px;
    height: 130px;
    background: rgba(var(--accent-rgb), 0.3);
    bottom: 20%;
    left: 10%;
}

.badges {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.badge {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.2s;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e0;
}

.badge h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
    font-weight: 700;
}

.badge h3 {
    margin: 0 0 0.32rem;
    font-size: 1.02rem;
}

.badge p {
    margin: 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.section {
    margin-top: 2.1rem;
}

.section h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.34rem, 3vw, 2.1rem);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-wrap: balance;
}

.section h3 {
    margin: 0 0 0.85rem;
    font-size: 1.2rem;
}

.cat-grid,
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.98rem;
}

/* Category Cards */
.cat-card {
    background: linear-gradient(160deg, #ffffff, #f1f5f9);
    border: 1px solid #dae1e7;
    border-radius: 16px;
    padding: 1.2rem;
    min-height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.25s ease;
    overflow: hidden;
    position: relative;
}

.cat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border-color: #cbd5e1;
}

.cat-card h3 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--ink);
    z-index: 1;
}

.cat-card:hover h3 {
    color: var(--accent);
}

.cat-card p {
    margin: 0.3rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    z-index: 1;
}

.cat-card img {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    height: 120%;
    width: auto;
    opacity: 0.15;
    transition: all 0.3s ease;
}

.cat-card:hover img {
    opacity: 0.25;
    transform: translateY(-50%) rotate(-5deg) scale(1.1);
}

.cat-card-link {
    display: contents;
    text-decoration: none;
    color: inherit;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.15);
    border-color: #cbd5e1;
}

.product-thumb {
    height: 200px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-thumb img {
    transform: scale(1.05);
}

.product-meta {
    padding: 1.2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-meta h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
}

.product-meta h3 a {
    text-decoration: none;
    color: var(--ink);
    transition: color 0.2s;
}

.product-meta h3 a:hover {
    color: var(--accent);
}

.product-meta p {
    margin: 0.4rem 0 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.price {
    display: block;
    margin-top: auto;
    padding-top: 0.8rem;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
}

/* Tabs for Index */
.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.tab {
    padding: 0.6rem 1.2rem;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.tab:hover,
.tab.active {
    background: var(--ink);
    color: #ffffff;
    border-color: var(--ink);
}

.product-meta {
    padding: 0.95rem;
}

.product-meta-top {
    min-height: 82px;
}

.product-brand {
    margin: 0 0 0.38rem;
    display: inline-flex;
    padding: 0.18rem 0.55rem;
    border-radius: 999px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 800;
    color: #ad5917;
    background: rgba(var(--accent-rgb), 0.15);
}

.product-meta h3 {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.25;
}

.product-meta h3 a:hover {
    color: var(--accent-strong);
}

.product-meta-bottom {
    margin-top: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.product-meta p {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.93rem;
}

.price {
    display: block;
    margin-top: 0.6rem;
    font-size: 1.06rem;
    font-weight: 900;
    color: #0e1523;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 1.25rem;
}

.product-detail-gallery,
.product-detail-info {
    background: linear-gradient(180deg, #ffffff, #f9fbff);
    border: 1px solid rgba(126, 143, 165, 0.24);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(8, 13, 22, 0.09);
}

.product-detail-gallery {
    padding: 1rem;
}

.product-detail-main-image {
    border-radius: 14px;
    overflow: hidden;
    background: linear-gradient(145deg, #edf2f8, #dfe7f2);
    border: 1px solid rgba(126, 143, 165, 0.2);
    aspect-ratio: 1 / 1;
    width: 100%;
}

.product-detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-detail-thumbnails {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
}

.product-detail-thumbnails::-webkit-scrollbar {
    height: 6px;
}

.product-detail-thumbnails::-webkit-scrollbar-track {
    background: transparent;
}

.product-detail-thumbnails::-webkit-scrollbar-thumb {
    background: rgba(126, 143, 165, 0.4);
    border-radius: 10px;
}

.thumbnail {
    flex: 0 0 auto;
    width: 75px;
    height: 75px;
    border: 2px solid transparent;
    border-radius: 10px;
    padding: 3px;
    cursor: pointer;
    background: #fff;
    box-shadow: 0 4px 10px rgba(8, 13, 22, 0.05);
    transition: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.thumbnail:hover {
    transform: translateY(-2px);
    border-color: rgba(var(--accent-rgb), 0.4);
    box-shadow: 0 8px 16px rgba(var(--accent-rgb), 0.12);
}

.thumbnail.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}

.product-detail-info {
    padding: 1.2rem;
}

.product-detail-brand {
    margin: 0;
    display: inline-flex;
    padding: 0.22rem 0.6rem;
    border-radius: 999px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
    color: #ad5917;
    background: rgba(var(--accent-rgb), 0.16);
}

.product-detail-info h1 {
    margin: 0.55rem 0 0;
    font-size: clamp(1.5rem, 2.6vw, 2.15rem);
    line-height: 1.08;
    text-wrap: balance;
}

.product-detail-meta {
    margin-top: 0.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.meta-chip {
    border: 1px solid rgba(126, 143, 165, 0.3);
    background: #fff;
    border-radius: 999px;
    padding: 0.34rem 0.62rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: #253145;
}

.meta-chip.in-stock {
    color: #0f766e;
    border-color: rgba(15, 118, 110, 0.35);
    background: rgba(15, 118, 110, 0.08);
}

.meta-chip.out-stock {
    color: #9f1239;
    border-color: rgba(159, 18, 57, 0.33);
    background: rgba(159, 18, 57, 0.08);
}

.product-detail-price-card {
    margin-top: 1rem;
    border: 1px solid rgba(var(--accent-rgb), 0.34);
    border-radius: 14px;
    padding: 0.88rem;
    background:
        radial-gradient(circle at 90% 15%, rgba(var(--accent-rgb), 0.18), transparent 45%),
        linear-gradient(180deg, #ffffff, #fff6ea);
}

.price-label {
    display: block;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    font-weight: 800;
}

.price-value {
    display: block;
    margin-top: 0.25rem;
    font-size: clamp(1.8rem, 3.4vw, 2.4rem);
    font-weight: 900;
    line-height: 1;
    color: #111827;
}

.installments-note {
    margin: 0.45rem 0 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.product-detail-description {
    margin: 1rem 0 0;
    color: #374151;
    line-height: 1.6;
}

/* Atributos del producto � botones de opciones */
.product-detail-attributes {
    margin-top: 1.1rem;
    display: grid;
    gap: 0.85rem;
}

.attr-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.attr-label {
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #6b7280;
}

.attr-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.attr-btn {
    appearance: none;
    border: 1.5px solid rgba(126, 143, 165, 0.38);
    border-radius: 8px;
    background: linear-gradient(180deg, #ffffff, #f5f8fc);
    color: #1e293b;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 0.38rem 0.8rem;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, color 0.18s, box-shadow 0.18s;
    min-width: 2.8rem;
    text-align: center;
}

.attr-btn:hover {
    border-color: rgba(var(--accent-rgb), 0.56);
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent-strong);
}

.attr-btn.selected,
.attr-btn:focus {
    border-color: var(--accent);
    background: linear-gradient(145deg, #ffad52, #f58220);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(var(--accent-rgb), 0.32);
    outline: none;
}

.attr-btn-disabled {
    background: #ebebeb;
    color: #92a4b8;
    border-color: #6e7075;
    cursor: not-allowed;
    text-decoration: none;
    box-shadow: none;
    border-radius: 4px;
    /* Un poco más cuadrado según la imagen */
}

.attr-btn-disabled:hover {
    background: #ebebeb;
    color: #92a4b8;
    border-color: #6e7075;
    box-shadow: none;
}

.product-detail-actions {
    margin-top: 1.05rem;
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}


.product-detail-actions .btn-premium {
    min-height: 46px;
    padding-inline: 1.1rem;
}

.btn-whatsapp {
    color: #ffffff;
    border-color: rgba(16, 185, 129, 0.5);
    background: linear-gradient(145deg, #25d366, #18b957 58%, #0f9f49);
    box-shadow:
        0 12px 24px rgba(16, 185, 129, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        inset 0 -6px 12px rgba(8, 91, 40, 0.35);
}

.btn-whatsapp:hover {
    filter: brightness(1.05);
}

.product-detail-features {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 0.45rem;
}

.product-detail-features li {
    position: relative;
    padding-left: 1.35rem;
    color: #334155;
    font-size: 0.95rem;
}

.product-detail-features li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.4rem;
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: linear-gradient(145deg, #ffad52, #f58220);
    box-shadow: 0 0 0 3px rgba(var(--accent-rgb), 0.16);
}

.product-action {
    padding: 0.46rem 0.66rem;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 800;
    background: linear-gradient(180deg, #f5f8fc, #e8eef6);
    border: 1px solid rgba(126, 143, 165, 0.32);
}

.product-action:hover {
    border-color: rgba(var(--accent-rgb), 0.35);
    color: var(--accent-strong);
}

.stack-sections {
    display: grid;
    gap: 2.15rem;
}

.empty-box {
    border: 1px dashed #c2cfdd;
    color: #5f6b7a;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border-radius: 12px;
    padding: 1rem;
    margin: 0;
}

/* Cart */
.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.cart-header h2 {
    margin: 0;
}

.btn-empty-cart {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid rgba(var(--accent-rgb), 0.46);
    border-radius: 10px;
    background: linear-gradient(145deg, #ffad52, #f58220 58%, #d86a12);
    color: #fff;
    font-family: inherit;
    font-size: 0.86rem;
    font-weight: 800;
    padding: 0.56rem 0.96rem;
    cursor: pointer;
    box-shadow: 0 10px 18px rgba(var(--accent-rgb), 0.28);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.btn-empty-cart:hover {
    transform: translateY(-1px);
    filter: brightness(1.03);
}

.cart-content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    gap: 1.3rem;
    align-items: start;
}

.cart-items {
    display: grid;
    gap: 0.8rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 0.9rem;
    border: 1px solid rgba(126, 143, 165, 0.24);
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f9fbff);
    box-shadow: 0 12px 26px rgba(8, 13, 22, 0.08);
    padding: 0.9rem;
}

.cart-item img {
    width: 92px;
    height: 92px;
    border-radius: 12px;
    object-fit: cover;
    border: 1px solid rgba(126, 143, 165, 0.2);
}

.cart-item-info h3 {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.2;
}

.cart-item-info .brand {
    display: block;
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.92rem;
}

.cart-item-attrs {
    display: block;
    margin-top: 0.3rem;
    color: #334155;
    font-size: 0.83rem;
    font-weight: 600;
}

.item-price {
    margin: 0.45rem 0 0;
    font-weight: 800;
    color: #0f172a;
}

.cart-item-quantity {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem;
    background: #f4f8fd;
    border: 1px solid rgba(126, 143, 165, 0.26);
    border-radius: 999px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(126, 143, 165, 0.3);
    border-radius: 999px;
    background: #fff;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
}

.qty-btn:hover {
    border-color: rgba(var(--accent-rgb), 0.42);
    color: var(--accent-strong);
}

.cart-item-quantity input {
    width: 52px;
    border: 0;
    background: transparent;
    text-align: center;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    outline: none;
}

.cart-item-total .item-total {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 900;
    color: #0f172a;
}

.btn-remove-item {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(var(--accent-rgb), 0.36);
    border-radius: 10px;
    background: rgba(var(--accent-rgb), 0.14);
    color: var(--accent-strong);
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.btn-remove-item:hover {
    background: rgba(var(--accent-rgb), 0.24);
    transform: translateY(-1px);
}

.btn-remove-item svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    display: block;
}

.cart-summary {
    position: sticky;
    top: 1rem;
    border: 1px solid rgba(126, 143, 165, 0.24);
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #f9fbff);
    box-shadow: 0 14px 30px rgba(8, 13, 22, 0.09);
    padding: 1.25rem;
}

.cart-summary h3 {
    margin: 0 0 1rem;
    font-size: 1.15rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.cart-summary hr {
    border: 0;
    border-top: 1px solid rgba(126, 143, 165, 0.22);
    margin: 0.8rem 0;
}

.summary-total {
    font-size: 1.1rem;
    font-weight: 900;
}

.summary-total span:last-child {
    color: var(--accent);
}

.financing-info {
    margin: 0.75rem 0 1.1rem;
    text-align: center;
    color: #5f6b7a;
    font-size: 0.83rem;
}

.cart-summary-actions {
    display: grid;
    gap: 0.72rem;
}

.btn-checkout {
    justify-content: center;
    min-height: 46px;
    font-size: 1rem;
}

.btn-checkout.disabled,
.btn-checkout:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    filter: grayscale(0.1);
    pointer-events: none;
}

.cart-continue {
    text-align: center;
    min-height: 46px;
}

.empty-cart-message {
    border: 1px dashed #c2cfdd;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f7fbff);
    text-align: center;
    padding: 2rem 1rem;
    color: #556277;
}

.empty-cart-message i {
    font-size: 2.2rem;
    color: #9aa8bb;
}

.empty-cart-message h3 {
    margin: 0.8rem 0 0.4rem;
}

.empty-cart-message p {
    margin: 0;
}

.empty-cart-cta {
    margin-top: 1.05rem;
    display: inline-flex;
}

footer {
    margin-top: 0;
    margin-bottom: 0;
    flex-shrink: 0;
    background:
        linear-gradient(145deg, #133f53, #1a5f7c 52%, #12384a),
        radial-gradient(circle at 10% 10%, rgba(var(--accent-rgb), 0.28), transparent 35%);
    color: #d8e2f0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(55deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 12px);
    pointer-events: none;
}

.footer-inner {
    position: relative;
    padding: 2.1rem 0 2.6rem;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1rem;
}

.footer-col h4 {
    margin: 0 0 0.58rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
    margin: 0.26rem 0;
    color: #d8e2f0;
    display: block;
}

.footer-col a:hover {
    color: #ffffff;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.88rem 0;
    text-align: center;
    color: #aebdd3;
    font-size: 0.86rem;
    position: relative;
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .main-nav-inner {
        grid-template-columns: 1fr minmax(0, auto);
        grid-template-areas:
            "brand burger"
            "search search";
        gap: 0.8rem;
    }

    .brand {
        grid-area: brand;
    }

    .search-wrap {
        grid-area: search;
        max-width: none;
    }

    .nav-actions {
        display: none !important;
    }

    .category-row {
        display: none !important;
    }

    .hamburger-btn {
        grid-area: burger;
        display: inline-flex;
        justify-self: end;
    }

    .store-menu {
        display: block;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        min-height: unset;
    }

    .hero-visual {
        min-height: 260px;
        padding-bottom: 1rem;
    }

    .badges,
    .cat-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .cart-content {
        grid-template-columns: 1fr;
    }

    .cart-summary {
        position: static;
    }

    .product-detail-main-image {
        min-height: 380px;
    }

    .store-menu-panel {
        width: min(420px, 94vw);
    }
}

@media (max-width: 680px) {
    .topbar {
        font-size: 0.75rem;
        padding: 0.5rem 0;
    }

    .marquee-content {
        gap: 1rem;
        padding-right: 1rem;
    }

    .hero-copy h1 {
        font-size: clamp(1.95rem, 12vw, 3.2rem);
    }

    .hero-copy .sub {
        font-size: 1rem;
    }

    .badges {
        grid-template-columns: 1fr;
    }

    .cat-grid,
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .btn-premium {
        width: 100%;
    }

    .hero-actions {
        gap: 0.55rem;
    }

    .product-detail-main-image {
        min-height: 300px;
    }

    .product-detail-actions .btn-premium {
        width: 100%;
    }

    .cart-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-empty-cart {
        width: 100%;
        justify-content: center;
    }

    .cart-item {
        grid-template-columns: 78px minmax(0, 1fr);
        gap: 0.75rem;
    }

    .cart-item img {
        width: 78px;
        height: 78px;
    }

    .cart-item-quantity,
    .cart-item-total,
    .btn-remove-item {
        grid-column: 2;
    }

    .cart-item-quantity {
        justify-self: start;
    }

    .cart-item-total {
        justify-self: start;
    }

    .btn-remove-item {
        justify-self: end;
        margin-top: -2.05rem;
    }

    .cart-item-info h3 {
        font-size: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .shoe-shape,
    .btn-premium,
    .cat-card,
    .product-card,
    .pill-link,
    .category-btn,
    .reveal {
        animation: none !important;
        transition: none !important;
    }
}




/* Cat�logo Dropdown in navbar */
.nav-catalog-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.catalog-toggle {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
}

.catalog-toggle .nav-caret {
    transition: transform 0.2s ease;
}

.nav-catalog-wrapper:hover .catalog-toggle .nav-caret,
.nav-catalog-wrapper:focus-within .catalog-toggle .nav-caret {
    transform: rotate(180deg);
}

.catalog-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: #ffffff;
    border: 1px solid rgba(126, 143, 165, 0.18);
    border-radius: 14px;
    box-shadow: 0 16px 42px rgba(11, 16, 26, 0.12),
        0 4px 12px rgba(11, 16, 26, 0.04);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 100;
}

.nav-catalog-wrapper:hover .catalog-dropdown,
.nav-catalog-wrapper:focus-within .catalog-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.catalog-dropdown::before {
    content: "";
    position: absolute;
    top: -12px;
    right: 0;
    width: 100%;
    height: 12px;
}

.catalog-dropdown-inner {
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.catalog-item {
    display: block;
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 0.94rem;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}

.catalog-item:hover,
.catalog-item:focus {
    background: #f7fafc;
    color: var(--brand-blue);
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
}

.lightbox-modal.active {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#lightboxImage {
    max-width: 100vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    user-select: none;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
    transition: color 0.2s;
    line-height: 1;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent);
    text-decoration: none;
}

.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    font-size: 2rem;
    padding: 15px 20px;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: none;
    /* hidden by default, shown by JS if count > 1 */
    z-index: 1001;
    backdrop-filter: blur(4px);
}

.lightbox-nav-btn:hover {
    background: var(--accent);
    color: white;
}

#lightboxPrev {
    left: -60px;
}

#lightboxNext {
    right: -60px;
}

@media (max-width: 768px) {
    #lightboxPrev {
        left: 10px;
    }

    #lightboxNext {
        right: 10px;
    }
}

/* Etiqueta de descuento estilo pinrojo */
.badge-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e3001b;
    color: white;
    font-weight: 800;
    font-size: 15px;
    padding: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(227, 0, 27, 0.4);
    letter-spacing: -0.5px;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.1);
}

.badge-discount::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #e3001b transparent transparent transparent;
}


/* Icono Nav de Carrito */
.cart-icon-nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f4f5f8;
    color: #1a2332;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    margin-left: 10px;
}

.cart-icon-nav:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(22, 101, 216, 0.3);
}

.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e91e63;
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 5px rgba(233, 30, 99, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Animacion pop cuando se agrega algo */
@keyframes cartBounce {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3) translateY(-5px);
    }

    100% {
        transform: scale(1) translateY(0);
    }
}

.cart-icon-nav.bounce .cart-count-badge {
    animation: cartBounce 0.5s ease-out;
}