﻿/* =========================================
   TRANG CHI TIẾT TOOL – TOOL DETAIL
   Màu chính: #2563eb, thành công: #10b981
========================================= */

.page-tool-detail {
    color: var(--text-main, #e5e7eb);
    background: var(--bg-body, #18191a);
}

/* Container hero */

.product-page {
    padding: var(--space-7, 32px) 0 var(--space-6, 28px);
}

.product-hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
    gap: 28px;
    align-items: flex-start;
}

/* =========================================
   MEDIA GALLERY
========================================= */

.product-media {
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 65%),
        #242526;
    border-radius: 24px;
    padding: 18px 18px 16px;
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(30, 64, 175, 0.65);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.product-main-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #242526;
    aspect-ratio: 16 / 9.5;
    cursor: zoom-in;
}

.product-main-media.skeleton {
    background: #0b1120;
}

.product-main-media.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(15, 23, 42, 0.9),
            rgba(148, 163, 184, 0.22),
            rgba(15, 23, 42, 0.9));
    transform: translateX(-100%);
    animation: shimmer 1.2s linear infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

.product-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease, filter 0.35s ease;
    will-change: transform, filter;
}

/* Zoom lens */

.product-main-media.is-zoomed {
    cursor: zoom-out;
}

.product-main-media.is-zoomed .product-main-img {
    transform: scale(1.65);
}

/* Nút fullscreen */

.media-fullscreen-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.7);
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: 0.2s ease;
}

.media-fullscreen-btn:hover {
    background: rgba(37, 99, 235, 0.9);
}

/* Thumbnails */

.product-thumbs {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.product-thumb {
    flex: 0 0 auto;
    width: 70px;
    height: 46px;
    border-radius: 10px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: #242526;
    padding: 2px;
    cursor: pointer;
    transition: 0.2s ease;
    position: relative;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.product-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 10px;
    border: 0 solid transparent;
    box-shadow: 0 0 0 rgba(37, 99, 235, 0);
    transition: 0.2s ease;
}

.product-thumb.is-active {
    border-color: rgba(59, 130, 246, 0.9);
}

.product-thumb.is-active::after {
    border-width: 1px;
    box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.7);
}

/* Video demo */

.product-video {
    margin-top: 16px;
    border-radius: 16px;
    background: #242526;
    border: 1px solid rgba(37, 99, 235, 0.35);
    padding: 10px;
}

.product-video-thumb {
    width: 100%;
    border-radius: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.product-video-thumb-inner {
    position: relative;
    border-radius: 12px;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.2), transparent 60%),
        #242526;
    border: 1px solid rgba(30, 64, 175, 0.7);
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-video-thumb-inner.skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(90deg,
            rgba(15, 23, 42, 0.9),
            rgba(148, 163, 184, 0.22),
            rgba(15, 23, 42, 0.9));
    transform: translateX(-100%);
    animation: shimmer 1.2s linear infinite;
}

