@charset "UTF-8";@import url(https://fonts.googleapis.com/css?family=Rubik:400,400i,500);
:root {
    --font-family: "Rubik";
    --focus-color: var(--color-neutral-800);
    --focus-color-lighten: var(--color-white);
    --focus-color-error: var(--color-error-500);
    --brand-primary-1: #f24c0a;
    --brand-primary-2: #c93100;
    --brand-secondary-1: #1e3a5f; /*#232f3e*/
    --brand-secondary-2: #1b3456; /*#37475a*/
    --brand-secondary-3: #2b4463; /*#131920*/
    --brand-secondary-4: #131920; 
    --brand-tertiary-1: #ECFDF9;
    --brand-tertiary-2: #CBF6EC;
    --brand-tertiary-3: #ADEDDD;
    --brand-tertiary-4: #62C1A3;
    --color-black: #000000;
    --color-neutral-100: #F2F4F5;
    --color-neutral-200: #E9ECF1;
    --color-neutral-300: #DDE1E8;
    --color-neutral-400: #C0C4CC;
    --color-neutral-600: #72777F;
    --color-neutral-700: #565A60;
    --color-neutral-800: #323439;
    --color-white: #FFFFFF;
    --color-info-100: #ECF4FE;
    --color-info-300: #C5DFFD;
    --color-info-500: #2D77CF;
    --color-info-900: #19406E;
    --color-success-100: #E6FBFB;
    --color-success-300: #C9F0ED;
    --color-success-500: #028574;
    --color-success-900: #01423A;
    --color-warning-100: #FEF4E6;
    --color-warning-300: #FDDDB4;
    --color-warning-500: #C87203;
    --color-warning-900: #643902;
    --color-error-100: #FEEDEC;
    --color-error-300: #FDCAC5;
    --color-error-500: #CB4032;
    --color-error-900: #6E2119;
    --gradient-primary-500-300: linear-gradient(335deg, var(--brand-primary-2) 18%, var(--brand-primary-3) 107%);

    /* Bootstrap Primary Override - Usando color naranja de la marca */
    --bs-primary: #f24c0a;
    --bs-primary-rgb: 242, 76, 10;
    --bs-link-color: #f24c0a;
    --bs-link-color-rgb: 242, 76, 10;
    --bs-link-hover-color: #c93100;
    --bs-link-hover-color-rgb: 201, 49, 0
}

@font-face {
    font-family: 'Rubik'!important;
    font-style: italic!important;
    font-weight: 400!important;
    src: url(https://fonts.gstatic.com/s/rubik/v31/iJWbBXyIfDnIV7nEt3KSJbVDV49rz8tdE3Uyf4L1kA.woff2) format('woff2')!important;
}

body {
    background-color: var(--color-neutral-100)!important;
    color: var(--color-neutral-800)!important;
    font-family: var(--font-family),Arial,sans-serif!important;
    font-size: 14px!important;
    line-height: 1.5!important
}

header { position: relative; z-index: 9999; overflow: visible; }
.ta-topbar { background: var(--brand-secondary-2); }
.ta-navbar { background: var(--brand-secondary-1); padding: 0.5rem 0; }
.ta-nav-link { font-weight: 400!important; white-space: nowrap!important; }
.ta-nav-link:hover { background: var(--brand-secondary-2); }
.ta-nav-link.active { background: #fff; color: var(--brand-secondary-1) !important; }
.ta-social-link:hover { opacity: 0.7; }

/* User Dropdown Menu */
#userDropdownBtn { cursor: pointer; }
#userDropdownBtn i[data-lucide="chevron-down"] {
    transition: transform 0.2s ease;
}
.user-dropdown-menu {
    position: fixed;
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 99999;
    overflow: hidden;
}
.user-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.user-dropdown-item { transition: background 0.15s ease; }
.user-dropdown-item:hover { background: var(--bs-tertiary-bg); }
.user-dropdown-card {
    flex: 1 1 0 !important; /* Equal width for all cards */
    transition: all 0.15s ease;
}
.user-dropdown-card:hover {
    border-color: var(--bs-border-color-translucent) !important;
    background: var(--bs-tertiary-bg);
}

/* User Menu Bottom Sheet (Mobile) */
.user-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.user-menu-backdrop.open {
    opacity: 1;
    visibility: visible;
}
.user-menu-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 85vh;
    overflow-y: auto;
}
.user-menu-sheet.open {
    transform: translateY(0);
}
.user-menu-sheet-handle {
    padding: 12px 16px 8px;
    cursor: grab;
}
.user-menu-sheet-handle-bar {
    width: 40px;
    height: 4px;
    background: var(--bs-secondary-bg, #dee2e6);
    border-radius: 2px;
    margin: 0 auto;
}
.user-menu-sheet-content {
    padding: 0 16px 24px;
}

/* Cart Offcanvas as Bottom Sheet on Mobile */
@media (max-width: 991.98px) {
    #offcanvasWithBothOptions {
        top: auto !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: auto !important;
        max-height: 85vh !important;
        border-radius: 20px 20px 0 0 !important;
        border-left: none !important;
        transform: translateY(100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    #offcanvasWithBothOptions.show,
    #offcanvasWithBothOptions.showing {
        transform: translateY(0) !important;
    }
    #offcanvasWithBothOptions .offcanvas-header {
        padding-top: 8px;
    }
    #offcanvasWithBothOptions .offcanvas-header::before {
        content: '';
        display: block;
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, 0.3);
        border-radius: 2px;
        margin: 0 auto 12px;
        position: absolute;
        top: 12px;
        left: 50%;
        transform: translateX(-50%);
    }
    #offcanvasWithBothOptions .offcanvas-body {
        max-height: calc(85vh - 200px);
        overflow-y: auto;
    }
}

/* Profile Action Links */
.profile-action-link {
    transition: all 0.15s ease;
}
.profile-action-link:hover {
    background: var(--bs-tertiary-bg);
    border-color: var(--bs-border-color) !important;
}

.btn:hover {
    text-decoration: none !important;
}
/* btn-primary */
.btn-primary {
    background-color: var(--brand-primary-1) !important;
    border-color: var(--brand-primary-1) !important;
    color: var(--color-white) !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: var(--brand-primary-2) !important;
    border-color: var(--brand-primary-2) !important;
    color: var(--color-white) !important;
}
.btn-primary:disabled,
.btn-primary.disabled {
    background-color: #adb5bd !important;
    border-color: #adb5bd !important;
    color: #fff !important;
    opacity: 1 !important;
    cursor: not-allowed !important;
}

/* btn-secondary */
.btn-secondary {
    background-color: var(--brand-secondary-1) !important;
    border-color: var(--brand-secondary-1) !important;
    color: var(--color-white) !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
    background-color: var(--brand-secondary-2) !important;
    border-color: var(--brand-secondary-2) !important;
    color: var(--color-white) !important;
}
.btn-secondary:disabled,
.btn-secondary.disabled {
    background-color: #adb5bd !important;
    border-color: #adb5bd !important;
    color: #fff !important;
    opacity: 1 !important;
    cursor: not-allowed !important;
}

