@import "Vazirmatn-font-face.css";
@import "IRANSans.css";

        /* =========================================================
           GLOBAL
        ========================================================= */

        :root {
            --pink: #f56f91;
            --pink-dark: #ed5278;
            --pink-light: #fff0f4;
            --pink-soft: #fde1e9;
            --peach: #fff4f1;
            --text: #273142;
            --muted: #8a8f9b;
            --white: #ffffff;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            background: #fffafb;
            color: var(--text);
            /* font-family: Vazirmatn, Tahoma, Arial, sans-serif; */
            overflow-x: hidden;
			font-family: 'Vazirmatn', 'IRANSans', system-ui;
			font-feature-settings: "ss01";
			direction: rtl; /* برای پشتیبانی بهتر RTL */
		}

        a {
            color: inherit;
            text-decoration: none !important;
        }

        img {
            max-width: 100%;
        }

        .container {
            max-width: 1200px;
        }

        /* =========================================================
           ANIMATIONS
        ========================================================= */

        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-12px);
            }
        }

        @keyframes pulse {

            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.08);
            }

            100% {
                transform: scale(1);
            }
        }

        @keyframes fadeUp {

            from {
                opacity: 0;
                transform: translateY(25px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes heartBeat {

            0% {
                transform: scale(1);
            }

            25% {
                transform: scale(1.15);
            }

            50% {
                transform: scale(1);
            }

            75% {
                transform: scale(1.12);
            }

            100% {
                transform: scale(1);
            }
        }

        /* =========================================================
           NAVBAR
        ========================================================= */

        .main-navbar {
            background: #fff;
            border: 0;
            border-radius: 0;
            margin: 0;
            min-height: 78px;
            box-shadow: 0 4px 25px rgba(0, 0, 0, .04);
            position: relative;
            z-index: 1000;
        }

        .navbar-brand {
            height: 78px;
            padding: 13px 15px;
        }

        .logo-box {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-box img {
            height: 50px;
            width: auto;
        }

        .logo-text strong {
            display: block;
            color: var(--pink);
            font-size: 20px;
        }

        .logo-text span {
            font-size: 11px;
            color: #777;
        }

        .navbar-nav > li > a {
            line-height: 48px;
            padding: 15px 18px;
            font-size: 14px;
            color: #303744;
            position: relative;
            transition: .3s;
			font-family: IRANSans !important;
			font-weight: 500;
        }

        .navbar-nav > li > a:hover,
        .navbar-nav > li.active > a {
            color: var(--pink);
            background: transparent;
        }

        .navbar-nav > li.active > a:after {
            content: "";
            position: absolute;
            height: 3px;
            width: 35px;
            background: var(--pink);
            bottom: 9px;
            right: 50%;
            transform: translateX(50%);
            border-radius: 20px;
        }

        .navbar-left {
            margin-top: 15px;
        }

        .nav-icon-btn {
            border: 0;
            background: transparent;
            font-size: 20px;
            padding: 12px;
            position: relative;
            color: #303744;
            transition: .3s;
        }

        .nav-icon-btn:hover {
            color: var(--pink);
            transform: translateY(-2px);
        }

        .cart-count {
            position: absolute;
            top: 2px;
            left: 1px;
            background: var(--pink);
            color: #fff;
            width: 19px;
            height: 19px;
            border-radius: 50%;
            font-size: 10px;
            line-height: 19px;
            text-align: center;
        }

        /* =========================================================
           HERO
        ========================================================= */

        .hero {
            min-height: 510px;
            position: relative;
            overflow: hidden;

            background-color: #fff1f5;

            /* تصویر بک گراند اصلی */
            background-image:
                linear-gradient(
                    90deg,
                    rgba(255, 241, 245, .90),
                    rgba(255, 241, 245, .25)
                ),
                url('../images/hero-bg.jpg');

            background-position: center;
            background-size: cover;
        }

        .hero:after {
            content: "";
            position: absolute;
            bottom: -100px;
            left: -5%;
            width: 110%;
            height: 170px;
            background: #fffafb;
            border-radius: 50% 50% 0 0;
        }

        .hero-content {
            padding-top: 95px;
            position: relative;
            z-index: 5;
        }

        .hero-title {
            font-size: 48px;
            line-height: 1.5;
            font-weight: 900;
            margin: 0 0 15px;
        }

        .hero-title span {
            color: var(--pink);
        }

        .hero-description {
            color: #000000;
			font-size: 20px;
			line-height: 2;
			max-width: 520px;
			font-weight: bold;
        }

        .hero-buttons {
            margin-top: 30px;
        }

        .btn-main {
            display: inline-block;
            padding: 14px 32px;
            border-radius: 50px;
            border: 0;
            color: #fff !important;
            background: linear-gradient(
                135deg,
                #f77b9a,
                #ee5c81
            );
            box-shadow: 0 10px 25px rgba(238, 92, 129, .25);
            transition: .3s;
            margin-left: 10px;
        }

        .btn-main:hover {
            transform: translateY(-4px);
            box-shadow: 0 15px 30px rgba(238, 92, 129, .35);
        }

        .btn-outline {
            display: inline-block;
            padding: 13px 30px;
            border-radius: 50px;
            color: var(--pink) !important;
            border: 1px solid var(--pink);
            background: #fff;
            transition: .3s;
        }

        .btn-outline:hover {
            background: var(--pink);
            color: #fff !important;
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            height: 480px;
        }

        .hero-image img {
            position: absolute;
            left: 0;
			top: 20px;
			max-height: 200px;
            z-index: 3;
            animation: float 5s ease-in-out infinite;
        }

        .hero-heart {
            position: absolute;
            color: #f88aa5;
            font-size: 25px;
            animation: heartBeat 2s infinite;
        }

        .heart-1 {
            /* top: 80px; */
            /* right: 25%; */
			top: 313px;
			right: 38%;
        }

        .heart-2 {
            top: 180px;
            right: 10%;
            animation-delay: .5s;
        }

        /* =========================================================
           FEATURES
        ========================================================= */

        .features {
            position: relative;
            z-index: 20;
            margin-top: -35px;
        }

        .feature-box {
            background: #fff;
            border-radius: 30px;
            padding: 25px 20px;
            box-shadow: 0 15px 40px rgba(70, 60, 70, .08);
        }

        .feature-item {
            text-align: center;
            border-left: 1px solid #f4e8eb;
        }

        .feature-item:last-child {
            border-left: 0;
        }

        .feature-icon {
            color: var(--pink);
            font-size: 30px;
            margin-bottom: 8px;
        }

        .feature-item strong {
            display: block;
            font-size: 14px;
        }

        .feature-item span {
            color: var(--muted);
            font-size: 12px;
        }

        /* =========================================================
           SECTION
        ========================================================= */

        .section {
            padding: 75px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 45px;
        }

        .section-title h2 {
            font-size: 30px;
            font-weight: 900;
            margin: 0 0 10px;
        }

        .section-title h2 i {
            color: var(--pink);
            font-size: 23px;
        }

        .section-title p {
            color: var(--muted);
        }

        /* =========================================================
           COURSE CARD
        ========================================================= */

        .course-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 8px 25px rgba(50, 40, 50, .07);
            transition: .35s;
            position: relative;
        }

        .course-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 18px 40px rgba(50, 40, 50, .12);
        }

        .course-image {
            height: 215px;
            overflow: hidden;
            position: relative;
            background: #fde7ed;
        }

        .course-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        /* افکت صورتی روی تصویر */

        .course-image:after {
            content: "";
            position: absolute;
            inset: 0;

            background:
                linear-gradient(
                    135deg,
                    rgba(246, 102, 139, .38),
                    rgba(255, 187, 204, .08)
                );

            opacity: .75;
            transition: .4s;
            pointer-events: none;
        }

        .course-card:hover .course-image img {
            transform: scale(1.10);
        }

        .course-card:hover .course-image:after {
            opacity: .2;
        }

        .course-image:before {
            content: "\f144";
            font-family: FontAwesome;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(.7);
            color: #fff;
            font-size: 42px;
            opacity: 0;
            z-index: 5;
            transition: .35s;
        }

        .course-card:hover .course-image:before {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .course-tag {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 10;
            background: #fff;
            color: var(--pink);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 11px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, .08);
        }

        .course-body {
            padding: 18px;
        }

        .course-title {
            font-size: 16px;
            font-weight: bold;
            margin: 0 0 10px;
        }

        .course-author {
            color: var(--muted);
            font-size: 12px;
            margin-bottom: 18px;
        }

        .course-footer {
            border-top: 1px solid #f3edf0;
            padding-top: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .course-price {
            color: var(--pink);
            font-weight: bold;
        }

        .course-rating {
            color: #f6b800;
            font-size: 12px;
        }

        .course-add {
            border: 0;
            background: transparent;
            color: var(--pink);
            font-size: 20px;
            transition: .3s;
        }

        .course-add:hover {
            transform: scale(1.25) rotate(-8deg);
        }

        /* =========================================================
           CART SIDEBAR
        ========================================================= */

        .cart-overlay {
            position: fixed;
            inset: 0;
            background: rgba(30, 25, 30, .35);
            z-index: 2000;
            opacity: 0;
            visibility: hidden;
            transition: .3s;
        }

        .cart-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .cart-panel {
            position: fixed;
            top: 0;
            left: -390px;
            width: 370px;
            max-width: 90%;
            height: 100vh;
            background: #fff;
            z-index: 2001;
            box-shadow: 10px 0 40px rgba(0, 0, 0, .15);
            transition: .4s ease;
            padding: 25px;
            display: flex;
            flex-direction: column;
        }

        .cart-panel.active {
            left: 0;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
        }

        .cart-header h3 {
            margin: 0;
            font-size: 20px;
        }

        .cart-close {
            border: 0;
            background: transparent;
            font-size: 24px;
            color: #888;
        }

        .cart-items {
            flex: 1;
            overflow-y: auto;
            padding: 20px 0;
        }

        .cart-item {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #f4eef0;
        }

        .cart-item img {
            width: 70px;
            height: 55px;
            object-fit: cover;
            border-radius: 10px;
            margin-left: 12px;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-info strong {
            display: block;
            font-size: 13px;
            margin-bottom: 5px;
        }

        .cart-item-info span {
            color: var(--pink);
            font-size: 12px;
        }

        .cart-footer {
            border-top: 1px solid #eee;
            padding-top: 20px;
        }

        .cart-total {
            display: flex;
            justify-content: space-between;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .empty-cart {
            text-align: center;
            color: #aaa;
            padding-top: 80px;
        }

        .empty-cart i {
            font-size: 55px;
            color: #f5c7d2;
            display: block;
            margin-bottom: 15px;
        }

        /* =========================================================
           ABOUT
        ========================================================= */

        .about-box {
            background: linear-gradient(
                135deg,
                #fff0f4,
                #fff8f5
            );
            border-radius: 35px;
            padding: 50px;
        }

        .about-image {
            border-radius: 25px;
            overflow: hidden;
        }

        .about-image img {
            width: 100%;
        }

        .about-content {
            padding: 25px;
        }

        .about-content h2 {
            font-weight: 900;
            margin-bottom: 20px;
        }

        .about-content p {
            color: #727783;
            line-height: 2.2;
        }

        /* =========================================================
           FOOTER
        ========================================================= */

        footer {
            background: #292a35;
            color: #fff;
            padding: 50px 0 25px;
        }

        footer h4 {
            margin-bottom: 20px;
        }

        footer p,
        footer li {
            color: #b9bbc5;
            line-height: 2;
            font-size: 13px;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,.08);
            margin-top: 35px;
            padding-top: 20px;
            color: #aaa;
            font-size: 12px;
        }

        /* =========================================================
           MOBILE
        ========================================================= */

        @media(max-width:767px) {

            .main-navbar {
                min-height: 60px;
            }

            .navbar-brand {
                height: 60px;
                padding: 8px 15px;
            }

            .logo-box img {
                height: 42px;
            }

            .navbar-toggle {
                margin-top: 13px;
            }

            .navbar-nav > li > a {
                line-height: 30px;
                padding: 10px 20px;
            }

            .navbar-left {
                display: none;
            }

            .hero {
                min-height: 720px;
                background-position: center;
            }

            .hero-content {
                padding-top: 55px;
                text-align: center;
            }

            .hero-title {
                font-size: 34px;
            }

            .hero-description {
                font-size: 14px;
                margin: auto;
            }

            .hero-image {
                height: 350px;
                margin-top: 20px;
            }

            .hero-image img {
                right: 50%;
                transform: translateX(50%);
                max-height: 350px;
            }

            .features {
                margin-top: -15px;
            }

            .feature-box {
                border-radius: 20px;
            }

            .feature-item {
                margin-bottom: 20px;
                border: 0;
            }

            .section {
                padding: 50px 0;
            }

            .section-title h2 {
                font-size: 25px;
            }

            .course-image {
                height: 220px;
            }

            .about-box {
                padding: 20px;
            }

            .about-content {
                padding: 20px 5px;
                text-align: center;
            }

            .cart-panel {
                width: 340px;
            }
        }
@media (min-width: 768px) {
    .navbar-header {
        float: right !important;
    }
	.navbar-nav {
        float: right !important;
        margin: 0;
    }
	.navbar-nav>li {
	float: right;
    }
}

/* =========================================================
   AUTH MODAL
========================================================= */

.auth-modal {
    width: 430px;
    margin-top: 80px;
}

.auth-modal .modal-content {
    border: 0;
    border-radius: 28px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 25px 70px rgba(70, 40, 50, .20);
    padding: 35px;
    position: relative;
}

.auth-close {
    position: absolute;
    top: 15px;
    left: 15px;

    width: 34px;
    height: 34px;

    border: 0;
    border-radius: 50%;

    background: #fff1f5;
    color: #ed6a89;

    z-index: 10;

    transition: .3s;
}

.auth-close:hover {
    background: #f56f91;
    color: #fff;
    transform: rotate(90deg);
}


/* LOGO */

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 15px;

    border-radius: 50%;

    background: linear-gradient(
        135deg,
        #ffb5c7,
        #f56f91
    );

    color: #fff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 27px;

    box-shadow:
        0 10px 25px rgba(245, 111, 145, .25);
}

.auth-icon.success {
    background: linear-gradient(
        135deg,
        #f9a9bf,
        #ef6285
    );
}

.auth-logo h3 {
    font-size: 23px;
    font-weight: 900;
    margin: 10px 0;
}

.auth-logo p {
    color: #8a8f99;
    font-size: 13px;
    line-height: 2;
    margin: 0;
}


/* INPUT */

.auth-step label {
    font-size: 13px;
    margin-bottom: 8px;
}

.mobile-input {
    display: flex;
    direction: ltr;

    border: 1px solid #eadde1;
    border-radius: 13px;

    overflow: hidden;

    transition: .3s;
}

.mobile-input:focus-within {
    border-color: #f56f91;
    box-shadow: 0 0 0 3px rgba(245, 111, 145, .08);
}

.mobile-input span {
    background: #fff4f7;
    color: #777;

    padding: 13px 12px;

    font-size: 13px;
}

.mobile-input input {
    border: 0 !important;
    box-shadow: none !important;

    height: 47px;

    text-align: left;
    direction: ltr;

    flex: 1;
}


/* BUTTON */

.auth-btn {
    width: 100%;

    border: 0;

    padding: 14px;

    border-radius: 14px;

    background: linear-gradient(
        135deg,
        #f77b9a,
        #ed5b80
    );

    color: #fff;

    font-size: 14px;
    font-family: inherit;

    box-shadow:
        0 10px 25px rgba(237, 91, 128, .25);

    transition: all .3s;
}

.auth-btn i {
    margin-right: 8px;
}

.auth-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 30px rgba(237, 91, 128, .35);
}

.auth-btn:active {
    transform: translateY(0);
}


/* SECURITY NOTE */

.auth-note {
    text-align: center;
    color: #aaa;
    font-size: 11px;

    margin-top: 20px;
}

.auth-note i {
    color: #f28ba5;
    margin-left: 5px;
}


/* ERROR */

.auth-error {
    display: block;
    color: #e95c78;
    font-size: 11px;
    min-height: 20px;
    margin-top: 6px;
}


/* OTP */

.otp-container {
    direction: ltr;

    display: flex;
    justify-content: center;

    gap: 12px;

    margin: 25px 0;
}

.otp-input {
    width: 55px;
    height: 60px;

    border: 1px solid #eadde1;
    border-radius: 13px;

    text-align: center;

    font-size: 24px;
    font-weight: bold;

    color: #333;

    outline: none;

    transition: .3s;
}

.otp-input:focus {
    border-color: #f56f91;

    box-shadow:
        0 0 0 4px rgba(245, 111, 145, .10);

    transform: translateY(-3px);
}


/* OTP ACTIONS */

.otp-actions {
    display: flex;
    justify-content: space-between;

    margin-top: 18px;
}

.otp-actions button {
    border: 0;
    background: transparent;

    color: #f06a89;

    font-family: inherit;
    font-size: 11px;

    padding: 5px;

    cursor: pointer;
}

.otp-actions button:disabled {
    color: #aaa;
    cursor: default;
}


/* SUCCESS */

.success-animation {
    width: 85px;
    height: 85px;

    margin: 10px auto 25px;

    border-radius: 50%;

    background: #fff0f4;

    color: #f56f91;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 35px;

    animation: successPulse 1.5s infinite;
}

@keyframes successPulse {

    0% {
        box-shadow: 0 0 0 0 rgba(245,111,145,.25);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(245,111,145,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245,111,145,0);
    }

}

.auth-success-text {
    color: #777;
    font-size: 13px;
    line-height: 2;
    margin: 15px 0 25px;
}


/* MOBILE */

@media(max-width:480px) {

    .auth-modal {
        width: auto;
        margin: 30px 12px;
    }

    .auth-modal .modal-content {
        padding: 30px 20px;
        border-radius: 24px;
    }

    .otp-container {
        gap: 8px;
    }

    .otp-input {
        width: 52px;
        height: 55px;
    }

}

/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;

    margin-left: 15px;

    border-radius: 15px;

    background: #fff0f4;
    color: #f56f91;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 19px;

    transition: .3s;
}

.contact-info-item:hover .contact-icon {
    background: #f56f91;
    color: #fff;
    transform: translateY(-3px);
}

.contact-info-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.contact-info-item p {
    margin: 0;
    color: #777;
    font-size: 13px;
    line-height: 2;
}

.contact-info-item a {
    color: #777;
    transition: .3s;
}

.contact-info-item a:hover {
    color: #f56f91;
}

.contact-social {
    border-top: 1px solid #f2e7ea;
    padding-top: 22px;
    margin-top: 25px;
}

.contact-social a {
    width: 42px;
    height: 42px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    margin-left: 7px;

    background: #fff0f4;
    color: #f56f91;

    transition: .3s;
}

.contact-social a:hover {
    background: #f56f91;
    color: #fff;

    transform: translateY(-4px);
}

.contact-form-card {
    background: #fff;

    border-radius: 30px;

    padding: 38px;

    box-shadow:
        0 15px 45px rgba(70, 50, 60, .07);
}

.contact-form-card label {
    font-size: 13px;
    margin-bottom: 8px;
}

.contact-form-card .form-control {
    height: 48px;

    border-radius: 13px;

    border: 1px solid #eadde1;

    box-shadow: none;

    font-family: inherit;

    transition: .3s;
}

.contact-form-card textarea.form-control {
    height: auto;
    resize: vertical;
}

.contact-form-card .form-control:focus {
    border-color: #f56f91;

    box-shadow:
        0 0 0 3px rgba(245, 111, 145, .08);
}

.contact-form-card select.form-control {
    cursor: pointer;
}


@media(max-width:767px) {

    .contact-form-card {
        padding: 25px 20px;
        margin-top: 25px;
    }

    .contact-info-item {
        margin-bottom: 20px;
    }

}

/* =========================================================
   COURSES PAGE
========================================================= */

.courses-hero {
    min-height: 300px;
}

.courses-hero .hero-content {
    padding-top: 65px;
    padding-bottom: 55px;
}


/* FILTER */

.courses-filter {
    background: #fff;
    border-radius: 24px;
    padding: 25px;

    box-shadow:
        0 12px 40px rgba(70, 50, 60, .07);

    position: sticky;
    top: 20px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-bottom: 18px;

    border-bottom: 1px solid #f2e7ea;

    font-size: 15px;
    font-weight: 900;
}

.filter-header i {
    color: #f56f91;
    margin-left: 7px;
}

.filter-header button {
    border: 0;
    background: none;

    color: #aaa;

    font-family: inherit;
    font-size: 11px;

    cursor: pointer;
}

.filter-header button:hover {
    color: #f56f91;
}

.filter-group {
    padding-top: 22px;
}

.filter-group h4 {
    font-size: 14px;
    font-weight: 900;

    margin-top: 0;
    margin-bottom: 15px;
}

.filter-option {
    display: flex;
    align-items: center;

    position: relative;

    padding: 9px 0;

    color: #777;

    font-size: 12px;

    cursor: pointer;

    transition: .2s;
}

.filter-option:hover {
    color: #f56f91;
}

.filter-option input {
    position: absolute;
    opacity: 0;
}

.custom-radio {
    width: 17px;
    height: 17px;

    border: 1px solid #ddd;
    border-radius: 50%;

    margin-left: 9px;

    position: relative;

    transition: .2s;
}

.filter-option input:checked + .custom-radio {
    border-color: #f56f91;
}

.filter-option input:checked + .custom-radio:after {
    content: "";

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #f56f91;

    position: absolute;

    top: 3px;
    left: 3px;
}


/* TOOLBAR */

.courses-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin-bottom: 25px;

    padding: 15px 20px;

    background: #fff;

    border-radius: 16px;

    box-shadow:
        0 8px 25px rgba(70, 50, 60, .05);
}

