/* ==========================================================================
   AffiliateKart Pro — Main Stylesheet
   Mobile-first, original design system (no third-party branding/assets).
   ========================================================================== */

:root {
	--ak-primary: #ff5722;
	--ak-primary-dark: #e64a19;
	--ak-secondary: #1a1a2e;
	--ak-font: 'Inter', system-ui, -apple-system, sans-serif;
	--ak-bg: #f7f7fb;
	--ak-surface: #ffffff;
	--ak-text: #1c1c28;
	--ak-text-muted: #6b7280;
	--ak-border: #e6e6ee;
	--ak-success: #16a34a;
	--ak-danger: #dc2626;
	--ak-radius: 14px;
	--ak-radius-sm: 8px;
	--ak-shadow: 0 2px 10px rgba(20, 20, 40, 0.06);
	--ak-shadow-lg: 0 12px 32px rgba(20, 20, 40, 0.14);
	--ak-header-h: 56px;
}

* { box-sizing: border-box; }

body.dark-mode {
	--ak-bg: #101018;
	--ak-surface: #191926;
	--ak-text: #f2f2f7;
	--ak-text-muted: #9797ab;
	--ak-border: #2a2a3a;
}

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--ak-font);
	background: var(--ak-bg);
	color: var(--ak-text);
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	padding-bottom: 64px; /* space for sticky buy bar on product pages */
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { margin: 0 0 .5em; line-height: 1.25; }

.ak-container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }

/* ---------- Buttons ---------- */
.ak-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 6px;
	padding: 10px 20px; border-radius: var(--ak-radius-sm); border: none;
	font-weight: 600; font-size: 14px; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.ak-btn-primary { background: var(--ak-primary); color: #fff; }
.ak-btn-primary:hover { background: var(--ak-primary-dark); transform: translateY(-1px); }
.ak-btn-outline { background: transparent; border: 1.5px solid var(--ak-border); color: var(--ak-text); }
.ak-btn-outline:hover { border-color: var(--ak-primary); color: var(--ak-primary); }
.ak-btn-disabled { background: var(--ak-border); color: var(--ak-text-muted); cursor: not-allowed; }
.ak-btn-lg { padding: 14px 28px; font-size: 16px; }
.ak-btn-sm { padding: 6px 14px; font-size: 12px; }
.ak-btn-block { width: 100%; }

.ak-icon-btn {
	width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--ak-border);
	background: var(--ak-surface); display: inline-flex; align-items: center; justify-content: center;
	position: relative; color: var(--ak-text);
}
.ak-icon-btn.active { color: var(--ak-primary); border-color: var(--ak-primary); }
.ak-badge-count {
	position: absolute; top: -4px; right: -4px; background: var(--ak-primary); color: #fff;
	font-size: 10px; min-width: 16px; height: 16px; border-radius: 8px; display: flex; align-items: center; justify-content: center; padding: 0 3px;
}

/* ---------- Header ---------- */
.ak-header { position: sticky; top: 0; z-index: 100; background: var(--ak-surface); box-shadow: var(--ak-shadow); }
.ak-header-top-inner { display: flex; align-items: center; gap: 10px; padding: 10px 16px; height: var(--ak-header-h); }
.ak-menu-toggle { background: none; border: none; width: 24px; height: 18px; display: flex; flex-direction: column; justify-content: space-between; padding: 0; }
.ak-menu-toggle span { display: block; height: 2px; background: var(--ak-text); border-radius: 2px; }
.ak-logo { flex-shrink: 0; font-weight: 800; font-size: 20px; color: var(--ak-primary); }
.ak-logo-img { max-height: 32px; width: auto; }

