* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-color: #000000;
    color: #ffffff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Contenedor de la foto de fondo */
.bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: opacity 1s ease-in-out;
    opacity: 0;
}

.bg-container.active {
    opacity: 1;
}

/* Filtro oscuro sobre el fondo */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: none;
}

/* Encabezado con Logotipo */
.header {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 120; /* Elevado para estar sobre el scroll */
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -1px;
    text-transform: lowercase;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Menú Lateral */
.side-menu {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 300px;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 130;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 45px;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Estado Colapsado: se oculta el menú dejando visible solo la columna de iniciales */
.side-menu.collapsed {
    transform: translateX(100%);
    background: rgba(0, 0, 0, 0);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

/* Lista de Enlaces */
.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s ease, gap 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-list li {
    border-bottom: 1px solid #1c1c1c; /* Gris muy oscuro sutil */
    padding-bottom: 0.2rem;
    opacity: 0; /* Empieza oculto para la animación de entrada */
    animation: accordionReveal 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: border-color 0.6s ease, padding 0.6s ease;
}

.menu-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

/* Retrasos escalonados para el acordeón de entrada al cargar la página */
.menu-list li:nth-child(1) { animation-delay: 0.1s; }
.menu-list li:nth-child(2) { animation-delay: 0.2s; }
.menu-list li:nth-child(3) { animation-delay: 0.3s; }
.menu-list li:nth-child(4) { animation-delay: 0.4s; }
.menu-list li:nth-child(5) { animation-delay: 0.5s; }

@keyframes accordionReveal {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-list li a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 2px;
    transition: color 0.3s;
}

/* Primera Letra (Siempre visible en el borde derecho) */
.letter-first {
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    transition: transform 0.3s, color 0.3s;
}

/* Resto de la palabra (Se oculta al colapsar) */
.letter-rest {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.4s ease, transform 0.4s ease;
    white-space: nowrap;
}

.side-menu.collapsed .letter-rest {
    opacity: 0;
    transform: translateX(20px);
    pointer-events: none;
}

/* Efectos Hover */
.menu-list li a:hover .letter-first {
    transform: scale(1.1);
    color: #ff6a00; /* Naranja sutil en hover */
}

.menu-list li a:hover .letter-rest {
    color: #ff6a00;
}

/* Botón Hamburguesa */
.hamburger-btn {
    position: fixed;
    top: 40px;
    right: 40px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 0;
    z-index: 140; /* Elevado para estar sobre el side-menu que tiene 130 */
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px) scale(0.8);
    transition: opacity 0.5s ease, transform 0.5s ease, background-color 0.3s;
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hamburger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background-color: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease; /* Transición suave de morfosis */
}

/* Transición a X al tener la clase open */
.hamburger-btn.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Mostrar hamburguesa */
.hamburger-btn.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}


/* Estado donde las iniciales se retraen (acordeón), suben y desaparecen */
.side-menu.hamburger-active {
    transform: translateX(100%);
    background: rgba(0, 0, 0, 0);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.side-menu.hamburger-active .menu-list {
    gap: -3rem; /* Contrae y junta las iniciales como un acordeón cerrado */
    transform: translateY(-120px) scale(0.6);
    opacity: 0;
    pointer-events: none;
}

.side-menu.hamburger-active .menu-list li {
    border-bottom-color: transparent;
    padding-bottom: 0;
}

/* Tarjeta Deslizante (Bottom Sheet) */
.bottom-sheet {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, calc(100% + 150px));
    width: 100%;
    max-width: 700px;
    height: 75vh;
    height: 75dvh;
    z-index: 110;
    display: flex;
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bottom-sheet.open {
    transform: translate(-50%, 0);
}

/* Ocultar elementos flotantes del fondo cuando la tarjeta principal está abierta */
body.sheet-open .tiktok-actions-sidebar,
body.sheet-open #tiktokActionsSidebar,
body.sheet-open .greeting-left-fixed-magazine,
body.sheet-open #greetingLeftFixedMagazine,
body.sheet-open .scroll-indicator-mouse,
body.sheet-open #scrollMouse {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Tarjeta Física */
.sheet-card {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #f3f3f3;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -15px 40px rgba(0, 0, 0, 0.35);
    padding: 50px 40px 40px 40px;
    overflow-y: auto;
    color: #1a1a1a;
    z-index: 1;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE y Edge */
}

.sheet-card::-webkit-scrollbar {
    display: none; /* Chrome, Safari y Opera */
}

/* Título en la Tarjeta */
.sheet-title-wrapper {
    position: relative;
    z-index: 10;
    margin-bottom: 1.2rem;
}

.sheet-title {
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #222222; /* Gris oscuro */
    letter-spacing: -1px;
    margin: 0;
}

/* Botón de Cierre */
.sheet-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    font-size: 1.25rem;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
    z-index: 50;
    touch-action: manipulation;
}

.sheet-close-btn:active {
    transform: scale(0.92);
    background: rgba(0, 0, 0, 0.15);
}

.sheet-close-btn:hover {
    background: rgba(0, 0, 0, 0.1);
}

/* Contenido de la Tarjeta */
.sheet-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 10px;
}