.courses-toolbar strong {
    color: #444;
    font-size: 14px;
}

.courses-toolbar span {
    color: #aaa;
    font-size: 12px;
    margin-right: 5px;
}

.course-sort {
    border: 1px solid #eadde1;
    border-radius: 10px;

    padding: 8px 12px;

    color: #777;

    background: #fff;

    font-family: inherit;
    font-size: 11px;

    outline: none;
}


/* COURSE CARD */

.course-item {
    margin-bottom: 30px;
}

.course-card {
    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(70, 50, 60, .07);

    transition: all .35s ease;
}

.course-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 20px 45px rgba(70, 50, 60, .12);
}

.course-image {
    height: 210px;

    position: relative;

    overflow: hidden;

    background: #fde8ee;
}

.course-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.07);
}


/* PINK OVERLAY */

.course-image:after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(255, 174, 198, .20),
            rgba(245, 111, 145, .18)
        );

    pointer-events: none;
}


/* IMAGE OVERLAY */

.course-image-overlay {
    position: absolute;

    inset: 0;

    display: flex;

    justify-content: center;
    align-items: center;

    background: rgba(236, 96, 128, .35);

    opacity: 0;

    transition: .35s;

    z-index: 10;
}

.course-card:hover .course-image-overlay {
    opacity: 1;
}

