:root {
    --white: #ffffff;
    --black: #000000;
    --primary: #C8102E;
    --secondary: #D7EB3A;
    --third: #2c8153;
    --text: #5F615E;
    --text-2: #8A8C8A;
    --text-3: #ACAFAB;
    --text-4: #E4E4E4;
    --text-5: #FFFFFF80;
    --text-6: #00000080;
    --text-7: #B3907A;
    --bg: #E4E4E4;
    --bg-2: #F5F5F5;
    --bg-3: #021A62;
    --bg-4: #534696;
    --bg-5: #C8A07C;
    --bg-6: #B2CBEA;
    --bg-7: #EC6E1A;
    --bg-8: #FAFAFA;
    --bg-9: #F6F4F1;
    --bg-10: #C8102E12;
    --bg-11: #EEDFC6;
    --bg-12: #F7F7F7;
    --bg-13: #F8F8F8;
    --bg-14: #4F684C;
    --bg-15: #42514A;
    --bg-16: #F7EDE4;
    --bg-17: #FAFAFD;
    --line: #EDEDED;
    --line-2: #FFFFFF33;
    --line-3: #FFFFFF1A;
    --line-4: #FFFFFF80;
    --line-5: #FFFFFFB3;
    --line-6: #E7E7E7;
    --line-7: #E2E2E2;
    --line-8: #00000012;
    --line-9: #FFFFFF4D;
    --line-10: #ECECEC;
    --linear-1: linear-gradient(180deg, rgba(246, 221, 190, 0) 0%, rgba(246, 221, 190, 0.5) 100%);
    --linear-2: linear-gradient(137.6deg, #C09C71 23.87%, #664B18 99.83%);
    --linear-3: linear-gradient(285.63deg, #4B2C17 5.45%, #905E3D 94.52%);
    --linear-4: linear-gradient(133.57deg, #FFF0D3 25.62%, #EBD1A2 100%);
    --linear-5: linear-gradient(138.03deg, #FFF3E5 23.68%, #FFCDA2 100%);
    --verified: #00BF43;
    --success: #28A745;
    --error: #ff4949;

    /* Discount Colors */
    --discount-bg: #a7f3a0;
    --discount-color: #166534;

    /* shadow */
    --shadow-1: #A3A3A340;
    --shadow-primary: 5px 5px 5px #0000001a;
    --shadow-secondary: 0 0 5px #00000026;
}

/* Elements
-------------------------------------------------------------- */
html {
    margin-right: 0 !important;
    scroll-behavior: smooth;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;

    &::-webkit-scrollbar {
        width: 5px;
    }

    &::-webkit-scrollbar-thumb {
        cursor: grab;
        background-color: var(--primary);
    }
}

body {
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
}

body::-webkit-scrollbar {
    width: 5px;
}

body::-webkit-scrollbar-thumb {
    cursor: grab;
    background-color: var(--primary);
}

body.modal-available, body:has(#preloader) {
    overflow: hidden;
}

.close-menu {
    cursor: pointer;
}

[class*="preview"] {
    cursor: url('../images/cursor-close.svg'), auto;

    [class*="content"],
    [class*="container"] {
        cursor: auto;
    }
}

/* @media (max-width: 1199px) {
    body {
        padding-bottom: 5px;
    }
} */

img {
    max-width: 100%;
    height: auto;
    transform: scale(1);
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.image-container:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
    pointer-events: none;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 1s;
}

.image-container:hover::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.image-container:hover img {
    transform: scale(1.1);
}

ul,
li {
    list-style-type: none;
    margin-bottom: 0;
    padding-left: 0;
    list-style: none;
}

table {
    width: 100%;
    overflow-x: auto;
    table-layout: auto;
    border-collapse: collapse;
}

td,
th {
    padding: 12px 16px;
}

@media (min-width: 1200px) {

    td,
    th {
        padding: 16px 24px;
    }
}

section {
    padding: 100px 0;
    position: relative;
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }
}

@media (min-width: 1200px) {
    section {
        padding: 60px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 40px;

    h2,
    h1 {
        margin-bottom: 20px;
    }

    p {
        max-width: 600px;
        width: 100%;
        margin: 0 auto;
    }
}

.container {
    max-width: 1472px;
    width: 100%;
    margin: auto;
    padding-left: 16px;
    padding-right: 16px;
    /* overflow: hidden; */
}

@media (min-width: 1200px) {
    .container {
        max-width: 1488px;
        padding-left: 24px;
        padding-right: 24px;
    }
}

button {
    background: transparent;
    border: 0;
    display: inline-flex;
}


/* Typography
-------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Afacad", sans-serif;
    text-rendering: optimizeLegibility;
    font-weight: 500;
    margin-bottom: 0;
    letter-spacing: 0;
    color: var(--black);
}

h1 {
    font-size: clamp(32px, 5.5vw, 56px);
    line-height: clamp(44px, 6.5vw, 67px);
}

h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: clamp(32px, 3.2vw, 40px);
}

h3 {
    font-size: clamp(20px, 2.2vw, 32px);
    line-height: clamp(28px, 3vw, 43px);
}

h4 {
    font-size: clamp(20px, 3vw, 24px);
    line-height: clamp(26px, 4vw, 32px);
}

h5 {
    font-size: clamp(18px, 3vw, 20px);
    line-height: clamp(24px, 4vw, 27px);
}

h6 {
    font-size: 18px;
    line-height: 24px;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

a {
    display: inline-block;
    font-family: "Afacad", sans-serif;
    color: var(--black);
    text-decoration: none;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: 0;
}

strong,
b {
    color: var(--black);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
}

.text-line-clamp {
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    display: -webkit-box !important;
    overflow: hidden;
}

/* Preload 
------------------------------------------- */
.preload-container {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 99999999999;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.preload-container.hidden {
    animation: fades 0.5s;
    animation-fill-mode: forwards;
    animation-delay: 1s;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 3px solid transparent;
    border-top: 3px solid var(--primary);
    border-radius: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    animation: spin 1s infinite linear;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#goTop {
    position: fixed;
    padding: 0;
    bottom: 90px;
    right: 20px;
    width: 38px;
    height: 38px;
    background: var(--white);
    color: black;
    font-size: 20px;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    border: none;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1019607843);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#goTop .border-progress {
    position: absolute;
    top: -1px;
    left: -1px;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    border-radius: 50%;
    border: 1px solid #000;
    mask-image: conic-gradient(#000 var(--progress-angle, 0deg), transparent 0);
    -webkit-mask-image: conic-gradient(#000 var(--progress-angle, 0deg), transparent 0);
    content: "";
    z-index: 1;
}

#goTop.show {
    opacity: 1;
    visibility: visible;
}

#goTop .icon {
    font-size: 20px;
    color: #000;
    animation: iconBounce 1s linear 0s infinite;
}

#goTop:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

@media (min-width: 992px) {
    #goTop {
        right: 40px;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    line-height: 24px;
    padding: 16px 40px;
    position: relative;
    background-color: var(--black);
    color: var(--white);
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
}

@media (max-width: 500px) {
    .btn {
        padding: 13px 24px;
    }
}

.btn .icon {
    font-size: 18px;
}

.btn.btn-primary {
    background-color: var(--primary);
}

.btn.btn-primary:hover {
    background-color: var(--black);
}

.btn.btn-secondary {
    border: 1px solid var(--secondary);
    background-color: var(--secondary);
    color: var(--black);
}

.btn.btn-secondary:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.animate-btn {
    position: relative;
    overflow: hidden;
}

.animate-btn:hover::after {
    animation: shine-reverse 1s forwards;
}

.animate-btn:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(120deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 70%);
    top: 0;
    left: -100%;
    opacity: 0.6;
}


.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    background-color: var(--bg-2);
    border-radius: 8px;
    font-family: "Afacad", sans-serif;
    font-size: 16px;
    color: var(--black);
}

.page-hero {
    background-color: var(--bg-9);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;

    p {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        gap: 10px;
        line-height: 1.8;
    }

    a:hover {
        color: var(--primary);
    }
}


/* Search Modal  */
.search-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transform: scale(0);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.search-modal.preview {
    transform: scale(1);
    opacity: 1;
    pointer-events: unset;
}

/* Search Modal Content */
.search-modal-content {
    width: 90%;
    max-width: 800px;
    height: 80%;
    background-color: var(--white);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    position: relative;
    padding: 50px 40px;

    /* Close Button */
    .close-menu {
        position: absolute;
        top: 10px;
        right: 10px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 11;
    }

    .close-menu svg {
        width: 24px;
        height: 24px;
        stroke: var(--black);
        transition: transform 0.3s ease;
    }

    .close-menu:hover svg {
        transform: rotate(90deg);
    }
}


/* Search Modal Header */
.search-modal-header {
    border-bottom: 1px solid var(--line);
}

/* Search Input Container */
.search-input-wrapper {
    position: relative;
    max-width: 100%;
    margin-bottom: 5px;
}

.search-input-wrapper input {
    padding: 16px 50px 16px 16px;
    border: 1px solid var(--line);
}

.search-input-wrapper input::placeholder {
    color: var(--text-3);
}

.search-input-wrapper input:focus {
    border-color: var(--primary);
    outline: none;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;

    svg {
        width: 20px;
        height: 20px;
        stroke: var(--text);
    }

    &:hover svg {
        stroke: var(--primary);
    }
}



/* Category Tags */
.search-modal-content .category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 10px;
}

.search-modal-content .category-tag {
    color: var(--black);
}

.search-modal-content .category-tag:hover {
    color: var(--primary);
}


/* Search Modal Body */
.search-modal-body {
    flex: 1;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 10px 10px;
}

.search-modal-body h2 {
    margin-bottom: 30px;
    position: sticky;
    top: 0;
    background-color: var(--white);
    width: 100%;
    padding: 10px 0;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: space-between;

    span {
        text-transform: uppercase;
        text-decoration: underline;
        color: var(--error);
        font-size: 14px;
        cursor: pointer;
    }
}

/* History Section */
.search-modal-body .search-history {
    width: 100%;
}

.empty-history {
    display: none;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 50px;
    gap: 30px;
    flex-direction: column;
    text-align: center;

    svg {
        width: 50px;
        height: 50px;
        color: var(--text-3);
    }
}

/* History Item */
.history-item {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    cursor: pointer;
    transition: all 0.3s ease;
}

.history-item:hover {
    opacity: 0.7;
}

.history-item-text {
    flex: 1;
}

.history-item-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--text);
}


