.modern-site-header {
    background: rgba(32, 32, 32, 0.92);
    backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
    z-index: 1040;
}

.modern-header-main {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.modern-navbar {
    padding: 0;
    gap: 18px;
}

.modern-logo img {
    width: 115px;
    max-height: 54px;
    object-fit: contain;
}

.modern-toggler {
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    line-height: 38px;
    padding: 0;
}

.modern-toggler span {
    color: #fff;
    font-size: 25px;
}

.modern-collapse {
    justify-content: center;
}

.modern-header-search {
    position: relative;
    width: 58%;
    max-width: 620px;
}

.modern-header-search .form-control {
    height: 48px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 50px;
    background: rgba(255, 255, 255, .10);
    color: #fff;
    padding: 8px 52px 8px 22px;
    box-shadow: none;
}

.modern-header-search .form-control::placeholder {
    color: rgba(255, 255, 255, .70);
}

.modern-header-search .form-control:focus {
    background: rgba(255, 255, 255, .16);
    border-color: var(--mainColor);
}

.modern-header-search button {
    position: absolute;
    right: 8px;
    top: 6px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--mainColor);
    cursor: pointer;
}

.modern-user-menu {
    display: flex;
    align-items: center;
}

.modern-header-categories {
    background: rgba(18, 18, 18, .82);
}

.modern-category-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    min-height: 54px;
}

.modern-cat-item .nav-link {
    color: #fff !important;
    padding: 10px 14px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    text-transform: capitalize;
    cursor: pointer;
}

.modern-cat-item .nav-link:hover,
.modern-cat-item .nav-link.active {
    background: var(--mainColor);
    /* color: var(--blackColor) !important; */
}

.modern-dropdown {
    background: #252A2C;
    border: 0;
    border-radius: 14px !important;
    padding: 10px;
    margin-top: 10px;
    min-width: 210px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}

.modern-dropdown .dropdown-item {
    color: #fff;
    border-radius: 10px;
    padding: 9px 14px;
}

.modern-dropdown .dropdown-item:hover {
    color: #fff;
    background: var(--mainColor);
}

.modern-mobile-cats {
    width: 100%;
    margin-top: 15px;
}

.modern-mobile-user {
    width: 100%;
    padding-top: 12px;
}

@media (max-width: 991px) {
    .modern-collapse {
        margin-top: 15px;
        padding: 15px;
        border-radius: 18px;
        background: rgba(20, 20, 20, .96);
    }

    .modern-header-search {
        width: 100%;
        max-width: 100%;
    }

    .modern-cat-item .nav-link {
        display: block;
        padding: 12px 10px;
        border-radius: 10px;
    }

    .modern-dropdown {
        margin-top: 4px;
        box-shadow: none;
    }
}

body {
    padding-top: 125px;
}

@media (max-width: 991px) {
    body {
        padding-top: 78px;
    }
}


.modern-actions-wrap {
    display: flex;
    align-items: center;
}

.modern-actions-list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.modern-action-item {
    position: relative;
    list-style: none;
}

.modern-icon-btn,
.modern-user-btn,
.modern-lang-btn {
    min-height: 42px;
    padding: 8px 13px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #fff !important;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .12);
    font-size: 14px;
    font-weight: 700;
}

.modern-icon-btn i,
.modern-user-btn i {
    font-size: 20px;
    line-height: 1;
}

.modern-icon-btn:hover,
.modern-user-btn:hover,
.modern-lang-btn:hover {
    background: var(--mainColor);
    color: #fff !important;
}

.modern-cart-btn {
    position: relative;
}

.modern-cart-count {
    position: absolute;
    top: -7px;
    right: -5px;
    min-width: 19px;
    height: 19px;
    padding: 0 5px;
    border-radius: 50px;
    background: var(--mainColor);
    color: #fff;
    font-size: 11px;
    line-height: 19px;
    text-align: center;
    border: 2px solid #202020;
}