.course-image-overlay a {
    background: #fff;

    color: #e96787;

    padding: 11px 18px;

    border-radius: 30px;

    font-size: 11px;
    font-weight: bold;

    transform: translateY(15px);

    transition: .35s;
}

.course-card:hover .course-image-overlay a {
    transform: translateY(0);
}

.course-image-overlay a i {
    margin-right: 6px;
}


/* BADGES */

.course-badge {
    position: absolute;

    top: 12px;
    right: 12px;

    z-index: 5;

    padding: 6px 12px;

    border-radius: 20px;

    font-size: 10px;

    color: #fff;

    box-shadow:
        0 5px 15px rgba(0,0,0,.08);
}

.course-badge.free {
    background: #73c7a1;
}

.course-badge.discount {
    background: #f06c8a;
}


/* BODY */

.course-body {
    padding: 20px;
}

.course-title {
    font-size: 15px;

    font-weight: 900;

    line-height: 1.8;

    margin: 0 0 8px;
}

.course-author {
    color: #999;

    font-size: 11px;

    line-height: 1.9;

    min-height: 40px;
}

.course-meta {
    display: flex;

    justify-content: space-between;

    border-top: 1px solid #f5edef;

    padding-top: 12px;

    margin-top: 12px;

    color: #aaa;

    font-size: 10px;
}

.course-meta i {
    color: #f58aa4;
    margin-left: 4px;
}

.course-footer {
    display: flex;

    justify-content: space-between;
    align-items: center;

    margin-top: 15px;
}

.course-price {
    display: block;

    color: #e96082;

    font-size: 12px;

    font-weight: 900;
}

.course-footer del {
    display: block;

    color: #bbb;

    font-size: 9px;

    margin-bottom: 3px;
}

.free-price {
    color: #58b48a;
}

.course-btn {
    border: 0;

    background: #fff0f4;

    color: #e96586;

    border-radius: 12px;

    padding: 9px 12px;

    font-family: inherit;

    font-size: 10px;

    transition: .3s;

    text-decoration: none;

    cursor: pointer;
}

.course-btn:hover {
    background: #f56f91;
    color: #fff;

    transform: translateY(-2px);
}

.course-btn i {
    margin-right: 5px;
}


/* EMPTY */

.empty-courses {
    text-align: center;

    padding: 80px 20px;

    color: #aaa;
}

.empty-courses i {
    font-size: 45px;

    color: #f5a0b5;

    margin-bottom: 15px;
}

.empty-courses h3 {
    color: #555;

    font-size: 18px;
}


/* MOBILE */

@media(max-width:991px) {

    .courses-filter {
        position: static;

        margin-bottom: 30px;
    }

}

@media(max-width:767px) {

    .courses-toolbar {
        align-items: flex-start;
        flex-direction: column;

        gap: 12px;
    }

    .course-sort {
        width: 100%;
    }

    .course-image {
        height: 220px;
    }

}

/* =========================================================
   COURSE DETAIL
========================================================= */

.course-detail-top {
    background: #fff8fa;
    padding: 18px 0;
}

.course-breadcrumb {
    font-size: 11px;
    color: #aaa;
}

.course-breadcrumb a {
    color: #999;
    text-decoration: none;
}

.course-breadcrumb a:hover {
    color: #f56f91;
}

.course-breadcrumb i {
    margin: 0 10px;
    color: #e8a2b2;
}

.course-detail-row {
    display: flex;
    align-items: center;
}

.course-detail-hero {
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(255, 194, 210, .30),
            transparent 35%
        ),
        #fff8fa;

    padding: 45px 0 65px;
}

.course-detail-image {
    height: 470px;

    border-radius: 30px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 25px 60px rgba(80, 40, 55, .14);
}

.course-detail-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .7s ease;
}

.course-detail-image:hover img {
    transform: scale(1.035);
}

.course-detail-image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(245,111,145,.05),
            rgba(245,111,145,.28)
        );
}

.detail-special-badge {
    position: absolute;

    top: 20px;
    right: 20px;

    background: #f56f91;
    color: #fff;

    padding: 9px 16px;

    border-radius: 25px;

    font-size: 11px;

    z-index: 5;
}

.detail-special-badge i {
    margin-left: 5px;
}