@media (max-width: 768px) {
    .search-modal-content {
        padding: 50px 10px 10px;
    }

    .search-modal-content {
        gap: 10px;

        .category-tag {
            font-size: 14px;
        }
    }
}

@media (max-width: 500px) {
    .search-modal-content {
        gap: 8px;

        .category-tag {
            font-size: 12px;
        }
    }

    .history-item {
        font-size: 13px;
    }

    .search-input-wrapper input {
        padding: 12px 50px 16px 12px;
    }
}




/* Cart Modal Overlay - Slides from right */
.cart-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transform: translateX(110%);
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.cart-modal.preview {
    transform: translateX(0);
}

/* Cart Modal Content - No border radius, slides from right */
.cart-modal-content {
    width: 100%;
    max-width: 800px;
    height: 100%;
    background-color: var(--white);
    position: relative;
    display: grid;
    grid-template-columns: 280px 1fr;
    overflow: hidden;
    padding: 20px;
}

/* Inner Layout: Split into two sections */
/* .cart-modal-inner {
    display: grid;
    grid-template-columns: 380px 1fr;
    height: 100%;
    overflow: hidden;
} */

/* Left Section: Recommendations */
.cart-modal-recommendations {
    overflow-x: hidden;
    overflow-y: auto;
    border-right: 1px solid var(--line);
    padding: 10px;
    padding-top: 0;

    &::-webkit-scrollbar {
        display: none;
    }
}

