/**
 * PRAY E-Commerce — Diseño Depofit-Inspirado
 * Clean, modern sports e-commerce aesthetic
 * v1.3.0 — 2026-03-18 — Responsive full fix, social links, banner hero
 */

/* ===========================
   CSS VARIABLES & RESET
=========================== */
:root {
    /* PRAY Brand Colors — Tríada de Poder */
    --white: #f9f9f9;
    --black: #151515;
    --gray-100: #f0f0f0;
    --gray-200: #e2e2e2;
    --gray-400: #999999;
    --gray-cement: #636363;
    --gray-600: #444444;
    --gray-900: #0d0d0d;
    --beige: #C4A882;
    --accent: #151515;

    /* PRAY Typography */
    --font: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-title: 'Bebas Neue', 'Montserrat', Impact, sans-serif;

    --header-height: 64px;


    --radius-sm: 2px;
    --radius: 4px;

    --transition: 0.2s ease;
    --transition-slow: 0.4s ease;

    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

button {
    cursor: pointer;
    font-family: var(--font);
    border: none;
    background: none;
}

/* ===========================
   SITE HEADER
=========================== */
.site-header {
    background: var(--black);
    border-bottom: none !important;
    position: sticky;
    top: 0;
    z-index: 150;
    transition: box-shadow var(--transition);
}

.site-header.scrolled {
    box-shadow: var(--shadow);
}

.site-header__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--header-height);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

@media (max-width: 768px) {
    .site-header__inner {
        padding: 0 12px;
        gap: 12px;
    }
    .hdr-cart-label, .hdr-login-btn {
        display: none !important; /* Hide labels to save space */
    }
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-title);
    font-size: 32px;
    font-weight: 400;
    color: var(--white);
    text-transform: uppercase;
    transition: opacity var(--transition);
}

.header-logo-img, .footer-logo-img {
    height: 32px;
    width: auto;
}

.header-logo-secundario-img, .footer-logo-secundario-img {
    height: 28px;
    width: auto;
    filter: invert(1) brightness(100);
}

@media (max-width: 480px) {
    .site-logo {
        gap: 6px;
    }
    .header-logo-img {
        height: 22px;
    }
    .header-logo-secundario-img {
        height: 20px;
    }
    .site-header__inner {
        padding: 0 10px;
        gap: 8px;
    }
}

.site-nav__link:hover {
    opacity: 0.65;
}

.site-nav__link--offers {
    color: var(--beige);
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 480px) {
    .site-header__actions {
        gap: 2px;
    }
    .hdr-cart-btn, .hdr-icon-btn, .hdr-login-btn {
        padding: 4px !important;
        font-size: 11px !important;
    }
    .hdr-cart-btn svg, .hdr-icon-btn svg {
        width: 18px !important;
        height: 18px !important;
    }
}

/* Nav */
.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.site-nav__item {
    position: relative;
}

.site-nav__link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    cursor: pointer;
    transition: opacity var(--transition);
    white-space: nowrap;
    border-radius: var(--radius-sm);
}

.site-nav__link:hover {
    opacity: 0.65;
}

.site-nav__link--offers {
    color: var(--beige);
}

.chevron {
    width: 12px;
    height: 12px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: transform var(--transition);
}

.site-nav__item--dropdown:hover .chevron {
    transform: rotate(180deg);
}

/* Dropdown */
.site-nav__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-top: 2px solid var(--black);
    min-width: 200px;
    box-shadow: var(--shadow-lg);
    display: none;
    flex-direction: column;
    padding: 8px 0;
    z-index: 300;
}

.site-nav__item--dropdown:hover .site-nav__dropdown {
    display: flex;
}

.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-600);
    transition: all var(--transition);
    letter-spacing: 0.3px;
}

.dropdown-link:hover {
    background: var(--gray-100);
    color: var(--black);
    padding-left: 26px;
}

.dropdown-link.all-link {
    border-top: 1px solid var(--gray-200);
    margin-top: 4px;
    padding-top: 14px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--black);
}

/* Header Actions */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    transition: background var(--transition);
    position: relative;
    color: var(--black);
}