.ak-search-form { flex: 1; position: relative; display: none; }
.ak-search-input { width: 100%; padding: 9px 40px 9px 14px; border-radius: 20px; border: 1px solid var(--ak-border); background: var(--ak-bg); font-size: 14px; }
.ak-search-btn { position: absolute; right: 4px; top: 3px; background: var(--ak-primary); color: #fff; border: none; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.ak-search-suggestions { position: absolute; top: 44px; left: 0; right: 0; background: var(--ak-surface); border-radius: var(--ak-radius-sm); box-shadow: var(--ak-shadow-lg); max-height: 320px; overflow-y: auto; z-index: 50; }
.ak-search-suggestion-item { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-bottom: 1px solid var(--ak-border); }
.ak-search-suggestion-item img { width: 36px; height: 36px; object-fit: cover; border-radius: 6px; }
.ak-search-suggestion-item:hover { background: var(--ak-bg); }

.ak-header-actions { display: flex; gap: 6px; margin-left: auto; }

.ak-category-menu { border-top: 1px solid var(--ak-border); overflow-x: auto; display: none; }
.ak-menu { list-style: none; display: flex; gap: 22px; margin: 0; padding: 10px 0; white-space: nowrap; }
.ak-menu a { font-size: 14px; font-weight: 500; }
.ak-menu a:hover { color: var(--ak-primary); }

.ak-mobile-drawer { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: var(--ak-surface); z-index: 200; transition: left .25s ease; padding: 70px 20px 20px; overflow-y: auto; }
.ak-mobile-drawer.open { left: 0; }
.ak-drawer-menu { list-style: none; padding: 0; margin: 0; }
.ak-drawer-menu li { border-bottom: 1px solid var(--ak-border); }
.ak-drawer-menu a { display: block; padding: 12px 0; font-weight: 600; }
.ak-drawer-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 190; }

@media (min-width: 900px) {
	.ak-menu-toggle { display: none; }
	.ak-search-form { display: block; max-width: 480px; }
	.ak-category-menu { display: block; }
	.ak-header-top-inner { padding: 14px 16px; }
}