.modern-user-dropdown {
    background: #252A2C;
    border: 0;
    border-radius: 14px;
    padding: 10px;
    min-width: 210px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .35);
}

.modern-user-dropdown .dropdown-item {
    color: #fff;
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 14px;
}

.modern-user-dropdown .dropdown-item:hover {
    background: var(--mainColor);
    color: #fff;
}

.modern-user-dropdown .dropdown-divider {
    border-top-color: rgba(255, 255, 255, .12);
}

@media (max-width: 991px) {
    .modern-actions-list {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 10px;
    }

    .modern-icon-btn,
    .modern-user-btn,
    .modern-lang-btn {
        min-height: 40px;
        padding: 8px 12px;
    }
}

.compact-features {
    padding: 18px 0;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, .08), transparent 30%),
        linear-gradient(135deg, #1f1f1f, #2b2b2b);
}

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

.compact-card {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
    transition: all .30s ease;
    animation: featureFloat 4s ease-in-out infinite;
}

.compact-card:nth-child(even) {
    animation-delay: .6s;
}

.compact-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .15);
}

.compact-card::before {
    content: "";
    position: absolute;
    inset-inline-end: -25px;
    top: -25px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    transition: all .3s ease;
}

.compact-card:hover::before {
    width: 120px;
    height: 120px;
}

.compact-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 16px;
    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .14),
            rgba(255, 255, 255, .04));
    border: 1px solid rgba(255, 255, 255, .10);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: iconPulse 2.5s ease-in-out infinite;
}

.compact-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;

    /* white image support */
    filter:
        drop-shadow(0 0 2px rgba(255, 255, 255, .35)) brightness(1.2);
}

.compact-content {
    flex: 1;
}

.compact-content h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.4;
}

.compact-content p {
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 0;
}

@keyframes featureFloat {

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

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

@keyframes iconPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, .10);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
}

@media (max-width: 991px) {
    .compact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

@media (max-width: 575px) {
    .compact-features {
        padding: 12px 0;
    }

    .compact-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .compact-card {
        padding: 12px;
        border-radius: 14px;
    }

    .compact-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
    }

    .compact-icon img {
        width: 24px;
        height: 24px;
    }
}

.modern-slider-item {
    position: relative;
    height: 430px;
    overflow: hidden;
    border-radius: 0 0 28px 28px;
    background: #202020;
}

.modern-slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.modern-slider-item:hover .modern-slider-img {
    transform: scale(1.10);
}

.modern-slider-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(155, 89, 182, .18), transparent 45%),
        linear-gradient(180deg, rgba(32, 32, 32, .20), rgba(32, 32, 32, .82));
    padding: 30px 15px;
}

.modern-slider-content {
    max-width: 760px;
    text-align: center;
    color: #fff;
    animation: sliderFadeUp .8s ease both;
}

.modern-slider-badge {
    display: inline-flex;
    padding: 7px 17px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 16px;
}

.modern-slider-title {
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.45;
    margin-bottom: 14px;
}

.modern-slider-desc,
.modern-slider-desc p {
    color: rgba(255, 255, 255, .86) !important;
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.modern-slider-btn {
    margin-top: 8px;
}

@keyframes sliderFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@media (max-width: 767px) {
    .modern-slider-item {
        height: 320px;
        border-radius: 0 0 20px 20px;
    }

    .modern-slider-overlay {
        padding: 20px 12px;
    }

    .modern-slider-title {
        font-size: 20px;
        line-height: 1.6;
    }

    .modern-slider-desc,
    .modern-slider-desc p {
        font-size: 13px;
        line-height: 1.7;
    }

    .modern-slider-badge {
        font-size: 11px;
        padding: 5px 13px;
    }
}


.home-hero-wave-section {
    position: relative;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, .08), transparent 30%),
        linear-gradient(135deg, #1f1f1f, #2b2b2b);
    padding-bottom: 34px;
    overflow: hidden;
}

