/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    transition: background 0.3s, color 0.3s;
}

:root {
    --primary: #b21f2d;
    --primary-dark: #861522;
    --secondary: #e8a317;
    --bg: #fffdf9;
    --surface: #ffffff;
    --surface-2: #f7f3ed;
    --text: #202020;
    --muted: #777;
    --border: #e9e2d8;
    --shadow: 0 15px 45px rgba(0, 0, 0, 0.08);
}

body.dark {
    --bg: #121212;
    --surface: #1d1d1d;
    --surface-2: #242424;
    --text: #f5f5f5;
    --muted: #bdbdbd;
    --border: #383838;
    --shadow: 0 15px 45px rgba(0, 0, 0, 0.35);
}

body.no-scroll {
    overflow: hidden;
}

.skip-link {
    position: fixed;
    top: -80px;
    left: 20px;
    z-index: 6000;
    background: white;
    color: #202020;
    padding: 10px 16px;
    border-radius: 7px;
    font-weight: 700;
    box-shadow: var(--shadow);
}

.skip-link:focus {
    top: 14px;
}

:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 3px;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(1180px, 92%);
    margin: auto;
}

.section {
    padding: 100px 0;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.section-heading > span,
.section-label {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(35px, 5vw, 50px);
    line-height: 1.15;
    margin: 12px 0;
}

.section-heading p {
    color: var(--muted);
}


/* =========================
   HEADER
========================= */

.header {
    height: 76px;
    background: var(--surface);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: 0.3s;
}

.header.scrolled {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.logo-icon {
    font-size: 30px;
}

.logo strong {
    color: var(--primary);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.desktop-nav > a,
.nav-dropdown > a {
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.desktop-nav > a:hover,
.nav-dropdown > a:hover {
    color: var(--primary);
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 35px;
    left: -15px;
    width: 220px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 10px;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 12px;
    border-radius: 7px;
    font-size: 13px;
}

.dropdown-menu a:hover {
    background: var(--surface-2);
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: 10px;
    align-items: center;
}

.icon-btn,
.menu-btn {
    width: 42px;
    height: 42px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface-2);
    color: var(--text);
    font-size: 18px;
}

.menu-btn {
    display: none;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(330px, 85%);
    height: 100vh;
    background: var(--surface);
    z-index: 2000;
    padding: 80px 30px 30px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: 0.35s;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    display: block;
    padding: 15px 5px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 22px;
    background: none;
    border: none;
    font-size: 35px;
    color: var(--text);
}

.mobile-logo {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary);
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 800px;
    display: flex;
    align-items: center;
    position: relative;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.88),
            rgba(0, 0, 0, 0.60),
            rgba(0, 0, 0, 0.25)
        ),
        url("assets/chicken-biryani.jpg")
        center/cover no-repeat;
    color: white;
    padding-top: 76px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 850px;
}

.hero-small {
    display: inline-block;
    color: #ffd76a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 7vw, 85px);
    line-height: 1.05;
    margin-bottom: 25px;
}

.hero h1 span {
    color: #f4b72b;
}

.hero p {
    max-width: 650px;
    font-size: 17px;
    color: #eee;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 50px;
    padding: 0 25px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: #222;
}

.hero-stats {
    display: flex;
    gap: 45px;
    margin-top: 55px;
}

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 27px;
}

.hero-stats span {
    color: #ccc;
    font-size: 12px;
}


/* =========================
   CATEGORY
========================= */

.categories {
    background: var(--surface);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
}

.category-box {
    background: var(--surface-2);
    border: 1px solid var(--border);
    padding: 22px 10px;
    border-radius: 12px;
    color: var(--text);
    transition: 0.3s;
}