.icon-btn:hover {
    background: var(--gray-100);
}

.icon-btn svg {
    width: 22px;
    height: 22px;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    line-height: 1;
}

.hamburger-btn {
    display: none !important;
}

@media (max-width: 991px) {
    .hamburger-btn {
        display: flex !important;
    }
}

/* Search Bar */
.header-search {
    border-top: 1px solid var(--gray-200);
    background: var(--white);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.header-search.open {
    max-height: 80px;
    padding: 12px 0;
}

.header-search__inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-search__inner svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gray-400);
}

.search-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: var(--font);
    color: var(--black);
    background: transparent;
    padding: 8px 0;
}

.search-input::placeholder {
    color: var(--gray-400);
}

.search-close {
    font-size: 24px;
    font-weight: 300;
    color: var(--gray-400);
    padding: 4px;
    transition: color var(--transition);
}

.search-close:hover {
    color: var(--black);
}

/* ===========================
   HERO / SLIDER
=========================== */
.hero {
    position: relative;
    height: 65vh;
    min-height: 450px;
    max-height: 900px;
    overflow: hidden;
    background: var(--gray-900);
}


/* Hero static (no slider) — .hero__bg directo */
.hero__bg {
    position: absolute;
    inset: 0;
}

.hero__bg img,
.hero__image,
.hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(0, 0, 0, 0.2) 100%);
}

.hero__bg--dark .hero__overlay {
    background: rgba(0, 0, 0, 0.55);
}

.hero__content {
    position: absolute;
    bottom: 100px;
    left: 48px;
    right: 24px;
    z-index: 10;
    max-width: 580px;
}

.hero__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
}

.hero__title {
    font-family: var(--font-title);
    font-size: clamp(56px, 9vw, 110px);
    font-weight: 400;
    letter-spacing: 6px;
    line-height: 0.95;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.hero__verse {
    font-size: 14px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
}

.hero__ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

/* ===========================
   CAT-NAV — BÓTONES LIMPIOS DE CATEGORÍA
=========================== */
.cat-nav {
    background: var(--white);
    border-bottom: 1px solid #e5e5e5;
    position: relative;
    z-index: 100;
}

.cat-nav__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center buttons */
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.cat-nav__inner::-webkit-scrollbar {
    display: none;
}

.cat-nav__btn {
    flex-shrink: 0;
    padding: 18px 20px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #636363;
    background: transparent;
    border: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.cat-nav__btn:hover {
    color: var(--black);
}

.cat-nav__btn.active {
    color: var(--black);
    border-bottom-color: var(--black);
    font-weight: 700;
}

/* Hero Controls */
.hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition);
}

.hero__arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.05);
}

.hero__arrow svg {
    width: 20px;
    height: 20px;
}

.hero__arrow--prev {
    left: 24px;
}

.hero__arrow--next {
    right: 24px;
}

.hero__dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 20;
}

.hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.hero__dot.active {
    background: var(--white);
    width: 24px;
    border-radius: 4px;
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    cursor: pointer;
    font-family: var(--font);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn--white {
    background: var(--white);
    color: var(--black);
}

.btn--white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn--outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn--black {
    background: var(--black);
    color: var(--white);
}

.btn--black:hover {
    background: var(--gray-900);
    transform: translateY(-2px);
}

.btn--white-sm {
    display: inline-block;
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--white);
    color: var(--black);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font);
}

.btn--white-sm:hover {
    background: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn--full {
    width: 100%;
}

/* ===========================
   TRUST BADGES
=========================== */
.trust-badges {
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px;
}

.trust-badges__inner {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 28px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--gray-600);
    border-right: 1px solid var(--gray-200);
}

.trust-badge:last-child {
    border-right: none;
}

.trust-badge svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: var(--black);
}

/* ===========================
   PRODUCT ROW / CAROUSEL
=========================== */
.product-row {
    padding: 56px 0;
    overflow: hidden;
}

.product-row--gray {
    background: var(--gray-100);
}

.product-row__header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 28px;
}

