/* Digital product page — 2026 redesign (body.site-product) */
/* Fonts loaded via product.aspx <link>; do not @import here (blocks parsing in some browsers). */

body.site-product {
    --pp-primary: #0f766e;
    --pp-primary-dark: #115e59;
    --pp-accent: #f97316;
    --pp-accent-hover: #ea580c;
    --pp-bg: #f8fafc;
    --pp-surface: #ffffff;
    --pp-surface-2: #f1f5f9;
    --pp-border: #e2e8f0;
    --pp-text: #0f172a;
    --pp-text-secondary: #334155;
    --pp-text-muted: #64748b;
    --pp-radius: 16px;
    --pp-radius-sm: 12px;
    --pp-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --pp-ease: cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Vazirmatn', Tahoma, sans-serif;
    background: var(--pp-bg);
    overflow-x: hidden;
    max-width: 100%;
}

body.site-product *,
body.site-product *::before,
body.site-product *::after {
    box-sizing: border-box;
}

/* Neutralize legacy float sidebar layout (stylesheet.css) */
body.site-product #container {
    max-width: min(100%, 1480px) !important;
    width: 100% !important;
    margin-inline: auto !important;
    padding: 16px clamp(12px, 2vw, 32px) 48px !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: block !important;
    float: none !important;
    clear: both !important;
    min-width: 0 !important;
}

body.site-product #column-left,
body.site-product #column-right {
    display: none !important;
    float: none !important;
    width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.site-product .content {
    margin: 0 !important;
    overflow: visible !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
}

body.site-product .pp-page,
body.site-product .pp-hero,
body.site-product .pp-hero__media,
body.site-product .pp-hero__buybox,
body.site-product .pp-tabs,
body.site-product .pp-related-wrap,
body.site-product .pp-breadcrumb {
    float: none !important;
    clear: both !important;
    max-width: 100% !important;
}

body.site-product article.pp-page {
    display: flex;
    flex-direction: column;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
}

/* Breadcrumb */
body.site-product .pp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 8px;
    margin: 0 0 20px;
    padding: 12px 16px;
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius-sm);
    font-size: 13px;
    color: var(--pp-text-muted);
    line-height: 1.6;
    overflow: visible;
    list-style: none;
    width: 100%;
}

body.site-product .pp-breadcrumb a {
    color: var(--pp-primary);
    text-decoration: none;
    font-weight: 500;
}

body.site-product .pp-breadcrumb a:hover { color: var(--pp-accent); }

body.site-product .pp-breadcrumb__current {
    color: var(--pp-text);
    font-weight: 600;
}

body.site-product .pp-breadcrumb__sep { opacity: 0.45; }

/* Page shell */
body.site-product .pp-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Hero — CSS Grid on desktop (avoids flex-wrap gap bugs in Chrome/Firefox) */
body.site-product .pp-hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    grid-template-areas: "media buybox";
    align-items: start;
    gap: clamp(16px, 3vw, 28px);
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0;
}

body.site-product .pp-hero__media {
    grid-area: media;
    min-width: 0;
    max-width: 100%;
    width: auto !important;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 961px) {
    body.site-product .pp-hero__media {
        max-width: min(100%, 440px);
        justify-self: end;
    }
}

body.site-product aside.pp-hero__buybox,
body.site-product .pp-hero__buybox {
    grid-area: buybox;
    min-width: 0;
    max-width: 100%;
    float: none !important;
    width: auto !important;
    margin: 0 !important;
    display: block;
    align-self: start;
}

body.site-product .pp-seller .seller-trust {
    width: 100%;
    max-width: 100%;
    float: none !important;
    box-sizing: border-box;
}

/* Gallery — compact */
body.site-product .pp-gallery {
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    padding: 12px;
    box-shadow: var(--pp-shadow);
    max-width: 100%;
}

body.site-product .pp-gallery__main {
    position: relative;
    background: var(--pp-surface-2);
    border-radius: var(--pp-radius-sm);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    max-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.site-product .pp-gallery__zoom {
    display: block;
    width: 100%;
    height: 100%;
}

body.site-product .pp-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.35s var(--pp-ease);
}

body.site-product .pp-gallery__main:hover img { transform: scale(1.03); }

body.site-product .pp-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