/* btn-outline-primary */
.btn-outline-primary {
    background-color: transparent !important;
    border-color: var(--brand-primary-1) !important;
    color: var(--brand-primary-1) !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary.active {
    background-color: var(--brand-primary-1) !important;
    border-color: var(--brand-primary-1) !important;
    color: var(--color-white) !important;
}

/* btn-outline-secondary */
.btn-outline-secondary {
    background-color: transparent !important;
    border-color: var(--brand-secondary-1) !important;
    color: var(--brand-secondary-1) !important;
}
.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary.active {
    background-color: var(--brand-secondary-1) !important;
    border-color: var(--brand-secondary-1) !important;
    color: var(--color-white) !important;
}
.btn-outline-primary:disabled,
.btn-outline-primary.disabled,
.btn-outline-secondary:disabled,
.btn-outline-secondary.disabled {
    background-color: transparent !important;
    border-color: #adb5bd !important;
    color: #adb5bd !important;
    opacity: 1 !important;
    cursor: not-allowed !important;
}

/* btn-ghost (link style) */
.btn-ghost,
.btn-link {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #fff !important;
    text-decoration: none !important;
}
.btn-ghost:hover,
.btn-ghost:focus,
.btn-link:hover,
.btn-link:focus {
    background-color: var(--brand-secondary-2) !important;
    color: #fff !important;
}

/* Color utilities */
.color-primary {
    color: var(--brand-primary-1) !important;
}
.color-secondary {
    color: var(--brand-secondary-1) !important;
}

/* btn-light */
.btn-light {
    background-color: var(--color-white) !important;
    border-color: var(--color-neutral-300) !important;
    color: var(--color-neutral-800) !important;
}
.btn-light:hover,
.btn-light:focus {
    background-color: var(--color-neutral-100) !important;
    border-color: var(--color-neutral-400) !important;
    color: var(--color-neutral-800) !important;
}

/* btn-dark */
.btn-dark {
    background-color: var(--brand-secondary-3) !important;
    border-color: var(--brand-secondary-3) !important;
    color: var(--color-white) !important;
}
.btn-dark:hover,
.btn-dark:focus {
    background-color: var(--color-black) !important;
    border-color: var(--color-black) !important;
    color: var(--color-white) !important;
}

/* btn-success */
.btn-success {
    background-color: var(--color-success-500) !important;
    border-color: var(--color-success-500) !important;
}
.btn-success:hover,
.btn-success:focus {
    background-color: var(--color-success-900) !important;
    border-color: var(--color-success-900) !important;
}

/* btn-danger */
.btn-danger {
    background-color: var(--color-error-500) !important;
    border-color: var(--color-error-500) !important;
}
.btn-danger:hover,
.btn-danger:focus {
    background-color: var(--color-error-900) !important;
    border-color: var(--color-error-900) !important;
}

/* btn-warning */
.btn-warning {
    background-color: var(--color-warning-500) !important;
    border-color: var(--color-warning-500) !important;
    color: var(--color-white) !important;
}
.btn-warning:hover,
.btn-warning:focus {
    background-color: var(--color-warning-900) !important;
    border-color: var(--color-warning-900) !important;
}

/* btn-info */
.btn-info {
    background-color: var(--color-info-500) !important;
    border-color: var(--color-info-500) !important;
    color: var(--color-white) !important;
}
.btn-info:hover,
.btn-info:focus {
    background-color: var(--color-info-900) !important;
    border-color: var(--color-info-900) !important;
}

.btn {
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.form-floating {
    position: relative;
}

.form-floating > label {
    padding-left: 1.25rem !important;
}

.btn-secondary:focus,
.btn-secondary:focus-visible,
.btn-outline-secondary:focus,
.btn-outline-secondary:focus-visible {
    box-shadow: 0 0 0 0.25rem rgba(35, 47, 62, 0.25) !important;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--brand-primary-1) !important;
    box-shadow: 0 0 0 0.25rem rgba(242, 76, 10, 0.15) !important;
}

a {
    color: var(--brand-primary-1);
}
a:hover {
    color: var(--brand-primary-2);
}

.badge.bg-primary {
    background-color: var(--brand-primary-1) !important;
}
.badge.bg-secondary {
    background-color: var(--brand-secondary-1) !important;
}

.alert-primary {
    background-color: rgba(242, 76, 10, 0.1) !important;
    border-color: var(--brand-primary-1) !important;
    color: var(--brand-primary-2) !important;
}

/* Bootstrap Utility Classes - Primary color overrides */
.text-primary {
    color: var(--brand-primary-1) !important;
}
.bg-primary {
    background-color: var(--brand-primary-1) !important;
}
.bg-primary-subtle {
    background-color: rgba(242, 76, 10, 0.1) !important;
}
.border-primary {
    border-color: var(--brand-primary-1) !important;
}
.link-primary {
    color: var(--brand-primary-1) !important;
}
.link-primary:hover,
.link-primary:focus {
    color: var(--brand-primary-2) !important;
}

.card {
    border-radius: 12px !important;
    border: 1px solid var(--color-neutral-200) !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--color-white) !important;
}
.navbar-dark .navbar-nav .nav-link:hover {
    color: var(--color-white) !important;
    opacity: 0.85;
}
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--brand-secondary-1) !important;
    background-color: var(--color-white) !important;
}

.lucide-icon {
    width: 18px !important;
    height: 18px !important;
    stroke-width: 2 !important;
}

.lucide-icon-sm {
    width: 14px !important;
    height: 14px !important;
    stroke-width: 2 !important;
}

.lucide-icon-lg {
    width: 24px !important;
    height: 24px !important;
    stroke-width: 1.5 !important;
}

.lucide-icon-xl {
    width: 32px !important;
    height: 32px !important;
    stroke-width: 1.5 !important;
}

.lucide-icon-mobile {
    width: 22px !important;
    height: 22px !important;
    stroke-width: 2 !important;
}

[data-lucide] {
    display: inline-block;
    vertical-align: middle;
}

.btn-advanced-search {
    border: 1px solid #fff!important;
}

.btn-advanced-search:hover,
.btn-advanced-search.active {
    background: var(--brand-secondary-2);
}

/* Search filters row */
.ta-search-filters {
    background: var(--brand-secondary-1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.ta-search-filters.show {
    max-height: 600px;
    opacity: 1;
    overflow: visible;
}

.ta-search-filters.show .container,
.ta-search-filters.show .row,
.ta-search-filters.show .col,
.ta-search-filters.show [class*="col-"] {
    overflow: visible;
}

.ta-search-filters .form-floating > label {
    color: var(--color-neutral-600);
}

/* Custom Select Component */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    z-index: 100;
}

.custom-select-trigger {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #fff;
    border: 1px solid var(--color-neutral-300);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    max-height: 56px;
}

.custom-select-trigger:hover {
    border-color: var(--color-neutral-400);
}

.custom-select-trigger.active {
    border-color: var(--brand-primary-1);
    box-shadow: 0 0 0 0.25rem rgba(242, 76, 10, 0.15);
}

.custom-select-trigger .trigger-label {
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    color: var(--color-neutral-600);
    font-size: 0.75rem;
    pointer-events: none;
}

.custom-select-trigger .trigger-value {
    padding-top: 0.75rem;
    color: var(--color-neutral-800);
    min-height: 1.2em;
}

.custom-select-trigger .trigger-value:empty::before {
    content: "Seleccionar...";
    color: var(--color-neutral-400);
}

.custom-select-trigger .trigger-arrow {
    transition: transform 0.2s ease;
}

.custom-select-trigger.active .trigger-arrow {
    transform: rotate(180deg);
}

.custom-select-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 101;
    display: none;
    overflow: hidden;
    animation: dropdownFadeIn 0.2s ease;
}

.custom-select-dropdown.show {
    display: block;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-select-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    line-height: 1.2;
    user-select: none;
    transition: background 0.15s ease;
}

.custom-select-option:hover {
    background: var(--color-neutral-100);
}

.custom-select-option.selected {
    background: var(--color-neutral-100);
    font-weight: 500;
}

.custom-select-option .check-icon {
    color: var(--brand-primary-1);
    opacity: 0;
}

.custom-select-option.selected .check-icon {
    opacity: 1;
}

/* Mobile menu */
.mobile-menu {
    display: none !important;
}

@media (max-width: 991.98px) {
    .mobile-menu {
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--brand-secondary-1);
        z-index: 9998;
        padding: 80px 20px 160px;
        overflow-y: auto;
        flex-direction: column;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .mobile-menu.show {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu .navbar-nav {
        flex-direction: column;
        width: 100%;
    }

    .mobile-menu .nav-link {
        padding: 12px 16px !important;
        font-size: 1.1rem;
    }

    .mobile-menu-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 20px;
        background: var(--brand-secondary-3);
    }
}