.product-row__title {
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.product-row__viewall {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-600);
    cursor: pointer;
    border-bottom: 1px solid var(--gray-400);
    padding-bottom: 2px;
    transition: color var(--transition);
    background: none;
    border-left: none;
    border-right: none;
    border-top: none;
}

.product-row__viewall:hover {
    color: var(--black);
    border-bottom-color: var(--black);
}

/* Carousel */
.carousel-wrapper {
    position: relative;
    padding: 0 24px;
    max-width: 1440px;
    margin: 0 auto;
}

.product-carousel {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.product-carousel::-webkit-scrollbar {
    display: none;
}

.loading-carousel {
    padding: 40px 20px;
    color: var(--gray-400);
    font-size: 14px;
    white-space: nowrap;
}

/* Carousel Arrows */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    color: var(--black);
}

.carousel-arrow:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-60%) scale(1.05);
}

.carousel-arrow svg {
    width: 18px;
    height: 18px;
}

.carousel-arrow--prev {
    left: -4px;
}

.carousel-arrow--next {
    right: -4px;
}

/* Product Card (Carousel) */
.carousel-card {
    flex: 0 0 240px;
    scroll-snap-align: start;
    cursor: pointer;
    position: relative;
}

.carousel-card:hover .carousel-card__img-secondary {
    opacity: 1;
}

.carousel-card:hover .carousel-card__img-primary {
    opacity: 0;
}

.carousel-card__image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--gray-100);
    overflow: hidden;
    position: relative;
    margin-bottom: 12px;
}

.carousel-card__img-primary,
.carousel-card__img-secondary {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
}

.carousel-card__img-secondary {
    opacity: 0;
}

.carousel-card__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 8px;
    z-index: 2;
}

.carousel-card__name {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
    line-height: 1.3;
    letter-spacing: 0.3px;
}

.carousel-card__cat {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.carousel-card__price {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
}

/* ===========================
   GENDER BANNERS
=========================== */
.gender-banners {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    height: 560px;
}

.gender-banner {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.gender-banner__bg {
    position: absolute;
    inset: 0;
}

.gender-banner__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.gender-banner:hover .gender-banner__bg img {
    transform: scale(1.04);
}

.gender-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.05) 100%);
    transition: background var(--transition-slow);
}

.gender-banner:hover .gender-banner__overlay {
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.3) 60%,
            rgba(0, 0, 0, 0.1) 100%);
}

.gender-banner__content {
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.gender-banner__title {
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 6px;
    color: var(--white);
    text-transform: uppercase;
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ===========================
   FAITH SECTION
=========================== */
.faith-section {
    padding: 100px 24px;
    background: var(--gray-900);
    color: var(--white);
}

.faith-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.faith-section__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.faith-section__title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 700;
    font-style: italic;
    margin-bottom: 24px;
    color: var(--white);
}

.faith-section__text {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    max-width: 720px;
    margin: 0 auto 64px;
}

.faith-section__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.faith-pillar {
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    transition: border-color var(--transition), background var(--transition);
}

.faith-pillar:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.faith-pillar__icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: rgba(255, 255, 255, 0.7);
}

.faith-pillar__icon svg {
    width: 100%;
    height: 100%;
}

.faith-pillar h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.faith-pillar p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================
   PRODUCTS SECTION (Full Grid)
=========================== */
.search-results {
    padding: 40px 0;
    background: var(--gray-100);
}

.products-section {
    padding: 72px 0;
}

.main-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-head {
    text-align: center;
    margin-bottom: 48px;
}

.section-head__title {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-head__sub {
    font-size: 14px;
    color: var(--gray-cement);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.search-header h2 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 2px;
}

.icon-close {
    font-size: 28px;
    font-weight: 300;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    transition: opacity var(--transition);
}

.icon-close:hover {
    opacity: 0.6;
}

/* Filters */
/* Sidebar removed — filters now horizontal pills */
.content-wrapper {
    display: block;
}

.filters {
    position: sticky;
    top: calc(var(--header-height) + 20px);
}

.filter-section {
    margin-bottom: 28px;
}

.filter-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--black);
}