.video-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.video-length {
    font-size: 0.8rem;
    color: var(--text-soft, #9ca3af);
}

.video-play-btn {
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #22c55e;
    color: #242526;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
}

.product-video-player {
    margin-top: 10px;
    display: none;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

/* =========================================
   HERO SUMMARY
========================================= */

.product-summary {
    padding: 6px 0;
}

/* Breadcrumb */

.product-breadcrumb {
    font-size: 0.8rem;
    color: var(--text-soft, #9ca3af);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.product-breadcrumb a {
    color: var(--accent, #2563eb);
    text-decoration: none;
}

.product-breadcrumb a:hover {
    text-decoration: underline;
}

/* Title + badges */

.product-title {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 8px;
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

.badge {
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.4);
    background: rgba(15, 23, 42, 0.9);
}

.badge-hot {
    border-color: rgba(248, 113, 113, 0.9);
    color: #fecaca;
}

.badge-new {
    border-color: rgba(59, 130, 246, 0.9);
    color: #bfdbfe;
}

.badge-limit {
    border-color: rgba(234, 179, 8, 0.9);
    color: #facc15;
}

/* Rating */

.product-rating-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 10px;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.rating-stars {
    color: #facc15;
    letter-spacing: 1px;
}

.rating-score {
    font-weight: 600;
}

.rating-count {
    color: var(--text-soft, #9ca3af);
}

.link-underline {
    border: none;
    background: none;
    color: var(--accent, #2563eb);
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
    font-size: 0.85rem;
}

/* Pricing */

.product-pricing {
    margin-bottom: 16px;
}

.pricing-main {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 4px;
}

.price-original {
    font-size: 0.9rem;
    color: var(--text-soft, #9ca3af);
    text-decoration: line-through;
}

.price-current {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2563eb;
}

.price-badge {
    font-size: 0.8rem;
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.2);
    color: #fca5a5;
}

.pricing-meta {
    font-size: 0.85rem;
    color: var(--text-soft, #9ca3af);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Actions */

.product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 14px;
}

.btn-add-cart {
    min-width: 150px;
}

.btn-buy-now {
    min-width: 110px;
}

/* Heart icon */

.btn-icon.btn-wishlist {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.9);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    color: #e5e7eb;
    transition: 0.2s ease;
}

.btn-wishlist:hover {
    border-color: rgba(248, 113, 113, 0.9);
}

.btn-wishlist.is-active {
    background: rgba(248, 113, 113, 0.1);
    border-color: rgba(248, 113, 113, 0.9);
    color: #fecaca;
    animation: heart-pop 0.4s ease;
}

@keyframes heart-pop {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

/* Highlights */

.product-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-highlights li::before {
    content: "• ";
    color: #22c55e;
}

/* Guarantees */

.product-guarantees {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.82rem;
    color: var(--text-soft, #9ca3af);
}

/* =========================================
   VIEW TRANSITION ENTRY / EXIT (LOCAL)
========================================= */

/* Khi vào trang: hero slide từ phải sang */
@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.product-page-entrance {
    animation: slideInFromRight 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Gallery slide up nhẹ khi load */

.product-media {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

.detail-loaded .product-media {
    opacity: 1;
    transform: translateY(0);
}

/* Khi rời trang (quay lại marketplace) */

@keyframes slideOutToLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-100px);
        opacity: 0;
    }
}

.page-tool-detail .page-main.page-exit {
    animation: slideOutToLeft 0.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}

/* =========================================
   TABS + PANELS
========================================= */

.product-details {
    padding-top: 0;
}

.product-tabs {
    position: relative;
    display: inline-flex;
    flex-wrap: wrap;
    gap: 4px;
    padding: 4px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.4);
    margin-bottom: 16px;
}

.product-tab {
    position: relative;
    border: none;
    background: transparent;
    color: var(--text-soft, #9ca3af);
    font-size: 0.9rem;
    padding: 6px 14px;
    border-radius: 999px;
    cursor: pointer;
    z-index: 1;
}

.product-tab.is-active {
    color: #e5f2ff;
}

.product-tabs-indicator {
    position: absolute;
    height: 24px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.35);
    top: 4px;
    left: 4px;
    width: 1px;
    z-index: 0;
    transition: transform 0.26s ease, width 0.26s ease;
}

/* Panels */

.product-tabs-panels {
    border-radius: 18px;
    background: #242526;
    border: 1px solid rgba(31, 41, 55, 0.9);
    padding: 16px 18px;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
}

.product-tab-panel {
    display: none;
    font-size: 0.9rem;
    color: var(--text-main, #e5e7eb);
}

.product-tab-panel.is-active {
    display: block;
}

/* Features grid trong tab */

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.feature-item {
    padding: 10px 10px 10px 0;
    border-radius: 12px;
    display: flex;
    gap: 8px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.feature-item h3 {
    font-size: 0.95rem;
    margin-bottom: 2px;
}

/* Spec table */

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.spec-table th,
.spec-table td {
    padding: 6px 0;
    border-bottom: 1px solid rgba(31, 41, 55, 0.9);
}

.spec-table th {
    text-align: left;
    color: var(--text-soft, #9ca3af);
    width: 40%;
    padding-right: 10px;
}

/* Docs */

.docs-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.doc-item h3 {
    font-size: 0.96rem;
    margin-bottom: 4px;
}

.doc-item p {
    font-size: 0.86rem;
    color: var(--text-soft, #9ca3af);
    margin-bottom: 6px;
}

.doc-link {
    font-size: 0.86rem;
    color: var(--accent, #2563eb);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* =========================================
   REVIEWS / SOCIAL PROOF
========================================= */

.product-reviews {
    padding-top: var(--space-7, 32px);
}

.reviews-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 2fr);
    gap: 22px;
}

.reviews-summary h2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.reviews-score {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    margin-bottom: 8px;
}

.score-main {
    font-size: 2.1rem;
    font-weight: 700;
}

.score-stars {
    color: #facc15;
}

.score-count {
    font-size: 0.86rem;
    color: var(--text-soft, #9ca3af);
}

.reviews-breakdown {
    margin-bottom: 8px;
}

.reviews-row {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr) 36px;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
}

.reviews-bar {
    height: 5px;
    border-radius: 999px;
    background: rgba(31, 41, 55, 0.9);
    overflow: hidden;
}

.reviews-bar .fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #22c55e, #2563eb);
}

.reviews-note {
    font-size: 0.82rem;
    color: var(--text-soft, #9ca3af);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 999px;
    background: #22c55e;
    color: #242526;
    font-size: 0.7rem;
    margin-right: 4px;
}

/* Reviews list */

.reviews-main {
    display: grid;
    gap: 12px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.review-user {
    display: flex;
    gap: 8px;
}

.review-avatar {
    width: 32px;
    height: 32px;
    border-radius: 999px;
}

.review-role {
    font-size: 0.8rem;
    color: var(--text-soft, #9ca3af);
}

.review-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-size: 0.8rem;
}

.review-stars {
    color: #facc15;
}

.review-verified {
    color: #22c55e;
    font-size: 0.76rem;
}

.review-text {
    font-size: 0.88rem;
    margin-bottom: 6px;
}

.review-images {
    display: flex;
    gap: 6px;
}

.review-images img {
    width: 80px;
    height: 52px;
    border-radius: 8px;
    object-fit: cover;
}

/* =========================================
   RELATED / BUNDLES
========================================= */

.product-related {
    padding-top: var(--space-7, 32px);
}

.related-block {
    margin-bottom: 20px;
}

.related-header h2 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.related-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.related-card {
    flex: 0 0 220px;
    background: #242526;
    border-radius: 16px;
    padding: 12px;
    border: 1px solid rgba(31, 41, 55, 0.9);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.8);
    font-size: 0.9rem;
}

.related-badge {
    display: inline-block;
    font-size: 0.78rem;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.2);
    color: #bfdbfe;
    margin-bottom: 4px;
}

.related-price {
    font-weight: 600;
    margin-top: 4px;
}

.related-link {
    display: inline-block;
    margin-top: 4px;
    font-size: 0.85rem;
    color: var(--accent, #2563eb);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Bundles */

.bundle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.bundle-card h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.bundle-card p {
    font-size: 0.88rem;
    color: var(--text-soft, #9ca3af);
    margin-bottom: 6px;
}

.bundle-pricing {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 8px;
}

.bundle-old {
    font-size: 0.82rem;
    text-decoration: line-through;
    color: var(--text-soft, #9ca3af);
}

.bundle-new {
    font-size: 1rem;
    font-weight: 600;
    color: #22c55e;
}

.btn-bundle-add {
    font-size: 0.85rem;
}

/* =========================================
   SUPPORT
========================================= */

.product-support {
    padding-top: var(--space-7, 32px);
    padding-bottom: var(--space-9, 40px);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 14px;
}

.support-card h2 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.support-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.support-badge {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.8rem;
    padding: 3px 8px;
    border-radius: 999px;
    background: rgba(22, 163, 74, 0.19);
    color: #bbf7d0;
}

/* =========================================
   STICKY BUY BAR
========================================= */

.sticky-buy-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 40;
    transform: translateY(100%);
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.3), transparent 60%),
        rgba(15, 23, 42, 0.98);
    border-top: 1px solid rgba(30, 64, 175, 0.7);
    backdrop-filter: blur(16px);
    transition: transform 0.35s ease;
}

.sticky-buy-bar.visible {
    transform: translateY(0);
}

.sticky-buy-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 20px;
}

.sticky-buy-info {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
}

.sticky-buy-title {
    font-weight: 600;
}

.sticky-buy-price {
    font-size: 1rem;
    color: #22c55e;
}

.sticky-buy-actions {
    display: flex;
    gap: 8px;
}

/* =========================================
   MEDIA MODAL FULLSCREEN
========================================= */

.media-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 60;
}

.media-modal.is-open {
    display: flex;
}

.media-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
}

.media-modal-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
}

.media-modal-img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9);
}

.media-modal-close {
    position: absolute;
    top: -36px;
    right: 0;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: none;
    background: rgba(15, 23, 42, 0.95);
    color: #e5e7eb;
    cursor: pointer;
}

/* =========================================
   ANIMATE ON SCROLL
========================================= */

[data-animate-on-scroll] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    will-change: opacity, transform;
}

[data-animate-on-scroll].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   LOADING STATE – BLUR & SKELETON
========================================= */

.page-tool-detail.is-loading-detail .product-main-img {
    filter: blur(8px);
    opacity: 0.7;
}

.page-tool-detail.is-loading-detail .product-page,
.page-tool-detail.is-loading-detail .product-details,
.page-tool-detail.is-loading-detail .product-reviews,
.page-tool-detail.is-loading-detail .product-related,
.page-tool-detail.is-loading-detail .product-support {
    opacity: 0.9;
}

/* Sau khi load xong */
.page-tool-detail.detail-loaded .product-main-media.skeleton::after,
.page-tool-detail.detail-loaded .product-video-thumb-inner.skeleton::after {
    animation: none;
    opacity: 0;
}

/* =========================================
   MICRO-ANIMATIONS
========================================= */

.btn-add-cart.is-adding,
.btn-add-cart-sticky.is-adding {
    animation: btn-pulse 0.6s ease;
}

@keyframes btn-pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
    }

    60% {
        transform: scale(1.04);
        box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.0);
    }

    100% {
        transform: scale(1);
    }
}

