/* ============================================
   PÁGINA DE CATÁLOGO - ESTILOS ESPECÍFICOS
   ============================================ */

/* ============================================
   SECCIÓN DE FILTROS
   ============================================ */

.filters-section {

    z-index: 100;
    padding: 2rem 2rem 0;

}

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

/* Toggle Button (Fixed en la derecha) */
.filters-toggle {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: auto;
    background: linear-gradient(135deg, rgba(30, 124, 147, 0.3) 0%, rgba(50, 9, 53, 0.35) 100%);
    backdrop-filter: blur(15px) saturate(150%);
    -webkit-backdrop-filter: blur(15px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top-left-radius: 12px;
    border-bottom-left-radius: 12px;
    border-right: none;
    padding: 1.25rem 1rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 999;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.3);
}

.filters-toggle i {
    color: #e29117;
    font-size: 1.3rem;
}

.filters-toggle span:not(.filter-count) {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.filters-toggle .filter-count {
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    color: #ffffff;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0 6px;
    opacity: 0;
    transition: opacity 0.3s ease;
    writing-mode: initial;
    transform: none;
    display: none;
}

.filters-toggle .filter-count.active {
    opacity: 1;
}

.filters-toggle:hover {
    right: 2px;
    background: linear-gradient(135deg, rgba(30, 124, 147, 0.35) 0%, rgba(50, 9, 53, 0.45) 100%);
    border-color: rgba(226, 145, 23, 0.4);
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.4);
}

.filters-toggle.active {
    right: 400px;
    background: linear-gradient(135deg, rgba(226, 145, 23, 0.35) 0%, rgba(61, 7, 59, 0.45) 100%);
    border-color: rgba(226, 145, 23, 0.6);
}

/* Filters Panel (Fixed - Lateral derecho) */
.filters-panel {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.4) 0%, rgba(30, 124, 147, 0.35) 10%, rgba(50, 9, 53, 0.4) 100%);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.5), 0 0 40px rgba(226, 145, 23, 0.1);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
}

.filters-panel::-webkit-scrollbar {
    width: 8px;
}

.filters-panel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.filters-panel::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-radius: 10px;
}

.filters-panel::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f5a623 0%, #4D0B4B 100%);
}

.filters-panel.open {
    right: 0;
}

/* Overlay cuando el panel está abierto */
.filters-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.filters-overlay.active {
    opacity: 1;
    visibility: visible;
}

.filters-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.filters-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.filters-title i {
    color: #e29117;
    font-size: 1.25rem;
}

.btn-clear-filters {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-clear-filters:hover {
    background: rgba(255, 77, 77, 0.25);
    border-color: rgba(255, 77, 77, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.3);
}

.btn-clear-filters i {
    font-size: 1rem;
}

/* Filter Groups */
.filter-group {
    margin-bottom: 1.75rem;
}

.filter-group:last-of-type {
    margin-bottom: 0;
}

.filter-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.filter-label i {
    color: #1E7C93;
    font-size: 0.95rem;
}

/* Search Input */
.filter-search {
    width: 100%;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.filter-search:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(226, 145, 23, 0.6);
    box-shadow: 0 0 0 3px rgba(226, 145, 23, 0.15);
}

.filter-search::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

/* Filter Options */
.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Filter Checkbox */
.filter-checkbox {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.2rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.filter-checkbox:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(226, 145, 23, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.filter-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    position: relative;
    transition: all 0.3s ease;
}

.filter-checkbox input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    border-color: #e29117;
}

.filter-checkbox input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 0.7rem;
}

.checkbox-label {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Active Filters Tags */
.active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    min-height: 20px;
}

.active-filters:empty {
    display: none;
}

.filter-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(226, 145, 23, 0.25) 0%, rgba(61, 7, 59, 0.35) 100%);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 145, 23, 0.5);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

.filter-tag i {
    color: #e29117;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tag i:hover {
    color: #ff4d4d;
    transform: scale(1.2);
}

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

/* No Results Message */
.no-results {
    text-align: center;
    padding: 4rem 2rem;
    color: #ffffff;
}