.filter-option {
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-600);
    cursor: pointer;
    transition: color var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-option::before {
    content: '';
    width: 0;
    height: 2px;
    background: var(--black);
    transition: width var(--transition);
    border-radius: 2px;
}

.filter-option:hover {
    color: var(--black);
}

.filter-option:hover::before {
    width: 12px;
}

.filter-option.active {
    font-weight: 700;
    color: var(--black);
}

.filter-option.active::before {
    width: 12px;
}

/* Products Grid */
/* CATALOG GRID — 4 columns desktop */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    color: var(--gray-400);
    font-size: 14px;
}

/* Product Card (Grid) */
.product-card {
    cursor: pointer;
    position: relative;
}

.product-card:hover .product-img-secondary {
    opacity: 1;
}

.product-card:hover .product-img-primary {
    opacity: 0;
}

.product-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background: var(--gray-100);
    overflow: hidden;
    position: relative;
    margin-bottom: 14px;
}

.product-img-primary,
.product-img-secondary {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease;
}

.product-img-secondary {
    opacity: 0;
}



.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--black);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 3px 8px;
    text-transform: uppercase;
    z-index: 2;
}

.product-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 4px;
    letter-spacing: 0.3px;
}

.product-category {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.product-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
}

/* Quick Add Button */
.product-quick-add {
    position: absolute;
    bottom: 72px;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px;
    text-align: center;
    opacity: 0;
    transition: opacity var(--transition);
    border: none;
    width: 100%;
    font-family: var(--font);
    cursor: pointer;
}

.product-card:hover .product-quick-add {
    opacity: 1;
}

/* ===========================
   PRODUCT MODAL
=========================== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
}

.modal.active {
    display: flex;
}

.modal__content {
    background: var(--white);
    max-width: 900px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    position: relative;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(16px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.modal__image {
    background: var(--gray-100);
    min-height: 480px;
}

.modal__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal__details {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 300;
    z-index: 10;
    cursor: pointer;
    transition: all var(--transition);
    line-height: 1;
}

.modal__close:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.modal__category {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.modal__title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.modal__price {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--black);
}

.modal__description {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 24px;
    flex: 1;
}

.modal__info {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* ===========================
   CART SIDEBAR
=========================== */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 298;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
    backdrop-filter: blur(2px);
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 420px;
    height: 100vh;
    background: var(--white);
    z-index: 300;
    display: flex;
    flex-direction: column;
    transition: right var(--transition-slow);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-sidebar.open {
    right: 0;
}

.cart-sidebar__header {
    padding: 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-sidebar__title {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cart-sidebar__items {
    flex: 1;
    overflow-y: auto;
    padding: 16px 24px;
}

.cart-empty {
    text-align: center;
    padding: 48px 0;
    color: var(--gray-400);
    font-size: 14px;
}

.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 12px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-200);
}

.cart-item__img {
    width: 80px;
    height: 100px;
    background: var(--gray-100);
    overflow: hidden;
}

.cart-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-item__price {
    font-size: 13px;
    color: var(--gray-600);
}

.cart-item__remove {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: 300;
    color: var(--gray-400);
    cursor: pointer;
    transition: color var(--transition);
    line-height: 1;
    padding: 2px;
}

.cart-item__remove:hover {
    color: var(--black);
}

.cart-sidebar__footer {
    padding: 24px;
    border-top: 1px solid var(--gray-200);
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
    background: var(--black);
    color: var(--white);
}

.site-footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 72px 24px 48px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
}

.footer-col--brand .footer-logo {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 8px;
    color: var(--white);
    display: block;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 24px;
    line-height: 1.6;
}

.footer-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 16px;
    border-radius: var(--radius);
    transition: all var(--transition);
}

.footer-whatsapp:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.footer-col__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-list a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

.footer-list a:hover {
    color: var(--white);
}

.footer-hours {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition);
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.site-footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 24px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    max-width: 1440px;
    margin: 0 auto;
}

/* ===========================
   SOCIAL FLOAT + CHAT
=========================== */
.social-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-float__item {
    width: 56px;
    height: 56px;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all var(--transition);
}