.cart-modal-recommendations>h3 {
    margin-bottom: 20px;
    color: var(--black);
    padding: 10px;
    width: 100%;
    position: sticky;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: var(--white);
}

/* Recommendation Item */
.recommendation-item {
    margin-bottom: 30px;


    &:hover h5 {
        color: var(--primary);
    }
}

.recommendation-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    margin-bottom: 16px;
}

.recommendation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recommendation-details h5 {
    margin-bottom: 8px;
    color: var(--black);
}

.recommendation-price {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recommendation-price .old-price {
    font-size: 14px;
    color: var(--text-3);
    text-decoration: line-through;
}

.recommendation-price .new-price {
    font-weight: 600;
    color: var(--black);
}

/* Right Section: Shopping Cart */
.cart-modal-main {
    padding: 10px;
    padding-top: 0;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-modal-main .cart-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    position: sticky;
    z-index: 15;
    top: 0;
    right: 0;
    background-color: var(--white);

    .close-menu {
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 11;
        color: var(--black);
    }

    .close-menu svg {
        width: 24px;
        height: 24px;
    }
}

/* Cart Items */
.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 30px;
    overflow-x: hidden;
}

/* Cart Item - Slide out animation when removing */
.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    gap: 8px;
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateX(0);
}

/* Removing animation */
.cart-item.removing {
    opacity: 0;
    transform: translateX(100%);
    max-height: 0;
    padding: 0;
    overflow: hidden;
}