.home-hero-slide {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.home-hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.home-hero-slide:hover .home-hero-img {
    transform: scale(1.1);
}

.home-hero-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at center, rgba(155, 89, 182, .22), transparent 45%),
        linear-gradient(180deg, rgba(32, 32, 32, .22), rgba(32, 32, 32, .86));
    padding: 25px 15px;
}

.home-hero-content {
    max-width: 780px;
    text-align: center;
    color: #fff;
    animation: sliderFadeUp .8s ease both;
}

.home-hero-badge {
    display: inline-flex;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .16);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 14px;
}

.home-hero-content h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    line-height: 1.45;
    margin-bottom: 12px;
}

.home-hero-desc,
.home-hero-desc p {
    color: rgba(255, 255, 255, .86) !important;
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.home-features-floating {
    position: relative;
    margin-top: -32px;
    z-index: 5;
}

.home-features-floating .compact-grid {
    gap: 10px;
}

.home-features-floating .compact-card {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .12);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .18);
}

#sliders.owl-theme .owl-dots {
    position: absolute;
    bottom: 46px;
    left: 0;
    right: 0;
    top: auto !important;
}

@keyframes sliderFadeUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@media (max-width: 767px) {
    .home-hero-wave-section {
        padding-bottom: 18px;
    }

    .home-hero-slide,
    .home-hero-img {
        height: 330px;
    }

    .home-hero-content h2 {
        font-size: 21px;
    }

    .home-hero-desc,
    .home-hero-desc p {
        font-size: 13px;
        line-height: 1.7;
    }

    .home-features-floating {
        margin-top: 12px;
    }

    #sliders.owl-theme .owl-dots {
        bottom: 15px;
    }
}


/* =========================
   MOBILE HEADER STYLE
========================= */