.category-box:hover {
    transform: translateY(-7px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.category-box > div {
    font-size: 34px;
    margin-bottom: 8px;
}

.category-box h3 {
    font-size: 14px;
}

.category-box p {
    color: var(--muted);
    font-size: 11px;
}


/* =========================
   RECIPES
========================= */

.recipes {
    background: var(--surface-2);
}

.recipe-tools {
    margin-bottom: 40px;
}

.search-box {
    max-width: 650px;
    height: 55px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    padding: 0 18px;
}

.search-box span {
    font-size: 18px;
    margin-right: 10px;
}

.search-box input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text);
    font-size: 14px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    padding: 9px 17px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    transition: 0.25s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.recipe-results-bar {
    max-width: 960px;
    margin: 22px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.recipe-results-bar p {
    color: var(--muted);
    font-size: 13px;
}

.saved-filter {
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 9px 15px;
    background: var(--surface);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.saved-filter:hover,
.saved-filter.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.saved-filter span {
    min-width: 20px;
    height: 20px;
    margin-left: 4px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(178, 31, 45, 0.12);
}

.saved-filter.active span {
    background: rgba(255, 255, 255, 0.2);
}

.recipe-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.recipe-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: 0.35s;
    animation: cardIn 0.45s ease both;
}

.recipe-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recipe-image {
    height: 235px;
    position: relative;
    overflow: hidden;
}

.recipe-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.recipe-card:hover .recipe-image img {
    transform: scale(1.06);
}

.recipe-badge {
    position: absolute;
    left: 15px;
    top: 15px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 10px;
    font-weight: 700;
}

.favorite-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: white;
    font-size: 18px;
}

.favorite-btn.active {
    color: var(--primary);
}

.recipe-body {
    padding: 20px;
}

.recipe-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.recipe-time,
.recipe-serves {
    color: var(--muted);
    font-size: 11px;
}

.recipe-rating {
    color: #e69c00;
    font-size: 12px;
}

.recipe-body h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 25px;
    margin-bottom: 7px;
}

.recipe-title-link {
    color: inherit;
    text-decoration: none;
}

.recipe-title-link:hover,
.recipe-title-link:focus-visible {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.recipe-body p {
    color: var(--muted);
    font-size: 12px;
    margin-bottom: 17px;
}

.recipe-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.view-recipe {
    color: var(--primary);
    border: none;
    background: none;
    font-size: 12px;
    font-weight: 700;
}

.no-results {
    display: none;
    text-align: center;
    padding: 60px 0;
}

.no-results div {
    font-size: 50px;
}

.no-results h3 {
    margin-top: 10px;
}

.no-results p {
    color: var(--muted);
    margin-bottom: 18px;
}


/* =========================
   REGIONS
========================= */

.regions {
    background: var(--surface);
}

.region-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.region-card {
    height: 380px;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    background-position: center;
    background-size: cover;
    display: flex;
    align-items: flex-end;
    transition: 0.4s;
}

.region-card:hover {
    transform: translateY(-8px);
}

.punjab {
    background-image: url("assets/chicken-karahi.webp?v=20260912-fast2");
}

.sindh {
    background-image: url("assets/chicken-biryani.webp?v=20260912-fast2");
}

.kp {
    background-image: url("assets/chapli-kebab.webp?v=20260912-fast2");
}

.balochistan {
    background-image: url("assets/beef-pulao.webp?v=20260912-fast2");
}

.region-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.9));
}

.region-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 25px;
}

.region-content span {
    color: #f5bb36;
    font-size: 12px;
}

.region-content h3 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 30px;
}

.region-content p {
    font-size: 11px;
    color: #ddd;
}


/* =========================
   ABOUT
========================= */

.about {
    background: var(--surface-2);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    min-height: 480px;
}

.about-image-main {
    width: 85%;
    height: 430px;
    border-radius: 20px;
    background:
        linear-gradient(
            rgba(0, 0, 0, 0.1),
            rgba(0, 0, 0, 0.35)
        ),
        url("assets/halwa-puri.jpg")
        center/cover;
    font-size: 0;
}

.about-badge {
    position: absolute;
    bottom: 15px;
    right: 0;
    width: 155px;
    height: 155px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-badge strong {
    font-size: 28px;
}

.about-badge span {
    font-size: 11px;
}

.about-content h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.1;
    margin: 12px 0 22px;
}

.about-content h2 span {
    color: var(--primary);
}

.about-content > p {
    color: var(--muted);
    margin-bottom: 15px;
    font-size: 14px;
}

.about-points {
    margin-top: 25px;
}

.about-points div {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 12px 0;
}