.sheet-category-indicator {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ff6a00;
    text-transform: uppercase;
}

.sheet-placeholder-body p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    color: #444444;
    margin-bottom: 2rem;
}

/* Galería de Piezas */
.sheet-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
}

.gallery-card {
    aspect-ratio: 4/5;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, background-color 0.3s ease;
}


/* Contenedor del Carrusel e Indicadores */
.sheet-carousel-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    width: 100%;
}

/* Puntos de Navegación */
.sheet-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 5px 0;
    position: relative;
    z-index: 10;
}

.sheet-carousel-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.sheet-carousel-dots .dot.active {
    background-color: #ff6a00;
    transform: scale(1.2);
}

/* Carrusel Horizontal */
.sheet-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 15px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
}

.sheet-carousel:active {
    cursor: grabbing;
}

.sheet-carousel::-webkit-scrollbar {
    display: none;
}

/* Tarjeta de Producto */
.product-card {
    flex: 0 0 220px;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 12px;
    overflow: hidden;
}

/* Etiquetas de Producto (Badges) */
.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    padding: 4px 10px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: 20px;
    color: #ffffff;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.badge-vendido {
    background-color: #e63946; /* Rojo */
}

.badge-nuevo {
    background-color: #2a9d8f; /* Verde */
}

.badge-novedad {
    background-color: #f4a261; /* Naranja */
}

.badge-promo {
    background-color: #457b9d; /* Azul */
}

.badge-coleccion {
    background-color: #b5893d; /* Dorado/Bronce de Colección */
}

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

.product-img:hover {
    transform: scale(1.06);
}

.product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1a1a1a;
}

.product-desc {
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.4;
}

.product-price {
    display: none !important;
    font-size: 1.1rem;
    font-weight: 900;
    color: #ff6a00;
    margin-top: 5px;
}

/* Lightbox de Zoom */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    cursor: zoom-out;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-img {
    max-width: 80%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 12px;
    border: 4px solid #ffffff; /* Reborde blanco */
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.85);
}

.lightbox-overlay.open .lightbox-img {
    transform: scale(1);
}

/* Flechas de Navegación del Lightbox */
.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 210;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.lightbox-arrow:hover {
    background-color: #ffffff;
    color: #000000;
    transform: translateY(-50%) scale(1.08);
}

.prev-arrow {
    left: 30px;
}

.next-arrow {
    right: 30px;
}

.lightbox-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 220;
    transition: background-color 0.3s, transform 0.3s, color 0.3s;
}

.lightbox-close-btn:hover {
    background-color: #ffffff;
    color: #000000;
    transform: scale(1.08);
}