@media (max-width: 991px) {

    .modern-site-header {
        background: rgba(20, 20, 20, .96);
        backdrop-filter: blur(14px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, .18);
    }

    .modern-header-main {
        padding: 10px 0;
        border-bottom: 0;
    }

    .modern-navbar {
        min-height: 62px;
        position: relative;
    }

    /* =========================
       LOGO
    ========================= */

    .modern-logo {
        margin: 0;
        padding: 0;
    }

    .modern-logo img {
        width: 95px;
        max-height: 44px;
        object-fit: contain;
    }

    /* =========================
       TOGGLER
    ========================= */

    .modern-toggler {
        width: 42px;
        height: 42px;
        border-radius: 14px;
        background: rgba(255, 255, 255, .08);
        border: 1px solid rgba(255, 255, 255, .10);
        padding: 0;
        outline: none !important;
        box-shadow: none !important;
        transition: all .25s ease;
    }

    .modern-toggler:hover {
        background: var(--mainColor);
    }

    .modern-toggler span {
        font-size: 24px;
        color: #fff;
    }

    /* =========================
       COLLAPSE BOX
    ========================= */

    .modern-collapse {
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;

        padding: 14px;
        border-radius: 22px;

        background:
            linear-gradient(135deg,
                rgba(34, 34, 34, .98),
                rgba(22, 22, 22, .98));

        border: 1px solid rgba(255, 255, 255, .08);

        box-shadow:
            0 20px 45px rgba(0, 0, 0, .28);

        z-index: 999;
    }

    /* =========================
       SEARCH
    ========================= */

    .modern-header-search {
        width: 100%;
        margin-bottom: 14px;
        position: relative;
    }

    .modern-header-search .form-control {
        height: 46px;
        border-radius: 16px;
        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .08);

        color: #fff;
        font-size: 14px;

        padding-inline-start: 16px;
        padding-inline-end: 50px;

        box-shadow: none !important;
    }

    .modern-header-search .form-control::placeholder {
        color: rgba(255, 255, 255, .55);
    }

    .modern-header-search .form-control:focus {
        border-color: var(--mainColor);
        background: rgba(255, 255, 255, .09);
    }

    .modern-header-search button {
        position: absolute;
        top: 5px;
        inset-inline-end: 5px;

        width: 36px;
        height: 36px;

        border: 0;
        border-radius: 12px;

        background: var(--mainColor);
        color: #fff;

        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* =========================
       CATEGORIES
    ========================= */

    .modern-mobile-cats {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 14px;
    }

    .modern-cat-item {
        width: 100%;
    }

    .modern-cat-item .nav-link {
        min-height: 48px;

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

        padding: 12px 16px;

        border-radius: 16px;

        background: rgba(255, 255, 255, .05);
        border: 1px solid rgba(255, 255, 255, .06);

        color: #fff;
        font-size: 14px;
        font-weight: 700;

        transition: all .25s ease;
    }

    .modern-cat-item .nav-link.active,
    .modern-cat-item .nav-link:hover {
        background: var(--mainColor);
        border-color: var(--mainColor);
    }

    /* =========================
       DROPDOWN
    ========================= */

    .modern-dropdown {
        position: relative !important;
        transform: none !important;

        margin-top: 6px;
        padding: 8px;

        background: rgba(255, 255, 255, .04);

        border: 1px solid rgba(255, 255, 255, .05);
        border-radius: 16px !important;

        box-shadow: none;
    }

    .modern-dropdown .dropdown-item {
        min-height: 42px;

        display: flex;
        align-items: center;

        border-radius: 12px;

        color: rgba(255, 255, 255, .85);
        font-size: 13px;
        font-weight: 600;

        padding: 10px 14px;
    }

    .modern-dropdown .dropdown-item:hover {
        background: rgba(255, 255, 255, .08);
        color: #fff;
    }

    /* =========================
       USER ACTIONS
    ========================= */

    .modern-mobile-user {
        padding-top: 8px;
        border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .modern-actions-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .modern-icon-btn,
    .modern-user-btn,
    .modern-lang-btn {
        width: 100%;
        min-height: 46px;

        justify-content: center;

        border-radius: 16px;

        background: rgba(255, 255, 255, .06);
        border: 1px solid rgba(255, 255, 255, .08);

        font-size: 13px;
        font-weight: 700;
    }

    .modern-icon-btn i,
    .modern-user-btn i {
        font-size: 18px;
    }

    .modern-cart-count {
        top: -5px;
        right: -4px;
    }

    /* =========================
       BODY SPACING
    ========================= */

    body {
        padding-top: 82px;
    }

}


.modern-product-card {
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 18px;
    overflow: hidden;
    transition: all .35s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .05);
}

.modern-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .10);
}

.modern-product-media {
    position: relative;
    height: 190px;
    background: #f6f7f9;
    overflow: hidden;
}

.modern-product-gallery {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.modern-product-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    opacity: 0;
    transform: scale(.95);
    transition: all .45s ease;
}

.modern-product-img.active,
.modern-product-gallery:hover .modern-product-img:first-child {
    opacity: 1;
    transform: scale(1);
}

.modern-product-gallery:hover .modern-product-img {
    animation: productGalleryShow calc(var(--img-count, 4) * 1.4s) infinite;
}

.modern-product-gallery:hover .modern-product-img:nth-child(1) {
    animation-delay: 0s;
}

.modern-product-gallery:hover .modern-product-img:nth-child(2) {
    animation-delay: 1.4s;
}

.modern-product-gallery:hover .modern-product-img:nth-child(3) {
    animation-delay: 2.8s;
}

.modern-product-gallery:hover .modern-product-img:nth-child(4) {
    animation-delay: 4.2s;
}

.modern-product-gallery:hover .modern-product-img:nth-child(5) {
    animation-delay: 5.6s;
}

.modern-product-gallery:hover .modern-product-img:nth-child(6) {
    animation-delay: 7s;
}