/* Flying thumbnail (add-to-cart) */

.flying-thumb {
    position: fixed;
    z-index: 80;
    border-radius: 12px;
    overflow: hidden;
    pointer-events: none;
    will-change: transform, opacity;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {
    .product-hero-layout {
        grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.5fr);
    }
}

@media (max-width: 900px) {
    .product-hero-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-media {
        order: 2;
    }

    .product-summary {
        order: 1;
    }

    .product-page {
        padding-top: var(--space-6, 28px);
    }

    .sticky-buy-inner {
        padding-inline: 16px;
    }
}

@media (max-width: 640px) {
    .product-title {
        font-size: 1.4rem;
    }

    .product-tabs-panels {
        padding: 12px 12px;
    }

    .reviews-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .sticky-buy-info {
        font-size: 0.85rem;
    }

    .sticky-buy-actions .btn-primary,
    .sticky-buy-actions .btn-secondary {
        padding-inline: 12px;
    }
}

@media (max-width: 480px) {
    .sticky-buy-inner {
        padding: 8px 12px;
        gap: 8px;
    }

    .sticky-buy-info {
        font-size: 0.78rem;
    }

    .sticky-buy-title {
        font-size: 0.85rem;
    }

    .sticky-buy-price {
        font-size: 0.9rem;
    }

    .sticky-buy-actions .btn-primary,
    .sticky-buy-actions .btn-secondary {
        padding: 7px 10px;
        font-size: 0.82rem;
    }

    .product-meta-row {
        flex-wrap: wrap;
        gap: 6px;
    }
}

/* Giảm chuyển động: tắt bớt animation chuyển động mạnh */

@media (prefers-reduced-motion: reduce) {

    .product-page-entrance,
    .product-media,
    [data-animate-on-scroll],
    .page-tool-detail .page-main.page-exit {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
}