/* Adaptación a dispositivos móviles */
@media (max-width: 768px) {
    .header {
        top: 25px;
        left: 25px;
    }
    .logo {
        font-size: 2rem;
    }
    .side-menu {
        width: 250px;
        padding-left: 35px;
    }

    .menu-list li a {
        font-size: 1.6rem;
    }
    .hamburger-btn {
        top: 25px;
        right: 25px;
        width: 38px;
        height: 38px;
    }
    .bottom-sheet {
        height: 80vh;
        height: 80dvh;
    }
    .sheet-card {
        padding: 45px 25px 25px 25px;
    }
    .sheet-title {
        font-size: 1.5rem;
    }
    .sheet-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    .prev-arrow {
        left: 15px;
    }
    .next-arrow {
        right: 15px;
    }
    .lightbox-img {
        border-width: 3px;
        max-width: 85%;
    }
    .lightbox-close-btn {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

/* === CONTENEDOR ONE-PAGE Y SECCIONES === */
.sections-container {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.sections-container::-webkit-scrollbar {
    display: none;
}

.page-section {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* === SALUDO MULTILINGÜE DINÁMICO (FIJO) === */
.greeting-right-fixed {
    position: fixed;
    right: 40px;
    top: 110px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    z-index: 5;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s;
}

.greeting-right-fixed.hidden {
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
}

/* Contenido descriptivo fijo estilo revista */
.greeting-left-fixed-magazine {
    position: fixed;
    bottom: 44px; /* Bajado de 60px para estar más pegado a la sección de Design (a 25px) */
    left: 60px;
    max-width: 380px;
    font-size: 0.88rem; /* Reducido de 1.1rem para que sea más fino y elegante */
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.greeting-left-fixed-magazine.hidden {
    opacity: 0;
    visibility: hidden;
}

.greeting-left-fixed-magazine .greeting-nav-btn,
.greeting-left-fixed-magazine p,
.greeting-left-fixed-magazine strong {
    pointer-events: auto;
}

.greeting-plus {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.greeting-branding-text {
    margin: 0;
    font-weight: 400;
    max-height: 120px;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transition: opacity 0.4s ease, max-height 0.4s ease, margin-top 0.4s ease, visibility 0.4s ease;
}

.greeting-branding-text.scrolled-hidden {
    opacity: 0;
    max-height: 0;
    margin-top: 0;
    visibility: hidden;
}

.greeting-branding-text strong {
    font-weight: 800;
    color: #ffffff;
}

.greeting-block {
    font-size: 6.5vw;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    text-transform: none;
    letter-spacing: -2px;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.greeting-block.fade-out {
    opacity: 0;
    transform: translateY(-15px);
}

.greeting-block.fade-in {
    opacity: 0;
    transform: translateY(15px);
}

/* Ajustes Móviles */
@media (max-width: 768px) {
    .greeting-left-fixed-magazine {
        bottom: 36px; /* Bajado de 40px en móvil para estar más pegado al crédito Design */
        left: 30px;
        right: 30px;
        max-width: calc(100% - 60px);
        font-size: 0.8rem; /* Reducido de 0.95rem en móvil */
        z-index: 99 !important;
        pointer-events: none !important;
    }
    .greeting-left-fixed-magazine .greeting-nav-btn,
    .greeting-left-fixed-magazine p,
    .greeting-left-fixed-magazine strong {
        pointer-events: auto !important;
    }
    
    .greeting-right-fixed {
        right: 25px;
        top: 90px;
        transform: none;
        gap: 0.2rem;
    }
    
    .greeting-block {
        font-size: 11vw;
    }
}

/* === BOTONES ABOUT/CONTACT EN SALUDO === */
.greeting-header {
    display: flex;
    align-items: center;
    gap: 25px;
}

.greeting-nav {
    display: flex;
    gap: 15px;
    align-items: center;
}

.greeting-nav-btn {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s, border-color 0.3s;
    border-bottom: 2px solid transparent;
    pointer-events: auto;
    padding-bottom: 2px;
}

.greeting-nav-btn:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* === CRÉDITO DISEÑO FIJO ESTILO REVISTA === */
.greeting-credit-fixed-magazine {
    position: fixed;
    bottom: 25px;
    left: 60px;
    right: auto;
    font-size: 0.72rem;
    font-weight: 700;
    color: #ffcd00;
    letter-spacing: 1px;
    z-index: 10;
    pointer-events: auto;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.greeting-credit-fixed-magazine.hidden {
    opacity: 0;
    visibility: hidden;
}

.greeting-credit-fixed-magazine a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1.5px solid transparent;
    transition: border-color 0.3s;
}

.greeting-credit-fixed-magazine a:hover {
    border-color: #ffcd00;
}

@media (max-width: 768px) {
    .greeting-credit-fixed-magazine {
        bottom: 15px;
        left: 30px;
        right: auto;
        font-size: 0.65rem;
    }
}

/* === MINI MOUSE ANIMADO FLOTANTE === */
.scroll-indicator-mouse {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    height: 42px;
    border: 2px solid #ffffff;
    border-radius: 15px;
    z-index: 100;
    cursor: pointer;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease, bottom 0.4s ease, transform 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.scroll-indicator-mouse:active {
    transform: translateX(-50%) scale(0.92);
}

.scroll-indicator-mouse.hidden {
    opacity: 0;
    visibility: hidden;
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: #ffffff;
    border-radius: 2px;
    margin: 6px auto 0;
    animation: scrollWheelAnim 1.6s infinite ease-in-out;
}

@keyframes scrollWheelAnim {
    0% {
        opacity: 0;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* === ESTILOS PARA CONTACTO BOLD === */
.contact-bold-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 15px;
}

.contact-bold-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-bold-label {
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff6a00;
}

.contact-bold-item {
    font-size: 2rem;
    font-weight: 900;
    color: #1a1a1a;
    text-decoration: none;
    line-height: 1.1;
    transition: color 0.3s, transform 0.3s;
    width: fit-content;
}

.contact-bold-item:hover {
    color: #ff6a00;
}

@media (max-width: 768px) {
    .contact-bold-item {
        font-size: 1.4rem;
    }
}

/* === ICONOS SOCIALES EN CONTACTO === */
.contact-social-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.contact-social-link {
    color: #1a1a1a;
    font-size: 2.2rem;
    transition: color 0.3s, transform 0.3s;
    text-decoration: none;
    display: inline-block;
}

.contact-social-link:hover {
    color: #ff6a00;
    transform: translateY(-4px);
}

@media (max-width: 768px) {
    .contact-social-link {
        font-size: 1.8rem;
    }
}

/* === FLECHA VOLVER AL INICIO FLOTANTE === */
.scroll-indicator-arrow {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    z-index: 100;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.2s, background-color 0.3s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.scroll-indicator-arrow:hover {
    background: rgba(255, 255, 255, 0.15);
}

.scroll-indicator-arrow:active {
    transform: scale(0.92);
}

.scroll-indicator-arrow.hidden {
    opacity: 0;
    visibility: hidden;
}

@media (max-width: 768px) {
    .scroll-indicator-arrow {
        bottom: 25px;
        right: 25px;
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .scroll-indicator-mouse {
        bottom: 190px; /* Posición por defecto en Home para librar el texto descriptivo */
    }
    .scroll-indicator-mouse.scrolled {
        bottom: 95px !important; /* Bajado al hacer scroll y ocultar la descripción */
    }
}

/* Selector de Idioma (Fijo al lado de la Hamburguesa) */
.header-lang-selector {
    position: fixed !important;
    top: 50px !important;
    right: 105px !important;
    z-index: 120 !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.85rem !important;
    font-weight: 800 !important;
    letter-spacing: 1px !important;
    font-family: inherit !important;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3) !important;
}

.header-lang-selector a.lang-toggle-btn,
.header-lang-selector a.lang-toggle-btn:link,
.header-lang-selector a.lang-toggle-btn:visited {
    color: rgba(255, 255, 255, 0.55) !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
}

.header-lang-selector a.lang-toggle-btn:hover {
    color: #ffffff !important;
}

.header-lang-selector a.lang-toggle-btn.active,
.header-lang-selector a.lang-toggle-btn.active:visited {
    color: #ffffff !important;
    border-bottom: 2px solid #ffffff !important;
    padding-bottom: 2px !important;
}

.header-lang-selector .lang-separator {
    color: rgba(255, 255, 255, 0.4) !important;
    user-select: none !important;
}

/* Enlaces Sociales (Debajo del Logo danros) */
.social-links-logo {
    display: flex !important;
    gap: 15px !important;
    margin-top: 10px !important;
    pointer-events: auto !important;
}

.social-links-logo a.social-logo-btn,
.social-links-logo a.social-logo-btn:link,
.social-links-logo a.social-logo-btn:visited {
    color: #ffffff !important;
    font-size: 1.15rem !important;
    transition: opacity 0.3s, transform 0.3s !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 0.65 !important;
}

.social-links-logo a.social-logo-btn:hover {
    opacity: 1 !important;
    transform: translateY(-2px) !important;
    color: #ffffff !important;
}

@media (max-width: 768px) {
    .header-lang-selector {
        top: 31px !important;
        right: 80px !important;
        font-size: 0.75rem !important;
    }
    .social-links-logo {
        margin-top: 8px !important;
        gap: 12px !important;
    }
    .social-logo-btn {
        font-size: 1.05rem !important;
    }
}

/* === MARQUESINA GIGANTE Y CAROUSEL SECCIÓN 2 === */
.giant-marquee-container {
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    z-index: 3;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.giant-marquee-container.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.giant-marquee {
    display: inline-block;
    font-size: 8rem;
    font-weight: 900;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.12) !important; /* Semi-transparente para que la foto de fondo sea visible */
    letter-spacing: 5px;
    animation: marqueeMove 30s linear infinite;
    padding-left: 100%;
    user-select: none;
}

@keyframes marqueeMove {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

.section-carousel-container {
    position: absolute;
    bottom: 4.5%; /* Bajado de 8% para pegarlo más al footer */
    right: 0;
    left: 0;
    transform: none;
    width: 100%;
    max-width: 100%;
    padding: 0;
    z-index: 4;
    transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent);
}

.section-carousel-container.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(25px);
}

.section-carousel-container .sheet-carousel-wrapper {
    background: transparent;
}

.section-carousel-container .product-card {
    background-color: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .giant-marquee-container {
        top: 20%;
    }
    .giant-marquee {
        font-size: 4rem;
    }
    .section-carousel-container {
        bottom: auto !important;
        top: 35% !important; /* Bajado más abajo a 35% ya que el mouse está oculto y hay suficiente espacio */
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 0 !important;
        mask-image: none !important;
        -webkit-mask-image: none !important;
    }
    .section-carousel-container .product-card {
        flex: 0 0 170px !important; /* Tarjetas más compactas en móviles de 6" */
        padding: 10px !important;
        gap: 8px !important;
        border-radius: 14px !important;
    }
    .section-carousel-container .product-img-wrapper {
        border-radius: 8px !important;
    }
    .section-carousel-container .product-title {
        font-size: 0.85rem !important;
    }
    .section-carousel-container .product-desc {
        font-size: 0.7rem !important;
        line-height: 1.25 !important;
    }
    .section-carousel-container .product-price {
        font-size: 0.8rem !important;
    }
}

/* === INDICADOR PULL-TO-REFRESH (TIPO APP NATIVA) === */
.pull-to-refresh-indicator {
    position: fixed;
    top: -55px; /* Oculto por defecto en la parte superior */
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    color: #ff6a00;
    font-size: 1.25rem;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, top 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), transform 0.2s ease;
}

.pull-to-refresh-indicator.visible {
    opacity: 1;
    top: 25px; /* Se sitúa arriba del todo pero visible */
    transform: translateX(-50%) scale(1);
}

.pull-to-refresh-indicator .spinner-icon {
    display: inline-block;
    transition: transform 0.1s linear;
}

.pull-to-refresh-indicator.refreshing .spinner-icon {
    animation: ptr-spin 0.8s linear infinite !important;
}

@keyframes ptr-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Botones Estilo TikTok */
.tiktok-actions-sidebar {
    position: fixed;
    right: 40px;
    top: 55%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 100; /* Debajo del menu/hamburguesa pero sobre el fondo */
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.6s;
}

.tiktok-actions-sidebar.hidden {
    opacity: 0;
    transform: translateY(-50%) translateY(30px);
    visibility: hidden;
    pointer-events: none;
}

.tiktok-action-item {
    background: none;
    border: none;
    outline: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding: 0;
    transition: transform 0.2s ease;
}

.tiktok-action-item:active {
    transform: scale(0.9);
}

/* Circulos de Iconos */
.icon-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
    transition: color 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tiktok-action-item:hover .icon-circle {
    transform: scale(1.1);
}

/* Contador de cada boton */
.tiktok-action-item .count {
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-top: 4px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Like activo (rojo) */
#tiktokLikeBtn.liked .icon-circle {
    color: #ff3b30;
    animation: heartbeat 0.4s ease;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    35% { transform: scale(1.3); }
    70% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: rgba(0, 0, 0, 0.85);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .tiktok-actions-sidebar {
        right: 25px;
        top: auto;
        bottom: 120px; /* Posicionado en la parte inferior-derecha, libre de saludos */
        transform: none;
        gap: 1.2rem;
    }
    
    .tiktok-actions-sidebar.hidden {
        transform: translateY(30px);
    }
    
    .icon-circle {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
    
    .tiktok-action-item .count {
        font-size: 0.7rem;
    }
}

/* Boton de WhatsApp en tarjetas de productos */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: white;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-decoration: none;
    margin-top: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-btn i {
    font-size: 1.3rem;
}