body.site-product .pp-badge--hot { background: linear-gradient(135deg, #ef4444, #dc2626); }
body.site-product .pp-badge--new { background: linear-gradient(135deg, var(--pp-primary), var(--pp-primary-dark)); }

body.site-product .pp-gallery__thumbs {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}

body.site-product .pp-gallery__thumb {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    padding: 0;
    border: 2px solid var(--pp-border);
    border-radius: 10px;
    background: var(--pp-surface);
    cursor: pointer;
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
}

body.site-product .pp-gallery__thumb.is-active {
    border-color: var(--pp-primary);
    box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

body.site-product .pp-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Buy box — sticky */
body.site-product .pp-buybox__inner {
    position: sticky;
    top: 16px;
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    padding: clamp(18px, 3vw, 24px);
    box-shadow: var(--pp-shadow);
}

body.site-product .pp-buybox__eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--pp-primary);
    text-transform: none;
}

body.site-product .pp-buybox__title {
    margin: 0 0 12px;
    font-size: clamp(1.2rem, 2.5vw, 1.55rem);
    font-weight: 800;
    line-height: 1.45;
    color: var(--pp-text);
}

body.site-product .pp-buybox__rating { margin-bottom: 12px; }

body.site-product .pp-buybox__lead {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--pp-text-secondary);
}

/* Specs table */
body.site-product .pp-specs-quick { margin-bottom: 18px; }

body.site-product .pp-specs-quick__title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--pp-text);
}

body.site-product .pp-specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

body.site-product .pp-specs-table th,
body.site-product .pp-specs-table td {
    padding: 9px 12px;
    border-bottom: 1px solid var(--pp-border);
    text-align: right;
    vertical-align: top;
}

body.site-product .pp-specs-table th {
    width: 38%;
    color: var(--pp-text-muted);
    font-weight: 600;
    background: var(--pp-surface-2);
}

body.site-product .pp-specs-table td { color: var(--pp-text); font-weight: 500; }
body.site-product .pp-specs-table td a { color: var(--pp-primary); text-decoration: none; }
body.site-product .pp-specs-table td a:hover { text-decoration: underline; }

/* Price */
body.site-product .pp-buybox__price {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: var(--pp-radius-sm);
    background: linear-gradient(135deg, #fff7ed 0%, #fff 60%);
    border: 1px solid #fed7aa;
}

body.site-product .pp-price-old {
    display: block;
    font-size: 13px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-bottom: 4px;
}

body.site-product .pp-buybox__amount {
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    font-weight: 800;
    color: var(--pp-primary-dark);
}

body.site-product .pp-buybox__hint {
    margin: 8px 0 0;
    font-size: 12px;
    color: var(--pp-text-muted);
    line-height: 1.6;
}

/* CTA */
body.site-product .pp-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    min-height: 52px;
    padding: 14px 20px;
    border: none;
    border-radius: var(--pp-radius-sm);
    font-family: inherit;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s var(--pp-ease), box-shadow 0.2s, filter 0.2s;
}

body.site-product .pp-cta--primary {
    background: linear-gradient(135deg, var(--pp-accent) 0%, var(--pp-accent-hover) 100%);
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

body.site-product .pp-cta--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(249, 115, 22, 0.4);
    filter: brightness(1.03);
}

body.site-product .pp-cta--secondary {
    width: auto;
    min-width: 220px;
    background: var(--pp-primary);
    color: #fff !important;
    box-shadow: 0 4px 16px rgba(15, 118, 110, 0.3);
}

/* Trust */
body.site-product .pp-trust {
    list-style: none;
    margin: 18px 0 0;
    padding: 14px 0 0;
    border-top: 1px dashed var(--pp-border);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    font-size: 12px;
    color: var(--pp-text-muted);
}

body.site-product .pp-trust li {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Actions & share */
body.site-product .pp-buybox__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

body.site-product .pp-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border: 1px solid var(--pp-border);
    border-radius: 999px;
    background: var(--pp-surface-2);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--pp-text-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

body.site-product .pp-action-btn:hover {
    background: #e2e8f0;
    border-color: #cbd5e1;
}

body.site-product .pp-share {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--pp-border);
    font-size: 13px;
    color: var(--pp-text-muted);
}

body.site-product .pp-share__btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--pp-border);
    background: var(--pp-surface) url(../images/social_icons.png) no-repeat;
    transition: transform 0.2s;
}

body.site-product .pp-share__btn.twitter { background-position: -25px 5px; }
body.site-product .pp-share__btn.facebook { background-position: -75px 5px; }
body.site-product .pp-share__btn.linkedin { background-position: -50px 5px; }
body.site-product .pp-share__btn:hover { transform: translateY(-2px); }