.course-play-button {
    position: absolute;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    width: 70px;
    height: 70px;

    border-radius: 50%;

    background: rgba(255,255,255,.92);

    color: #f56f91;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 22px;

    box-shadow:
        0 10px 35px rgba(0,0,0,.12);

    transition: .3s;
}

.course-detail-image:hover .course-play-button {
    transform:
        translate(-50%, -50%)
        scale(1.1);
}

.course-image-caption {
    background: #fff;

    margin-top: -35px;

    position: relative;

    z-index: 5;

    width: 80%;

    margin-left: auto;
    margin-right: auto;

    padding: 15px 20px;

    border-radius: 18px;

    text-align: center;

    box-shadow:
        0 10px 30px rgba(70,50,60,.08);

    color: #777;

    font-size: 11px;
}

.course-image-caption i {
    color: #f56f91;
    margin-left: 7px;
}

.course-image-caption span {
    color: #aaa;
    margin-right: 5px;
}

.course-purchase-card {
    background: #fff;

    border-radius: 28px;

    padding: 35px;

    box-shadow:
        0 20px 55px rgba(70,50,60,.10);
}

.course-category-label {
    display: inline-block;

    background: #fff0f4;

    color: #e96987;

    padding: 7px 13px;

    border-radius: 20px;

    font-size: 10px;
}

.course-purchase-card h1 {
    font-size: 27px;

    font-weight: 900;

    line-height: 1.7;

    margin: 18px 0 12px;
}

.course-short-description {
    color: #888;

    font-size: 12px;

    line-height: 2.1;
}

.detail-price-box {
    border-top: 1px solid #f3e7ea;
    border-bottom: 1px solid #f3e7ea;

    padding: 20px 0;

    margin: 20px 0;
}

.detail-price-box del {
    display: block;

    color: #bbb;

    font-size: 11px;

    margin-bottom: 7px;
}

.detail-price-box strong {
    color: #e96082;

    font-size: 27px;
}

.detail-price-box span {
    color: #e96082;

    font-size: 12px;
}

.support-box {
    display: flex;

    align-items: center;

    background: #fff6f8;

    padding: 15px;

    border-radius: 16px;

    margin-bottom: 15px;
}

.support-box > i {
    width: 40px;
    height: 40px;

    min-width: 40px;

    background: #f56f91;

    color: #fff;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-left: 12px;
}

.support-box strong {
    display: block;

    font-size: 11px;

    color: #555;

    margin-bottom: 4px;
}

.support-box span {
    font-size: 9px;

    color: #aaa;
}

.detail-buy-btn {
    width: 100%;

    border: 0;

    background: #f56f91;

    color: #fff;

    padding: 15px;

    border-radius: 15px;

    font-family: inherit;

    font-size: 12px;

    font-weight: bold;

    cursor: pointer;

    transition: all .3s;
}

.detail-buy-btn:hover {
    background: #e85e80;

    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(245,111,145,.25);
}

.detail-buy-btn i {
    float: left;
}

.detail-cart-btn {
    width: 100%;

    border: 1px solid #f4b1c1;

    background: #fff;

    color: #e96787;

    padding: 13px;

    border-radius: 15px;

    font-family: inherit;

    font-size: 11px;

    margin-top: 10px;

    cursor: pointer;

    transition: .3s;
}

.detail-cart-btn:hover {
    background: #fff0f4;
}

.secure-payment {
    text-align: center;

    color: #aaa;

    font-size: 9px;

    margin-top: 15px;
}

.secure-payment i {
    color: #79bd9d;
    margin-left: 5px;
}


/* INFO */

.course-info-section {
    margin-top: -30px;

    position: relative;

    z-index: 10;
}

.course-info-box {
    background: #fff;

    border-radius: 22px;

    padding: 20px;

    box-shadow:
        0 12px 40px rgba(70,50,60,.08);
}

.course-info-item {
    display: flex;

    align-items: center;

    padding: 12px;
}

.course-info-icon {
    width: 45px;
    height: 45px;

    min-width: 45px;

    background: #fff0f4;

    color: #f56f91;

    border-radius: 13px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-left: 12px;
}

.course-info-item span {
    display: block;

    color: #aaa;

    font-size: 9px;

    margin-bottom: 5px;
}

.course-info-item strong {
    color: #555;

    font-size: 11px;
}


/* CONTENT */

.course-content-card,
.course-comments-card {
    background: #fff;

    border-radius: 25px;

    padding: 35px;

    box-shadow:
        0 10px 35px rgba(70,50,60,.06);
}

.detail-section-title {
    margin-bottom: 25px;
}

.detail-section-title > span {
    color: #f56f91;

    font-size: 10px;

    font-weight: bold;
}

.detail-section-title h2 {
    font-size: 22px;

    font-weight: 900;

    margin: 8px 0 0;
}

.detail-section-title h2 i {
    color: #f56f91;

    font-size: 15px;

    margin-right: 5px;
}

.course-content-card > p {
    color: #777;

    font-size: 12px;

    line-height: 2.3;

    margin-bottom: 18px;
}

.course-benefits {
    background: #fff8fa;

    border-radius: 20px;

    padding: 25px;

    margin-top: 30px;
}

.course-benefits h3 {
    font-size: 15px;

    font-weight: 900;

    margin-top: 0;

    margin-bottom: 18px;
}

.benefit-item {
    display: flex;

    align-items: flex-start;

    color: #666;

    font-size: 11px;

    line-height: 2;

    margin-bottom: 10px;
}

.benefit-item i {
    width: 22px;
    height: 22px;

    min-width: 22px;

    background: #e9f8f1;

    color: #62b38f;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 9px;

    margin-left: 8px;

    margin-top: 2px;
}

.course-format-box {
    display: flex;

    align-items: center;

    margin-top: 25px;

    padding: 20px;

    border: 1px dashed #f3c2ce;

    border-radius: 18px;
}

.format-icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    background: #f56f91;

    color: #fff;

    border-radius: 15px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 20px;

    margin-left: 15px;
}

.course-format-box strong {
    font-size: 12px;

    display: block;

    margin-bottom: 5px;
}

.course-format-box p {
    color: #999;

    font-size: 10px;

    margin: 0;
}


/* SIDEBAR */

.course-side-card {
    background: #fff;

    border-radius: 23px;

    padding: 28px;

    box-shadow:
        0 10px 35px rgba(70,50,60,.06);
}

.course-side-card h3 {
    font-size: 16px;

    font-weight: 900;

    margin-top: 0;

    margin-bottom: 20px;
}

.side-feature {
    display: flex;

    align-items: center;

    padding: 13px 0;

    border-bottom: 1px solid #f6eef0;

    font-size: 11px;

    color: #777;
}

.side-feature:last-child {
    border-bottom: 0;
}

.side-feature i {
    color: #f56f91;

    width: 30px;

    font-size: 15px;
}

.course-help-card {
    background:
        linear-gradient(
            135deg,
            #fff0f4,
            #fff8fa
        );

    border-radius: 23px;

    padding: 28px;

    margin-top: 20px;

    text-align: center;
}

.help-icon {
    width: 45px;
    height: 45px;

    background: #fff;

    color: #f56f91;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: auto;
}

.course-help-card h4 {
    font-size: 14px;

    font-weight: 900;
}

.course-help-card p {
    color: #999;

    font-size: 10px;

    line-height: 2;
}

.help-btn {
    display: inline-block;

    background: #f56f91;

    color: #fff;

    padding: 9px 18px;

    border-radius: 20px;

    font-size: 10px;

    text-decoration: none;
}

.help-btn:hover {
    color: #fff;

    background: #e85e80;
}


/* COMMENTS */

.empty-comments {
    text-align: center;

    padding: 30px 20px 10px;

    color: #aaa;
}

.empty-comments > i {
    font-size: 35px;

    color: #f4b2c1;
}

.empty-comments h4 {
    color: #666;

    font-size: 13px;
}

.empty-comments p {
    font-size: 10px;
}

.comment-btn {
    border: 0;

    background: #fff0f4;

    color: #e96787;

    padding: 10px 20px;

    border-radius: 20px;

    font-family: inherit;

    font-size: 10px;
}


/* FINAL CTA */

.course-final-cta {
    background:
        linear-gradient(
            135deg,
            #f56f91,
            #e97998
        );

    color: #fff;

    border-radius: 25px;

    padding: 30px 35px;

    display: flex;

    justify-content: space-between;

    align-items: center;
}

.course-final-cta span {
    font-size: 11px;

    opacity: .85;
}

.course-final-cta h2 {
    font-size: 20px;

    margin: 8px 0 0;

    font-weight: 900;
}

.cta-buy {
    width: auto;

    background: #fff;

    color: #e96787;

    min-width: 180px;
}

.cta-buy:hover {
    background: #fff;

    color: #e96787;
}


/* MOBILE */

@media(max-width:991px) {

    .course-detail-row {
        display: block;
    }

    .course-purchase-card {
        margin-top: 30px;
    }

    .course-side-card {
        margin-top: 30px;
    }

}