.cart-item-image {
    width: 120px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cart-item-category {
    font-size: 14px;
    color: var(--text-2);
}

.cart-item-title {
    font-weight: 500;
    color: var(--black);
    line-height: 1.4;
}

.cart-item-options {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: var(--text);
}

.cart-item-options span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.color-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid var(--line);
}

.cart-item-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: var(--black);
}

.cart-item-quantity {
    color: var(--black);
}

.cart-item-price {
    color: var(--primary);
}

.cart-item-remove {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text-2);
    align-self: flex-start;
    transition: color 0.2s ease;
}

.cart-item-remove:hover {
    color: var(--primary);
}

/* Cart Summary */
.cart-summary {
    border-top: 2px solid var(--line);
    padding-top: 20px;
    /* background-color: red; */
}

.cart-subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 10px;
}

.cart-subtotal span:first-child {
    color: var(--text);
}

.cart-subtotal-price {
    color: var(--primary);
}

/* Progress Bar */
.cart-progress-bar {
    width: 100%;
    height: 8px;
    background-color: var(--bg);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 10px;
}

.cart-progress-fill {
    height: 100%;
    background-color: var(--black);
    transition: width 0.3s ease;
    width: 60%;
}

/* Shipping Message */
.cart-shipping-message {
    font-size: 14px;
    color: var(--text);
    margin-bottom: 20px;
}

.highlight-price {
    color: var(--primary);
    font-weight: 600;
}

/* Action Buttons */
.cart-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

/* View cart button - outline only, no background */
.cart-modal .btn-outline {
    background-color: transparent;
    color: var(--black);
    border: 1px solid var(--black);
}

.cart-modal .btn-outline:hover {
    background-color: var(--black);
    color: var(--white);
}

/* Free Shipping Info */
.cart-free-shipping-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px;
    background-color: var(--bg-9);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text);
}

.cart-free-shipping-info svg {
    flex-shrink: 0;
    color: var(--text-2);
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 1024px) {
    .cart-modal-content {
        grid-template-columns: 1fr;
    }

    /* Hide recommendations on mobile/tablet */
    .cart-modal-recommendations {
        display: none;
    }

    /* .cart-modal-content {
        max-width: 600px;
    } */
}

@media (max-width: 768px) {
    .cart-modal-content {
        width: 100%;
        max-width: 100%;
    }

    .cart-item {
        grid-template-columns: 100px 1fr auto;
        gap: 8px;
    }

    .cart-item-image {
        width: 100px;
    }

    /* .cart-actions {
        grid-template-columns: 1fr;
    } */

    .cart-free-shipping-info {
        font-size: 13px;
    }
}

@media (max-width: 500px) {
    .cart-modal-content {
        padding: 10px;
    }

    .cart-items {
        margin-bottom: 10px;
    }

    .cart-summary {
        padding-top: 10px;
    }

    .cart-item-options {
        display: none;
    }

    .cart-subtotal {
        font-size: 16px;
    }

    .cart-subtotal-price {
        font-size: 20px;
    }
}

/* General modal Styles */
#modal {
    position: fixed;
    inset: 0;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    z-index: 99999;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modal .modal-content {
    height: 80%;
    width: 95%;
    max-width: 600px;
    background-color: var(--white);
    border-radius: 10px;
    padding: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;


    .modal-header {
        width: 100%;
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        width: 100%;
        padding: 10px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        border-bottom: 1px solid var(--line);

        h3,
        svg {
            font-weight: 700;
        }
    }

    .modal-header span svg {
        height: 30px;
        width: 30px;
        cursor: pointer;
        color: var(--black);

        &:hover {
            transform: rotate(180deg);
        }
    }


    .modal-body {
        width: 100%;
        height: 80%;
        overflow-x: hidden;
        overflow-y: auto;
        flex-grow: 1;
        flex-shrink: 0;


        &::-webkit-scrollbar {
            display: none;
        }
    }
}


#modal.preview {
    transform: scale(1);
    opacity: 1;
    pointer-events: unset;
}


/* Animations */
@keyframes shine-reverse {
    0% {
        left: 100%;
    }

    100% {
        left: -100%;
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes iconBounce {
    0% {
        transform: translateY(-0);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fades {
    from {
        /* transform: translateY(1px); */
        opacity: 0;
    }

    to {
        /* transform: translateY(0); */
        opacity: 1;
    }
}