/* Seller */
body.site-product .pp-seller {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

body.site-product .pp-seller--under-gallery {
    margin-top: 0;
    padding: 16px;
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    box-shadow: var(--pp-shadow);
}

body.site-product .pp-buybox .pp-seller {
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid var(--pp-border);
}

body.site-product .pp-seller__avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--pp-border);
}

body.site-product .pp-seller__label {
    display: block;
    font-size: 11px;
    color: var(--pp-text-muted);
    margin-bottom: 4px;
}

body.site-product .pp-seller__link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pp-primary);
    text-decoration: none;
}

body.site-product .pp-seller__link--muted { color: var(--pp-text-muted); font-weight: 500; }

body.site-product .pp-seller__shop {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(15, 118, 110, 0.08);
    border: 1px solid rgba(15, 118, 110, 0.2);
    color: var(--pp-primary) !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    width: 100%;
    justify-content: center;
}

/* Rating (hero) */
body.site-product .shop-product-rating {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
    font-size: 14px;
}

body.site-product .shop-product-rating__link {
    color: var(--pp-text-secondary);
    text-decoration: none;
    cursor: pointer;
}

body.site-product .shop-product-rating__link:hover { color: var(--pp-primary); }

body.site-product .shop-product-rating__stars {
    position: relative;
    display: inline-block;
    font-size: 18px;
    width: 5.6em;
    height: 1em;
}

body.site-product .shop-product-rating__stars-empty,
body.site-product .shop-product-rating__stars-fill {
    position: absolute;
    top: 0;
    right: 0;
    white-space: nowrap;
    overflow: hidden;
}

body.site-product .shop-product-rating__stars-empty { color: #e2e8f0; width: 100%; }
body.site-product .shop-product-rating__stars-fill { color: #fbbf24; width: var(--rating-pct, 0%); }

/* Tabs */
body.site-product .pp-tabs {
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    padding: clamp(14px, 3vw, 20px);
    box-shadow: var(--pp-shadow);
}

body.site-product .shop-product-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    padding: 4px;
    background: var(--pp-surface-2);
    border-radius: 999px;
    border: 1px solid var(--pp-border);
}

body.site-product .shop-product-tabs__nav button {
    flex: 1 1 auto;
    min-width: fit-content;
    padding: 10px 16px;
    border: none;
    border-radius: 999px;
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--pp-text-muted);
    cursor: pointer;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

body.site-product .shop-product-tabs__nav button.is-active {
    background: var(--pp-surface);
    color: var(--pp-primary);
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

body.site-product .shop-product-tabs__panel { display: none; }
body.site-product .shop-product-tabs__panel.is-active { display: block; animation: pp-fade-in 0.25s var(--pp-ease); }

body.site-product .pp-tab-rich {
    color: var(--pp-text-secondary);
    line-height: 1.85;
    font-size: 15px;
}

body.site-product .pp-tab-rich h2,
body.site-product .pp-tab-rich h3 {
    color: var(--pp-text);
    margin: 1.25em 0 0.6em;
}

body.site-product .pp-tab-rich ul,
body.site-product .pp-tab-rich ol {
    padding-right: 1.25em;
    margin: 0.75em 0;
}

body.site-product .pp-tab-rich img {
    max-width: 100%;
    height: auto;
    border-radius: var(--pp-radius-sm);
}

body.site-product .pp-tab-cta {
    margin: 24px 0;
    text-align: center;
}

body.site-product .pp-tags {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--pp-border);
}

body.site-product .pp-tags__title {
    margin: 0 0 12px;
    font-size: 14px;
    font-weight: 700;
    color: var(--pp-text);
}

body.site-product .pp-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 4px 6px 4px 0;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid var(--pp-border);
    background: var(--pp-surface-2);
    font-size: 12px;
    font-weight: 600;
    color: var(--pp-text-muted) !important;
    text-decoration: none;
}

body.site-product .pp-tag:hover {
    background: rgba(15, 118, 110, 0.08);
    border-color: rgba(15, 118, 110, 0.25);
    color: var(--pp-primary) !important;
}

/* Gallery grid tab */
body.site-product .pp-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}

body.site-product .pp-gallery-grid__item {
    display: block;
    border-radius: var(--pp-radius-sm);
    overflow: hidden;
    border: 1px solid var(--pp-border);
    transition: transform 0.2s, box-shadow 0.2s;
}