@media(max-width:767px) {

    .course-detail-hero {
        padding-top: 25px;
    }

    .course-detail-image {
        height: 330px;

        border-radius: 22px;
    }

    .course-image-caption {
        width: 90%;
    }

    .course-purchase-card {
        padding: 25px 20px;

        border-radius: 22px;
    }

    .course-purchase-card h1 {
        font-size: 22px;
    }

    .course-content-card,
    .course-comments-card {
        padding: 25px 20px;
    }

    .course-final-cta {
        display: block;

        text-align: center;
    }

    .cta-buy {
        margin-top: 20px;
    }

}
/* =====================================================
   BLOG PAGE
===================================================== */

.blog-hero {
    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(255,190,207,.35),
            transparent 35%
        ),
        #fff7fa;

    padding: 65px 0 45px;

    overflow: hidden;
}

.blog-hero-content {
    padding: 45px 20px 30px 0;
}

.blog-over-title {
    color: #f06f8d;

    font-size: 11px;

    font-weight: bold;
}

.blog-hero h1 {
    font-size: 36px;

    line-height: 1.8;

    font-weight: 900;

    color: #4d3d42;

    margin: 15px 0;
}

.blog-hero p {
    color: #999;

    font-size: 13px;

    line-height: 2;

    max-width: 480px;
}

.blog-search {
    width: 440px;
    max-width: 100%;

    background: #fff;

    border-radius: 40px;

    padding: 6px;

    margin-top: 25px;

    box-shadow:
        0 10px 35px rgba(80,50,60,.08);

    display: flex;
}

.blog-search input {
    border: 0;

    outline: 0;

    flex: 1;

    padding: 12px 18px;

    font-family: inherit;

    font-size: 11px;

    background: transparent;
}

.blog-search button {
    width: 42px;
    height: 42px;

    border: 0;

    border-radius: 50%;

    background: #f56f91;

    color: #fff;

    cursor: pointer;

    transition: .3s;
}

.blog-search button:hover {
    transform: scale(1.08);
}

.blog-hero-image {
    height: 370px;

    border-radius: 45% 45% 25px 25px;

    overflow: hidden;

    position: relative;

    box-shadow:
        0 25px 60px rgba(90,50,60,.12);
}

.blog-hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s;
}

.blog-hero-image:hover img {
    transform: scale(1.04);
}

.blog-hero-decoration {
    position: absolute;

    right: 25px;
    bottom: 25px;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: #fff;

    color: #f56f91;

    display: flex;

    align-items: center;
    justify-content: center;

    box-shadow: 0 10px 25px rgba(0,0,0,.1);
}


/* FILTER */

.blog-filter-section {
    background: #fff;

    padding: 22px 0;

    border-bottom: 1px solid #f8edf0;
}

.blog-filter {
    text-align: center;
}

.blog-filter-btn {
    border: 0;

    background: transparent;

    color: #999;

    padding: 10px 17px;

    border-radius: 25px;

    font-family: inherit;

    font-size: 10px;

    margin: 3px;

    transition: .3s;

    cursor: pointer;
}

.blog-filter-btn i {
    margin-left: 5px;
}

.blog-filter-btn:hover,
.blog-filter-btn.active {
    background: #fff0f4;

    color: #e96586;
}


/* FEATURED */

.blog-featured-section {
    background: #fff;
}

.section-heading {
    margin-bottom: 25px;
}

.section-heading > span {
    color: #f56f91;

    font-size: 10px;

    font-weight: bold;
}

.section-heading h2 {
    font-size: 23px;

    font-weight: 900;

    margin-top: 7px;
}

.featured-blog-card {
    background: #fff8fa;

    border-radius: 28px;

    padding: 15px;

    overflow: hidden;
}

.featured-blog-image {
    height: 350px;

    border-radius: 22px;

    overflow: hidden;

    position: relative;
}

.featured-blog-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: .6s;
}

.featured-blog-image:hover img {
    transform: scale(1.04);
}

.article-category {
    position: absolute;

    right: 15px;
    top: 15px;

    background: #fff;

    color: #e96787;

    padding: 7px 12px;

    border-radius: 20px;

    font-size: 9px;

    box-shadow: 0 5px 15px rgba(0,0,0,.07);
}

.featured-blog-content {
    padding: 45px 35px;
}

.article-meta {
    color: #aaa;

    font-size: 9px;

    margin-bottom: 12px;
}

.article-meta span {
    margin-left: 15px;
}

.article-meta i {
    color: #f56f91;

    margin-left: 4px;
}

.featured-blog-content h2 {
    font-size: 25px;

    font-weight: 900;

    line-height: 1.7;

    color: #4c3d42;
}

.featured-blog-content p {
    color: #888;

    font-size: 12px;

    line-height: 2.2;

    margin: 15px 0 25px;
}

.read-more-btn {
    display: inline-block;

    background: #f56f91;

    color: #fff;

    padding: 12px 20px;

    border-radius: 25px;

    font-size: 10px;

    text-decoration: none;

    transition: .3s;
}

.read-more-btn:hover {
    color: #fff;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(245,111,145,.25);
}

.read-more-btn i {
    margin-right: 15px;
}


/* BLOG CARDS */

.blog-list-section {
    background: #fffafa;
}

.blog-list-heading {
    margin-bottom: 30px;
}

.blog-card {
    background: #fff;

    border-radius: 22px;

    overflow: hidden;

    margin-bottom: 30px;

    box-shadow:
        0 8px 30px rgba(80,50,60,.06);

    transition: all .35s ease;
}

.blog-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 45px rgba(80,50,60,.11);
}

.blog-card-image {
    height: 215px;

    position: relative;

    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .6s;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 22px;
}

.blog-card-body h3 {
    font-size: 15px;

    font-weight: 900;

    color: #4d3d42;

    line-height: 1.8;

    min-height: 52px;
}

.blog-card-body p {
    color: #999;

    font-size: 10px;

    line-height: 2;

    min-height: 40px;
}

.blog-read-more {
    display: inline-block;

    color: #e96787;

    font-size: 10px;

    font-weight: bold;

    margin-top: 10px;

    text-decoration: none;
}

.blog-read-more i {
    margin-right: 8px;

    transition: .3s;
}

.blog-read-more:hover i {
    margin-right: 13px;
}


/* PAGINATION */

.blog-pagination {
    text-align: center;

    margin-top: 20px;
}

.blog-pagination a {
    display: inline-flex;

    width: 34px;
    height: 34px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    color: #999;

    margin: 3px;

    font-size: 10px;

    text-decoration: none;

    transition: .3s;
}

.blog-pagination a:hover,
.blog-pagination a.active {
    background: #f56f91;

    color: #fff;
}


/* NO RESULT */

.blog-no-result {
    text-align: center;

    padding: 60px 20px;

    color: #aaa;
}

.blog-no-result > i {
    font-size: 35px;

    color: #f4b4c3;
}

.blog-no-result h3 {
    color: #666;

    font-size: 15px;
}


/* NEWSLETTER */

.blog-newsletter {
    background: #fffafa;

    padding: 0 0 60px;
}

.newsletter-box {
    background:
        linear-gradient(
            135deg,
            #fff0f4,
            #fff8fa
        );

    border-radius: 25px;

    padding: 25px 30px;

    display: flex;

    align-items: center;

    gap: 20px;
}