.no-results i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.no-results p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Hero Section - Catalog */
.catalog-hero {
    min-height: calc(60vh - 100px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 3rem;
    background: radial-gradient(ellipse at top, rgba(50, 9, 53, 0.4) 0%, transparent 60%);
    position: relative;
    z-index: 10;
}

.catalog-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 100px;
}

.catalog-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

.catalog-hero-description {
    font-size: 1.15rem;
    color: #c0c0c0;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Catalog Section */
.catalog-section {
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.catalog-section:nth-child(even) {
    background: linear-gradient(180deg, transparent 0%, rgba(50, 9, 53, 0.2) 50%, transparent 100%);
}

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

/* Category Header */
.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.category-title i {
    color: #e29117;
    font-size: 2rem;
}

.category-subtitle {
    font-size: 1.05rem;
    color: #a0a0a0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

/* Product Card */
.product-card {
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.3) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(241, 7, 255, 0.3);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(30, 124, 147, 0.1) 0%, rgba(50, 9, 53, 0.1) 100%);
    overflow: hidden;
}

.product-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    margin: auto;
    scale: 1;
    transition: transform 0.4s ease;
}

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

/* Product Badge */
.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(226, 145, 23, 0.4);
}

.product-badge.usado {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.product-badge.hosting {
    position: absolute;
    top: 56px;
    right: 8px;
    left: auto;
    background: linear-gradient(135deg, #7B2FF7 0%, #3D073B 100%);
    color: #ffffff;
    padding: 0.5rem 3.25rem;
    transform: rotate(45deg) translate(30%, -50%);
    transform-origin: top right;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(123, 47, 247, 0.4);
    z-index: 2;
    border-radius: 0;
    pointer-events: none;
    white-space: nowrap;
}

/* Crypto Logos en producto (puede haber múltiples) */
.crypto-logos {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    flex-direction: row-reverse;
}

.crypto-logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 6px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.crypto-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Info */
.product-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-specs {
    font-size: 0.95rem;
    color: #1E7C93;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.product-crypto {
    font-size: 0.85rem;
    color: #1E7C93;
    margin-bottom: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
}

/* Product Price */
.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    margin-top: auto;
}

.price-amount {
    font-size: 1.75rem;
    font-weight: 800;
    color: #e29117;
    line-height: 1;
}

.price-currency {
    font-size: 1rem;
    color: #a0a0a0;
    font-weight: 600;
}

/* Product Button */
.btn-product {
    width: 100%;
    background: linear-gradient(135deg, #e29117 0%, #3D073B 100%);
    color: #ffffff;
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(226, 145, 23, 0.3);
    text-decoration: none;
}

.btn-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5), 0 0 30px rgba(123, 47, 247, 0.4), 0 0 45px rgba(241, 7, 255, 0.3), 0 4px 20px rgba(0, 0, 0, 0.5);
}

.btn-product i {
    font-size: 1.15rem;
}