body.site-product .pp-gallery-grid__item:hover {
    transform: translateY(-3px);
    box-shadow: var(--pp-shadow);
}

body.site-product .pp-gallery-grid__item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* Related cards */
body.site-product .pp-related-wrap {
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: 100%;
}

body.site-product .pp-related-section {
    width: 100%;
    padding: 20px clamp(12px, 2vw, 24px);
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

body.site-product .pp-related-wrap .innercontent {
    max-width: none;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    font: inherit;
}

body.site-product .pp-section-title {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 800;
    color: var(--pp-text);
    display: flex;
    align-items: center;
    gap: 10px;
}

body.site-product .pp-section-title::before {
    content: "";
    width: 4px;
    height: 20px;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--pp-primary), var(--pp-accent));
}

body.site-product .pp-card-grid {
    display: grid;
    grid-template-columns: repeat(var(--pp-grid-cols, 6), minmax(0, 1fr));
    gap: 16px;
    width: 100%;
}

body.site-product .pp-card {
    display: flex;
    flex-direction: column;
    background: var(--pp-surface);
    border: 1px solid var(--pp-border);
    border-radius: var(--pp-radius-sm);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: transform 0.22s var(--pp-ease), box-shadow 0.22s, border-color 0.22s;
}

body.site-product .pp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--pp-shadow);
    border-color: rgba(15, 118, 110, 0.25);
}

body.site-product .pp-card__img {
    display: block;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--pp-surface-2);
}

body.site-product .pp-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s var(--pp-ease);
}

body.site-product .pp-card:hover .pp-card__img img { transform: scale(1.05); }

body.site-product .pp-card__body {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body.site-product .pp-card__title {
    font-size: 13px;
    font-weight: 700;
    color: var(--pp-text);
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

body.site-product .pp-card__price {
    font-size: 13px;
    font-weight: 700;
    color: var(--pp-primary);
}

/* Engagement in tab */
body.site-product .pp-tabs .shop-pe { margin-top: 0; }

body.site-product .shop-pe__tab.is-active,
body.site-product .shop-pe__tab:hover {
    background: rgba(15, 118, 110, 0.08);
    border-color: rgba(15, 118, 110, 0.25);
    color: var(--pp-primary);
}

body.site-product .shop-pe__btn {
    background: linear-gradient(135deg, var(--pp-accent), var(--pp-accent-hover));
}

/* Sticky mobile CTA */
body.site-product .pp-sticky-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom, 0));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--pp-border);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.1);
    transform: translateY(110%);
    transition: transform 0.3s var(--pp-ease);
    backdrop-filter: blur(8px);
}

body.site-product .pp-sticky-bar.is-visible { transform: translateY(0); }

body.site-product .pp-sticky-bar__price {
    flex: 1;
    font-size: 15px;
    font-weight: 800;
    color: var(--pp-primary-dark);
}

body.site-product .pp-sticky-bar__btn {
    width: auto;
    min-width: 160px;
    min-height: 46px;
    font-size: 14px;
}

@keyframes pp-fade-in {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hide legacy sidebar column if present */
body.site-product #column-right { display: none !important; }

/* Responsive */
@media (max-width: 960px) {
    body.site-product .pp-hero {
        display: flex !important;
        flex-direction: column;
        grid-template-columns: none;
        grid-template-areas: none;
    }

    body.site-product .pp-hero__media,
    body.site-product .pp-hero__buybox {
        grid-area: auto;
        flex: 0 0 auto;
        min-width: 0;
        max-width: 100%;
        width: 100% !important;
    }

    body.site-product .pp-buybox__inner {
        position: static;
    }

    body.site-product .pp-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    body.site-product .shop-product-tabs__nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        border-radius: var(--pp-radius-sm);
        -webkit-overflow-scrolling: touch;
    }

    body.site-product .shop-product-tabs__nav button {
        flex: 0 0 auto;
        white-space: nowrap;
    }
}

@media (min-width: 961px) {
    body.site-product .pp-sticky-bar { display: none !important; }
}

@media (max-width: 640px) {
    body.site-product .pp-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
    }

    body.site-product .pp-trust {
        grid-template-columns: 1fr;
    }

    body.site-product #container {
        padding-bottom: 80px;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.site-product *,
    body.site-product *::before,
    body.site-product *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