.newsletter-icon {
    width: 55px;
    height: 55px;

    min-width: 55px;

    background: #f56f91;

    color: #fff;

    border-radius: 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 20px;
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h3 {
    font-size: 14px;

    font-weight: 900;

    margin: 0 0 7px;
}

.newsletter-content p {
    color: #999;

    font-size: 10px;

    margin: 0;
}

.newsletter-form {
    display: flex;

    background: #fff;

    border-radius: 30px;

    padding: 4px;

    width: 310px;
}

.newsletter-form input {
    border: 0;

    outline: 0;

    flex: 1;

    padding: 9px 15px;

    font-family: inherit;

    font-size: 10px;
}

.newsletter-form button {
    border: 0;

    background: #f56f91;

    color: #fff;

    border-radius: 25px;

    padding: 9px 18px;

    font-family: inherit;

    font-size: 10px;
}


/* MOBILE */

@media(max-width:767px) {

    .blog-hero {
        padding-top: 30px;
    }

    .blog-hero-content {
        padding: 15px 5px 30px;
        text-align: center;
    }

    .blog-hero h1 {
        font-size: 27px;
    }

    .blog-hero p {
        font-size: 11px;
    }

    .blog-search {
        margin-left: auto;
        margin-right: auto;
    }

    .blog-hero-image {
        height: 280px;
    }

    .blog-filter {
        white-space: nowrap;

        overflow-x: auto;

        text-align: right;

        padding-bottom: 5px;
    }

    .blog-filter-btn {
        display: inline-block;
    }

    .featured-blog-image {
        height: 260px;
    }

    .featured-blog-content {
        padding: 25px 15px;
    }

    .featured-blog-content h2 {
        font-size: 20px;
    }

    .newsletter-box {
        display: block;

        text-align: center;
    }

    .newsletter-icon {
        margin: 0 auto 15px;
    }

    .newsletter-form {
        width: 100%;

        margin-top: 20px;
    }

}
.logo-box img {
    filter:
        brightness(0)
        saturate(100%)
        invert(53%)
        sepia(25%)
        saturate(1800%)
        hue-rotate(315deg)
        brightness(105%)
        contrast(95%);

    transition: all .35s ease;
}

.logo-box:hover img {
    filter:
        brightness(0)
        saturate(100%)
        invert(58%)
        sepia(40%)
        saturate(2200%)
        hue-rotate(315deg)
        brightness(110%)
        contrast(100%)
        drop-shadow(0 4px 10px rgba(245,111,145,.25));

    transform: scale(1.03);
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9 {
        float: right !important;
    }
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9 {
        float: right !important;
    }
}

/* =====================================================
   STICKY NAVBAR
===================================================== */

@media (min-width: 768px) {

    .main-navbar {
        position: relative;
        z-index: 1000;
        transition:
            all .35s ease;
    }

    .main-navbar.is-sticky {
        position: fixed;
        top: 0;
        right: 0;
        left: 0;

        width: 100%;

        background: rgba(255,255,255,.96);

        box-shadow:
            0 8px 30px rgba(70,50,60,.10);

        animation:
            navbarSlideDown .35s ease forwards;

        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

}

@keyframes navbarSlideDown {

    from {
        opacity: 0;
        transform: translateY(-100%);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   BACK TO TOP
===================================================== */

.back-to-top {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 48px;
    height: 48px;

    border: 0;

    border-radius: 50%;

    background: #f56f91;

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 16px;

    cursor: pointer;

    z-index: 9999;

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(20px)
        scale(.8);

    transition:
        opacity .3s ease,
        visibility .3s ease,
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;

    box-shadow:
        0 8px 25px rgba(245,111,145,.25);
}


/* وقتی فعال شد */

.back-to-top.show {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0)
        scale(1);

}


/* Hover */

.back-to-top:hover {

    background: #e85f82;

    transform:
        translateY(-5px)
        scale(1.08);

    box-shadow:
        0 13px 30px rgba(245,111,145,.35);

}


/* آیکون */

.back-to-top i {

    transition:
        transform .3s ease;

}


.back-to-top:hover i {

    animation:
        arrowUp .7s ease infinite;

}


@keyframes arrowUp {

    0% {
        transform: translateY(3px);
    }

    50% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(3px);
    }

}


/* Click */

.back-to-top:active {

    transform:
        translateY(-2px)
        scale(.94);

}


/* موبایل */

@media (max-width: 767px) {

    .back-to-top {

        width: 44px;
        height: 44px;

        right: 15px;
        bottom: 15px;

        font-size: 14px;

    }

}

/* =====================================================
   CHECKOUT
===================================================== */

.checkout-security {
    float: left;

    padding-top: 25px;

    color: #999;

    font-size: 10px;
}

.checkout-security i {
    color: #67b795;

    margin-left: 5px;
}

.checkout-security span {
    display: inline-block;

    height: 15px;

    border-right: 1px solid #eee;

    margin: 0 12px;

    vertical-align: middle;
}


/* HEADER */

.checkout-header {
    background: #fff8fa;

    padding: 35px 0 45px;
}

.checkout-steps {
    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 35px;
}

.checkout-step {
    display: flex;

    align-items: center;

    color: #bbb;

    font-size: 10px;
}

.checkout-step span {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #f5eef0;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-left: 8px;

    transition: .3s;
}

.checkout-step.active {
    color: #e96787;
}

.checkout-step.active span,
.checkout-step.done span {
    background: #f56f91;

    color: #fff;

    box-shadow:
        0 6px 15px rgba(245,111,145,.2);
}

.checkout-line {
    width: 70px;

    height: 2px;

    background: #eee;

    margin: 0 12px;
}

.checkout-line.active {
    background: #f5b4c3;
}

.checkout-title {
    text-align: center;
}

.checkout-title > span {
    color: #f56f91;

    font-size: 10px;

    font-weight: bold;
}

.checkout-title h1 {
    font-size: 27px;

    font-weight: 900;

    margin: 7px 0;
}

.checkout-title p {
    color: #999;

    font-size: 11px;
}


/* MAIN */

.checkout-section {
    background: #fffafa;

    padding: 45px 0 80px;

    min-height: 650px;
}

.checkout-row {
    display: flex;

    align-items: flex-start;
}

.checkout-card {
    background: #fff;

    border-radius: 25px;

    box-shadow:
        0 12px 40px rgba(70,50,60,.07);

    padding: 28px;

    margin-bottom: 25px;
}

.checkout-card-title {
    display: flex;

    align-items: center;

    justify-content: space-between;

    padding-bottom: 20px;

    border-bottom: 1px solid #f5edef;

    margin-bottom: 10px;
}

.checkout-card-title > div > span {
    color: #f56f91;

    font-size: 9px;

    font-weight: bold;
}

.checkout-card-title h2 {
    font-size: 17px;

    font-weight: 900;

    margin: 6px 0 0;
}

.invoice-number {
    color: #bbb;

    font-size: 9px;
}


/* INVOICE */

.invoice-item {
    display: flex;

    align-items: center;

    padding: 18px 0;

    border-bottom: 1px solid #f7eef0;
}

.invoice-image {
    width: 90px;
    height: 80px;

    min-width: 90px;

    border-radius: 14px;

    overflow: hidden;

    margin-left: 15px;
}

.invoice-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.invoice-item-info {
    flex: 1;
}

.invoice-category {
    color: #e96787;

    font-size: 8px;

    background: #fff1f4;

    padding: 4px 8px;

    border-radius: 10px;
}

.invoice-item-info h3 {
    font-size: 12px;

    font-weight: bold;

    color: #555;

    margin: 10px 0 7px;
}

.invoice-item-info p {
    color: #aaa;

    font-size: 8px;

    margin: 0;
}

.invoice-item-info p i {
    color: #f56f91;

    margin-left: 4px;
}

.invoice-item-price {
    text-align: left;

    min-width: 110px;
}

.invoice-item-price del {
    display: block;

    color: #bbb;

    font-size: 8px;

    margin-bottom: 5px;
}

.invoice-item-price strong {
    color: #555;

    font-size: 12px;

    display: inline-block;
}

.invoice-item-price span {
    color: #999;

    font-size: 8px;
}


/* CUSTOMER */

.invoice-customer {
    display: flex;

    align-items: center;

    background: #fff8fa;

    padding: 15px;

    border-radius: 15px;

    margin-top: 20px;
}

.customer-icon {
    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: #f56f91;

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-left: 12px;
}

.invoice-customer span {
    display: block;

    color: #aaa;

    font-size: 8px;

    margin-bottom: 5px;
}

.invoice-customer strong {
    color: #555;

    font-size: 10px;
}

.customer-phone {
    margin-right: auto;

    text-align: left;
}


/* PAYMENT */

.checkout-block {
    margin-bottom: 25px;
}

.checkout-block > label {
    display: block;

    color: #555;

    font-size: 10px;

    margin-bottom: 10px;

    font-weight: bold;
}

.checkout-block > label i {
    color: #f56f91;

    margin-left: 6px;
}


/* COUPON */

.coupon-box {
    display: flex;

    background: #fff;

    border: 1px solid #f2e4e8;

    border-radius: 13px;

    overflow: hidden;

    transition: .3s;
}

.coupon-box:focus-within {
    border-color: #f5a8ba;

    box-shadow:
        0 0 0 3px rgba(245,111,145,.08);
}

.coupon-box input {
    flex: 1;

    border: 0;

    outline: 0;

    padding: 13px;

    font-family: inherit;

    font-size: 10px;
}

.coupon-box button {
    border: 0;

    background: #fff0f4;

    color: #e96787;

    padding: 0 18px;

    font-family: inherit;

    font-size: 10px;

    cursor: pointer;
}

.coupon-message {
    margin-top: 8px;

    font-size: 9px;

    padding: 7px 10px;

    border-radius: 8px;
}

.coupon-message.success {
    background: #effaf5;

    color: #55a17f;
}

.coupon-message.error {
    background: #fff1f2;

    color: #dc6a78;
}


/* PAYMENT METHODS */

.payment-methods {
    display: flex;

    flex-direction: column;

    gap: 9px;
}

.payment-method {
    display: flex;

    align-items: center;

    border: 1px solid #f1e5e8;

    border-radius: 14px;

    padding: 12px;

    cursor: pointer;

    transition: all .25s ease;

    position: relative;
}

.payment-method:hover {
    border-color: #f3afbe;

    transform: translateX(-3px);
}

.payment-method.selected {
    border-color: #f56f91;

    background: #fff8fa;

    box-shadow:
        0 5px 15px rgba(245,111,145,.08);
}

.payment-method input {
    display: none;
}

.payment-radio {
    width: 20px;
    height: 20px;

    border: 1px solid #ddd;

    border-radius: 50%;

    margin-left: 10px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: transparent;

    font-size: 9px;
}

.payment-method.selected .payment-radio {
    background: #f56f91;

    border-color: #f56f91;

    color: #fff;
}

.payment-method-logo {
    margin-left: 12px;
}

.gateway-logo {
    width: 38px;
    height: 38px;

    border-radius: 10px;

    background: #f8eef1;

    color: #e96787;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 13px;

    font-weight: bold;
}

.payment-method-info strong {
    display: block;

    color: #555;

    font-size: 10px;

    margin-bottom: 4px;
}

.payment-method-info span {
    color: #aaa;

    font-size: 8px;
}


/* SUMMARY */

.checkout-summary {
    margin-top: 25px;

    border-top: 1px solid #f4e9ec;

    padding-top: 15px;
}

.checkout-summary > div {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 13px;

    color: #999;

    font-size: 9px;
}

.checkout-summary strong {
    color: #555;

    font-size: 10px;
}

.checkout-summary .discount-price {
    color: #55a17f;
}

.checkout-total {
    border-top: 1px dashed #eee;

    padding-top: 18px;

    margin-top: 10px;
}

.checkout-total span {
    color: #555;

    font-size: 11px;

    font-weight: bold;
}

.checkout-total strong {
    color: #e96787;

    font-size: 18px;
}


/* TERMS */

.checkout-terms {
    display: flex;

    align-items: flex-start;

    color: #999;

    font-size: 9px;

    line-height: 1.8;

    margin: 20px 0;

    cursor: pointer;
}

.checkout-terms input {
    margin: 3px 7px 0 8px;
}

.checkout-terms.shake {
    animation: checkoutShake .4s ease;
}

@keyframes checkoutShake {

    0%,100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

}


/* PAY BUTTON */

.checkout-pay-btn {
    width: 100%;

    border: 0;

    border-radius: 15px;

    background: #f56f91;

    color: #fff;

    padding: 15px;

    font-family: inherit;

    font-size: 14px;

    font-weight: bold;

    cursor: pointer;

    position: relative;

    overflow: hidden;

    transition: all .3s ease;
}

.checkout-pay-btn:hover {
    background: #e85e80;

    transform: translateY(-2px);

    box-shadow:
        0 12px 25px rgba(245,111,145,.25);
}

.checkout-pay-btn i {
    float: left;
}

.checkout-pay-btn.loading {
    opacity: .8;

    cursor: wait;
}

.payment-security {
    text-align: center;

    color: #aaa;

    font-size: 8px;

    margin-top: 12px;
}

.payment-security i {
    color: #64ae89;

    margin-left: 4px;
}


/* MOBILE */

@media (max-width: 767px) {

    .checkout-security {
        display: none;
    }

    .checkout-header {
        padding-top: 25px;
    }

    .checkout-steps {
        transform: scale(.85);

        margin-left: -30px;
        margin-right: -30px;
    }

    .checkout-line {
        width: 30px;

        margin: 0 5px;
    }

    .checkout-title h1 {
        font-size: 23px;
    }

    .checkout-row {
        display: block;
    }

    .checkout-card {
        padding: 20px;

        border-radius: 20px;
    }

    .invoice-item {
        align-items: flex-start;

        flex-wrap: wrap;
    }

    .invoice-image {
        width: 70px;
        height: 65px;

        min-width: 70px;
    }

    .invoice-item-info {
        min-width: calc(100% - 85px);
    }

    .invoice-item-price {
        width: 100%;

        text-align: right;

        margin-top: 12px;

        padding-right: 85px;
    }

    .customer-phone {
        display: none;
    }

}



.cancel-btn {
	margin-top:20px;
    width: 100%;
    border: 0;
    border-radius: 15px;
    background: #6ff598;
    color: #000;
    padding: 15px;
    font-family: inherit;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all .3s ease;
	display:inline-block;
	text-align:center;
}

/* =====================================================
   USER DASHBOARD
===================================================== */

.dashboard-user-top {
    float: left;

    display: flex;

    align-items: center;

    gap: 10px;

    padding-top: 17px;

    color: #777;

    font-size: 10px;
}

.dashboard-user-avatar {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    overflow: hidden;

    border: 3px solid #fff1f4;

    box-shadow: 0 5px 15px rgba(245,111,145,.15);
}

.dashboard-user-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* HEADER */

.dashboard-header {
    background:
        linear-gradient(
            135deg,
            #fff6f8,
            #fffafb
        );

    padding: 40px 0;
}

.dashboard-welcome {
    display: flex;

    align-items: center;

    justify-content: space-between;
}

.dashboard-welcome > div:first-child > span {
    color: #f56f91;

    font-size: 10px;

    font-weight: bold;
}

.dashboard-welcome h1 {
    margin: 8px 0;

    font-size: 28px;

    font-weight: 900;

    color: #555;
}

.dashboard-welcome h1 i {
    color: #f56f91;

    font-size: 18px;
}

.dashboard-welcome p {
    color: #999;

    font-size: 10px;

    margin: 0;
}

.dashboard-credit-box {
    display: flex;

    align-items: center;

    background: #fff;

    border-radius: 18px;

    padding: 15px 20px;

    min-width: 220px;

    box-shadow:
        0 10px 30px rgba(70,50,60,.06);
}

.credit-icon {
    width: 45px;
    height: 45px;

    border-radius: 14px;

    background: #fff0f4;

    color: #f56f91;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-left: 12px;

    font-size: 18px;
}

.dashboard-credit-box span {
    display: block;

    color: #aaa;

    font-size: 8px;

    margin-bottom: 6px;
}

.dashboard-credit-box strong {
    color: #555;

    font-size: 13px;
}


/* MAIN */

.dashboard-section {
    background: #fffafa;

    padding: 40px 0 80px;

    min-height: 700px;
}


/* SIDEBAR */

.dashboard-sidebar {
    background: #fff;

    border-radius: 23px;

    padding: 20px;

    box-shadow:
        0 10px 35px rgba(70,50,60,.06);

    position: sticky;

    top: 90px;
}

.dashboard-profile-mini {
    text-align: center;

    padding: 5px 0 20px;

    border-bottom: 1px solid #f7edef;
}

.dashboard-avatar {
    width: 80px;
    height: 80px;

    border-radius: 50%;

    margin: 0 auto 12px;

    position: relative;

    border: 4px solid #fff1f4;

    box-shadow: 0 8px 20px rgba(245,111,145,.12);
}

.dashboard-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 50%;
}

.avatar-edit {
    position: absolute;

    bottom: -2px;
    right: -2px;

    width: 27px;
    height: 27px;

    border: 2px solid #fff;

    border-radius: 50%;

    background: #f56f91;

    color: #fff;

    cursor: pointer;

    font-size: 9px;

    transition: .25s;
}

.avatar-edit:hover {
    transform: scale(1.1);
}

.dashboard-profile-mini strong {
    display: block;

    color: #555;

    font-size: 12px;

    margin-bottom: 5px;
}

.dashboard-profile-mini span {
    color: #aaa;

    font-size: 8px;
}


/* MENU */

.dashboard-menu {
    list-style: none;

    padding: 15px 0 0;

    margin: 0;
}

.dashboard-menu li {
    margin-bottom: 5px;
}

.dashboard-menu li a {
    display: flex;

    align-items: center;

    color: #888;

    padding: 12px;

    border-radius: 12px;

    font-size: 10px;

    text-decoration: none;

    transition: all .25s ease;
}

.dashboard-menu li a i {
    width: 25px;

    color: #bbb;

    font-size: 14px;

    transition: .25s;
}

.dashboard-menu li a b {
    margin-right: auto;

    min-width: 20px;
    height: 20px;

    border-radius: 10px;

    background: #fff0f4;

    color: #f56f91;

    text-align: center;

    line-height: 20px;

    font-size: 8px;
}

.dashboard-menu li a:hover {
    background: #fff7f9;

    color: #e96787;

    transform: translateX(-3px);
}

.dashboard-menu li.active a {
    background: #fff0f4;

    color: #e96787;

    font-weight: bold;
}

.dashboard-menu li.active a i {
    color: #f56f91;
}

.menu-separator {
    border-top: 1px solid #f7edef;

    margin: 15px 0;
}


/* CONTENT */

.dashboard-content {
    min-height: 600px;
}

.dashboard-tab {
    display: none;
}

.dashboard-tab.active {
    display: block;
}

.dashboard-page-title {
    margin-bottom: 25px;
}

.dashboard-page-title > span {
    color: #f56f91;

    font-size: 9px;

    font-weight: bold;
}

.dashboard-page-title h2 {
    font-size: 22px;

    font-weight: 900;

    color: #555;

    margin: 7px 0;
}

.dashboard-page-title p {
    color: #999;

    font-size: 9px;

    margin: 0;
}


/* CARD */

.dashboard-card {
    background: #fff;

    border-radius: 22px;

    padding: 25px;

    margin-bottom: 20px;

    box-shadow:
        0 10px 35px rgba(70,50,60,.05);
}

.dashboard-card-heading {
    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid #f7edef;

    padding-bottom: 17px;

    margin-bottom: 20px;
}

.dashboard-card-heading > div {
    display: flex;

    align-items: center;
}

.dashboard-card-heading i {
    width: 35px;
    height: 35px;

    border-radius: 10px;

    background: #fff0f4;

    color: #f56f91;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-left: 10px;
}

.dashboard-card-heading strong {
    font-size: 11px;

    color: #555;
}

.dashboard-card-heading > span {
    color: #aaa;

    font-size: 8px;
}


/* PROFILE */

.profile-edit-area {
    display: flex;

    gap: 30px;
}

.profile-photo-column {
    width: 150px;

    min-width: 150px;

    text-align: center;
}

.profile-large-avatar {
    width: 120px;
    height: 120px;

    border-radius: 50%;

    overflow: hidden;

    margin: 0 auto 10px;

    position: relative;

    border: 5px solid #fff0f4;
}

.profile-large-avatar img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.profile-large-avatar button {
    position: absolute;

    bottom: 0;
    right: 0;

    left: 0;

    border: 0;

    background: rgba(245,111,145,.9);

    color: #fff;

    padding: 7px;

    font-family: inherit;

    font-size: 8px;

    cursor: pointer;
}

.profile-photo-column > small {
    color: #bbb;

    font-size: 7px;
}

.profile-form {
    flex: 1;
}


/* FIELDS */

.dashboard-field {
    margin-bottom: 17px;
}

.dashboard-field label {
    display: block;

    color: #666;

    font-size: 9px;

    margin-bottom: 7px;

    font-weight: bold;
}

.dashboard-field input,
.dashboard-field select,
.dashboard-field textarea {
    width: 100%;

    border: 1px solid #f0e4e7;

    border-radius: 10px;

    padding: 10px 12px;

    outline: none;

    background: #fff;

    color: #666;

    font-family: inherit;

    font-size: 9px;

    transition: .25s;
}

.dashboard-field input:focus,
.dashboard-field select:focus,
.dashboard-field textarea:focus {
    border-color: #f5aabd;

    box-shadow:
        0 0 0 3px rgba(245,111,145,.07);
}

.dashboard-field input:disabled {
    background: #fafafa;

    color: #aaa;
}

.dashboard-field small {
    display: block;

    color: #aaa;

    font-size: 7px;

    margin-top: 5px;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;

    left: 12px;
    top: 11px;

    color: #62b18b;

    font-size: 13px;
}


/* BUTTON */

.dashboard-primary-btn {
    border: 0;

    background: #f56f91;

    color: #fff;

    padding: 12px 25px;

    border-radius: 11px;

    font-family: inherit;

    font-size: 9px;

    cursor: pointer;

    transition: .3s;
}

.dashboard-primary-btn:hover {
    background: #e85f82;

    transform: translateY(-2px);

    box-shadow:
        0 8px 20px rgba(245,111,145,.2);
}

.dashboard-primary-btn i {
    margin-left: 5px;
}


/* CREDIT */

.account-credit-card {
    display: flex;

    align-items: center;

    padding: 18px 22px;
}

.credit-card-icon {
    width: 45px;
    height: 45px;

    border-radius: 13px;

    background: #fff0f4;

    color: #f56f91;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-left: 12px;

    font-size: 17px;
}

.account-credit-card span {
    display: block;

    color: #999;

    font-size: 8px;

    margin-bottom: 5px;
}

.account-credit-card strong {
    display: block;

    color: #555;

    font-size: 14px;
}

.account-credit-card p {
    color: #aaa;

    font-size: 7px;

    margin: 5px 0 0;
}

.credit-btn {
    margin-right: auto;

    border: 1px solid #f4b2c1;

    background: #fff;

    color: #e96787;

    border-radius: 10px;

    padding: 9px 14px;

    font-family: inherit;

    font-size: 8px;

    cursor: pointer;

    transition: .25s;
}

.credit-btn:hover {
    background: #fff0f4;
}


/* COURSE FILTER */

.course-filter-tabs {
    display: flex;

    gap: 7px;

    margin-bottom: 20px;
}

.course-filter-tabs button {
    border: 1px solid #f0e4e7;

    background: #fff;

    border-radius: 10px;

    padding: 8px 13px;

    color: #999;

    font-family: inherit;

    font-size: 8px;

    cursor: pointer;

    transition: .25s;
}

.course-filter-tabs button b {
    background: #f8f0f2;

    color: #aaa;

    border-radius: 10px;

    padding: 2px 5px;

    margin-right: 4px;
}

.course-filter-tabs button.active {
    background: #f56f91;

    color: #fff;

    border-color: #f56f91;
}

.course-filter-tabs button.active b {
    background: rgba(255,255,255,.2);

    color: #fff;
}


/* COURSE */

.dashboard-course {
    display: flex;

    background: #fff;

    border-radius: 18px;

    padding: 12px;

    margin-bottom: 12px;

    box-shadow:
        0 7px 25px rgba(70,50,60,.04);

    transition: .3s;
}

.dashboard-course:hover {
    transform: translateY(-3px);

    box-shadow:
        0 12px 30px rgba(70,50,60,.08);
}

.dashboard-course-image {
    width: 150px;

    min-width: 150px;

    height: 115px;

    border-radius: 13px;

    overflow: hidden;

    position: relative;

    margin-left: 18px;
}

.dashboard-course-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .5s ease;
}

