/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-light: #f5f5f7;
    --color-gray-medium: #86868b;
    --color-gray-dark: #1d1d1f;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--color-white);
    color: var(--color-black);
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-black);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-user {
    display: flex;
    align-items: center;
}

.user-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-black);
    transition: var(--transition-smooth);
    padding: 8px;
}

.user-icon:hover {
    opacity: 0.6;
}

.user-icon svg {
    width: 24px;
    height: 24px;
}

.nav-tenis {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.tenis-header {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    margin-left: auto;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--color-black);
    transition: var(--transition-smooth);
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    flex-direction: column;
    gap: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-menu.active {
    display: flex;
    max-height: 400px;
}

.mobile-menu a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: var(--transition-smooth);
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover {
    color: var(--color-gray-medium);
    padding-left: 8px;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 140px 40px 80px;
    background-image: url('../assets/header.jpg');
    background-size: 80%;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

.hero-text-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 8px;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-text-box:first-of-type {
    animation-delay: 0.1s;
}

.hero-text-box:last-of-type {
    animation-delay: 0.3s;
}

.hero-title {
    font-size: clamp(48px, 8vw, 90px);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-black);
    text-align: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--color-black);
    color: var(--color-white);
    text-decoration: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    background: var(--color-gray-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--color-black);
    text-decoration: none;
    border: 1px solid var(--color-black);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
}

.btn-secondary:hover {
    background: var(--color-black);
    color: var(--color-white);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--color-gray-medium);
    animation: scrollAnimation 2s ease-in-out infinite;
}

/* ===== Services Section ===== */
.services {
    padding: 120px 0;
    background: #F8F7F5;
    overflow: visible;
}

.section-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--color-gray-medium);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    align-items: end;
    min-height: 400px;
}

.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    height: 100%;
    justify-content: flex-end;
}

.service-title {
    font-size: 20px;
    font-weight: 400;
    color: var(--color-gray-medium);
    letter-spacing: -0.01em;
    text-align: center;
    order: 2;
    flex-shrink: 0;
}

.service-image-btn {
    width: 70%;
    aspect-ratio: 1;
    border: none;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
    padding: 0;
    display: block;
    text-decoration: none;
    margin: 0 auto;
    order: 1;
    align-self: center;
}

.service-image-btn:hover {
    transform: translateY(-8px);
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.service-image-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Ajustes específicos para cada servicio */
.service-card-tenis .service-image-btn {
    /* Tenis mantiene tamaño normal, solo baja un poco */
    transform: translateY(8px);
}

.service-card-tenis .service-image-btn:hover {
    transform: translateY(0px);
}

.service-card-bolsas .service-image-btn {
    /* Bolsas más pequeña y se compensa hacia arriba para alinear la base */
    transform: scale(0.85) translateY(-8px);
}

.service-card-bolsas .service-image-btn:hover {
    transform: scale(0.85) translateY(-16px);
}

.service-card-gorras .service-image-btn {
    /* Gorras más pequeña y se compensa hacia arriba para alinear la base */
    transform: scale(0.85) translateY(-8px);
}

.service-card-gorras .service-image-btn:hover {
    transform: scale(0.85) translateY(-16px);
}

.service-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-medium);
    font-size: 18px;
    font-weight: 500;
    background: var(--color-white);
}

/* ===== Tenis Services Page ===== */
.tenis-services {
    padding: 140px 0 120px;
    background: var(--color-white);
    min-height: 100vh;
}

.page-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.02em;
    color: var(--color-black);
}

/* Service Menu - Horizontal */
.service-menu {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 20px 0 40px;
    margin-bottom: 60px;
    scrollbar-width: thin;
    justify-content: center;
}

.service-menu::-webkit-scrollbar {
    height: 6px;
}

.service-menu::-webkit-scrollbar-track {
    background: var(--color-gray-light);
    border-radius: 10px;
}

.service-menu::-webkit-scrollbar-thumb {
    background: var(--color-gray-medium);
    border-radius: 10px;
}