/* Mobile styles */
@media (max-width: 991.98px) {
    .ta-search-filters {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        z-index: 99999 !important;
        overflow: hidden !important;
        max-height: 0 !important;
        opacity: 0 !important;
        padding: 0 !important;
        background: var(--brand-secondary-1) !important;
    }

    .ta-search-filters.show {
        max-height: 100vh !important;
        height: 100vh !important;
        opacity: 1 !important;
        overflow-y: auto !important;
        padding: 20px 16px 120px 16px !important;
    }

    body.search-filters-open,
    body.mobile-menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
        height: 100% !important;
    }

    .custom-select-trigger {
        min-height: 52px;
        padding: 12px 16px;
    }

    .custom-select-dropdown {
        max-height: 200px;
        overflow-y: auto;
    }

    /* Menu button z-index */
    #btnMobileMenu {
        position: relative;
        z-index: 9999;
    }
}

/* ========================================
   RESULTS PAGE STYLES
   ======================================== */

/* Progress Bar Loading (below header) */
@keyframes progress-bar-animation {
    0% { width: 0%; }
    10% { width: 15%; }
    30% { width: 40%; }
    50% { width: 60%; }
    70% { width: 80%; }
    90% { width: 95%; }
    100% { width: 100%; }
}

@keyframes progress-bar-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.progress-bar-loading {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    z-index: 1000;
    background: #e5e7eb;
    overflow: hidden;
}

.progress-bar-loading .progress-bar-inner {
    height: 100%;
    background: linear-gradient(90deg,
        var(--brand-primary-1, #f97316) 0%,
        #fb923c 25%,
        var(--brand-primary-1, #f97316) 50%,
        #fb923c 75%,
        var(--brand-primary-1, #f97316) 100%
    );
    background-size: 200% 100%;
    animation:
        progress-bar-animation 1.5s ease-out forwards,
        progress-bar-shimmer 1s linear infinite;
}

.progress-bar-loading.complete .progress-bar-inner {
    width: 100% !important;
    animation: none;
    background: var(--brand-primary-1, #f97316);
}

.progress-bar-loading.hidden {
    opacity: 0;
    height: 0;
    transition: opacity 0.3s ease, height 0.3s ease;
}

/* Header Skeleton */
.skeleton-header {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 9998;
    background: var(--brand-secondary-1, #1e3a5f);
    min-height: 120px;
}

.skeleton-container:not(.loaded) {
    display: block !important;
}

.skeleton-header .skeleton-topbar {
    padding: 12px 0;
}

.skeleton-header .skeleton-logo {
    width: 120px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.skeleton-header .skeleton-nav-items {
    display: flex;
    gap: 12px;
}

.skeleton-header .skeleton-nav-item {
    width: 80px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.skeleton-header .skeleton-nav-item.lg {
    width: 120px;
}

.skeleton-header .skeleton-icons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.skeleton-header .skeleton-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.skeleton-header .skeleton-btn {
    width: 100px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
}

.skeleton-header .skeleton-navbar {
    background: rgba(0, 0, 0, 0.1);
    padding: 8px 0;
}

.skeleton-header .skeleton-navbar-items {
    display: flex;
    gap: 8px;
}

.skeleton-header .skeleton-navbar-item {
    width: 100px;
    height: 36px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50px;
}

.skeleton-header .skeleton-navbar-item:first-child {
    width: 140px;
    background: rgba(255, 255, 255, 0.15);
}

/* Header skeleton pulse animation (lighter for dark bg) */
@keyframes skeleton-pulse-light {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.skeleton-header .skeleton-logo,
.skeleton-header .skeleton-nav-item,
.skeleton-header .skeleton-icon,
.skeleton-header .skeleton-btn,
.skeleton-header .skeleton-navbar-item {
    animation: skeleton-pulse-light 1.5s ease-in-out infinite;
}

/* Real header container (hidden during loading on results page) */
.real-header-container {
    position: relative;
    z-index: 9999;
}

.real-header-container.loading {
    display: none !important;
}

.real-header-container.loaded {
    display: block !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Skeleton Loading */
@keyframes skeleton-pulse {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-text.lg {
    height: 24px;
}

.skeleton-text.sm {
    height: 12px;
}

.skeleton-text.title {
    height: 28px;
    width: 60%;
}

.skeleton-box {
    border-radius: 8px;
}

.skeleton-product-card {
    background: var(--bs-body-bg);
    border: 1px solid var(--bs-border-color);
    border-radius: 12px;
    overflow: hidden;
}

/* Skeleton Info Bar */
.skeleton-info-bar {
    background: white;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.skeleton-info-bar .skeleton-title {
    height: 28px;
    width: 280px;
    max-width: 100%;
    margin-bottom: 12px;
}

.skeleton-info-bar .skeleton-count {
    height: 16px;
    width: 200px;
}

/* Skeleton Filter Sidebar */
.skeleton-filters {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    position: sticky;
    top: 20px;
}

.skeleton-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.skeleton-filter-header .skeleton-title {
    height: 20px;
    width: 60px;
}

.skeleton-filter-header .skeleton-btn {
    height: 32px;
    width: 100px;
    border-radius: 50px;
}

.skeleton-filter-group {
    margin-bottom: 24px;
}

.skeleton-filter-group .skeleton-group-title {
    height: 14px;
    width: 120px;
    margin-bottom: 16px;
}

.skeleton-filter-group .skeleton-input {
    height: 40px;
    width: 100%;
    border-radius: 50px;
}

.skeleton-filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.skeleton-filter-option .skeleton-checkbox {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    flex-shrink: 0;
}

.skeleton-filter-option .skeleton-label {
    height: 14px;
    flex: 1;
}

/* Skeleton Result Card */
.skeleton-result-card {
    background: white;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border: 1px solid #e8e8e8;
    margin-bottom: 16px;
}

.skeleton-result-card .skeleton-image {
    width: 200px;
    min-width: 200px;
    height: 160px;
    flex-shrink: 0;
}

.skeleton-result-card .skeleton-content {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.skeleton-result-card .skeleton-category {
    height: 12px;
    width: 100px;
    margin-bottom: 12px;
}

.skeleton-result-card .skeleton-card-title {
    height: 22px;
    width: 70%;
    margin-bottom: 12px;
}

.skeleton-result-card .skeleton-description {
    height: 14px;
    width: 90%;
    margin-bottom: 6px;
}

.skeleton-result-card .skeleton-description:last-of-type {
    width: 60%;
}

.skeleton-result-card .skeleton-price-section {
    margin-top: auto;
    padding-top: 16px;
}

.skeleton-result-card .skeleton-price-label {
    height: 12px;
    width: 100px;
    margin-bottom: 8px;
}

.skeleton-result-card .skeleton-price {
    height: 24px;
    width: 150px;
}

/* Skeleton responsive */
@media (max-width: 767px) {
    .skeleton-result-card {
        flex-direction: column;
    }

    .skeleton-result-card .skeleton-image {
        width: 100%;
        min-width: auto;
        height: 180px;
    }
}

/* ============================================
   SKELETON LOADING SYSTEM - Critical CSS
   ============================================ */

/* Skeleton containers: visible by default, hidden when loaded */
.skeleton-container {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.skeleton-container.loaded {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Content containers: hidden by default, visible when loaded */
.content-container.loading {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

.content-container:not(.loading):not(.loaded) {
    display: none !important;
}

/* Results list needs flex display when loaded */
.results-list.content-container.loaded {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
}

/* Load more container keeps text-center */
.load-more-container.content-container.loaded {
    display: block !important;
    text-align: center;
}

/* Other content containers use block */
.content-container.loaded:not(.results-list):not(.load-more-container) {
    display: block !important;
}

/* Smooth fade-in transition for content */
.content-container {
    opacity: 0;
    transition: opacity 0.3s ease;
    position: relative;
}

.content-container.loaded {
    opacity: 1;
}

.results-info-bar {
    background: white;
    padding: 20px 24px;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.results-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-secondary-1);
    margin-bottom: 8px;
}

.results-count {
    font-size: 0.9375rem;
    color: #666;
    margin: 0;
}

/* Filters Sidebar */
.results-filters-sidebar {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.results-filters-sidebar::-webkit-scrollbar {
    width: 4px;
}

.results-filters-sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
}

.results-filters-sidebar::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 2px;
}

.results-filters-sidebar::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.filters-header h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand-secondary-1);
}

.filters-header .btn-link {
    color: var(--brand-primary-1);
    font-size: 0.875rem;
}

.filter-group-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--brand-secondary-1);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Custom Checkbox */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    padding: 6px 0;
    transition: background 0.2s;
}

.filter-checkbox:hover {
    background: #f9f9f9;
    margin: 0 -10px;
    padding: 6px 10px;
    border-radius: 4px;
}

.filter-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.filter-checkbox .checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.filter-checkbox input:checked + .checkmark {
    background: var(--brand-primary-1);
    border-color: var(--brand-primary-1);
}

.filter-checkbox input:checked + .checkmark::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-top: -2px;
}

.filter-label {
    font-size: 0.9375rem;
    color: #333;
}

/* Results Count in Sidebar */
.filters-results-info {
    padding-bottom: 12px;
}

.results-count-sidebar {
    font-size: 0.875rem;
    color: #666;
}

.results-count-sidebar strong {
    color: var(--brand-secondary-1);
    font-weight: 600;
}

/* Sort Select */
.sort-select-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sort-label {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sort-select-wrapper .form-select {
    border-color: #ddd;
    font-size: 0.875rem;
    padding: 8px 32px 8px 12px;
    background-position: right 10px center;
}

.sort-select-wrapper .form-select:focus {
    border-color: var(--brand-primary-1);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.15);
}

/* Filter Accordion */
.filter-accordion {
    border-bottom: 1px solid #eee;
}

.filter-accordion:last-child {
    border-bottom: none;
}

.filter-accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--brand-secondary-1);
    transition: color 0.2s;
}

.filter-accordion-header:hover {
    color: var(--brand-primary-1);
}

.filter-accordion-header i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    color: #999;
}

.filter-accordion-header[data-open="true"] i {
    transform: rotate(180deg);
}

/* Filter Count Badge */
.filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: white;
    background: var(--brand-primary-1);
    border-radius: 10px;
    margin-left: 4px;
    vertical-align: middle;
}

.filter-count:empty {
    display: none;
}

.filter-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0;
}

.filter-accordion-content.show {
    max-height: 500px;
    padding-bottom: 16px;
}

/* Price Range Slider */
.price-range-slider {
    padding: 4px 0;
}

.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.price-input-group {
    display: flex;
    align-items: center;
    flex: 1;
    position: relative;
}

.price-currency {
    position: absolute;
    left: 10px;
    color: #666;
    font-size: 0.875rem;
    pointer-events: none;
}

.price-input-group .form-control {
    padding-left: 24px;
    text-align: right;
    border-radius: 8px;
}

.price-separator {
    color: #999;
    font-weight: 500;
}

.price-slider-container {
    position: relative;
    height: 24px;
    margin: 0 8px;
}

.price-slider-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    transform: translateY(-50%);
}

.price-slider-range {
    position: absolute;
    top: 50%;
    height: 4px;
    background: var(--brand-primary-1);
    border-radius: 2px;
    transform: translateY(-50%);
    left: 0%;
    right: 0%;
}

.price-slider {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 4px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    pointer-events: none;
    z-index: 2;
}

.price-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid var(--brand-primary-1);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.price-slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 3px 8px rgba(0,0,0,0.2);
}

.price-slider::-webkit-slider-thumb:active {
    transform: scale(1.15);
    background: var(--brand-primary-1);
}

.price-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: white;
    border: 2px solid var(--brand-primary-1);
    border-radius: 50%;
    cursor: pointer;
    pointer-events: auto;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

/* Results List */
.results-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Result Card - Despegar Style */
.result-card {
    background: white;
    border-radius: 12px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e8e8e8;
}

.result-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-decoration: none;
    color: inherit;
}