.dashboard-course:hover .dashboard-course-image img {
    transform: scale(1.06);
}

.dashboard-course-image span {
    position: absolute;

    top: 8px;
    right: 8px;

    background: #f56f91;

    color: #fff;

    padding: 4px 7px;

    border-radius: 8px;

    font-size: 7px;
}

.dashboard-course-image span.free-course {
    background: #62b18b;
}

.dashboard-course-info {
    flex: 1;

    padding: 5px;
}

.dashboard-course-info > span {
    color: #e96787;

    font-size: 7px;
}

.dashboard-course-info h3 {
    font-size: 12px;

    color: #555;

    font-weight: bold;

    margin: 8px 0 15px;
}

.course-progress > div:first-child {
    display: flex;

    justify-content: space-between;

    color: #aaa;

    font-size: 7px;

    margin-bottom: 5px;
}

.course-progress strong {
    color: #f56f91;
}

.progress {
    height: 5px;

    background: #f6eef0;

    border-radius: 10px;

    margin-bottom: 10px;

    overflow: hidden;
}

.progress-bar {
    background: #f56f91;

    border-radius: 10px;
}

.course-view-btn {
    border: 0;

    background: #fff0f4;

    color: #e96787;

    padding: 7px 12px;

    border-radius: 8px;

    font-family: inherit;

    font-size: 8px;

    cursor: pointer;

    transition: .25s;
}