.service-menu-item {
    padding: 12px 26px;
    background: var(--color-white);
    border: none;
    color: var(--color-black);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
    flex-shrink: 0;
}

.service-menu-item:hover {
    background: var(--color-gray-light);
}

.service-menu-item.active {
    background: var(--color-black);
    color: var(--color-white);
}

/* Service Detail Content */
.service-content {
    position: relative;
    min-height: 500px;
}

.service-detail {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.service-detail.active {
    display: block;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Side - Service Name, Price, and Images */
.service-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

/* Adjust spacing for services with selector */
#offwhite .service-left,
#ugg .service-left,
#promociones .service-left {
    margin-top: 0px;
}

#promociones-lunes {
    margin-top: 40px;
}

.service-name {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-black);
    margin: 0;
    text-align: center;
    line-height: 1.3;
}

/* Smaller font for bolsas titles */
#chica .service-name,
#mediana .service-name,
#grande .service-name {
    font-size: clamp(28px, 4vw, 42px);
}

.service-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 400;
    color: var(--color-gray-medium);
    margin: 8px 0 12px 0;
    text-align: center;
}

.service-price-label {
    font-size: 14px;
    color: var(--color-gray-medium);
    margin: 0;
    text-align: center;
}

#express .service-price-label,
#paquete .service-price-label {
    margin-top: -20px;
}

#promociones .service-price-label {
    margin-top: 4px;
}

.service-price-amount {
    font-size: 18px;
    font-weight: 400;
    color: var(--color-gray-medium);
    margin-left: 4px;
}

/* Off-white Selector */
.offwhite-selector {
    display: flex;
    gap: 12px;
    margin: 16px 0;
    justify-content: center;
}

.offwhite-option {
    padding: 10px 24px;
    background: var(--color-white);
    border: none;
    color: var(--color-black);
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.offwhite-option:hover {
    background: var(--color-gray-light);
}

.offwhite-option.active {
    background: var(--color-black);
    color: var(--color-white);
}

.offwhite-version {
    display: none;
}

.offwhite-version.active {
    display: block;
}

.offwhite-info {
    display: none !important;
}

.offwhite-info.active {
    display: flex !important;
}

/* UGG Selector */
.ugg-selector {
    display: flex;
    gap: 12px;
    margin: 16px 0;
    justify-content: center;
}

.ugg-option {
    padding: 10px 24px;
    background: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.ugg-option:hover {
    background: var(--color-gray-light);
}

.ugg-option.active {
    background: var(--color-black);
    color: var(--color-white);
}

.ugg-version {
    display: none;
}

.ugg-version.active {
    display: block;
}

.ugg-info {
    display: none !important;
}

.ugg-info.active {
    display: flex !important;
}

/* Promociones Selector */
.promociones-selector {
    display: flex;
    gap: 8px;
    margin: 8px 0;
    justify-content: center;
}

.promociones-option {
    padding: 10px 24px;
    background: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.promociones-option:hover {
    background: var(--color-gray-light);
}

.promociones-option.active {
    background: var(--color-black);
    color: var(--color-white);
}

.promociones-version {
    display: none;
}

.promociones-version.active {
    display: block;
}

.promociones-info {
    display: none !important;
}

.promociones-info.active {
    display: flex !important;
}

/* Image Carousel */
.service-carousel {
    position: relative;
    width: 100%;
    margin-top: -20px;
}

/* Ajustes específicos de margin-top para cada servicio */
#sencillo .service-carousel,
#completo .service-carousel,
#paquete .service-carousel,
#timberland .service-carousel,
#express .service-carousel {
    margin-top: -70px;
}

#timberland .service-carousel{
    margin-top: -50px;
}

#offwhite .service-carousel,
#ugg .service-carousel {
    margin-top: 0px;
}

#promociones .service-carousel {
    margin-top: -60px;
}

#promociones-lunes .service-carousel {
    margin-top: -20px;
}

.carousel-images {
    width: 80%;
    aspect-ratio: 1;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    margin: 0 auto;
}