.social-float__item:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.whatsapp-float {
    background: #25D366;
    animation: pulse-wa 2s infinite;
}

.instagram-float {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.tiktok-float {
    background: #000000;
}

/* Specific Footer Social Hover */
.social-icon--whatsapp:hover { background: #25D366; border-color: #25D366; color: white !important; }
.social-icon--instagram:hover { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; color: white !important; }
.social-icon--tiktok:hover { background: #000000; border-color: #000000; color: white !important; }

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.7); }
}



/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1200px) {
    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .brand-values__pillars {
        gap: 20px;
    }
}



@media (max-width: 900px) {
    .site-header__inner {
        grid-template-columns: 1fr auto;
    }

    .site-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero__content {
        left: 32px;
        bottom: 64px;
    }

    .gender-banners {
        height: 400px;
    }

    .gender-banner__title {
        font-size: 30px;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .filters {
        position: static;
        display: flex;
        flex-wrap: wrap;
        gap: 16px;
    }

    .filter-section {
        margin-bottom: 0;
    }

    .brand-values {
        padding: 60px 16px;
        box-sizing: border-box;
    }

    .brand-values__title {
        font-size: clamp(28px, 9vw, 52px);
        letter-spacing: 1px;
    }

    .brand-values__quote {
        margin-bottom: 36px;
        font-size: 13px;
    }

    /* FORCE single column — no side-by-side on mobile/tablet */
    .brand-values__pillars {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
    }

    .brand-pillar {
        width: 100% !important;
        box-sizing: border-box;
        padding: 30px 20px !important;
        text-align: center;
    }

    .brand-pillar__icon {
        margin: 0 auto 14px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 220px);
    }

    .site-footer__inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 56px;
    }

    .site-logo {
        font-size: 22px;
        letter-spacing: 5px;
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero__content {
        left: 16px;
        right: 16px;
        bottom: 40px;
        max-width: 100%;
    }

    .hero__title {
        font-size: clamp(36px, 12vw, 56px);
        letter-spacing: 3px;
    }

    .hero__subtitle {
        font-size: 15px;
    }

    .hero__ctas {
        flex-direction: column;
    }

    .hero__ctas .btn {
        width: 100%;
        max-width: 280px;
    }

    /* Cat nav: scrollable, left-aligned */
    .cat-nav__inner {
        justify-content: flex-start;
        padding: 0 12px;
    }

    .cat-nav__btn {
        padding: 14px 12px;
        font-size: 11px;
        letter-spacing: 1px;
    }

    .trust-badges__inner {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .trust-badge {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
        padding: 10px 0;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .trust-badge:last-child {
        border-bottom: none;
    }

    .gender-banners {
        grid-template-columns: 1fr;
        height: auto;
    }

    .gender-banner {
        height: 280px;
    }

    /* Products grid: 2 columns on mobile */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 0;
    }

    .product-name {
        font-size: 12px;
    }

    .product-price {
        font-size: 13px;
    }

    .section-head__title {
        font-size: 26px;
        letter-spacing: 2px;
    }

    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 180px);
    }

    .filter-pills {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .filter-pills::-webkit-scrollbar {
        display: none;
    }

    .carousel-card {
        flex: 0 0 180px;
    }

    .modal__inner {
        grid-template-columns: 1fr;
    }

    .modal__image {
        min-height: 260px;
        max-height: 260px;
    }

    .modal__details {
        padding: 24px 20px;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .site-footer__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .site-footer__inner--simple {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .footer-social {
        justify-content: center;
    }

    .chat-container {
        right: 16px;
        width: calc(100vw - 32px);
    }

    /* Floating social — smaller on very small screens */
    .social-float__item {
        width: 48px;
        height: 48px;
    }
}

/* ===========================
   ADMIN CSS (keep admin page working)
=========================== */

/* Mobile Menu (off-canvas nav) */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -300px;
    width: 300px;
    height: 100vh;
    background: var(--white);
    z-index: 400;
    transition: left var(--transition-slow);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
}

.mobile-nav.open {
    left: 0;
}

.mobile-nav__header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-nav__links {
    padding: 16px 0;
}

.mobile-nav__link {
    display: block;
    padding: 14px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    border-bottom: 1px solid var(--gray-100);
    cursor: pointer;
    transition: background var(--transition);
}

.mobile-nav__link:hover {
    background: var(--gray-100);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 399;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-slow);
}

.mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ============================================================
   HEADER — DEPOFIT EXACT OVERRIDES (overrides all above)
   These declarations ensure the header matches depofit.com
============================================================ */

/* Nav: flush items, underline-hover (not opacity) */
.site-nav {
    gap: 0 !important;
}

.site-nav__link {
    padding: 0 12px !important;
    height: var(--header-height) !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;
    opacity: 1 !important;
    color: rgba(249, 249, 249, 0.85) !important;
    transition: border-color 0.2s ease, color 0.2s ease !important;
}

.site-nav__link:hover,
.site-nav__item--dropdown:hover>.site-nav__link {
    opacity: 1 !important;
    color: var(--white) !important;
    border-bottom-color: var(--white) !important;
}

/* OFERTAS — beige en header negro */
.site-nav__link--offers {
    color: var(--beige) !important;
    font-weight: 800 !important;
}

.site-nav__link--offers:hover {
    border-bottom-color: var(--beige) !important;
}

/* Dropdown: align left (not center) */
.site-nav__dropdown {
    left: 0 !important;
    transform: none !important;
    min-width: 220px !important;
    animation: dropIn 0.15s ease;
}

@keyframes dropIn {
    from {
        opacity: 0;
        transform: translateY(-6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* DEPORTES wide dropdown: 2 columns */
.site-nav__dropdown--wide {
    min-width: 340px !important;
    columns: 2 !important;
    column-gap: 0 !important;
    display: none !important;
}

.site-nav__item--dropdown:hover .site-nav__dropdown--wide {
    display: block !important;
}

/* Header Actions */
.site-header__actions {
    gap: 2px !important;
    flex-shrink: 0 !important;
}

/* Generic icon button (search, hamburger) */
.hdr-icon-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hdr-icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hdr-icon-btn svg {
    width: 20px;
    height: 20px;
}

/* === CART BUTTON === 
   Exact Depofit layout: [COUNT] [BAG ICON] [Carrito text]
*/
.hdr-cart-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    height: 38px;
    padding: 0 10px;
    background: none;
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    cursor: pointer;
    font-family: var(--font);
    transition: background 0.2s ease;
    white-space: nowrap;
}

.hdr-cart-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.hdr-cart-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Number to the LEFT of the bag (like depofit "0") */
.hdr-cart-count {
    font-size: 13px;
    font-weight: 700;
    min-width: 14px;
    text-align: center;
    color: var(--white);
}

/* "Carrito" text to the RIGHT of the bag */
.hdr-cart-label {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--white);
}

/* === ENTRAR / Login link — clean text like Depofit === */
.hdr-login-btn {
    display: flex;
    align-items: center;
    height: 38px;
    padding: 0 12px;
    background: none;
    border: none;
    border-radius: var(--radius);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    transition: background 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
}

.hdr-login-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* ===========================
   CATEGORIES GRID
=========================== */
.categories-section {
    padding: 72px 0 0;
}

.categories-section__header {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px 28px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}

.categories-section__title {
    font-family: var(--font-title);
    font-size: 36px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--black);
}

.categories-section__sub {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-cement);
    cursor: pointer;
    border-bottom: 1px solid var(--gray-400);
    padding-bottom: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 4px;
}

.category-tile {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    background-color: var(--black);
}

.category-tile__overlay {
    position: absolute;
    inset: 0;
    background: rgba(21, 21, 21, 0.52);
    transition: background var(--transition-slow);
}

.category-tile:hover .category-tile__overlay {
    background: rgba(21, 21, 21, 0.3);
}

.category-tile__content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 32px;
    z-index: 2;
}