.about-points span {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.about-points p {
    font-size: 13px;
}


/* =========================
   CONTACT
========================= */

.contact {
    background: var(--surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 22px;
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-card div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-card span {
    color: var(--muted);
    font-size: 11px;
}

.contact-card a,
.contact-card strong {
    font-size: 13px;
    margin-top: 2px;
}

.contact-form {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    outline: none;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 15px;
    font-size: 13px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
}

.form-note {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}


/* =========================
   MODAL
========================= */

.modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
}

.modal.active {
    display: block;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(5px);
}

.modal-box {
    position: relative;
    width: min(850px, 92%);
    max-height: 90vh;
    overflow-y: auto;
    margin: 5vh auto;
    background: var(--surface);
    border-radius: 18px;
    z-index: 2;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: white;
    color: #222;
    font-size: 25px;
    z-index: 5;
}

.modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-body {
    padding: 30px;
}

.modal-body h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
}

.modal-description {
    color: var(--muted);
    margin: 10px 0 25px;
}

.modal-favorite {
    margin-bottom: 28px;
    border: 1px solid var(--primary);
    border-radius: 30px;
    padding: 9px 15px;
    background: transparent;
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
}

.full-recipe {
    color: var(--text);
    font-size: 12px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.full-recipe:hover,
.full-recipe:focus-visible {
    color: var(--primary);
}

.modal-favorite:hover,
.modal-favorite.active {
    background: var(--primary);
    color: white;
}

.modal-columns {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 30px;
}

.modal-columns h3 {
    margin-bottom: 12px;
}

.modal-columns ul {
    padding-left: 20px;
}

.modal-columns li {
    margin-bottom: 7px;
    font-size: 13px;
}


/* =========================
   TOAST
========================= */

.toast {
    position: fixed;
    right: 25px;
    bottom: 25px;
    background: #222;
    color: white;
    padding: 13px 18px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateY(100px);
    opacity: 0;
    transition: 0.3s;
    z-index: 5000;
    font-size: 13px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast span {
    color: #6dd56d;
}


/* =========================
   BACK TOP
========================= */

.back-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: white;
    font-size: 20px;
    z-index: 900;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.back-top.show {
    opacity: 1;
    visibility: visible;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #161616;
    color: white;
    padding-top: 65px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 55px;
}

.footer-brand p {
    color: #aaa;
    font-size: 13px;
    max-width: 380px;
    margin-top: 18px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links h3 {
    margin-bottom: 8px;
    color: white;
    font-size: 15px;
}

.footer-links a {
    color: #aaa;
    font-size: 12px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: #f2b329;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding: 20px 4%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    color: #888;
    font-size: 11px;
}

.footer-bottom a {
    color: #d8b56c;
}

.credits-page {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--surface-2);
}

.credits-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: clamp(24px, 5vw, 48px);
    box-shadow: var(--shadow);
}

.credits-card h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 6vw, 58px);
    line-height: 1.05;
    margin-bottom: 12px;
}

.credits-card > p {
    color: var(--muted);
    margin-bottom: 26px;
}

.credits-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 28px;
    list-style: none;
}

.credits-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.credits-list a {
    color: var(--primary);
    font-weight: 700;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1000px) {

    .desktop-nav {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .category-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .recipe-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .region-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        gap: 40px;
    }

}

@media (max-width: 700px) {

    .section {
        padding: 70px 0;
    }

    .hero {
        min-height: 720px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-stats {
        gap: 25px;
    }

    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recipe-grid {
        grid-template-columns: 1fr;
    }

    .recipe-results-bar {
        align-items: flex-start;
        flex-direction: column;
    }

    .region-grid {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        min-height: 380px;
    }

    .about-image-main {
        height: 350px;
        width: 90%;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .modal-columns {
        grid-template-columns: 1fr;
    }

    .modal-body {
        padding: 20px;
    }

.modal-body h2 {
        font-size: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .credits-list {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 420px) {

    .hero h1 {
        font-size: 42px;
    }

    .hero-stats {
        gap: 18px;
    }

    .hero-stats strong {
        font-size: 22px;
    }

    .category-grid {
        gap: 10px;
    }

    .category-box {
        padding: 18px 7px;
    }

}

.modal-full-recipe {
    display: inline-block;
    margin-top: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