.result-card-image {
    width: 200px;
    min-width: 200px;
    flex-shrink: 0;
    height: 180px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

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

.result-card-no-image {
    color: #ccc;
    font-size: 3rem;
}

.result-card-content {
    flex: 1;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
}

.result-card-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.result-card-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--brand-primary-1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    padding: 4px 10px;
    background: rgba(242, 76, 10, 0.1);
    border-radius: 4px;
    width: fit-content;
}

.result-card-title {
    font-size: 1.125rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.result-card-description {
    font-size: 0.875rem;
    color: #666;
    margin-bottom: 0;
    line-height: 1.5;
    flex-grow: 1;
}

/* Price Section - Vertical Stack Layout */
.result-card-price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 200px;
    min-width: 200px;
    flex-shrink: 0;
    padding-left: 20px;
    border-left: 1px solid #eee;
}

/* Price Stack (vertical layout - Despegar style) */
.price-stack {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
}

/* Savings Badge - Despegar style (light cyan) */
.price-savings-badge {
    display: inline-block;
    background: #e0f7f6;
    color: #00796b;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 4px;
    width: fit-content;
}

/* Smaller variant for recommendation cards */
.price-savings-badge-sm {
    display: inline-block;
    background: #e0f7f6;
    color: #00796b;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    margin-bottom: 4px;
}