.category-tile__name {
    font-family: var(--font-title);
    font-size: 30px;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 6px;
    text-transform: uppercase;
    transition: letter-spacing var(--transition-slow);
    text-align: center;
}

.category-tile:hover .category-tile__name {
    letter-spacing: 10px;
}

.category-tile__btn {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(249, 249, 249, 0.75);
    border-bottom: 1px solid rgba(249, 249, 249, 0.4);
    padding-bottom: 1px;
    opacity: 0;
    transform: translateY(6px);
    transition: all var(--transition);
}

.category-tile:hover .category-tile__btn {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   FILTER PILLS
=========================== */
.filter-pills-bar {
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.filter-pills-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray-cement);
    margin-right: 4px;
    white-space: nowrap;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 7px 18px;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray-cement);
    background: transparent;
    border: 1px solid var(--gray-200);
    border-radius: 40px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.filter-pill:hover {
    border-color: var(--black);
    color: var(--black);
}

.filter-pill.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.filter-pills--cats .filter-pill {
    font-size: 10px;
    padding: 5px 14px;
}

.filter-pills--cats .filter-pill.active {
    background: var(--gray-cement);
    border-color: var(--gray-cement);
}

/* ===========================
   VIDEOS SECTION (TikTok Style)
=========================== */
.videos-section {
    padding: 60px 0;
    background: #0d0d0d;
    color: var(--white);
    overflow: hidden;
}

.videos-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
    width: 100%;
}

.video-item {
    flex: 0 1 200px; /* Base size 200px, but can shrink */
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.video-wrapper {
    position: relative;
    aspect-ratio: 9/16;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    width: 100%;
}

.video-wrapper:hover {
    transform: scale(1.04);
}

.tiktok-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    pointer-events: none;
}

.play-icon {
    width: 44px;
    height: 44px;
    color: var(--white);
    opacity: 0.7;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
    transition: transform 0.3s ease;
}

.video-wrapper:hover .play-icon {
    transform: scale(1.1);
    opacity: 1;
}

.video-wrapper.playing .video-overlay {
    opacity: 0;
    visibility: hidden;
}

.video-caption {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-align: center;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .videos-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .video-item {
        flex: 0 0 auto;
        max-width: 240px; /* Slightly larger in mobile for better impact */
    }
    .videos-section {
        padding: 40px 0;
    }
}

/* ===========================
   BRAND VALUES
=========================== */
.brand-values {
    padding: 100px 24px;
    background: var(--black);
    color: var(--white);
    box-sizing: border-box;
    width: 100%;
    overflow: hidden;
}

.brand-values__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.brand-values__eyebrow {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gray-cement);
    margin-bottom: 20px;
}

.brand-values__title {
    font-family: var(--font-title);
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
}

.brand-values__quote {
    font-size: 16px;
    font-style: italic;
    color: rgba(249, 249, 249, 0.5);
    margin-bottom: 60px;
    letter-spacing: 0.5px;
}

.brand-values__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    width: 100%;
}

.brand-pillar {
    padding: 40px 30px;
    border: 1px solid rgba(249, 249, 249, 0.1);
    border-radius: var(--radius);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.brand-pillar:hover {
    border-color: rgba(249, 249, 249, 0.3);
    background: rgba(249, 249, 249, 0.05);
    transform: translateY(-5px);
}

.brand-pillar__icon {
    width: 40px;
    height: 40px;
    margin-bottom: 20px;
    color: var(--gray-cement);
}

.brand-pillar__icon svg {
    width: 100%;
    height: 100%;
}

.brand-pillar h3 {
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    color: var(--white);
}

.site-footer__inner--simple {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    max-width: 1000px;
}

.site-footer__inner--simple .footer-col {
    flex: 1;
}

.site-footer__inner--simple .footer-logo {
    font-family: var(--font-title);
    font-size: 40px;
    letter-spacing: 8px;
    margin-bottom: 8px;
}

    }
}

.site-footer__inner--simple .footer-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 5px !important;
    font-size: 32px;
}

.footer-logo-img, .footer-logo-secundario-img {
    height: 30px;
    width: auto;
}

/* Fin del archivo */