@keyframes productGalleryShow {

    0%,
    18% {
        opacity: 1;
        transform: scale(1.04);
    }

    25%,
    100% {
        opacity: 0;
        transform: scale(.96);
    }
}

.modern-product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    padding: 4px 10px;
    border-radius: 50px;
    background: var(--mainColor);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
}

.modern-product-wish {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    color: var(--mainColor);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
}

.modern-product-wish i {
    font-size: 18px;
}

.modern-product-cart {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--mainColor);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(55px);
    opacity: 0;
    transition: all .35s ease;
}

.modern-product-card:hover .modern-product-cart {
    transform: translateY(0);
    opacity: 1;
}

.modern-product-info {
    padding: 13px 14px 15px;
}

.modern-product-info a {
    color: inherit;
}

.modern-product-category {
    display: block;
    color: #8b8f98;
    font-size: 12px;
    margin-bottom: 5px;
}

.modern-product-title {
    color: #202020;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 10px;
    min-height: 44px;
}

.modern-product-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.modern-price,
.modern-currency {
    color: var(--mainColor);
    font-size: 16px;
    font-weight: 900;
}

.modern-product-price del {
    color: #a5a5a5;
    font-size: 13px;
}

@media (max-width: 575px) {
    .modern-product-media {
        height: 165px;
    }

    .modern-product-info {
        padding: 11px;
    }

    .modern-product-title {
        font-size: 13px;
        min-height: 40px;
    }
}



/* product card style  */

.ultra-product {
    position: relative;
    transition: all .35s ease;
}

.ultra-product:hover {
    transform: translateY(-6px);
}

/* =========================
   IMAGE AREA
========================= */

.ultra-product-media {
    position: relative;
    height: 240px;
    border-radius: 28px;
    overflow: hidden;

    background:
        radial-gradient(circle at top right,
            rgba(155, 89, 182, .10),
            transparent 40%),
        linear-gradient(180deg,
            #fafafa,
            #f2f4f7);
}

.ultra-product-gallery {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.ultra-product-img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 24px;

    opacity: 0;

    transform: scale(.92);

    transition: all .45s ease;
}

.ultra-product-img:first-child {
    opacity: 1;
    transform: scale(1);
}

/* =========================
   IMAGE ANIMATION
========================= */

.ultra-product:hover .ultra-product-img {
    animation: ultraGallery 6s infinite;
}

.ultra-product:hover .ultra-product-img:nth-child(1) {
    animation-delay: 0s;
}

.ultra-product:hover .ultra-product-img:nth-child(2) {
    animation-delay: 1.5s;
}

.ultra-product:hover .ultra-product-img:nth-child(3) {
    animation-delay: 3s;
}

.ultra-product:hover .ultra-product-img:nth-child(4) {
    animation-delay: 4.5s;
}

@keyframes ultraGallery {

    0%,
    22% {
        opacity: 1;
        transform: scale(1.05);
    }

    28%,
    100% {
        opacity: 0;
        transform: scale(.94);
    }
}

/* =========================
   BADGE
========================= */

.ultra-product-sale {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;

    min-width: 48px;
    height: 28px;

    padding: 0 10px;

    border-radius: 50px;

    background: #202020;
    color: #fff;

    font-size: 11px;
    font-weight: 800;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* =========================
   WISHLIST
========================= */

.ultra-product-wish {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;

    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .88);

    backdrop-filter: blur(8px);

    color: #202020;

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

    cursor: pointer;

    transition: all .3s ease;
}

.ultra-product-wish:hover {
    background: var(--mainColor);
    color: #fff;
}

.ultra-product-wish i {
    font-size: 18px;
}

/* =========================
   CONTENT
========================= */

.ultra-product-content {
    padding-top: 16px;
}

.ultra-product-category {
    display: inline-block;

    color: #8f96a3;

    font-size: 12px;
    font-weight: 700;

    margin-bottom: 7px;
}

.ultra-product-title {
    color: #202020;

    font-size: 16px;
    font-weight: 900;

    line-height: 1.6;

    margin-bottom: 14px;

    transition: all .25s ease;
}

.ultra-product:hover .ultra-product-title {
    color: var(--mainColor);
}

/* =========================
   BOTTOM
========================= */

.ultra-product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.ultra-product-price strong,
.ultra-product-price span {
    color: #202020;

    font-size: 19px;
    font-weight: 900;
}

.ultra-product-price del {
    display: block;

    color: #a5a8af;

    font-size: 13px;

    margin-top: 2px;
}

.ultra-product-cart {
    width: 44px;
    height: 44px;

    min-width: 44px;

    border-radius: 50%;

    background: #202020;
    color: #fff !important;

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

    transition: all .3s ease;
}

.ultra-product-cart i {
    font-size: 20px;
}

.ultra-product:hover .ultra-product-cart {
    background: var(--mainColor);
    transform: rotate(-12deg);
}


/* custom btn  */

.glass-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 8px 0 22px;
    border-radius: 18px;
    background: #202020;
    color: #fff !important;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 14px 30px rgba(0, 0, 0, .18);
    transition: all .3s ease;
    min-width: 160px;
    justify-content: space-between;
}