/* Smaller images for gorras */
#gorras-limpieza .carousel-images {
    width: 60%;
}

.carousel-image {
    display: none;
    width: 100%;
    height: 100%;
}

.carousel-image.active {
    display: block;
}

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

/* Hacer imágenes 2 y 3 más pequeñas en todos los servicios excepto Paquete Familiar */
.service-detail:not(#paquete) .carousel-image:nth-child(2).active,
.service-detail:not(#paquete) .carousel-image:nth-child(3).active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-detail:not(#paquete) .carousel-image:nth-child(2) img,
.service-detail:not(#paquete) .carousel-image:nth-child(3) img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 300;
    color: var(--color-black);
    transition: var(--transition-smooth);
    z-index: 10;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-prev {
    left: -30px;
}

.carousel-next {
    right: -30px;
}

.carousel-arrow.hidden {
    display: none;
}

/* Carousel Indicators (Dots) */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: -50px;
}

#promociones .carousel-indicators {
    display: none;
}

#express .carousel-indicators {
    margin-top: -40px;
}

#timberland .carousel-indicators {
    margin-top: -20px;
}

#chica .carousel-indicators,
#mediana .carousel-indicators,
#grande .carousel-indicators {
    margin-top: 0px;
}

#gorras-limpieza .carousel-indicators {
    margin-top: 0px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-gray-light);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--color-gray-medium);
}

.carousel-dot.active {
    background: var(--color-black);
    width: 24px;
    border-radius: 4px;
}

/* Right Side - Service Info */
.service-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 0;
}

.service-tagline {
    font-size: 24px;
    font-weight: 500;
    color: var(--color-black);
    line-height: 1.3;
    margin: 0;
    display: flex;
    align-items: center;
    min-height: 56px;
}

/* Smaller tagline for UGG, Paquete, and Timberland */
#ugg .service-tagline,
#paquete .service-tagline,
#timberland .service-tagline {
    font-size: 21px;
}

/* Smaller title for Promociones */
#promociones .service-name {
    font-size: clamp(24px, 3.5vw, 36px);
    margin-bottom: 8px;
}

/* Subtitle for Promociones (below carousel) */
.promociones-subtitle {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    color: var(--color-black);
    margin: -70px 0 0 0;
    text-align: center;
}

/* Hide tagline in Promociones */
#promociones .service-tagline {
    display: none;
}

.service-includes,
.service-not-includes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-includes h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

.service-not-includes h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-black);
    margin: 0;
}

.service-not-includes li {
    font-size: 14px;
}

.service-includes ul,
.service-not-includes ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-includes li,
.service-not-includes li {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-gray-dark);
}

.btn-visit {
    display: inline-block;
    padding: 16px 40px;
    background: var(--color-black);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.3px;
    margin-top: 16px;
    align-self: flex-start;
}

.btn-visit:hover {
    background: var(--color-gray-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ===== Products Section ===== */
.products {
    padding: 120px 0;
    background: var(--color-white);
}

.products-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.products-carousel {
    overflow: hidden;
}

.products-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
}

.product-card {
    flex: 0 0 calc((100% - 80px) / 3);
    max-width: calc((100% - 80px) / 3);
    background: transparent;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
}

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

.product-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-black);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.product-description {
    font-size: 14px;
    color: var(--color-gray-medium);
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
}

.products-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 300;
    color: var(--color-black);
    transition: var(--transition-smooth);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.products-arrow:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.products-arrow-left {
    left: 0;
}

.products-arrow-right {
    right: 0;
}

.products-arrow.hidden {
    display: none;
}

/* ===== Process Section ===== */
.process {
    padding: 120px 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    border: 2px solid var(--color-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 600;
    margin: 0 auto 24px;
    transition: var(--transition-smooth);
}

.process-step:hover .step-number {
    background: var(--color-black);
    color: var(--color-white);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.process-step p {
    font-size: 16px;
    color: var(--color-gray-medium);
    line-height: 1.6;
}

/* ===== Track Order Section ===== */
.track-section {
    padding: 120px 0;
    background: var(--color-white);
}

.track-search {
    display: flex;
    gap: 16px;
    max-width: 600px;
    margin: 40px auto 16px;
    justify-content: center;
}

.track-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--color-gray-medium);
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-smooth);
    outline: none;
}