/* Product recommendation cards */
.product-rec-card {
    border: 1px solid var(--bs-border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.product-rec-card:hover {
    border-color: var(--bs-primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.price-stack-mini {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.price-list-row {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
}

.price-discount-row,
.price-tax-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.price-list-label {
    font-size: 0.75rem;
    color: #888;
}

.price-list-value {
    font-size: 0.875rem;
    color: #999;
    text-decoration: line-through;
}

.price-discount-label {
    font-size: 0.6875rem;
    color: #666;
    margin-top: 4px;
}

.price-discount-value,
.price-discount-value.price-current {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.1;
}

.price-tax-label {
    font-size: 0.6875rem;
    color: #666;
    margin-top: 6px;
}

.price-tax-value {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #555;
}

.price-label {
    font-size: 0.75rem;
    color: #888;
    margin-bottom: 4px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.price-current {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-original {
    font-size: 0.9375rem;
    color: #999;
    text-decoration: line-through;
}

.price-discount {
    font-size: 0.75rem;
    font-weight: 600;
    color: #00a650;
    background: #e6f7ed;
    padding: 2px 8px;
    border-radius: 4px;
}

.price-note {
    font-size: 0.6875rem;
    color: #00a650;
    margin-top: 4px;
}

.price-login {
    font-size: 0.875rem;
    color: var(--brand-primary-1);
    font-weight: 500;
    text-align: right;
}

/* Empty Results */
.results-empty {
    background: white;
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.results-empty-icon {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 20px;
}

.results-empty h3 {
    color: var(--brand-secondary-1);
    margin-bottom: 10px;
}

.results-empty p {
    color: #666;
}

.results-empty a {
    color: var(--brand-primary-1);
}

/* Hidden Result Cards (Load More) */
.result-card-hidden {
    display: none !important;
}

/* Hidden by price filter */
.price-filtered {
    display: none !important;
}

.result-card-show {
    animation: fadeInUp 0.4s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Load More Button */
.load-more-container {
    padding: 20px 0;
}

.load-more-count {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-left: 4px;
}

/* Results Page Mobile Styles */
@media (max-width: 767.98px) {
    .results-filters-sidebar {
        position: static;
        margin-bottom: 20px;
    }

    .result-card {
        flex-direction: column;
    }

    .result-card-image {
        width: 100%;
        min-width: 100%;
        height: 100%;
    }

    .result-card-content {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 16px;
    }

    .result-card-price {
        align-items: flex-start;
        border-left: none;
        border-top: 1px solid #eee;
        padding-left: 0;
        padding-top: 16px;
        min-width: auto;
        width: 100%;
    }

    .price-stack {
        flex-direction: column;
        gap: 4px;
        width: 100%;
    }

    .price-savings-badge {
        align-self: flex-start;
        margin-bottom: 8px;
    }

    .price-list-row,
    .price-discount-row,
    .price-tax-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .price-discount-row .price-current {
        font-size: 1.25rem;
    }

    .price-discount-label,
    .price-list-label,
    .price-tax-label {
        font-size: 0.8rem;
    }

    .results-info-bar {
        padding: 16px;
    }

    /* Add padding at bottom for mobile filter button */
    #results-section {
        padding-bottom: 80px;
    }
}

/* Mobile Filter Button (Fixed Bottom) */
.mobile-filter-btn-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px;
    display: flex;
    justify-content: center;
}

/* Hide filter button when search filters or mobile menu are open */
body.search-filters-open .mobile-filter-btn-container,
body.mobile-menu-open .mobile-filter-btn-container {
    display: none !important;
}

.mobile-filter-btn .filter-badge {
    background: white;
    color: var(--brand-primary-1);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 4px;
    vertical-align: 2px;
}

/* Mobile Filter Overlay */
.mobile-filter-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-filter-overlay.show {
    opacity: 1;
    visibility: visible;
}

/* Mobile Filter Panel (Slide Up) */
.mobile-filter-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    max-height: 85vh;
    background: white;
    border-radius: 16px 16px 0 0;
    z-index: 1002;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-filter-panel.show {
    transform: translateY(0);
}

.mobile-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.mobile-filter-header h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--brand-secondary-1);
}

.btn-close-panel {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #666;
    padding: 8px;
    cursor: pointer;
    transition: color 0.2s;
}

.btn-close-panel:hover {
    color: var(--brand-secondary-1);
}

.mobile-filter-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-filter-footer {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-top: 1px solid #eee;
    background: white;
    flex-shrink: 0;
}

.mobile-filter-footer .btn {
    padding: 12px 20px;
    font-weight: 500;
    border-radius: 8px;
}

/* ==========================================
   CATALOG CARDS (Productos Page)
   ========================================== */
.catalog-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
    cursor: pointer;
}

.catalog-card:hover {
    border-color: var(--brand-primary-1);
    box-shadow: 0 4px 12px rgba(242, 76, 10, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
    color: inherit;
}

.catalog-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.catalog-card-icon i {
    color: white;
    font-size: 1.25rem;
}

.catalog-card-content {
    flex: 1;
}

.catalog-card-content h5 {
    margin: 0 0 4px 0;
    font-weight: 600;
}

.catalog-card-content p {
    font-size: 0.875rem;
}

.catalog-card > i.fa-chevron-right {
    color: #ccc;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.catalog-card:hover > i.fa-chevron-right {
    color: var(--brand-primary-1);
    transform: translateX(4px);
}



/* ==== TRACKING PEDIDO STYLES ==== */
.tracking-container { margin: 0 auto; padding: 20px; }
.tracking-header { background: white; border-radius: 12px; padding: 32px; margin-bottom: 24px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.order-number { font-size: 32px; font-weight: 700; color: #111827; margin-bottom: 8px; }
.order-date { font-size: 14px; color: #4b5563; }
.status-badge { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 20px; font-size: 14px; font-weight: 600; margin-top: 12px; }
.status-badge.pending { background: #fef3c7; color: #92400e; }
.status-badge.confirming { background: #dbeafe; color: #1e40af; }
.status-badge.approved { background: #d1fae5; color: #065f46; }
.status-badge.rejected { background: #fee2e2; color: #991b1b; }
.tracking-grid { display: grid; grid-template-columns: 1fr 400px; gap: 24px; }
@media (max-width: 968px) { .tracking-grid { grid-template-columns: 1fr; } }
.card-modern { background: white; border-radius: 12px; padding: 32px; box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1); }
.card-title { font-size: 20px; font-weight: 700; color: #111827; margin-bottom: 24px; }
.timeline-modern { position: relative; }
.timeline-modern::before { content: ''; position: absolute; left: 20px; top: 40px; bottom: 40px; width: 2px; background: #e5e7eb; }
.timeline-step { position: relative; padding-left: 64px; margin-bottom: 32px; }
.timeline-step:last-child { margin-bottom: 0; }
.timeline-icon-modern { position: absolute; left: 0; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; background: #e5e7eb; color: #9ca3af; z-index: 1; border: 4px solid white; }
.timeline-step.completed .timeline-icon-modern { background: #10b981; color: white; }
.timeline-step.active .timeline-icon-modern { background: #0066cc; color: white; animation: pulse 2s ease-in-out infinite; }
.timeline-step.rejected .timeline-icon-modern { background: #ef4444; color: white; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 0 rgba(0, 102, 204, 0.4); } 50% { box-shadow: 0 0 0 10px rgba(0, 102, 204, 0); } }
.timeline-content h6 { font-size: 16px; font-weight: 600; color: #111827; margin-bottom: 4px; }
.timeline-content p { font-size: 14px; color: #4b5563; margin-bottom: 4px; }
.timeline-content small { font-size: 12px; color: #9ca3af; }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; font-size: 14px; }
.summary-row:not(:last-child) { border-bottom: 1px solid #f3f4f6; }
.summary-row.total { padding-top: 16px; margin-top: 8px; border-top: 2px solid #e5e7eb; }
.summary-row.total .label { font-size: 18px; font-weight: 700; }
.summary-row.total .value { font-size: 24px; font-weight: 700; color: #0066cc; }
.summary-row .label { color: #374151; }
.summary-row .value { font-weight: 600; color: #111827; }
.summary-row .value.discount { color: #10b981; }
.product-item { padding: 16px 0; border-bottom: 1px solid #f3f4f6; }
.product-item:last-child { border-bottom: none; }
.product-name { font-size: 14px; font-weight: 500; color: #111827; margin-bottom: 4px; }
.product-code { font-size: 12px; color: #6b7280; margin-bottom: 8px; }
.product-quantity-price { display: flex; justify-content: space-between; font-size: 14px; }
.benefit-alert { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-gradient) 100%); color: white; border-radius: 12px; padding: 20px; margin-top: 20px; }
.benefit-alert-icon { font-size: 32px; margin-bottom: 8px; }
.benefit-alert h6 { font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.benefit-alert p { font-size: 14px; margin: 0; opacity: 0.95; }
.benefit-amount { font-size: 24px; font-weight: 700; margin: 8px 0; }
.document-badge { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; background: #f9fafb; border: 1px solid #e5e7eb; border-radius: 8px; margin-top: 16px; text-decoration: none; color: #374151; transition: all 0.2s; }
.document-badge:hover { background: #f3f4f6; border-color: #d1d5db; color: #111827; }
.btn-modern { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: 8px; font-weight: 600; font-size: 14px; text-decoration: none; transition: all 0.2s; }
.btn-outline-modern { background: white; border: 1px solid #d1d5db; color: #374151; }
.btn-outline-modern:hover { background: #f9fafb; border-color: #9ca3af; color: #111827; }

/* Steps Component */
.steps {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}
.steps .step-item {
    flex: 1;
    position: relative;
    padding: 0.75rem 0.25rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--bs-secondary-color);
}
.steps .step-item::before {
    content: counter(step);
    counter-increment: step;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin: 0 auto 0.25rem;
    background: var(--bs-tertiary-bg);
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.75rem;
    color: var(--bs-secondary-color);
    transition: all 0.3s ease;
}
.steps .step-item::after {
    content: '';
    position: absolute;
    top: calc(0.75rem + 1rem);
    left: calc(50% + 1.25rem);
    width: calc(100% - 2.5rem);
    height: 2px;
    background: var(--bs-border-color);
    transition: background 0.3s ease;
}
.steps .step-item:last-child::after {
    display: none;
}
.steps .step-item.active::before,
.steps .step-item.completed::before {
    background: var(--bs-primary);
    color: #fff;
}
.steps .step-item.completed::before {
    content: '\2713';
}
.steps .step-item.completed::after {
    background: var(--bs-primary);
}
.steps .step-item.active {
    color: var(--bs-body-color);
    font-weight: 500;
}
/* Clickable steps */
.steps .step-item.completed,
.steps .step-item.active {
    cursor: pointer;
}
.steps .step-item.completed:hover::before,
.steps .step-item.active:hover::before {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
.steps .step-item::before {
    transition: all 0.2s ease;
}

/* Step Panels */
.step-panel {
    display: none;
}
.step-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Selection Cards */
.selection-card {
    border: 2px solid var(--bs-border-color);
    border-radius: 12px;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    background: var(--bs-body-bg);
    text-align: center;
}
.selection-card:hover {
    border-color: var(--bs-primary);
    background: var(--bs-tertiary-bg);
}
.selection-card.selected {
    border-color: var(--bs-primary);
    background: rgba(var(--bs-primary-rgb), 0.05);
}
.selection-card.selected .check-icon {
    display: flex;
}
.selection-card .check-icon {
    display: none;
    position: absolute;
    top: -8px;
    right: -8px;
    width: 1.25rem;
    height: 1.25rem;
    background: var(--bs-primary);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
}

/* Quantity Selector */
.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.quantity-selector .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    border-radius: 8px;
}
.quantity-selector input {
    width: 70px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    height: 40px;
}

/* Product Image */
.product-image-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
}
.product-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 400px;
    transition: transform 0.3s ease;
}
.product-image-container:hover img {
    transform: scale(1.05);
}

/* Tabs */
.product-tabs .nav-link {
    color: var(--bs-body-color);
    border: none;
    border-bottom: 2px solid transparent;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    font-size: 0.875rem;
}
.product-tabs .nav-link:hover {
    border-bottom-color: var(--bs-border-color);
}
.product-tabs .nav-link.active {
    color: var(--bs-primary);
    border-bottom-color: var(--bs-primary);
    background: transparent;
}

/* Presentacion option icons */
.presentacion-option .option-icon {
    width: 32px;
    height: 32px;
    background: var(--bs-tertiary-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
}

/* ========================================
   PRODUCTO DETAIL PAGE - BOTTOM SHEET
   ======================================== */

/* Quick select from table */
.qty-shortcut {
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    transition: all 0.2s ease;
}
.qty-shortcut:hover {
    text-decoration-style: solid;
    font-weight: 600;
}

/* Mobile Bottom Sheet - Responsive */
@media (max-width: 991.98px) {
    .desktop-wizard {
        display: none !important;
    }
    #producto-detail-page {
        padding-bottom: 100px;
    }
}

@media (min-width: 992px) {
    .mobile-bottom-sheet,
    .bottom-sheet-backdrop {
        display: none !important;
    }
}

/* Bottom Sheet Backdrop */
.bottom-sheet-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.bottom-sheet-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* Bottom Sheet Container */
.mobile-bottom-sheet {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1050;
    background: var(--bs-body-bg, #fff);
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    height: 85vh;
    transform: translateY(calc(100% - 90px));
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    touch-action: none;
}
.mobile-bottom-sheet.expanded {
    transform: translateY(0);
}
.mobile-bottom-sheet.dragging {
    transition: none;
}

/* Bottom Sheet Handle */
.bottom-sheet-handle {
    padding: 12px 16px 8px;
    cursor: grab;
    flex-shrink: 0;
}
.bottom-sheet-handle:active {
    cursor: grabbing;
}
.bottom-sheet-handle-bar {
    width: 40px;
    height: 4px;
    background: var(--bs-secondary-bg, #dee2e6);
    border-radius: 2px;
    margin: 0 auto;
}

/* Bottom Sheet Preview (collapsed state) */
.bottom-sheet-preview {
    padding: 0 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
    height: 58px;
    transition: opacity 0.2s ease;
}
.mobile-bottom-sheet.expanded .bottom-sheet-preview {
    opacity: 0;
    pointer-events: none;
    height: 0;
    padding: 0;
    overflow: hidden;
}

/* Bottom Sheet Header */
.bottom-sheet-header {
    padding: 0 16px 16px;
    border-bottom: 1px solid var(--bs-border-color, #dee2e6);
    margin-bottom: 16px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    opacity: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    transition: opacity 0.2s ease;
}
.mobile-bottom-sheet.expanded .bottom-sheet-header {
    opacity: 1;
    height: auto;
    padding: 0 16px 16px;
    overflow: visible;
}

/* Bottom Sheet Content */
.bottom-sheet-content {
    padding: 0 16px 16px;
    overflow-y: auto;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.mobile-bottom-sheet.expanded .bottom-sheet-content,
.mobile-bottom-sheet.dragging .bottom-sheet-content {
    opacity: 1;
}

/* Show header during drag */
.mobile-bottom-sheet.dragging .bottom-sheet-header {
    opacity: 1;
    height: auto;
    padding: 0 16px 16px;
    overflow: visible;
}

/* Hide preview during drag up */
.mobile-bottom-sheet.dragging .bottom-sheet-preview {
    opacity: 0;
}

/* Mobile step panels */
.mobile-step-panel {
    display: none;
}
.mobile-step-panel.active {
    display: block;
}

/* Mobile selection cards adjustments */
@media (max-width: 991.98px) {
    .bottom-sheet-content .selection-card {
        padding: 10px 8px;
    }
    .bottom-sheet-content .selection-card small {
        font-size: 11px;
    }
}

/* ========== SKELETON LOADING - FLOATING ELEMENTS ========== */

/* Mobile Filter FAB Skeleton */
.skeleton-mobile-fab {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.skeleton-mobile-fab .skeleton-fab-btn {
    width: 120px;
    height: 48px;
    border-radius: 24px;
    background: linear-gradient(90deg, #e0e0e0 25%, #d0d0d0 50%, #e0e0e0 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* WhatsApp Button Skeleton */
.skeleton-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.skeleton-whatsapp .skeleton-wa-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(90deg, #25D366 25%, #20bd5a 50%, #25D366 75%);
    background-size: 200% 100%;
    animation: skeleton-pulse 1.5s ease-in-out infinite;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* User Dropdown Skeleton */
.skeleton-user-dropdown {
    position: fixed;
    top: 70px;
    right: 20px;
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 16px;
    z-index: 99999;
    display: none;
}

.skeleton-user-dropdown.show {
    display: block;
}

.skeleton-user-dropdown .skeleton-user-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
    margin-bottom: 16px;
}

.skeleton-user-dropdown .skeleton-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.skeleton-user-dropdown .skeleton-user-info {
    flex: 1;
}

.skeleton-user-dropdown .skeleton-cards {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.skeleton-user-dropdown .skeleton-card {
    flex: 1;
    height: 60px;
    border-radius: 8px;
}

.skeleton-user-dropdown .skeleton-menu-item {
    height: 44px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.skeleton-user-dropdown .skeleton-menu-item:last-child {
    margin-bottom: 0;
}

/* User Bottom Sheet Skeleton (Mobile) */
.skeleton-user-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 16px;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.skeleton-user-sheet.show {
    transform: translateY(0);
}

.skeleton-user-sheet .skeleton-handle {
    width: 40px;
    height: 4px;
    border-radius: 2px;
    margin: 0 auto 16px;
}

/* Cart Offcanvas Skeleton */
.skeleton-cart-offcanvas {
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 100%;
    height: 100%;
    background: #2E3C50;
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    padding: 20px;
}

@media (max-width: 991.98px) {
    .skeleton-cart-offcanvas {
        top: auto;
        bottom: 0;
        width: 100%;
        height: auto;
        max-height: 85vh;
        border-radius: 20px 20px 0 0;
        transform: translateY(100%);
    }

    .skeleton-cart-offcanvas.show {
        transform: translateY(0);
    }
}

.skeleton-cart-offcanvas.show {
    transform: translateX(0);
}

.skeleton-cart-offcanvas .skeleton-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.skeleton-cart-offcanvas .skeleton-cart-title {
    width: 100px;
    height: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    animation: skeleton-pulse-dark 1.5s ease-in-out infinite;
}

.skeleton-cart-offcanvas .skeleton-close {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
}

.skeleton-cart-offcanvas .skeleton-cart-item {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 12px;
}

.skeleton-cart-offcanvas .skeleton-item-title {
    width: 70%;
    height: 18px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-bottom: 12px;
    animation: skeleton-pulse-dark 1.5s ease-in-out infinite;
}

.skeleton-cart-offcanvas .skeleton-item-detail {
    width: 50%;
    height: 14px;
    background: rgba(255,255,255,0.08);
    border-radius: 4px;
    margin-bottom: 8px;
    animation: skeleton-pulse-dark 1.5s ease-in-out infinite;
}

.skeleton-cart-offcanvas .skeleton-item-price {
    width: 80px;
    height: 24px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin-top: 12px;
    animation: skeleton-pulse-dark 1.5s ease-in-out infinite;
}

@keyframes skeleton-pulse-dark {
    0% { opacity: 0.3; }
    50% { opacity: 0.5; }
    100% { opacity: 0.3; }
}

/* Floating elements - hide during loading, show when loaded */
.floating-elements {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-elements.loaded {
    opacity: 1;
}

/* Mobile Filter Panel Skeleton */
.skeleton-mobile-filter-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
    z-index: 99999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 20px;
}

.skeleton-mobile-filter-panel.show {
    transform: translateY(0);
}

.skeleton-mobile-filter-panel .skeleton-filter-section {
    margin-bottom: 24px;
}

.skeleton-mobile-filter-panel .skeleton-section-title {
    width: 100px;
    height: 16px;
    margin-bottom: 12px;
}

.skeleton-mobile-filter-panel .skeleton-filter-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.skeleton-mobile-filter-panel .skeleton-chip {
    width: 80px;
    height: 32px;
    border-radius: 16px;
}

/* ========================================
   CART PAGE STYLES
   ======================================== */

.payment-method-card {
    cursor: pointer;
    transition: all 0.2s ease;
}
.payment-method-card:hover {
    border-color: var(--bs-primary) !important;
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}
.payment-method-card.border-primary {
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}

.collapse-icon {
    transition: transform 0.3s ease;
}

.card-header[aria-expanded="false"] .collapse-icon {
    transform: rotate(-90deg);
}

.mobile-checkout-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--bs-border-color);
    padding: 1rem 0;
    z-index: 1030;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
}

.payment-sheet-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.payment-sheet-backdrop.open {
    opacity: 1;
    visibility: visible;
}

.payment-sheet {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-radius: 1rem 1rem 0 0;
    z-index: 1050;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
}
.payment-sheet.open {
    transform: translateY(0);
}

.payment-sheet-handle {
    padding: 0.75rem;
    cursor: grab;
}
.payment-sheet-handle-bar {
    width: 40px;
    height: 4px;
    background: var(--bs-border-color);
    border-radius: 2px;
    margin: 0 auto;
}

.payment-sheet-content {
    padding: 0 1.5rem 2rem;
}

@media (max-width: 991.98px) {
    #carrito-page section.py-4:last-of-type {
        padding-bottom: 6rem !important;
    }
}

/* ========================================
   CHECKOUT PAGE STYLES
   ======================================== */

.upload-area {
    cursor: pointer;
    transition: all 0.2s ease;
}
.upload-area:hover {
    border-color: var(--bs-primary) !important;
    background-color: rgba(var(--bs-primary-rgb), 0.05);
}
.cursor-pointer {
    cursor: pointer;
}

/* Payment Overlay Transitions */
#collapsiblesContainer {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#collapsiblesContainer.hiding {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
}

#paymentOverlay {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#paymentOverlay:not(.d-none) {
    opacity: 1;
    transform: translateY(0);
}

#paymentOverlay > .card,
#paymentOverlay > button {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

#paymentOverlay:not(.d-none) > button {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}

#paymentOverlay:not(.d-none) > .card:not(.d-none) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

/* Payment method card selection animation */
.payment-method-card {
    transition: all 0.2s ease;
}

.payment-method-card:hover {
    border-color: var(--bs-primary) !important;
}

/* Shipping option animation */
.tipo-entrega-option {
    transition: all 0.2s ease;
}

/* ========================================
   GLOBAL ROUNDED-PILL STYLES
   ======================================== */

/* All buttons get rounded-pill */
.btn {
    border-radius: 50rem !important;
}

/* All form-control inputs get rounded-pill (excludes select) */
input.form-control,
textarea.form-control {
    border-radius: 50rem !important;
}

/* Textarea should have less rounded corners for multi-line */
textarea.form-control {
    border-radius: 1rem !important;
}

/* Input groups - adjust for rounded inputs */
.input-group > .form-control:not(:last-child),
.input-group > .form-control:not(:first-child) {
    border-radius: 50rem !important;
}

.input-group > .form-control:first-child {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.input-group > .form-control:last-child {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

.input-group > .input-group-text:first-child {
    border-top-left-radius: 50rem !important;
    border-bottom-left-radius: 50rem !important;
}

.input-group > .input-group-text:last-child {
    border-top-right-radius: 50rem !important;
    border-bottom-right-radius: 50rem !important;
}

/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Hero Slider - Container Style */
.hero-section {
    padding-top: 24px;
    padding-bottom: 120px;
}
.hero-slider {
    position: relative;
    height: 320px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
@media (max-width: 767.98px) {
    .hero-slider { height: 260px; border-radius: 12px; }
    .hero-section { padding-top: 16px; }
}
.hero-slider .swiper {
    height: 100%;
    border-radius: inherit;
}
.hero-slider .swiper-slide {
    position: relative;
}
.hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(50, 52, 57, 0.9) 0%, rgba(50, 52, 57, 0.7) 60%, rgba(50, 52, 57, 0.5) 100%);
    z-index: 5;
    border-radius: inherit;
}
.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 10;
    padding: 0 32px;
}
@media (max-width: 767.98px) {
    .hero-content { padding: 0 20px; }
}
.hero-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}
.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 16px;
}
.hero-slider .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
}
.hero-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--brand-primary-1);
}

/* Slider Navigation - Outside buttons */
.hero-slider-wrapper {
    position: relative;
}
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: #fff;
    border: none;
    border-radius: 50%;
    color: var(--color-neutral-700);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 30;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.hero-nav-btn:hover {
    background: #fff;
    color: var(--color-neutral-800);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.hero-nav-btn.prev {
    left: -18px;
}
.hero-nav-btn.next {
    right: -18px;
}
.hero-nav-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}
@media (max-width: 991.98px) {
    .hero-nav-btn {
        width: 32px;
        height: 32px;
    }
    .hero-nav-btn.prev { left: -10px; }
    .hero-nav-btn.next { right: -10px; }
    .hero-nav-btn svg {
        width: 16px;
        height: 16px;
    }
}
@media (max-width: 767.98px) {
    .hero-nav-btn { display: none; }
}

/* Benefits Bar - Despegar Style */
.benefits-bar {
    position: relative;
    margin-top: -180px;
    z-index: 20;
    padding-bottom: 48px;
}
.benefit-pill {
    background: #fff;
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.benefit-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.benefit-pill-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit-pill-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--color-neutral-800);
    margin-bottom: 4px;
}
.benefit-pill-desc {
    font-size: 0.8125rem;
    color: var(--color-neutral-600);
    line-height: 1.4;
    margin: 0;
}

/* Section Styles */
.section-header {
    margin-bottom: 24px;
}
.section-title {
    font-weight: 700;
    color: var(--color-neutral-800);
    margin-bottom: 4px;
}
.section-subtitle {
    color: var(--color-neutral-600);
    font-size: 0.875rem;
    margin: 0;
}

/* Product Card - Despegar Style */
.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid var(--color-neutral-200);
}
.product-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    text-decoration: none;
    color: inherit;
}
.product-card-image {
    position: relative;
    height: 200px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px 20px;
}
.product-card-image > img:not(.product-card-badge) {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.product-card:hover .product-card-image > img:not(.product-card-badge) {
    transform: scale(1.05);
}
.product-card-badge {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 64px!important;
    height: auto!important;
    z-index: 2;
}
.product-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.product-card-code {
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--brand-primary-1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.product-card-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--brand-secondary-1);
    margin-bottom: 8px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-card-pricing {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--color-neutral-200);
}
.product-card-old-price {
    font-size: 0.75rem;
    color: var(--color-neutral-600);
    text-decoration: line-through;
}
.product-card-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-neutral-800);
}
.product-card-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-neutral-600);
}
.product-card-discount {
    display: inline-block;
    background: var(--color-success-100);
    color: var(--color-success-500);
    font-size: 0.6875rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 8px;
}
.product-card-points {
    font-size: 0.75rem;
    color: var(--color-success-500);
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Offer Card */
.offer-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid var(--color-neutral-200);
    height: 100%;
}
.offer-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.offer-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-neutral-800);
    margin-bottom: 8px;
}
.offer-card-desc {
    font-size: 0.875rem;
    color: var(--color-neutral-600);
    margin-bottom: 0;
}

/* Discount Table Compact */
.discount-table-compact {
    width: 100%;
    font-size: 0.8125rem;
    margin-top: 12px;
}
.discount-table-compact th {
    background: var(--color-neutral-800);
    color: #fff;
    padding: 8px 12px;
    font-weight: 500;
}
.discount-table-compact th:first-child { border-radius: 6px 0 0 0; }
.discount-table-compact th:last-child { border-radius: 0 6px 0 0; }
.discount-table-compact td {
    padding: 8px 12px;
    background: var(--color-neutral-100);
    border-bottom: 1px solid var(--color-neutral-200);
}
.discount-table-compact tr:last-child td:first-child { border-radius: 0 0 0 6px; }
.discount-table-compact tr:last-child td:last-child { border-radius: 0 0 6px 0; }
.discount-pill {
    background: var(--color-success-100);
    color: var(--color-success-500);
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
    font-size: 0.75rem;
}

/* Points Banner */
.points-banner {
    background: linear-gradient(135deg, var(--color-success-500) 0%, #047857 100%);
    border-radius: 12px;
    padding: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.points-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* Coupon Banner */
.coupon-banner {
    background: linear-gradient(135deg, var(--brand-primary-1) 0%, var(--brand-primary-2) 100%);
    border-radius: 12px;
    padding: 24px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.coupon-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -5%;
    width: 150px;
    height: 150px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

/* Trust Bar */
.trust-bar {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    border: 1px solid var(--color-neutral-200);
}
.trust-item {
    text-align: center;
}
.trust-item i {
    color: var(--brand-primary-1);
    margin-bottom: 8px;
}
.trust-item h6 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-neutral-800);
    margin-bottom: 2px;
}
.trust-item small {
    font-size: 0.75rem;
    color: var(--color-neutral-600);
}

/* ========================================
   CORPORATE FOOTER - Despegar Style
======================================== */
.site-footer {
    background: #fff;
    border-top: 1px solid var(--color-neutral-200);
}

/* Social Icons Top */
.footer-social-top {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid var(--color-neutral-200);
}
.footer-social-top a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-neutral-500);
    transition: color 0.2s ease;
}
.footer-social-top a:hover {
    color: var(--color-neutral-800);
}
.footer-social-top i {
    width: 24px;
    height: 24px;
}

/* Footer Links */
.footer-links {
    padding: 40px 0;
}
.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-neutral-800);
    margin-bottom: 16px;
}
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav li {
    margin-bottom: 8px;
}
.footer-nav a,
.footer-nav span {
    font-size: 0.8125rem;
    color: var(--color-neutral-600);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-nav a:hover {
    color: var(--brand-primary-1);
    text-decoration: underline;
}

/* Soluturing Powered Section */
.footer-powered {
    text-align: center;
    padding: 32px 0;
    border-top: 1px solid var(--color-neutral-200);
}
.footer-soluturing-link {
    display: inline-block;
    transition: opacity 0.2s ease;
}
.footer-soluturing-link img {
    width: 220px;
    height: auto;
}
.footer-soluturing-text {
    font-size: 0.8125rem;
    color: var(--color-neutral-500);
    margin: 12px 0 8px;
}
.footer-copyright {
    font-size: 0.75rem;
    color: var(--color-neutral-500);
    margin: 0;
}

/* Footer Skeleton */
.site-footer-skeleton {
    background: var(--color-neutral-100);
    border-top: 1px solid var(--color-neutral-200);
    margin-top: 40px;
}
#skeletonFooter .border-bottom {
    border-color: var(--color-neutral-200) !important;
}
#skeletonFooter .border-top {
    border-color: var(--color-neutral-200) !important;
}

/* ========================================
   SHARE DROPDOWN
======================================== */
.share-dropdown {
    position: relative;
    display: inline-block;
}
.share-dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s ease;
    z-index: 1000;
}
.share-dropdown-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.share-option {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 10px 16px;
    background: none;
    border: none;
    font-size: 0.875rem;
    color: var(--color-neutral-700);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.15s ease;
}
.share-option:hover {
    background: var(--color-neutral-100);
    color: var(--color-neutral-800);
}
.share-option i {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}
.share-option.copied {
    color: var(--color-success-500);
}
.share-option.copied i {
    color: var(--color-success-500);
}

/* ========================================
   TOAST NOTIFICATIONS
======================================== */
.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 380px;
}
.toast-notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    animation: toastSlideIn 0.3s ease;
}
.toast-notification.hiding {
    animation: toastSlideOut 0.3s ease forwards;
}
@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes toastSlideOut {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(100%);
    }
}
.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--color-neutral-800);
}
.toast-content i {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.toast-success .toast-content i {
    color: var(--color-success-500);
}
.toast-error .toast-content i {
    color: var(--color-error-500);
}
.toast-warning .toast-content i {
    color: var(--color-warning-500);
}
.toast-info .toast-content i {
    color: var(--color-info-500);
}
.toast-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    background: none;
    border: none;
    color: var(--color-neutral-400);
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.15s ease;
}
.toast-close:hover {
    background: var(--color-neutral-100);
    color: var(--color-neutral-600);
}
.toast-close i {
    width: 16px;
    height: 16px;
}
.toast-link {
    color: var(--brand-primary-1);
    font-weight: 500;
    text-decoration: none;
    margin-left: 4px;
}
.toast-link:hover {
    text-decoration: underline;
}

@media (max-width: 576px) {
    .toast-container {
        left: 16px;
        right: 16px;
        bottom: 80px;
        max-width: none;
    }
}

/* ========================================
   CATALOG PAGES
======================================== */
.catalogo-page {
    padding: 24px 0 48px;
}

/* Header */
.catalogo-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}
@media (min-width: 768px) {
    .catalogo-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }
}
.catalogo-header-content {
    flex: 1;
}
.catalogo-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-neutral-800);
    margin-bottom: 8px;
}
.catalogo-subtitle {
    font-size: 0.9375rem;
    color: var(--color-neutral-600);
    margin: 0;
}
.catalogo-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* PDF Viewer */
.catalogo-viewer {
    margin-bottom: 32px;
}
.catalogo-viewer-container {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid var(--color-neutral-200);
}
.catalogo-viewer-container iframe {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    border: none;
    display: block;
}

/* Info Cards */
.catalogo-info {
    margin-bottom: 40px;
}
.catalogo-info-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    border: 1px solid var(--color-neutral-200);
    height: 100%;
    transition: all 0.2s ease;
}
.catalogo-info-card:hover {
    border-color: var(--brand-primary-1);
    box-shadow: 0 4px 12px rgba(242, 76, 10, 0.1);
}
.catalogo-info-card i {
    width: 32px;
    height: 32px;
    color: var(--brand-primary-1);
    margin-bottom: 12px;
}
.catalogo-info-card h6 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-neutral-800);
    margin-bottom: 8px;
}
.catalogo-info-card p {
    font-size: 0.8125rem;
    color: var(--color-neutral-600);
    margin: 0;
    line-height: 1.5;
}

/* Related Catalogs */
.catalogo-related {
    background: var(--color-white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--color-neutral-200);
}
.catalogo-related h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-neutral-800);
    margin-bottom: 16px;
}
.catalogo-related-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--color-neutral-100);
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.catalogo-related-card:hover {
    background: var(--color-neutral-200);
}
.catalogo-related-card:hover > i:last-child {
    transform: translateX(4px);
}
.catalogo-related-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.catalogo-related-icon i {
    width: 24px;
    height: 24px;
}
.catalogo-related-content {
    flex: 1;
}
.catalogo-related-content h6 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-neutral-800);
    margin-bottom: 4px;
}
.catalogo-related-content p {
    font-size: 0.8125rem;
    color: var(--color-neutral-600);
    margin: 0;
}
.catalogo-related-card > i:last-child {
    width: 20px;
    height: 20px;
    color: var(--color-neutral-400);
    transition: transform 0.2s ease;
}