.glass-action-btn i {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: var(--mainColor);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all .3s ease;
}

.glass-action-btn:hover {
    transform: translateY(-3px);
    color: #fff !important;
}

.glass-action-btn:hover i {
    transform: translateX(-4px) rotate(-8deg);
}

@media (max-width: 575px) {
    .glass-action-btn {
        min-height: 42px;
        padding: 0 6px 0 16px;
        font-size: 12px;
    }

    .glass-action-btn i {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
}


/* mobile nav  */

@media (max-width: 991px) {

    body {
        /* padding-bottom: 90px; */
    }

    .mobile-bottom-nav {
        position: fixed;
        left: 12px;
        right: 12px;
        bottom: 12px;

        z-index: 99999;

        height: 68px;

        padding: 0 10px;

        border-radius: 24px;

        background:
            linear-gradient(135deg,
                rgba(32, 32, 32, .96),
                rgba(22, 22, 22, .96));

        backdrop-filter: blur(14px);

        box-shadow:
            0 15px 40px rgba(0, 0, 0, .22);

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

    .mobile-bottom-item {
        position: relative;

        flex: 1;

        height: 54px;

        border-radius: 18px;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        gap: 2px;

        color: rgba(255, 255, 255, .58) !important;

        transition: all .25s ease;
    }

    .mobile-bottom-item i {
        font-size: 22px;
        line-height: 1;
    }

    .mobile-bottom-item span {
        font-size: 10px;
        font-weight: 700;
    }

    .mobile-bottom-item.active {
        color: #fff !important;
        background:
            linear-gradient(135deg,
                var(--mainColor),
                #7f43a6);
    }

    .mobile-bottom-item.active::before {
        content: "";

        position: absolute;

        top: 2px;

        width: 42px;
        height: 42px;

        border-radius: 14px;

        background:
            linear-gradient(135deg,
                var(--mainColor),
                #7f43a6);

        z-index: -1;
    }

    .mobile-bottom-item:hover {
        color: #fff !important;
    }

    .mobile-nav-count {
        position: absolute;

        top: 2px;
        right: 18px;

        min-width: 18px;
        height: 18px;

        padding: 0 4px;

        border-radius: 50px;

        background: #ff4d4d;
        color: #fff;

        font-size: 10px;
        font-weight: 800;

        display: flex;
        align-items: center;
        justify-content: center;
    }

}

.modern-footer {
    position: relative;
    background:
        radial-gradient(circle at top right,
            rgba(155, 89, 182, .10),
            transparent 28%),
        #111315;

    overflow: hidden;
}

.modern-footer-top {
    padding: 42px 0 22px;
}

.modern-footer-brand {
    text-align: center;
    margin-bottom: 34px;
}

.modern-footer-logo img {
    max-height: 70px;
    margin-bottom: 14px;
}

.modern-footer-brand p {
    max-width: 620px;
    margin: auto;
    color: rgba(255, 255, 255, .68);
    line-height: 1.9;
    font-size: 14px;
}

.modern-footer-social {
    margin-top: 18px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.modern-footer-social li {
    list-style: none;
}

.modern-footer-social a {
    width: 42px;
    height: 42px;

    border-radius: 14px;

    background: rgba(255, 255, 255, .06);

    color: #fff !important;

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

    transition: all .3s ease;
}

.modern-footer-social a:hover {
    background: var(--mainColor);
    transform: translateY(-3px);
}

.modern-footer-social i {
    font-size: 20px;
}

.modern-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.modern-footer-widget h5 {
    position: relative;

    color: #fff;

    font-size: 17px;
    font-weight: 900;

    margin-bottom: 16px;

    padding-bottom: 10px;
}

.modern-footer-widget h5::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 44px;
    height: 3px;

    border-radius: 50px;

    background: var(--mainColor);
}

.modern-footer-widget ul {
    margin: 0;
    padding: 0;
}

.modern-footer-widget ul li {
    list-style: none;
    margin-bottom: 10px;
}

.modern-footer-widget ul li a {
    color: rgba(255, 255, 255, .68);
    transition: all .25s ease;
}

.modern-footer-widget ul li a:hover {
    color: #fff;
    padding-inline-start: 5px;
}

.modern-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.modern-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: rgba(255, 255, 255, .68);
    line-height: 1.8;
}

.modern-contact-item i {
    width: 38px;
    height: 38px;

    min-width: 38px;

    border-radius: 12px;

    background: rgba(155, 89, 182, .12);

    color: var(--mainColor);

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

    font-size: 18px;
}

.modern-contact-item a {
    color: rgba(255, 255, 255, .68);
}

.newsletter-text {
    color: rgba(255, 255, 255, .68);
    line-height: 1.8;
    margin-bottom: 14px;
}

.modern-newsletter-form {
    position: relative;
    margin-bottom: 18px;
}

.modern-newsletter-form input {
    width: 100%;
    height: 52px;

    border: 0;
    border-radius: 18px;

    background: rgba(255, 255, 255, .06);

    color: #fff;

    padding: 0 58px 0 16px;
}

.modern-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.modern-newsletter-form button {
    position: absolute;

    top: 6px;
    right: 6px;

    width: 40px;
    height: 40px;

    border: 0;
    border-radius: 14px;

    background: var(--mainColor);
    color: #fff;
}

.modern-apps {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.modern-apps img {
    height: 42px;
    border-radius: 10px;
}

.modern-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding: 14px 0;
}

.modern-footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.modern-footer-policy {
    display: flex;
    align-items: center;
    gap: 18px;
}

.modern-footer-policy a,
.modern-footer-bottom p,
.modern-footer-bottom p a {
    color: rgba(255, 255, 255, .58);
    margin-bottom: 0;
}

.modern-footer-bottom p a {
    color: #fff;
}

@media (max-width: 991px) {

    .modern-footer-top {
        padding: 32px 0 18px;
    }

    .modern-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

}

@media (max-width: 575px) {

    .modern-footer-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .modern-footer-brand {
        margin-bottom: 24px;
    }

    .modern-footer-logo img {
        max-height: 56px;
    }

    .modern-footer-brand p {
        font-size: 13px;
    }

    .modern-footer-widget h5 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .modern-footer-bottom {
        padding-bottom: 90px;
    }

    .modern-footer-bottom-content {
        text-align: center;
        justify-content: center;
    }

    .modern-footer-policy {
        justify-content: center;
        width: 100%;
    }

}