/* Responsive - Catalog Page */
@media (max-width: 1400px) {
    .catalog-hero {
        padding: 5rem 1.5rem 2.5rem;
    }

    .catalog-hero-title {
        font-size: 2.5rem;
    }

    .catalog-hero-description {
        font-size: 1.05rem;
    }

    .catalog-section {
        padding: 3.5rem 2rem;
    }

    .catalog-container {
        max-width: 80%;
    }

    .category-title {
        font-size: 2rem;
    }

    .category-subtitle {
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.75rem;
    }

  

    .product-info {
        padding: 1.5rem;
    }

    .product-name {
        font-size: 1.15rem;
    }

    .price-amount {
        font-size: 1.6rem;
    }

    .btn-product {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    /* Filtros en móvil */
    .filters-section {
        padding: 1.5rem 1rem 0;
        width: 80%;
        margin: 0 auto;
    }

    .filters-toggle {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        flex-direction: column;
        padding: 1rem 1.25rem;
        border-radius: 12px 0 0 12px;
        right: 0;
        margin-right: 0;
    }

    .filters-toggle span:not(.filter-count) {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .filters-toggle.active {
        right: calc(90vw);
        transform: translateY(-50%);
    }

    .filters-panel {
        right: -100vw;
        width: 90vw;
        padding: 1.5rem;
    }

    .filters-panel.open {
        right: 0;
    }

    .filters-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .filters-title {
        font-size: 1.25rem;
    }

    .btn-clear-filters {
        width: 100%;
        justify-content: center;
    }

    .filter-group {
        margin-bottom: 1.5rem;
    }

    .filter-label {
        font-size: 0.95rem;
    }

    .filter-options {
        gap: 0.6rem;
    }

    .filter-checkbox {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .active-filters {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .filter-tag {
        font-size: 0.8rem;
        padding: 0.45rem 0.9rem;
    }

    /* Catálogo */
    .catalog-hero {
        min-height: 35vh;
        padding: 4rem 1rem 2rem;
    }

    .catalog-hero-title {
        font-size: 2rem;
    }

    .catalog-hero-description {
        font-size: 1rem;
    }

    .catalog-section {
        padding: 3rem 1rem;
    }

    .catalog-container {
        max-width: 80%;
    }

    .category-header {
        margin-bottom: 2rem;
    }

    .category-title {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .category-title i {
        font-size: 1.75rem;
    }

    .category-subtitle {
        font-size: 0.95rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }


    .product-info {
        padding: 1.25rem;
    }

    .product-name {
        font-size: 1.1rem;
    }

    .product-specs {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }
    
    .product-crypto {
        font-size: 0.8rem;
        margin-bottom: 1rem;
    }

    .product-price {
        margin-bottom: 1.25rem;
    }

    .price-amount {
        font-size: 1.5rem;
    }

    .price-currency {
        font-size: 0.9rem;
    }

    .btn-product {
        padding: 0.85rem 1.25rem;
        font-size: 0.95rem;
    }

    .product-badge {
        font-size: 0.7rem;
        padding: 0.35rem 0.75rem;
    }
    
    .crypto-logos {
        bottom: 8px;
        right: 8px;
        gap: 4px;
    }
    
    .crypto-logo {
        width: 30px;
        height: 30px;
        padding: 5px;
    }
}

/* ============================================
   SKELETON LOADER PARA CATÁLOGO
   ============================================ */

/* Ocultar productos mientras carga */
body.catalog-loading .catalog-section {
    opacity: 0;
    pointer-events: none;
}

/* Skeleton para tarjetas de productos */
.skeleton-card {
    background: linear-gradient(135deg, rgba(50, 9, 53, 0.3) 0%, rgba(20, 20, 20, 0.6) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.skeleton-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.03) 25%, 
        rgba(255, 255, 255, 0.08) 50%, 
        rgba(255, 255, 255, 0.03) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-info {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.skeleton-line {
    height: 16px;
    background: linear-gradient(90deg, 
        rgba(255, 255, 255, 0.05) 25%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.05) 75%
    );
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s ease-in-out infinite;
    border-radius: 4px;
}

.skeleton-line.title {
    height: 24px;
    width: 80%;
}

.skeleton-line.spec {
    height: 14px;
    width: 40%;
}

.skeleton-line.price {
    height: 28px;
    width: 60%;
}

.skeleton-line.button {
    height: 44px;
    width: 100%;
    margin-top: 0.5rem;
    border-radius: 10px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Grid de skeletons */
.skeleton-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 1400px) {
    .skeleton-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.75rem;
    }
    
    .skeleton-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .skeleton-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .skeleton-image {
        height: 200px;
    }
}

/* ============================================
   FIX ESPECÍFICO PARA iOS SAFARI
   ============================================ */

@supports (-webkit-touch-callout: none) {
    .catalog-hero,
    .catalog-section,
    .filters-section {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    /* Fix para botón de filtros en iOS */
    .filters-toggle {
        position: fixed;
        -webkit-transform: translateY(-50%) translateZ(0);
        transform: translateY(-50%) translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    
    .filters-toggle.active {
        -webkit-transform: translateY(-50%) translateZ(0);
        transform: translateY(-50%) translateZ(0);
    }
    
    .filters-panel {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