.track-input:focus {
    border-color: var(--color-black);
    box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.05);
}

.track-help {
    text-align: center;
    font-size: 14px;
    color: var(--color-gray-medium);
    margin-bottom: 40px;
}

.hidden {
    display: none !important;
}

/* Loading State */
.track-loading {
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--color-gray-light);
    border-top: 4px solid var(--color-black);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

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

.track-loading p {
    color: var(--color-gray-medium);
    font-size: 16px;
}

/* Error State */
.track-error {
    max-width: 600px;
    margin: 40px auto;
    padding: 24px 32px;
    background: #fee2e2;
    border-left: 4px solid #dc2626;
    border-radius: 8px;
}

.error-message {
    color: #991b1b;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

/* Results Container */
.track-results {
    max-width: 900px;
    margin: 60px auto 0;
    animation: fadeInUp 0.6s ease-out;
}

/* Track Header */
.track-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px;
    background: var(--color-gray-light);
    border-radius: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 20px;
}

.track-ticket {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ticket-label {
    font-size: 14px;
    color: var(--color-gray-medium);
    font-weight: 500;
}

.ticket-code {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-black);
}

.status-badge {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    background: var(--color-black);
    color: var(--color-white);
}

/* Progress Bar */
.progress-container {
    margin-bottom: 40px;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--color-gray-light);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 50px;
    transition: width 1s ease-out;
    width: 0%;
}

.progress-percentage {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--color-black);
}

/* Order Details */
.order-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    padding: 32px;
    background: var(--color-gray-light);
    border-radius: 16px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-label {
    font-size: 14px;
    color: var(--color-gray-medium);
    font-weight: 500;
}

.detail-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-black);
}

/* Timeline */
.timeline-container {
    margin-bottom: 40px;
}

.timeline-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.timeline {
    position: relative;
}

.timeline-step {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    position: relative;
}

.timeline-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 60px;
    width: 2px;
    height: calc(100% - 20px);
    background: #e5e7eb;
}

.timeline-step.completed:not(:last-child)::before {
    background: #10b981;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 600;
    font-size: 18px;
    position: relative;
    z-index: 1;
}

.timeline-step.completed .step-icon {
    background: #10b981;
    color: white;
}

.timeline-step.current .step-icon {
    background: #3b82f6;
    color: white;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2);
}

.timeline-step.pending .step-icon {
    background: #e5e7eb;
    color: #6b7280;
}

.step-content {
    flex: 1;
    padding-top: 4px;
}

.step-label {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--color-black);
}

.timeline-step.pending .step-label {
    color: #6b7280;
}

.step-description {
    font-size: 14px;
    color: var(--color-gray-medium);
    line-height: 1.5;
}

/* Items List */
.items-container {
    margin-bottom: 40px;
}

.items-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.item-card {
    padding: 24px;
    background: var(--color-gray-light);
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.item-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 16px;
    flex-wrap: wrap;
    gap: 16px;
}

.item-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.item-details {
    font-size: 14px;
    color: var(--color-gray-medium);
}

.item-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-black);
}

.item-service {
    font-size: 14px;
    color: var(--color-gray-medium);
    margin-top: 8px;
    font-style: italic;
}