/* ---------- Hero ---------- */
.ak-hero {
	background: linear-gradient(135deg, var(--ak-secondary), #3d3d5c);
	background-size: cover; background-position: center;
	color: #fff; padding: 48px 0; text-align: center;
}
.ak-hero-inner h1 { font-size: 28px; }
.ak-hero-inner p { opacity: .85; margin-bottom: 20px; }
@media (min-width: 768px) { .ak-hero { padding: 90px 0; } .ak-hero-inner h1 { font-size: 44px; } }

/* ---------- Brand strip ---------- */
.ak-brand-strip { display: flex; gap: 10px; overflow-x: auto; padding: 14px 16px; background: var(--ak-surface); border-bottom: 1px solid var(--ak-border); }
.ak-brand-pill { flex-shrink: 0; padding: 6px 16px; border: 1px solid var(--ak-border); border-radius: 20px; font-size: 13px; font-weight: 600; }

/* ---------- Product sections/grid ---------- */
.ak-product-section { padding: 28px 0; }
.ak-section-heading { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.ak-section-heading h2 { font-size: 20px; }
.ak-view-all { color: var(--ak-primary); font-weight: 600; font-size: 14px; }

.ak-product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (min-width: 640px) { .ak-product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .ak-product-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1200px) { .ak-product-grid { grid-template-columns: repeat(5, 1fr); } }

.ak-product-grid-scroll { display: flex; overflow-x: auto; gap: 14px; scroll-snap-type: x mandatory; padding-bottom: 6px; }
.ak-product-grid-scroll .ak-product-card { min-width: 170px; scroll-snap-align: start; }

.ak-product-card { background: var(--ak-surface); border-radius: var(--ak-radius); overflow: hidden; box-shadow: var(--ak-shadow); position: relative; transition: transform .15s ease, box-shadow .15s ease; }
.ak-product-card:hover { transform: translateY(-3px); box-shadow: var(--ak-shadow-lg); }
.ak-product-card-media { display: block; aspect-ratio: 1/1; background: var(--ak-bg); position: relative; }
.ak-product-img { width: 100%; height: 100%; object-fit: cover; }
.ak-no-image { display: flex; align-items: center; justify-content: center; height: 100%; color: var(--ak-text-muted); font-size: 12px; }
.ak-product-badges { position: absolute; top: 8px; left: 8px; display: flex; flex-direction: column; gap: 4px; z-index: 2; }
.ak-badge { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 4px; color: #fff; width: fit-content; }
.ak-badge-featured { background: #6366f1; }
.ak-badge-trending { background: #f59e0b; }
.ak-badge-offer { background: var(--ak-danger); }
.ak-badge-discount { background: var(--ak-success); }

.ak-product-card-actions { position: absolute; top: 8px; right: 8px; display: flex; flex-direction: column; gap: 6px; z-index: 2; }
.ak-product-card-actions .ak-icon-btn { width: 30px; height: 30px; }

.ak-product-card-body { padding: 10px 12px 14px; }
.ak-product-title { display: block; font-size: 13px; font-weight: 600; margin-bottom: 4px; overflow: hidden; text-overflow: ellipsis; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; min-height: 34px; }
.ak-product-rating { display: flex; align-items: center; gap: 4px; font-size: 11px; color: var(--ak-text-muted); margin-bottom: 4px; }
.ak-stars { color: #f59e0b; letter-spacing: 1px; }
.ak-star { display: inline-block; width: 11px; }
.ak-star::before { content: "★"; opacity: .25; }
.ak-star-full::before { opacity: 1; }
.ak-star-half::before { content: "★"; opacity: 1; -webkit-mask-image: linear-gradient(90deg,#000 50%,transparent 50%); }

.ak-price { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.ak-price-sale { font-size: 16px; font-weight: 800; color: var(--ak-text); }
.ak-price-regular { font-size: 12px; color: var(--ak-text-muted); text-decoration: line-through; }
.ak-price-discount { font-size: 12px; color: var(--ak-success); font-weight: 700; }
.ak-out-of-stock { display: inline-block; font-size: 11px; color: var(--ak-danger); font-weight: 700; margin-bottom: 6px; }

/* ---------- Listing page ---------- */
.ak-page-wrap { padding: 20px 0 40px; }
.ak-breadcrumbs { font-size: 12px; color: var(--ak-text-muted); margin-bottom: 14px; }
.ak-breadcrumbs a { color: var(--ak-text-muted); }
.ak-breadcrumbs a:hover { color: var(--ak-primary); }

.ak-listing-layout { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 960px) { .ak-listing-layout { grid-template-columns: 240px 1fr; } }
.ak-listing-sidebar { background: var(--ak-surface); border-radius: var(--ak-radius); padding: 16px; box-shadow: var(--ak-shadow); align-self: start; }
.ak-filter-list { list-style: none; padding: 0; margin: 0 0 20px; }
.ak-filter-list li { margin-bottom: 8px; }
.ak-filter-list a { font-size: 13px; color: var(--ak-text-muted); display: flex; justify-content: space-between; }
.ak-filter-list a.active, .ak-filter-list a:hover { color: var(--ak-primary); font-weight: 600; }

.ak-listing-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; flex-wrap: wrap; gap: 10px; }
.ak-listing-title { font-size: 20px; }
.ak-sort-select { padding: 8px 12px; border-radius: var(--ak-radius-sm); border: 1px solid var(--ak-border); background: var(--ak-surface); }

.ak-load-more-wrap { text-align: center; margin: 24px 0; }
.ak-empty-state { text-align: center; padding: 60px 20px; color: var(--ak-text-muted); }

/* ---------- Pagination ---------- */
.nav-links { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.nav-links a, .nav-links span { padding: 8px 14px; border-radius: var(--ak-radius-sm); border: 1px solid var(--ak-border); font-size: 13px; }
.nav-links .current { background: var(--ak-primary); color: #fff; border-color: var(--ak-primary); }

/* ---------- Product Detail ---------- */
.ak-product-detail { display: grid; grid-template-columns: 1fr; gap: 26px; margin-bottom: 30px; }
@media (min-width: 900px) { .ak-product-detail { grid-template-columns: 1fr 1fr; } }

.ak-gallery-main { position: relative; background: var(--ak-surface); border-radius: var(--ak-radius); overflow: hidden; aspect-ratio: 1/1; box-shadow: var(--ak-shadow); }
.ak-zoomable { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .3s ease; }
.ak-gallery-thumbs { display: flex; gap: 8px; margin-top: 10px; overflow-x: auto; }
.ak-thumb { border: 2px solid transparent; border-radius: 8px; overflow: hidden; padding: 0; width: 60px; height: 60px; flex-shrink: 0; background: var(--ak-surface); }
.ak-thumb.active, .ak-thumb:hover { border-color: var(--ak-primary); }
.ak-thumb img { width: 100%; height: 100%; object-fit: cover; }

.ak-product-title-main { font-size: 22px; }
.ak-product-price-block { margin: 12px 0; }
.ak-product-price-block .ak-price-sale { font-size: 26px; }
.ak-product-short-desc { color: var(--ak-text-muted); margin-bottom: 14px; }

.ak-option-group { margin-bottom: 16px; }
.ak-option-label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.ak-option-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.ak-option-pill { padding: 8px 16px; border-radius: 20px; border: 1.5px solid var(--ak-border); background: var(--ak-surface); font-size: 13px; }
.ak-option-pill.active { border-color: var(--ak-primary); color: var(--ak-primary); font-weight: 700; }

.ak-delivery-info { list-style: none; padding: 0; margin: 16px 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; }
.ak-delivery-info li { display: flex; align-items: center; gap: 8px; color: var(--ak-text-muted); }

.ak-buy-actions { display: flex; gap: 10px; margin: 20px 0; }
.ak-buy-actions .ak-btn { flex: 1; }
.ak-btn-lg-icon { width: 54px; height: 54px; flex-shrink: 0; }

.ak-share-row { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--ak-text-muted); }
.ak-share-row a, .ak-copy-link-btn { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--ak-border); display: inline-flex; align-items: center; justify-content: center; background: none; }

.ak-product-tabs { margin: 30px 0; background: var(--ak-surface); border-radius: var(--ak-radius); box-shadow: var(--ak-shadow); overflow: hidden; }
.ak-tabs-nav { display: flex; border-bottom: 1px solid var(--ak-border); overflow-x: auto; }
.ak-tab-btn { flex: 1; padding: 14px; background: none; border: none; font-weight: 700; font-size: 13px; color: var(--ak-text-muted); border-bottom: 3px solid transparent; white-space: nowrap; }
.ak-tab-btn.active { color: var(--ak-primary); border-color: var(--ak-primary); }
.ak-tab-panel { display: none; padding: 20px; }
.ak-tab-panel.active { display: block; }
.ak-specs-table { width: 100%; border-collapse: collapse; }
.ak-specs-table th, .ak-specs-table td { text-align: left; padding: 10px; border-bottom: 1px solid var(--ak-border); font-size: 13px; }
.ak-specs-table th { width: 40%; color: var(--ak-text-muted); font-weight: 600; }
.ak-reviews-note { font-size: 12px; color: var(--ak-text-muted); margin-top: 10px; }

.ak-sticky-buy-bar { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ak-surface); box-shadow: 0 -4px 16px rgba(0,0,0,.08); padding: 10px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; z-index: 90; }
.ak-sticky-title { display: block; font-size: 12px; color: var(--ak-text-muted); }

/* ---------- Quick View Modal ---------- */
.ak-modal { position: fixed; inset: 0; z-index: 300; display: flex; align-items: flex-end; }
.ak-modal[hidden] { display: none; }
.ak-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.5); }
.ak-modal-panel { position: relative; background: var(--ak-surface); width: 100%; max-height: 90vh; overflow-y: auto; border-radius: 18px 18px 0 0; padding: 24px; z-index: 2; }
.ak-modal-close { position: absolute; top: 12px; right: 12px; background: var(--ak-bg); border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 18px; }
.ak-quickview-grid { display: grid; gap: 16px; }
@media (min-width: 700px) { .ak-modal { align-items: center; justify-content: center; } .ak-modal-panel { border-radius: 18px; max-width: 700px; } .ak-quickview-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Checkout ---------- */
.ak-checkout-wrap h1 { font-size: 22px; margin-bottom: 18px; }
.ak-checkout-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) { .ak-checkout-grid { grid-template-columns: 320px 1fr; } }
.ak-checkout-summary { background: var(--ak-surface); border-radius: var(--ak-radius); padding: 18px; box-shadow: var(--ak-shadow); align-self: start; }
.ak-checkout-product { display: flex; gap: 12px; align-items: center; margin-bottom: 14px; }
.ak-checkout-product img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; }
.ak-checkout-note { font-size: 12px; color: var(--ak-text-muted); }

.ak-checkout-form { background: var(--ak-surface); border-radius: var(--ak-radius); padding: 20px; box-shadow: var(--ak-shadow); }
.ak-checkout-form h3 { font-size: 15px; margin-top: 20px; }
.ak-form-row { margin-bottom: 14px; display: flex; flex-direction: column; gap: 6px; }
.ak-form-row label { font-size: 12px; font-weight: 700; color: var(--ak-text-muted); }
.ak-form-row input, .ak-form-row textarea, .ak-track-form input {
	padding: 12px 14px; border-radius: var(--ak-radius-sm); border: 1.5px solid var(--ak-border); background: var(--ak-bg);
	font-family: inherit; font-size: 14px; color: var(--ak-text);
}
.ak-form-row input:focus, .ak-form-row textarea:focus { outline: none; border-color: var(--ak-primary); }
.ak-form-row-group { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .ak-form-row-group { grid-template-columns: 1fr 1fr; } }
.ak-checkout-disclaimer { font-size: 11px; color: var(--ak-text-muted); margin-top: 12px; text-align: center; }
.ak-payment-method-box { margin-bottom: 18px; }
.ak-payment-option { display: flex; align-items: flex-start; gap: 12px; padding: 14px; border: 2px solid var(--ak-primary); border-radius: var(--ak-radius); background: rgba(var(--ak-primary-rgb, 255, 87, 34), 0.06); cursor: default; }
.ak-payment-option input[type="radio"] { margin-top: 3px; accent-color: var(--ak-primary); }
.ak-payment-option .dashicons { color: var(--ak-primary); font-size: 22px; width: 22px; height: 22px; }
.ak-payment-option-text { display: flex; flex-direction: column; gap: 3px; }
.ak-payment-option-text strong { font-size: 14px; }
.ak-payment-option-text small { font-size: 12px; color: var(--ak-text-muted); }
.ak-notice { padding: 14px 18px; border-radius: var(--ak-radius-sm); margin-bottom: 16px; }
.ak-notice-error { background: #fee2e2; color: #991b1b; }
.ak-notice ul { margin: 0; padding-left: 18px; }

/* ---------- Track order ---------- */
.ak-track-order-wrap { max-width: 480px; }
.ak-track-form { display: flex; flex-direction: column; gap: 14px; margin: 20px 0; }
.ak-order-result { background: var(--ak-surface); border-radius: var(--ak-radius); padding: 20px; box-shadow: var(--ak-shadow); }
.ak-order-status { font-weight: 700; text-transform: capitalize; }
.ak-status-new { color: #f59e0b; }
.ak-status-converted { color: var(--ak-success); }
.ak-status-closed { color: var(--ak-text-muted); }

/* ---------- Footer ---------- */
.ak-footer { background: var(--ak-secondary); color: #dcdce6; margin-top: 40px; padding-top: 40px; }
.ak-footer-grid { display: grid; grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
@media (min-width: 768px) { .ak-footer-grid { grid-template-columns: repeat(4, 1fr); } }
.ak-footer h4 { color: #fff; font-size: 14px; }
.ak-footer ul { list-style: none; padding: 0; margin: 0; }
.ak-footer li { margin-bottom: 8px; }
.ak-footer a { color: #b8b8cc; font-size: 13px; }
.ak-footer a:hover { color: #fff; }
.ak-footer-text { font-size: 12px; margin: 10px 0; opacity: .8; }
.ak-social-links { display: flex; gap: 8px; }
.ak-social-icon { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; }
.ak-newsletter-form { display: flex; gap: 8px; margin-top: 8px; }
.ak-newsletter-form input { flex: 1; padding: 10px 12px; border-radius: 8px; border: none; }
.ak-footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 16px 0; font-size: 12px; text-align: center; opacity: .7; }

.ak-newsletter-banner { background: var(--ak-primary); color: #fff; text-align: center; padding: 40px 16px; }
.ak-newsletter-banner .ak-newsletter-form { justify-content: center; max-width: 420px; margin: 16px auto 0; }

/* ---------- Floating actions ---------- */
.ak-back-to-top { position: fixed; bottom: 76px; right: 16px; width: 42px; height: 42px; border-radius: 50%; background: var(--ak-secondary); color: #fff; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity .2s ease; z-index: 80; }
.ak-back-to-top.visible { opacity: 1; pointer-events: auto; }
.ak-floating-whatsapp { position: fixed; bottom: 130px; right: 16px; width: 46px; height: 46px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; z-index: 80; box-shadow: var(--ak-shadow-lg); }

.ak-cookie-consent { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ak-secondary); color: #fff; padding: 14px 16px; display: flex; flex-wrap: wrap; align-items: center; gap: 12px; justify-content: space-between; z-index: 400; }
.ak-cookie-consent p { margin: 0; font-size: 12px; max-width: 640px; }

.ak-toast { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); background: var(--ak-secondary); color: #fff; padding: 10px 20px; border-radius: 30px; font-size: 13px; z-index: 500; box-shadow: var(--ak-shadow-lg); }
.ak-toast[hidden] { display: none; }

.ak-404-wrap { text-align: center; padding: 80px 16px; }
.ak-404-wrap h1 { font-size: 72px; color: var(--ak-primary); }
.ak-404-search { max-width: 400px; margin: 24px auto 0; }

.ak-widget { margin-bottom: 24px; }
.ak-widget-title { font-size: 14px; font-weight: 700; margin-bottom: 10px; }

@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