.course-view-btn:hover {
    background: #f56f91;

    color: #fff;
}

.course-view-btn i {
    margin-right: 5px;
}


/* INVOICE LIST */

.invoice-list-card {
    padding: 0;

    overflow: hidden;
}

.invoice-list-header,
.invoice-row {
    display: grid;

    grid-template-columns:
        1.2fr
        1fr
        1.2fr
        1fr
        .7fr;

    align-items: center;

    padding: 16px 20px;
}

.invoice-list-header {
    background: #fff7f9;

    color: #aaa;

    font-size: 8px;
}

.invoice-row {
    border-bottom: 1px solid #f8edef;

    color: #888;

    font-size: 8px;

    transition: .25s;
}

.invoice-row:hover {
    background: #fffafb;
}

.invoice-row:last-child {
    border-bottom: 0;
}

.invoice-row strong {
    color: #555;

    font-size: 8px;
}

.invoice-row button {
    border: 0;

    background: #fff0f4;

    color: #e96787;

    border-radius: 8px;

    padding: 7px;

    font-family: inherit;

    font-size: 7px;

    cursor: pointer;
}

.invoice-status {
    display: inline-block;

    padding: 5px 7px;

    border-radius: 8px;

    font-size: 7px;

    width: fit-content;
}

.invoice-status.paid {
    background: #eef9f4;

    color: #58a37f;
}

.invoice-status.pending {
    background: #fff7e9;

    color: #d59a48;
}


/* MOBILE */

@media (max-width: 767px) {

    .dashboard-user-top span {
        display: none;
    }

    .dashboard-welcome {
        display: block;
    }

    .dashboard-credit-box {
        margin-top: 20px;

        width: 100%;
    }

    .dashboard-sidebar {
        position: static;

        margin-bottom: 20px;

        padding: 10px;
    }

    .dashboard-profile-mini {
        display: none;
    }

    .dashboard-menu {
        display: flex;

        overflow-x: auto;

        padding: 5px 0;

        gap: 5px;
    }

    .dashboard-menu li {
        flex: 0 0 auto;

        margin: 0;
    }

    .dashboard-menu li a {
        white-space: nowrap;

        padding: 10px;
    }

    .dashboard-menu li a i {
        width: auto;

        margin-left: 5px;
    }

    .dashboard-menu li a b {
        display: none;
    }

    .dashboard-menu .menu-separator {
        display: none;
    }

    .profile-edit-area {
        display: block;
    }

    .profile-photo-column {
        width: 100%;

        margin-bottom: 25px;
    }

    .account-credit-card {
        display: block;

        text-align: center;
    }

    .account-credit-card .credit-card-icon {
        margin: 0 auto 10px;
    }

    .credit-btn {
        margin: 15px auto 0;
    }

    .dashboard-course {
        display: block;
    }

    .dashboard-course-image {
        width: 100%;

        height: 170px;

        margin: 0 0 12px;
    }

    .invoice-list-header {
        display: none;
    }

    .invoice-row {
        display: block;

        padding: 18px;
    }

    .invoice-row > * {
        display: block;

        margin-bottom: 8px;
    }

    .invoice-row button {
        margin-top: 5px;
    }

}