/* Photos Gallery */
.item-photos {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.photo-thumbnail {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.photo-thumbnail:hover {
    transform: scale(1.05);
}

.photo-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Track Actions */
.track-actions {
    text-align: center;
    padding-top: 20px;
}

/* ===== Gallery Section ===== */
.gallery {
    padding: 120px 0;
    background: var(--color-gray-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 16px;
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray-medium);
    font-size: 18px;
    font-weight: 500;
}

/* ===== CTA Section ===== */
.cta {
    padding: 120px 0;
    text-align: center;
}

.cta-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--color-gray-medium);
    margin-bottom: 48px;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-gray-light);
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--color-black);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--color-gray-medium);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #d2d2d7;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--color-gray-medium);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scrollAnimation {
    0%, 100% {
        transform: translateY(0);
        opacity: 0;
    }
    50% {
        transform: translateY(20px);
        opacity: 1;
    }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .nav-container {
        padding: 16px 24px;
    }

    /* Hide desktop navigation links */
    .nav-links {
        display: none;
    }

    /* Hide tenis header image on mobile */
    .nav-tenis {
        display: none;
    }

    /* Show hamburger menu */
    .hamburger-menu {
        display: flex;
    }

    .hero {
        padding: 100px 24px 0;
        background-size: 100%;
        min-height: 70vh;
    }

    .hero-text-box {
        margin-bottom: 4px;
    }

    .hero-title {
        font-size: clamp(28px, 7vw, 48px);
        line-height: 1.1;
    }

    .services, .process, .gallery, .cta {
        padding: 80px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* Ajustes de servicios para móvil */
    .service-card-tenis .service-image-btn {
        transform: translateY(5px);
    }

    .service-card-bolsas .service-image-btn {
        transform: scale(0.9) translateY(-5px);
    }

    .service-card-gorras .service-image-btn {
        transform: scale(0.9) translateY(-5px);
    }

    .tenis-services {
        padding: 100px 0 80px;
    }

    .service-menu {
        gap: 8px;
        padding: 16px 0 32px;
    }

    .service-menu-item {
        padding: 10px 20px;
        font-size: 14px;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-left {
        gap: 12px;
    }

    .service-name {
        font-size: 32px;
    }

    .service-carousel {
        margin-top: 20px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .carousel-prev {
        left: 8px;
    }

    .carousel-next {
        right: 8px;
    }

    .service-right {
        gap: 24px;
    }

    .service-tagline {
        font-size: 20px;
    }

    .btn-visit {
        width: 100%;
        text-align: center;
    }

    .process-steps {
        gap: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    /* Track Section Mobile */
    .track-search {
        flex-direction: column;
        padding: 0 24px;
    }

    .track-input {
        width: 100%;
        font-size: 16px;
    }

    .track-header {
        padding: 24px;
    }

    .ticket-code {
        font-size: 24px;
    }

    .status-badge {
        font-size: 14px;
        padding: 10px 20px;
    }

    .order-details {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .timeline-step {
        gap: 16px;
    }

    .step-icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .timeline-step:not(:last-child)::before {
        left: 15px;
    }

    .step-label {
        font-size: 16px;
    }

    .item-card {
        padding: 20px;
    }

    .item-photos {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }

    /* Products Section Mobile */
    .products-carousel-wrapper {
        padding: 0 20px;
    }

    .products-track {
        gap: 20px;
    }

    .product-card {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 24px;
    }

    .products-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .products-arrow-left {
        left: 0;
    }

    .products-arrow-right {
        right: 0;
    }

    .product-name {
        font-size: 18px;
    }

    .product-description {
        font-size: 13px;
    }

    .product-price {
        font-size: 16px;
    }

    /* Service-specific title adjustments for mobile */
    #chica .service-name,
    #mediana .service-name,
    #grande .service-name {
        font-size: clamp(24px, 5vw, 32px);
    }

    #promociones .service-name {
        font-size: clamp(18px, 4vw, 28px);
    }

    .promociones-subtitle {
        font-size: clamp(12px, 3vw, 16px);
        margin: 4px 0 0 0;
    }

    /* Selector buttons mobile */
    .offwhite-selector,
    .ugg-selector,
    .promociones-selector {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }

    .offwhite-option,
    .ugg-option,
    .promociones-option {
        padding: 8px 16px;
        font-size: 13px;
    }

    /* Gorras page mobile */
    #gorras-limpieza .carousel-images {
        width: 70%;
    }
}
