@import "reset.css";

@font-face {
    font-family: 'Gilroy';
    src: url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Extrabold.eot');
    src: local('Gilroy Extrabold'), local('Gilroy-Extrabold'),
        url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Extrabold.eot?#iefix') format('embedded-opentype'),
        url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Extrabold.woff') format('woff'),
        url('https://cdn.jsdelivr.net/gh/repalash/gilroy-free-webfont@fonts/Gilroy-Extrabold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Regular.ttf'),
        url('../fonts/Gilroy-Medium.ttf');
}

@font-face {
    font-family: "Mazzard";
    src: url("../fonts/MazzardH-Black.otf");
}

:root {
    --bs-link-color-rgb: #212529 !important;
}

html,
body {
    height: 100%;
    text-decoration: none;
}

a {
    text-decoration: none !important;
    cursor: pointer;
    color: #212529;
}

body {
    font-family: "Gilroy", sans-serif !important;
    background-color: #f7f6ff !important;
}

.font-mazzard {
    font-family: "Mazzard", "Gilroy", sans-serif !important;
    letter-spacing: 1px;
}

.main-modal {
    width: 100vw;
    height: 100vh;
    background-color: #00000070;
    position: fixed;
    top: 0;
    left: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.main-modal.show {
    opacity: 1;
    visibility: visible;
}

.main-modal .welcome-card {
    position: relative;
    transform: scale(0.7) translateY(50px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-modal.show .welcome-card {
    transform: scale(1) translateY(0);
}

.main-modal .welcome-card .welcome-card-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease;
    z-index: 10;
}

.main-modal .welcome-card .welcome-card-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.main-modal .welcome-card .welcome-card-close iconify-icon {
    color: white;
}

.main-modal .welcome-card .left .badge {
    width: max-content;
    height: 36px;
    background-color: #FFA52425;
    color: #FFA524;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0px 16px !important;
    margin-bottom: 16px;
}

.main-modal .welcome-card .right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.main-modal .welcome-card .right {
    padding: 6px;
    width: 429px;
    height: 100%;
    flex-shrink: 0;
}

.main-modal .welcome-card .left .title {
    font-size: 36px;
    font-weight: bold;
    color: #3F4250;
}

.main-modal .welcome-card .left .subtitle {
    color: #8D98B2;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 24px;
}

.main-modal .welcome-card .left .package .package-card .gift {
    height: 24px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    background-color: #E1306C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    position: absolute;
    padding: 0px 5px;
    top: 0;
    right: 0;
    gap: 5px;
}

.main-modal .welcome-card .left .package .package-card .title {
    color: #E1306C;
    font-size: 16px;
    font-weight: bold;
}

.main-modal .welcome-card .left .package .package-card .subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #3D4D77;
    margin-bottom: 0px;
}

.main-modal .welcome-card .left .package .package-card .divider {
    background-color: #ECECF4;
    width: 100%;
    height: 1px;
    margin: 16px 0px;
}

.main-modal .welcome-card .left .package .package-card .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.main-modal .welcome-card .left .package .package-card .footer .left {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.main-modal .welcome-card .left .package .package-card .footer .left .sub-price {
    font-size: 12px;
    color: #B0B9DC;
}

.main-modal .welcome-card .left .package .package-card .footer .left .price {
    font-size: 16px;
    font-weight: bold;
    color: #3D4D77;
}

.main-modal .welcome-card .left .package .package-card .footer .buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: white;
    border-radius: 12px;
    background-color: #E1306C;
    height: 45px;
    width: 100%;
    padding: 0px 16px;
}

.main-modal .welcome-card .left .package .package-card .footer .buy .buy-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-modal .welcome-card .left .package .package-card .footer .buy .buy-left span {
    font-size: 13px;
    font-weight: 500;
    height: 24px;
    line-height: 28px;
}

.main-modal .welcome-card .left .package .package-card {
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background-color: white;
    padding: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.main-modal .welcome-card .left .package {
    background-color: #F6F8FC;
    width: 324px;
    height: 237px;
    border-radius: 16px;
    padding: 12px;
    margin-bottom: 24px;
}

.main-modal .welcome-card .left .discount {
    width: 324px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
}

.main-modal .welcome-card .left .discount .title {
    font-size: 14px;
    font-weight: bold;
    color: #3F4250;
    text-align: center;
    width: 100%;
}

.main-modal .welcome-card .left .discount .coupon-input .left {
    display: flex;
    align-items: center;
    flex-direction: row !important;
    width: max-content !important;
}

.main-modal .welcome-card .left .discount .coupon-input input {
    background-color: transparent;
}

.main-modal .welcome-card .left .discount .coupon-input {
    background-color: #F6F8FC;
    border-radius: 12px;
    width: 100%;
    margin-top: 0px;
}

.main-modal .welcome-card .left .continue {
    width: 100%;
    margin-top: 24px;
    height: 58px;
    background-color: #202230;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.main-modal .welcome-card .left {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 12px 20px;
}

.main-modal .welcome-card {
    min-width: 950px;
    background-color: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-modal .free-tool-modal-card .free-tool-modal-card-header .title {
    font-size: 20px;
    font-weight: 600;
    color: #3F4250;
}

.main-modal .free-tool-modal-card .free-tool-modal-card-header .close {
    width: 25px;
    height: 25px;
    color: #3D4D77;
    cursor: pointer;
    user-select: none;
}

.main-modal .free-tool-modal-card .free-tool-modal-card-header {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    margin-bottom: 24px;
}

.main-modal .free-tool-modal-card .progress .progress-active {
    width: 33%;
    height: 100%;
    border-radius: 999px;
    background-color: #FFA524;
}

.main-modal .free-tool-modal-card .progress {
    width: 100%;
    background-color: #F4F7FB;
    height: 10px;
    border-radius: 999px;
    margin: 12px 0px;
}

.main-modal .free-tool-modal-card .adding-queue {
    font-size: 13px;
    color: #8D98B2;
    margin-bottom: 24px;
}

.main-modal .free-tool-modal-card .packages-title span {
    font-size: 14px;
    font-weight: 500;
    color: #3F4250;
    font-weight: 600;
}

.main-modal .free-tool-modal-card .packages-title {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 16px 0px;
}

.main-modal .free-tool-modal-card .package-list .package-item .left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-modal .free-tool-modal-card .package-list .package-item .left .logo {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: #ffffff15;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.main-modal .free-tool-modal-card .package-list .package-item .left .left-body {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.main-modal .free-tool-modal-card .package-list .package-item .left .left-body .subtitle {
    font-size: 12px;
    color: #ffffff60;
}

.main-modal .free-tool-modal-card .package-list .package-item .left .left-body .title {
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.main-modal .free-tool-modal-card .package-list .package-item button,
.main-modal .free-tool-modal-card .package-list .package-item a {
    padding: 10px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background-color: #ffffff15;
}

.main-modal .free-tool-modal-card .continue {
    width: 100%;
    height: 58px;
    background-color: #202230;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: white;
    font-weight: 500;
}

.main-modal .free-tool-modal-card .package-list .package-item {
    width: 100%;
    height: 64px;
    border-radius: 12px;
    background-color: #00ACED;
    padding: 12px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-modal .free-tool-modal-card .package-list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
}


.main-modal .free-tool-modal-card .waiting {
    font-size: 16px;
    font-weight: 600;
    color: #3F4250;
}

.main-modal .free-tool-modal-card .time {
    height: 50px;
    padding: 33px;
    background-color: #F6F8FC;
    border-radius: 12px;
    width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9BA5CC;
    font-weight: 500;
    margin: 0px auto;
    margin-bottom: 24px;
}

.main-modal .free-tool-modal-card .social-list .social-item .right button.yt {
    background-color: #FF3535;
}

.main-modal .free-tool-modal-card .social-list .social-item .right .icon.yt {
    color: #FF3535;
}

.main-modal .free-tool-modal-card .social-list .social-item .right button.tw {
    background-color: #00ACED;
}

.main-modal .free-tool-modal-card .social-list .social-item .right .icon.tw {
    color: #00ACED;
}

.main-modal .free-tool-modal-card .social-list .social-item .right button.insta {
    background-color: #E1306C;
}

.main-modal .free-tool-modal-card .social-list .social-item .right .icon.insta {
    color: #E1306C;
}

.main-modal .free-tool-modal-card .social-list .social-item .right button,
.main-modal .free-tool-modal-card .social-list .social-item .right a {
    height: 34px;
    padding: 0px 12px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.main-modal .free-tool-modal-card .social-list .social-item .right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-modal .free-tool-modal-card .social-list .social-item .left .title {
    font-size: 14px;
    font-weight: bold;
    color: #3F4250;
}

.main-modal .free-tool-modal-card .social-list .social-item .left .logo {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.main-modal .free-tool-modal-card .social-list .social-item .left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.main-modal .free-tool-modal-card .social-list .social-item {
    width: 100%;
    height: 76px;
    border-radius: 12px;
    background-color: #F6F8FC;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.main-modal .free-tool-modal-card .social-list {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
    width: 100%;
}

.main-modal .free-tool-modal-card {
    width: 360px;
    background-color: white;
    border-radius: 16px;
    padding: 30px;
    transform: scale(0.8) translateY(50px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.main-modal.show .free-tool-modal-card {
    transform: scale(1) translateY(0);
}

.topbar {
    background-color: #FFA524;
    height: 70px;
    width: 100%;
}

.topbar .container .left {
    gap: 16px;
}

.topbar .container .left .coupon-text {}

.topbar .container .left .coupon-btn {
    color: white;
    font-size: 14px;
    background-color: #FFFFFF15;
    border: 1px solid #FFFFFF25;
    height: 50px;
    padding: 16px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.topbar .container .right .order-query-btn {
    color: white;
    font-size: 14px;
    background-color: #FFFFFF05;
    border: 2px dashed #FFFFFF;
    border-radius: 8px;
    background-clip: padding-box;
    height: 45px;
    padding: 16px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.main-nav {
    height: 90px;
    width: 100%;
    background-color: white;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.main-nav .container ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0px;
}

.main-nav .container ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #45506E;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.main-nav .container .right {
    display: flex;
    align-items: center;
    gap: 8px;
}


.main-nav .container .right .hovered:hover {
    border-color: #FFA524;
}

.main-nav .container .right .hovered {
    transition: 0.2s all linear;
    cursor: pointer;
    user-select: none;
    position: relative;
    color: #3F4250;
    width: 45px;
    height: 45px;
    user-select: none;
    background-color: #FFA52405;
    border: 1px solid transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.main-nav .container .right .hovered .badge {
    position: absolute;
    top: 2px;
    right: 5px;
    width: 18px;
    height: 18px;
    background-color: #FFA524;
    border-radius: 12px;
    flex-shrink: 0;
    border: 2px solid #fff;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.main-nav .container .right .login {
    height: 45px;
    padding: 12px 20px;
    border-radius: 12px;
    background-color: #FFA524;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    font-weight: 500;
}

.main-nav .container .right .menu {
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    display: none;
}

/* Mobile menu base */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background-color: #181C25;
    z-index: 100000;
    display: none;
    flex-direction: column;
    padding: 16px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    border-bottom: 1px solid #262B36;
    margin-bottom: 12px;
}

.mobile-menu-close {
    background: transparent;
    border: 1px dashed #383947;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-item {
    height: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
    border-radius: 10px;
    color: #E5E7EF;
    background-color: #202230;
}

.mobile-menu-item .icon {
    color: #FFA524;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    display: none;
}

.mobile-menu-overlay.visible {
    display: block;
}

.container {
    max-width: 1440px !important;
}

#intro {
    height: 428px;
    width: 100%;
    margin: 35px 0px;
}

#intro .intro-row {
    display: flex;
    align-items: center;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 16px;
}

#intro .intro-row .selections {
    width: 268px;
    height: 100%;
    background-color: white;
    border-radius: 16px;
    flex-shrink: 0;
    padding: 16px;

}

#intro .intro-row .selections .selection {
    width: 100%;
    height: 80px;
    border: 1px solid #EBF1F7;
    padding: 0px 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #B0B9DC;
    border-radius: 12px;
    margin-bottom: 12px;
}

#intro .intro-row .selections .selection .left {
    display: flex;
    align-items: center;
    gap: 12px;
}

#intro .intro-row .selections .selection .left .logo {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F6F8FC;
}

#intro .intro-row .selections .selection .left .title {
    font-size: 14px;
}

#intro .intro-row .selections .selection.active .left .logo {
    background-color: #FFFFFF15;
}

#intro .intro-row .selections .selection.active .left .title {
    font-weight: 600;
}

#intro .intro-row .selections .selection.active {
    background-color: #202230 !important;
    border-color: transparent !important;
    color: white !important;
}

#intro .intro-row .selections .total {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

#intro .intro-row .selections .total .icon {
    color: #FFA524;
}

#intro .intro-row .selections .total .right {
    display: flex;
    align-items: start;
    flex-direction: column;
}

#intro .intro-row .selections .total .right .small {
    font-size: 12px;
    color: #B0B9DC;
}

#intro .intro-row .selections .total .right .big {
    font-size: 15px;
    font-weight: bold;
    color: #3D4D77;
}

#intro .intro-row .selections .buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: white;
    border-radius: 12px;
    background-color: #FFA524;
    height: 60px;
    width: 100%;
    padding: 0px 16px;
}

#intro .intro-row .selections .buy .left {
    display: flex;
    align-items: center;
    gap: 8px;
}

#intro .intro-row .selections .buy .left span {
    font-size: 15px;
    font-weight: 600;
    height: 24px;
    line-height: 28px;
}

/* Custom Dropdown Styles */
.custom-dropdown {
    background-color: white;
    border: 1px solid #EBF1F7;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-height: 200px;
    overflow-y: auto;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.custom-dropdown.show {
    opacity: 1;
    transform: translateY(0);
}

.dropdown-option {
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #F6F8FC;
}

.dropdown-option:last-child {
    border-bottom: none;
}

.dropdown-option:hover {
    background-color: #F6F8FC;
}

.dropdown-option .option-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dropdown-option .option-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F6F8FC;
}

.dropdown-option .option-title {
    font-size: 14px;
    color: #3D4D77;
    font-weight: 500;
}

.dropdown-option .option-price {
    font-size: 14px;
    color: #FFA524;
    font-weight: 600;
}

/* Selection hover effects */
#intro .intro-row .selections .selection {
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#intro .intro-row .selections .selection:hover {
    border-color: #FFA524;
}

#intro .intro-row .banner {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 16px;
    background: url("../img/lines-bg.png");
    background-color: white;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    overflow: hidden;

    padding: 52px 40px;
}

.banner-mobile {
    display: none;
    background-image: url("../img/banner-mobile.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 475px;
}


#intro .intro-row .banner .banner-content {
    display: flex;
    flex-direction: column;
    align-items: start;
    max-width: 550px;
    z-index: 99999;
    position: relative;
}

#intro .intro-row .banner .banner-content .cheap-badge {
    color: #FFA524;
    font-size: 14px;
    background-color: #FFA52405;
    border: 2px dashed #FFA524;
    border-radius: 8px;
    background-clip: padding-box;
    height: 42px;
    padding: 16px;
    gap: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;

    margin-bottom: 24px;
}

#intro .intro-row .banner .banner-content .title {
    font-size: 36px;
    color: #3D4D77;
    margin-bottom: 12px;
}

#intro .intro-row .banner .banner-content .title .primary {
    color: #FFA524;
    font-weight: bold;
}

#intro .intro-row .banner .banner-content .subtitle {
    color: #8D98B2;
    margin-bottom: 24px;
}

#intro .intro-row .banner .banner-content .actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

#intro .intro-row .banner .banner-content .actions button,
#intro .intro-row .banner .banner-content .actions a {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: #202230;
    gap: 8px;
    padding: 16px 25px;
    font-weight: bold;
    color: white !important;
}

#intro .intro-row .banner .banner-content .actions img {
    width: 151px;
    height: 30px;
    object-fit: contain;
}



#intro .intro-row .banner .figure {
    position: absolute;

    bottom: -55px;
    right: 0;
    width: 320px;
    height: 471px;
    object-fit: contain;
}

#intro .intro-row .advertisement {
    width: 250px;
    height: 100%;
    border-radius: 16px;
    flex-shrink: 0;
}

#intro .intro-row .advertisement img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

#popular-packages {
    padding: 35px 0px;
}

#popular-packages .header {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 24px;
}

#popular-packages .header .icon {
    color: #3F4250;
}

#popular-packages .header .title {
    color: #3F4250;
    font-size: 22px;
    font-weight: bold;
}

#popular-packages .package-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 12px;
    width: 100%;
}

#popular-packages .package-list .package {
    border-radius: 16px;
    background-color: white;
    padding: 16px;
    width: 100%;
    height: 170px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

#popular-packages .package-list .package {
    text-decoration: none;
    color: #212529;
}

#popular-packages .package-list .package .icon {
    margin-bottom: 8px;
}

/* Platform specific icon colors */
#popular-packages .package-list .package.instagram:hover {
    background-color: #E1306C;
    color: white;
}

#popular-packages .package-list .package.instagram:hover .icon,
#popular-packages .package-list .package.instagram:hover .service-count {
    color: white;
}

#popular-packages .package-list .package.instagram:hover .divider {
    background-color: #ffffff60;
}

#popular-packages .package-list .package.instagram .icon {
    color: #E1306C;
}

/* Facebook hover */
#popular-packages .package-list .package.facebook:hover {
    background-color: #1877F2;
    color: white;
}

#popular-packages .package-list .package.facebook:hover .icon,
#popular-packages .package-list .package.facebook:hover .service-count {
    color: white;
}

#popular-packages .package-list .package.facebook:hover .divider {
    background-color: #ffffff60;
}

#popular-packages .package-list .package.facebook .icon {
    color: #1877F2;
}

/* Twitter hover */
#popular-packages .package-list .package.twitter:hover {
    background-color: #1DA1F2;
    color: white;
}

#popular-packages .package-list .package.twitter:hover .icon,
#popular-packages .package-list .package.twitter:hover .service-count {
    color: white;
}

#popular-packages .package-list .package.twitter:hover .divider {
    background-color: #ffffff60;
}

#popular-packages .package-list .package.twitter .icon {
    color: #1DA1F2;
}

/* Twitch hover */
#popular-packages .package-list .package.twitch:hover {
    background-color: #9146FF;
    color: white;
}

#popular-packages .package-list .package.twitch:hover .icon,
#popular-packages .package-list .package.twitch:hover .service-count {
    color: white;
}

#popular-packages .package-list .package.twitch:hover .divider {
    background-color: #ffffff60;
}

#popular-packages .package-list .package.twitch .icon {
    color: #9146FF;
}

/* YouTube hover */
#popular-packages .package-list .package.youtube:hover {
    background-color: #FF0000;
    color: white;
}

#popular-packages .package-list .package.youtube:hover .icon,
#popular-packages .package-list .package.youtube:hover .service-count {
    color: white;
}

#popular-packages .package-list .package.youtube:hover .divider {
    background-color: #ffffff60;
}

#popular-packages .package-list .package.youtube .icon {
    color: #FF0000;
}

/* Discord hover */
#popular-packages .package-list .package.discord:hover {
    background-color: #5865F2;
    color: white;
}

#popular-packages .package-list .package.discord:hover .icon,
#popular-packages .package-list .package.discord:hover .service-count {
    color: white;
}

#popular-packages .package-list .package.discord:hover .divider {
    background-color: #ffffff60;
}

#popular-packages .package-list .package.discord .icon {
    color: #5865F2;
}

#popular-packages .package-list .package .title {
    font-weight: 600;
}

#popular-packages .package-list .package .subtitle {
    color: #B0B9DC;
    font-size: 13px;
}

#popular-packages .package-list .package .divider {
    margin: 12px 0px;
    width: 100%;
    height: 1px;
    background-color: #EBF1F7;
}

#popular-packages .package-list .package .service-count {
    font-size: 14px;
    font-weight: 600;
}

/* Platform specific service count colors */
#popular-packages .package-list .package.instagram .service-count {
    color: #E1306C;
}

#popular-packages .package-list .package.facebook .service-count {
    color: #1877F2;
}

#popular-packages .package-list .package.twitter .service-count {
    color: #1DA1F2;
}

#popular-packages .package-list .package.twitch .service-count {
    color: #9146FF;
}

#popular-packages .package-list .package.youtube .service-count {
    color: #FF0000;
}

#popular-packages .package-list .package.discord .service-count {
    color: #5865F2;
}

#popular-packages .view-all-service {
    padding: 20px;
    border-radius: 16px;
    background-color: #202230;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
    gap: 12px;
    color: white;
    margin-left: auto;
}

#popular-packages-with-tabs {
    padding: 35px 0px;
    width: 100%;
}

#popular-packages-with-tabs .header {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 24px;
}

#popular-packages-with-tabs .header .icon {
    color: #3F4250;
}

#popular-packages-with-tabs .header .title {
    color: #3F4250;
    font-size: 22px;
    font-weight: bold;
}

#popular-packages-with-tabs .tab {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

#popular-packages-with-tabs .tab .tab-item {
    background-color: white;
    color: #3D4D77;
    height: 50px;
    padding: 0px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Platform specific active tab colors */
#popular-packages-with-tabs .tab .tab-item:nth-child(1).active {
    background-color: #E1306C !important;
    /* Instagram */
    color: white !important;
}

#popular-packages-with-tabs .tab .tab-item:nth-child(2).active {
    background-color: #1877F2 !important;
    /* Facebook */
    color: white !important;
}

#popular-packages-with-tabs .tab .tab-item:nth-child(3).active {
    background-color: #9146FF !important;
    /* Twitch */
    color: white !important;
}

#popular-packages-with-tabs .tab .tab-item:nth-child(4).active {
    background-color: #1DA1F2 !important;
    /* Twitter */
    color: white !important;
}

#popular-packages-with-tabs .package-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 16px;
    width: 100%;
}

.main-package-item {
    background-color: white;
    width: 100%;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: start;
    flex-direction: column;
    position: relative;
}

.main-package-item.twitter .gift {
    background-color: #00ACED;
}

.main-package-item .gift {
    height: 24px;
    border-top-right-radius: 16px;
    border-bottom-left-radius: 16px;
    background-color: #E1306C;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    position: absolute;
    padding: 0px 5px;
    top: 0;
    right: 0;
    gap: 5px;
}

/* Platform specific icon colors for main package items */
.main-package-item.instagram .icon {
    color: #E1306C;
}

.main-package-item.facebook .icon {
    color: #1877F2;
}

.main-package-item.twitter .icon {
    color: #1DA1F2;
}

.main-package-item.twitch .icon {
    color: #9146FF;
}

.main-package-item .icon {
    color: #E1306C;
}

/* Platform specific title colors for main package items */
.main-package-item.instagram .title {
    color: #E1306C;
}

.main-package-item.facebook .title {
    color: #1877F2;
}

.main-package-item.twitter .title {
    color: #1DA1F2;
}

.main-package-item.twitch .title {
    color: #9146FF;
}

.main-package-item .title {
    font-weight: 600;
    margin-bottom: 4px;
    margin-top: 16px;
    color: #E1306C;
}

.main-package-item .subtitle {
    font-size: 14px;
    font-weight: 500;
}

.main-package-item .package-detail-btn {
    height: 42px;
    width: 100%;
    border-radius: 12px;
    background-color: #F6F8FC;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 16px;
    margin: 16px 0px;
}

.main-package-item .package-detail-btn span {
    font-size: 12px;
    font-weight: 500;
    color: #9BA5CC;
}

.main-package-item .package-detail-btn .icon {
    color: #9BA5CC;
}

.main-package-item .package-detail {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 24px;
}

.main-package-item .package-detail .package-detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

/* Platform specific package detail icon colors */
.main-package-item.instagram .package-detail .package-detail-item .icon {
    color: #E1306C;
}

.main-package-item.facebook .package-detail .package-detail-item .icon {
    color: #1877F2;
}

.main-package-item.twitter .package-detail .package-detail-item .icon {
    color: #1DA1F2;
}

.main-package-item.twitch .package-detail .package-detail-item .icon {
    color: #9146FF;
}

.main-package-item .package-detail .package-detail-item .icon {
    color: #E1306C;
}

.main-package-item .package-detail .package-detail-item .detail-title {
    font-size: 13px;
    font-weight: 500;
}

.main-package-item .divider {
    width: 100%;
    height: 1px;
    background-color: #ECECF4;
    margin: 16px;
}

.main-package-item .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.main-package-item .footer .left {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.main-package-item .footer .left .small {
    font-size: 12px;
    color: #B0B9DC;
}

.main-package-item .footer .left .price {
    font-size: 16px;
    color: #3D4D77;
    font-weight: bold;
}

.main-package-item .footer .right {}

/* Platform specific buy button colors */
.main-package-item.instagram .footer .right .buy {
    background-color: #E1306C;
}

.main-package-item.facebook .footer .right .buy {
    background-color: #1877F2;
}

.main-package-item.twitter .footer .right .buy {
    background-color: #1DA1F2;
}

.main-package-item.twitch .footer .right .buy {
    background-color: #9146FF;
}

.main-package-item .footer .right .buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: white;
    border-radius: 12px;
    background-color: #E1306C;
    height: 50px;
    padding: 0px 16px;
    flex-shrink: 0;
    gap: 12px;
}

.main-package-item .footer .right .buy .left {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: row;
    gap: 8px;
}

.main-package-item .footer .right .buy .left span {
    font-size: 13px;
    font-weight: 600;
    height: 24px;
    line-height: 25px;
}

#why-we {
    padding: 30px;
    background-color: #202230;
    border-radius: 16px;
}

#why-we .header {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 24px;
    color: white;
}

#why-we .header .icon {}

#why-we .header .title {
    font-size: 22px;
    font-weight: bold;
}

#why-we .card-item {
    background-color: #2A2C3C;
    border-radius: 12px;
    width: 100%;
    height: 190px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0px 16px;
    margin-bottom: 12px;
}

#why-we .card-item .logo {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 6px;
    background-color: #FFA524;
    display: flex;
    align-items: center;
    justify-content: center;
}

#why-we .card-item .logo .icon {
    color: white;
}

#why-we .card-item .right {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#why-we .card-item .right .title {
    font-weight: 600;
    color: white;
}

#why-we .card-item .right p {
    font-size: 14px;
    color: #8D98B2;
}

#sss {
    padding: 35px 0px;
}

#sss .header {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-bottom: 24px;
}

#sss .header .icon {
    color: #3F4250;
}

#sss .header .title {
    color: #3F4250;
    font-size: 22px;
    font-weight: bold;
}

#sss .sss-row {
    display: flex;
    align-items: start;
    gap: 16px;
}

#sss .sss-item {
    border-radius: 16px;
    background-color: white;
    width: 100%;
    min-width: 562px;
    margin-bottom: 20px;
}

#sss .sss-item .item-header {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    height: 80px;
    border-bottom: 1px solid #ECECF4;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#sss .sss-item .item-header:hover {
    background-color: #F6F8FC;
}

#sss .sss-item .body.opened+.item-header iconify-icon,
#sss .sss-item .item-header iconify-icon[style*="#FFA524"] {
    color: #FFA524 !important;
}

#sss .sss-item .body {
    padding: 16px 20px;
    width: 100%;
    display: none;
}

#sss .sss-item .body.opened {
    display: block;
}

#sss .sss-item .body p {
    color: #8D98B2;
    font-weight: 500;
    font-size: 14px;
}

#happy-customers {
    padding: 80px 0;
}

#happy-customers .header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
}

#happy-customers .header .icon {
    color: #3F4250;
}

#happy-customers .header .title {
    color: #3F4250;
    font-size: 22px;
    font-weight: bold;
}

#happy-customers .customer-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}

#happy-customers .customer {
    background-color: white;
    border-radius: 16px;
    padding: 20px;
}

#happy-customers .customer-header {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 6px;
}

#happy-customers .customer-header img {
    border-radius: 50%;
    object-fit: cover;
}

#happy-customers .customer-body {
    display: flex;
    flex-direction: column;
}

#happy-customers .customer-title {
    color: #3F4250;
    font-size: 16px;
    font-weight: 600;
}

#happy-customers .customer-stars {
    display: flex;
    gap: 4px;
}

#happy-customers .customer-stars iconify-icon {
    color: #FFD700;
}

#happy-customers .comment {
    margin: 16px 0px;
    background-color: #F6F8FC;
    padding: 10px 15px;
    border-radius: 12px;
}

#happy-customers .comment span {
    color: #8D98B2;
    font-size: 14px;
    line-height: 1.5;
}

#happy-customers .service {
    display: flex;
    align-items: center;
    gap: 6px;
}

#happy-customers .service-icon {
    color: #E1306C;
}

#happy-customers .service-title {
    color: #3D4D77;
    font-size: 14px;
    font-weight: 500;
}

#last-blogs {
    padding: 35px 0px;
}

#last-blogs .header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 40px;
}

#last-blogs .header .icon {
    color: #3F4250;
}

#last-blogs .header button,
#last-blogs .header a {
    width: 267px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 16px;
    background-color: #202230;
    color: white;
    padding: 0px 20px;
}

#last-blogs .header .title {
    color: #3F4250;
    font-size: 22px;
    font-weight: bold;
}

#last-blogs .blog-list {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
}

#last-blogs .blog-list.blog {
    grid-template-columns: 1fr 1fr 1fr;
}

#last-blogs .last-blog-cards .last-blog-card h1 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 16px;
    margin-bottom: 0px;
}

#last-blogs .last-blog-cards .last-blog-card img {
    width: 100%;
    height: 221px;
    object-fit: cover;
    border-radius: 12px;
}

#last-blogs .last-blog-cards .last-blog-card p {
    font-size: 14px;
    color: #8d8d8d;
    margin: 12px 0px;
}



#last-blogs .last-blog-cards .last-blog-card button,
#last-blogs .last-blog-cards .last-blog-card a {
    width: 100%;
    height: 46px;
    background-color: #202230;
    width: 100%;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}

#last-blogs .last-blog-cards .last-blog-card {
    width: 100%;
    border-radius: 16px;
    padding: 30px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: start;
}

#last-blogs .last-blog-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    width: 100%;
}

#last-blogs .blog-list .blog {
    width: 100%;
    height: 426px;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#last-blogs .blog-list .blog:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

#last-blogs .blog-list .blog img {
    width: 100%;
    height: 100%;
    border-radius: 16px;
}

#last-blogs .blog-list .blog .title-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 16px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3), transparent);
    padding: 20px 15px 20px 15px;
}

#last-blogs .blog-list .blog .title-container .title-text {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

#last-blogs .blog-list .blog .border-title {
    position: absolute;
    bottom: 10px;
    left: 0;
    background-color: #FFA524;
    width: 7px;
    border-top-right-radius: 16px;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    height: 45px;
}

#seo {
    padding: 35px 0px;
}

#seo .seo-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: start;
    background-color: white;
    border-radius: 16px;
}

#seo .seo-card .seo-title {
    font-size: 20px;
    color: #3D4D77;
    font-weight: bold;
}

#seo .seo-card .seo-content {
    font-size: 14px;
    font-weight: 500;
    color: #8D98B2;
}

footer {
    color: white !important;
}

footer .divider {
    width: 100%;
    height: 8px;
    background-color: #FFA524;
}

footer .footer-header {
    background-color: #1F242F;
    width: 100%;
    height: 100px;
}

footer .footer-header .container img {
    object-fit: contain;
}

footer .footer-header .container .statistics .statistic .title {
    font-size: 24px;
    font-weight: bold;
    color: white;
    margin: 0px;
}

footer .footer-header .container .statistics .statistic .subtitle {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff60;
}

footer .footer-header .container .statistics .statistic .logo {
    width: 64px;
    height: 74px;
    border: 1px dashed #fff;
    background-color: #ffffff10;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

footer .footer-header .container .statistics .statistic {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

footer .footer-header .container .statistics {
    width: 100%;
    height: 114px;
    padding: 0px 20px;
    background-color: #FFA524;
    border-radius: 16px;
    margin-top: -100px;
    display: flex;
    align-items: center;
    gap: 40px;
}

footer .footer-header .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

footer .footer-header .social-media {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

footer .footer-header .social-media button,
footer .footer-header .social-media a {
    border: 1px dashed #383947;
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
}

footer .footer-links {
    background-color: #181C25;
    background-image: url("../img/lines-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 314px;
}

footer .footer-links .container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 26px;
    place-items: center;
}

footer .footer-link-container {
    width: 100%;
}

footer .footer-link-header {
    background-color: #262B36;
    width: 100%;
    height: 46px;
    border-radius: 12px;
    border: 1px dashed #383947;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    margin-bottom: 16px;
}

footer .footer-link-header .left {
    display: flex;
    align-items: center;
    gap: 12px;
}

footer .footer-link-header .left .left-icon {
    color: #FFA524;
}

footer .footer-link-header .left span {
    font-weight: 600;
    font-size: 16px;
}

footer .footer-link-body {
    padding: 16px;
    background-color: #262B36;
    border-radius: 12px;
    border: 1px solid #383947;
}

footer .footer-link-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

footer .footer-link-item .dot {
    width: 10px;
    height: 10px;
    background-color: #FFA524;
    border-radius: 10px;
}

footer .footer-link-item span {
    font-weight: 500;
    font-size: 14px;
}
footer .footer-link-item span a{
    color:#fff;
}

footer .footer-copyright {
    width: 100%;
    height: 70px;
    background-color: #1F242F;
}

footer .footer-copyright .container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.page-header {
    width: 100%;

    margin: 35px 0px;
    border-radius: 16px;
}

.page-header .page-header-container {
    background-image: url("../img/lines-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 30px;
    background-color: white;
    position: relative;
}

.page-header .tab {
    display: flex;
    align-items: center;
    padding: 10px;
    gap: 8px;
    background-color: #202230;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    height: 60px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
}

.page-header .tab .tab-item {
    height: 40px;
    padding: 12px;
    font-size: 12px;
    color: white;
    cursor: pointer;
    user-select: none;
    flex-shrink: 0;
}

.page-header .tab .tab-item.active {
    background-color: #ffffff10;
    font-weight: bold;
}

.page-header .content {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 20px;
}

.page-header .content .content-badge {
    height: 96px;
    width: 70px;
    border-radius: 12px;
    background-color: #E1306C;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.page-header .content .content-badge .icon {}

.page-header .content .right {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.page-header .content .right .title {
    font-size: 20px;
    font-weight: bold;
}

.page-header .content .right .subtitle {
    color: #8D98B2;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.page-header .content .right .badge-btn {
    background-color: #E1306C05;
    border: 1px dashed #E1306C;
    padding: 8px 16px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 14px;
    color: #E1306C;
    font-weight: 600;
    flex-shrink: 0;
}

.page-header .content .right .badge-btn span {}

.page-header .content .right .badge-btn {}

.page-header img {
    position: absolute;
    bottom: 0;
    right: 0;
    object-fit: contain;
}

#package-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    width: 100%;
    margin: 0px 0px 35px 0px;
}

#package-list .package-item {
    width: 100%;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    cursor: pointer;
    user-select: none;
}

#package-list .package-item .left {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

#package-list .package-item .left .logo {
    background-color: #E1306C;
    width: 80px;
    height: 100%;
    border-top-left-radius: 16px;
    border-bottom-left-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#package-list .package-item:hover .right .go-btn {
    background-color: #E1306C;
    color: white;
}

#package-list .package-item .left .logo .icon {
    color: white;
}

#package-list .package-item .left .package-title {
    font-size: 16px;
    font-weight: 600;
}

#package-list .package-item .right {
    display: flex;
    align-items: center;
    gap: 12px;
}

#package-list .package-item .right .go-btn {
    width: 40px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F6F8FC;
}

#package-list .package-item .right .right-divider {
    width: 3px;
    height: 40px;
    background-color: #E1306C;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}


#packages-wrapper {
    width: 100%;
    display: flex;
    align-items: start;
    gap: 12px;
}

#packages-wrapper .left .packages {
    background-color: white;
    padding: 20px 16px;
    border-radius: 16px;
}

#packages-wrapper .left .packages .header {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

#packages-wrapper .left .packages .package-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
    width: 100%;
}

#packages-wrapper .left .packages .package-item img {
    position: absolute;
    top: 10px;
    right: 10px;
}

#packages-wrapper .left .packages .package-item {
    padding: 25px 12px;
    width: 100%;
    height: 90px;
    border-radius: 16px;
    border: 1px solid #EBF1F7;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    cursor: pointer;
    user-select: none;
}

#packages-wrapper .left .packages .package-item .item-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

#packages-wrapper .left .packages .package-item.active {
    background-color: #E1306C;
    color: white;
}

#packages-wrapper .left .packages .package-item .gift {
    position: absolute;
    bottom: 0;
    right: 0;

    border-top-left-radius: 16px;
    background-color: #E1306C;
    height: 20px;
    padding: 4px 10px;
    font-size: 10px;
    color: white;
}

#packages-wrapper .left .packages {
    margin-bottom: 12px;
}

.wallet {
    height: 80px;
    width: 100%;
    border-radius: 16px;
    background-color: white;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wallet .buy {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    border-radius: 12px;
    background-color: #E1306C;
    height: 56px;
    flex-shrink: 0;
    gap: 20px;
    width: 200px;
    padding: 0px 16px;
}

.wallet .buy .buy-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.wallet .buy .buy-left span {
    font-size: 15px;
    font-weight: 600;
    height: 24px;
    line-height: 28px;
}

.wallet-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wallet-left .icon {
    color: #E1306C;
}

.wallet-left .content {
    display: flex;
    align-items: start;
    flex-direction: column;
}

.wallet-left .content .sub-price {
    font-size: 12px;
    font-weight: 400;
    color: #B0B9DC;
}

.wallet-left .content .price {
    font-size: 16px;
    font-weight: bold;
    color: #3D4D77;
}

#packages-wrapper .left .packages .package-item.active .gift {
    background-color: white;
    color: #E1306C;
}

#packages-wrapper .left .packages .package-item.active .item-left .logo {
    background-color: #FFFFFF15;
    color: white;
}

#packages-wrapper .left .packages .package-item .item-left .logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background-color: #F6F8FC;
    color: #B0B9DC;
}

#packages-wrapper .left .packages .package-item .item-left .left-body {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#packages-wrapper .left .packages .package-item.active .item-left .left-body .title {
    color: white;
}

#packages-wrapper .left .packages .package-item.active .item-left .left-body .subtitle {
    color: white;
}

#packages-wrapper .left .packages .package-item .item-left .left-body .title {
    font-size: 16px;
    font-weight: bold;
    color: #3F4250;
}

#packages-wrapper .left .packages .package-item .item-left .left-body .subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #8D98B2;
}

#packages-wrapper .left .packages .package-item .item-right {
    display: flex;
    flex-direction: column;
    align-items: start;
}

#packages-wrapper .left .packages .package-item .item-right .sub-price {
    font-size: 13px;
    font-weight: 400;
    color: #B0B9DC;
}

#packages-wrapper .left .packages .package-item .item-right .price {
    font-size: 16px;
    font-weight: 600;
}

#packages-wrapper .left .packages .package-item.active .item-right .sub-price {
    color: #ffffff60;
}

#packages-wrapper .left .packages .package-item.active .item-right .price {
    color: white;
}


#packages-wrapper .left .packages .header .title {
    font-size: 18px;
    font-weight: bold;
    color: #3F4250;
}

#packages-wrapper .left {
    width: calc(100% - 354px);
}

#packages-wrapper .right {
    width: 354px;
    height: auto;
    background-color: white;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}

#packages-wrapper .right .right-header {
    width: 100%;
    background-color: #E1306C;
    height: 50px;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
}

#packages-wrapper .right .package-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

#packages-wrapper .right .properties {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin: 16px 0px;
}

#packages-wrapper .right .right-body {
    padding: 12px;
}

#how-order {
    margin: 35px 0px;
}

#how-order .how-order-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

#how-order .how-order-header .title {
    font-size: 22px;
    font-weight: 600;
    color: #3F4250;
}

#how-order .how-order-cards-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

#how-order .how-order-cards-container img {
    width: 520px;
    height: 400px;
}

#how-order .how-order-cards-container .how-order-cards-mobile {
    display: none;
}

#how-order .how-order-cards-container .how-order-cards {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 36px;
}

.how-order-card {
    padding: 20px;
    border-radius: 16px;
    height: 120px;
    width: 520px;
    background-color: white;
    display: flex;
    align-items: center;
    gap: 16px;
}

.how-order-card .logo {
    width: 64px;
    height: 80px;
    background-image: url("../img/logo-lines.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #FFA524;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 36px;
    font-weight: bold;
    color: white;
}

.how-order-card .how-order-card-body {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.how-order-card .how-order-card-body .title {
    font-size: 18px;
    font-weight: bold;
    color: #3D4D77;
}

.how-order-card .how-order-card-body p {
    margin: 0px;
    color: #8D98B2;
    font-size: 14px;
}

#packages-wrapper .right .properties .property {
    height: 36px;
    width: 100%;
    padding: 0px 10px;
    background-color: #16A34A15;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16A34A;
    border-radius: 6px;
    font-size: 12px;
    gap: 5px;
}

#packages-wrapper .right .customer-review {
    background-color: #FFA52415;
    border: 1px dashed #FFA524;
    border-radius: 6px;
    width: 100%;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    margin-bottom: 16px;
}

#packages-wrapper .right .customer-review .star-icon {
    color: #FFA524;
}

#packages-wrapper .right .customer-review .review-count {
    color: #FFA524;
    font-size: 14px;
    margin-top: 3px;
    font-weight: 500;
}

#packages-wrapper .right .what-properties {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 8px;
    margin-bottom: 16px;
}

#packages-wrapper .right .what-properties .what-property {
    height: 40px;
    width: 100%;
    background-color: #F6F8FC;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0px 16px;
}

#packages-wrapper .right .what-properties .what-property .icon {
    color: #E1306C;
}

#packages-wrapper .right .what-properties .what-property span {
    font-size: 14px;
    font-weight: 500;
    color: #3D4D77;
}

#packages-wrapper .right .footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

#packages-wrapper .right .footer img {}

#packages-wrapper .right .footer button,
#packages-wrapper .right .footer a {
    background-color: #16A34A15;
    height: 32px;
    font-size: 12px;
    display: flex;
    font-weight: 500;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    padding: 0px 12px;
    gap: 10px;
}

#packages-wrapper .right .footer button .icon,
#packages-wrapper .right .footer a .icon {
    color: #16A34A;
}

#packages-wrapper .right .footer button span,
#packages-wrapper .right .footer a span {
    color: #16A34A;
}

.create-order {
    /*margin: 35px 0px;*/
}

.create-order .order-service {
    margin: 12px 0px;
    background-color: white;
    padding: 16px;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    border-radius: 16px;
}

.create-order .order-service .order-service-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.create-order .order-service .order-service-left .logo {
    width: 40px;
    height: 40px;
    border: 2px solid #E1306C;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.create-order .order-service .order-service-left .order-service-body {
    display: flex;
    align-items: start;
    flex-direction: column;
}

.create-order .order-service .order-service-left .order-service-body .title {
    font-weight: 600;
    color: #3D4D77;
}

.create-order .order-service .order-service-left .order-service-body .brand {
    font-size: 13px;
    color: #8D98B2;
}

.create-order .order-service .order-service-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.create-order .order-service .order-service-right {
    color: #3D4D77;
    font-size: 14px;
}

.create-order .order-form {
    padding: 30px;
    border-radius: 16px;
    background-color: white;
    width: 100%;
    margin-bottom: 16px;
}

.create-order .order-form-header {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    margin-bottom: 24px;
}

.create-order .order-form-header .icon-field {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    background-color: #F6F8FC;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9BA5CC;
    flex-shrink: 0;
}

.create-order .order-form-header .order-form-body {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.create-order .order-form-header .order-form-body .title {
    font-size: 16px;
    font-weight: 600;
    color: #3D4D77;
}

.create-order .order-form-header .order-form-body .subtitle {
    font-size: 14px;
    font-weight: 400;
    color: #8D98B2;
}

.create-order .order-form .input-wrapper {
    background-color: #F6F8FC;
    border-radius: 12px;
    width: 100%;
    height: 55px;
    padding: 0px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.create-order .order-form .input-wrapper input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    background-color: transparent;
    font-size: 14px;
}

.create-order .order-form .input-wrapper input::placeholder {
    color: #9BA5CC;
}

.empty-cart {
    width: 100%;
    height: 270px;
    border-radius: 16px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.empty-cart .empty-cart-title {
    font-size: 20px;
    font-weight: 600;
}

.empty-cart .empty-cart-subtitle {
    color: #8D98B2;
    font-size: 15px;
    text-align: center;
}

.empty-cart button,
.empty-cart a {
    padding: 16px 80px;
    border-radius: 12px;
    background-color: #FFA524;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.popular-services-header .payment-methods .payment-method .payment-method-body span {
    color: #FFA524;
    font-size: 14px;
}

.popular-services-header .payment-methods .payment-method .payment-method-body .title {
    color: #3D4D77;
}

.popular-services-header .payment-methods .payment-method .payment-method-body {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.popular-services-header .payment-methods .payment-method.active {
    border: 1px solid #FFA524;
    background-color: #FFA52410;
}

.popular-services-header .payment-methods .payment-method {
    border: 1px solid #EBF1F7;
    border-radius: 12px;
    height: 66px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popular-services-header .payment-methods .payment-method:hover {
    border-color: #FFA524;
    background-color: #FFA52405;
}

/* Payment method check icon - only show when active */
.popular-services-header .payment-methods .payment-method iconify-icon[icon*="check-double"] {
    display: none;
}

.popular-services-header .payment-methods .payment-method.active iconify-icon[icon*="check-double"] {
    display: block;
}

.popular-services-header .payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    width: 100%;
}

.popular-services-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 30px;
    border-radius: 16px;
    background-color: white;
    margin: 12px 0px;
}

.popular-services-header .icon {
    color: #3F4250;
}

.popular-services-header .title {
    color: #3F4250;
    font-weight: 600;
}

.popular-package-list {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}

.popular-package-list .package-item {
    padding: 8px;
    width: 100%;
    height: 120px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
}

.popular-package-list .package-item .package-item-left {
    display: flex;
    align-items: center;
    gap: 12px;
    height: 100%;
}

.popular-package-list .package-item .package-item-left span {
    font-weight: bold;
    font-size: 16px;
    color: #3D4D77;
}

.popular-package-list .package-item button,
.popular-package-list .package-item a {
    width: 51px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F6F8FC;
    border-radius: 6px;
    flex-shrink: 0;
}

.popular-package-list .package-item .logo {
    width: 64px;
    height: 100%;
    border-radius: 12px;
    background-color: #E1306C10;
    color: #E1306C;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-wrapper {
    width: 100%;
    display: flex;
    align-items: start;
    gap: 12px;
}

.cart-wrapper .cart-left {
    width: 100%;
}

.cart-wrapper .cart-left .steps {
    position: relative;
    width: 100%;
    height: 76px;
    border-radius: 16px;
    background-color: white;
    margin-bottom: 12px;

}

.cart-wrapper .cart-left .steps .steps-row {
    width: 100%;
    height: 100%;
    padding: 10px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-wrapper .cart-left .steps .line-wrapper {
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
    width: 100%;
    height: 1px;
    padding: 0px 32px;
}

.cart-wrapper .cart-left .steps .line-wrapper .line {
    width: 100%;
    height: 1px;
    background-color: #F4F7FB;
    display: flex;
}

.cart-wrapper .cart-left .steps .step {
    color: #3D4D77;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
    background: none !important;
}

.cart-wrapper .cart-left .steps .step .icon {
    width: 32px;
    height: 32px;
    border: 1px solid #F4F7FB;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 32px;
    margin-bottom: 8px;
    background-color: white;
}

.cart-wrapper .cart-left .steps .step.active .icon {
    border-color: transparent;
    background-color: #FFA524;
}

.cart-products .cart-products-header .title {
    font-size: 18px;
    font-weight: bold;
    color: #3F4250;
    margin-top: 5px;
}

.cart-products .cart-products-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
}

.input-field label {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 4px;
}

input,
textarea {
    height: 60px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #EBF1F7;
    padding: 16px;
    outline-color: #FFA524;
    appearance: none;
}

.cart-products .cart-product-list .cart-product {
    border-radius: 12px;
    width: 100%;
    height: 70px;
    background-color: #F6F8FC;
    padding: 10px 20px;
}

.cart-products .cart-product-list {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
    width: 100%;
}

.cart-products .cart-product-list .cart-product {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.cart-products .cart-product-list .cart-product .cart-product-left .input-wrapper input {
    width: 100%;
    border: none;
    background-color: transparent;
    outline: none;
}

.cart-products .cart-product-list .cart-product .cart-product-left .input-wrapper button,
.cart-products .cart-product-list .cart-product .cart-product-left .input-wrapper a {
    width: 56px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFA524;
    border-radius: 6px;
    color: white;
    font-size: 12px;
}

.cart-products .cart-product-list .cart-product .cart-product-left .input-wrapper {
    width: 100%;
    padding: 0px 8px;
    min-width: 600px;
    height: 32px;
    border-radius: 6px;
    background-color: white;
    font-size: 14px;
    color: #3D4D77;
    display: none;
    /* Default olarak gizli */
    align-items: center;
    justify-content: space-between;

}

.cart-products .cart-product-list .cart-product .cart-product-left .action {
    display: flex;
    cursor: pointer;
    user-select: none;
    align-items: center;
    gap: 8px;
}

.cart-products .cart-product-list .cart-product .cart-product-left .action .icon {
    cursor: pointer;
    transition: color 0.2s ease;
}

.cart-products .cart-product-list .cart-product .cart-product-left .action .icon:hover {
    color: #FFA524;
}

.cart-products .cart-product-list .cart-product .cart-product-left .title {
    font-size: 14px;
    font-weight: 600;
}

.cart-products .cart-product-list .cart-product .cart-product-right .cart-price .sub-price {
    font-size: 12px;
    color: #B0B9DC;
}

.cart-products .cart-product-list .cart-product .cart-product-right .cart-price .price {
    font-size: 15px;
    color: #3D4D77;
    font-weight: 600;
}

.cart-products .cart-product-list .cart-product .cart-product-right .cart-price {
    display: flex;
    flex-direction: column;
    align-items: end;
}

.cart-products .cart-product-list .cart-product .cart-product-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cart-products .cart-product-list .cart-product .cart-product-left .action span {
    font-size: 12px;
    color: #8D98B2;
}

.cart-products .cart-product-list .cart-product .cart-product-left {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.cart-products {
    margin-bottom: 12px;
    width: 100%;
    background-color: white;
    border-radius: 16px;
    padding: 30px;
}


.cart-wrapper .cart-left .package-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.cart-wrapper .cart-right {
    width: 393px;
}

.cart-wrapper .cart-right .cart-summary {
    border-radius: 16px;
    width: 100%;
    background-color: white;
}

.cart-wrapper .cart-right .cart-summary .cart-summary-header {
    display: flex;
    align-items: center;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    background-color: #FFA524;
    gap: 12px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    padding: 20px;
}

.cart-wrapper .cart-right .secure-payment {
    padding: 12px;
    background-color: white;
    width: 100%;
    border-radius: 16px;
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 4px;
}

.cart-wrapper .cart-right .secure-payment .title {
    color: #3D4D77;
    font-weight: 600;
}

.cart-wrapper .cart-right .secure-payment .subtitle {
    color: #8D98B2;
    font-size: 13px;
}

.cart-wrapper .cart-right .cart-summary .cart-summary-body {
    padding: 20px;
}

.cart-wrapper .cart-right .cart-summary .cart-summary-body button,
.cart-wrapper .cart-right .cart-summary .cart-summary-body a {
    margin-top: 20px;
    width: 100%;
    height: 56px;
    background-color: #FFA524;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

.cart-wrapper .cart-right .cart-summary .cart-summary-body .divider {
    margin: 14px 0px;
    width: 100%;
    height: 1px;
    background-color: #ECECF4;
}

.cart-wrapper .cart-right .cart-summary .cart-summary-body .cart-summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.coupon-input button,
.coupon-input a {
    width: 61px;
    height: 30px;
    background-color: #FFA524;
    border-radius: 8px;
    margin: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 12px;
    font-weight: 500;
}

.coupon-input .left input {
    border: none;
    padding: 0px;
    height: 100%;
    outline: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 0px;
    width: 100%;
    padding-right: 8px;
}

.coupon-input .left .pipe {
    width: 1px;
    height: 30px;
    background-color: #ECECF4;
    margin: 0px 12px;
}

.coupon-input .left {
    display: flex;
    align-items: center;
    height: 100%;
}

.coupon-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    border: 1px solid #EBF1F7;
    border-radius: 12px;
    height: 48px;
    padding: 0px 8px;
    margin-top: 16px;
}

.cart-wrapper .cart-right .cart-summary .cart-summary-body .cart-summary-item .cart-summary-item-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-wrapper .cart-right .cart-summary .cart-summary-body .cart-summary-item .cart-summary-item-left .icon {
    color: #FFA524;
}

.cart-wrapper .cart-right .cart-summary .cart-summary-body .cart-summary-item .cart-summary-item-left .title {
    font-size: 14px;
    font-weight: 500;
}

.cart-wrapper .cart-right .cart-summary .cart-summary-body .price {
    font-size: 14px;
    font-weight: 500;
}

.cart-wrapper .cart-left .order-success-card {
    width: 100%;
    background-color: white;
    border-radius: 16px;
    margin-bottom: 16px;
    padding: 30px;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
}

.cart-wrapper .cart-left .order-success-card .check-icon {}

.cart-wrapper .cart-left .order-success-card .content {
    font-size: 16px;
    font-weight: 500;
    color: #3F4250;
    text-align: center;
}

.cart-wrapper .cart-left .order-success-card button,
.cart-wrapper .cart-left .order-success-card a {
    width: 100%;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #16A34A15;
    color: #16A34A;
    gap: 10px;
}

.order-detail-card .order-detail-card-header {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.order-detail-card .order-detail-card-body .divider {
    margin: 12px 0px;
    width: 100%;
    height: 1px;
    background-color: #ECECF4;
}

.order-detail-card .order-detail-card-body .info-item .title {
    font-size: 15px;
    font-weight: 600;
    color: #3D4D77;
}

.order-detail-card .order-detail-card-body .info-item .subtitle {
    font-size: 14px;
    font-weight: 500;
    color: #8D98B2;
}

.order-detail-card .order-detail-card-body .info-item {
    display: flex;
    flex-direction: column;
}

.order-detail-card .order-detail-card-body {
    display: flex;
    align-items: start;
    flex-direction: column;
}

.order-detail-card {
    width: 100%;
    border-radius: 16px;
    background-color: white;
    padding: 20px;
}

.intro .container {
    height: 100%;
    width: 100%;
    position: relative;
}

.intro .container .intro-left .intro-body .intro-title {
    font-size: 18px;
    color: white;
    font-weight: bold;
}

.intro .container .intro-left .intro-body .intro-subtitle {
    font-size: 15px;
    color: #8D98B2;
    margin-bottom: 0px;
}

.intro .container .intro-left {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 50px 0px 0px 0px;
}

.intro .container .intro-left .logo {
    width: 70px;
    height: 96px;
    border-radius: 6px;
    background-color: #FFA52410;
    border: 1px dashed #FFA524;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFA524;
    flex-shrink: 0;
}

.intro .container .intro-left .logo-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: #303347;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.intro .query-order-page-header {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
}

.query-order .steps .progress .progress-active img {
    width: 36px;
    height: 36px;
    border-radius: 36px;
    position: absolute;
    top: 0;
    right: 0;
}

.query-order .steps .progress .progress-active {
    width: 50%;
    height: 100%;
    border-radius: 999px;
    background-color: #FFA524;
    position: relative;
}

.query-order .steps .progress {
    width: 100%;
    height: 10px;
    background-color: #F4F7FB;
    border-radius: 999px;
}

.query-order .steps .statuses .status-item .title.active {
    color: #FFA524;
}

.query-order .steps .statuses .status-item .title {
    font-size: 15px;
    color: #3D4D77;
    font-weight: 600;
}

.query-order .steps .statuses .status-item .subtitle {
    font-size: 14px;
    color: #8D98B2;
}

.query-order .steps .statuses .status-item {
    display: flex;
    align-items: start;
    flex-direction: column;
}

.query-order .steps .statuses {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-top: 16px;
}

.query-order .steps {
    padding: 30px;
    height: 136px;
    width: 100%;
    border-radius: 16px;
    background-color: white;
    margin-top: -40px;
    z-index: 9999;
    position: relative;
    margin-bottom: 16px;
}

.intro {
    height: 234px;
    width: 100%;
    background-color: #202230;
    background-image: url("../img/lines-bg-2.png");
    background-size: cover;
    background-repeat: no-repeat;
}

.query-order .container .detail-wrapper .detail-right {
    width: 393px;
    flex-shrink: 0;
}

.query-order .container .detail-wrapper .detail-left {
    width: 100%;
}

.query-order .container .detail-wrapper {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.about .about-wrapper {
    display: flex;
    align-items: start;
    width: 100%;
    margin-top: -45px;
    gap: 16px;
    position: relative;
    z-index: 50;
}

.about .about-wrapper .about-right {
    width: 100%;
    padding: 16px 20px;
    background-color: white;
    border-radius: 16px;
}

.about .about-wrapper .about-right .image {
    width: 100%;
    object-fit: contain;
    margin-bottom: 16px;
}

.about .about-wrapper .about-right h1 {
    font-size: 20px;
    font-weight: 600;
    color: #3D4D77;
}

.about .about-wrapper .about-right p {
    font-size: 14px;
    font-weight: 400;
    color: #8D98B2;
}

.about .about-wrapper .about-left {
    width: 254px;
    height: 300px;
    border-radius: 16px;
    background-color: white;
    flex-shrink: 0;
    padding: 16px 20px;
}


.about .about-wrapper .about-left .header {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #3F4250;
    font-size: 15px;
    margin-bottom: 16px;
}

.about .about-wrapper .about-left .links .link .icon {
    color: #FFA524;
}

.about .about-wrapper .about-left .links .link {
    background-color: #F6F8FC;
    width: 100%;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0px 12px;
    height: 52px;
    cursor: pointer;
    user-select: none;
    font-size: 15px;
}

.about .about-wrapper .about-left .links .link.active .icon {
    color: white;
}

.about .about-wrapper .about-left .links .link.active {
    background-color: #FFA524;
    color: white;
}

.about .about-wrapper .about-left .links {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.support-btn {
    color: #FFA524;
    font-size: 14px;
    background-color: #FFA52410;
    border: 1px dashed #FFA524;
    border-radius: 8px;
    background-clip: padding-box;
    height: 32px;
    padding: 16px;
    gap: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    margin-top: 8px;
}

.contact .contact-wrapper {
    width: 100%;
    display: flex;
    align-items: start;
    gap: 16px;
    margin-top: -50px;
    position: relative;
}

.contact .contact-wrapper .contact-left {
    width: 400px;
}

.contact .contact-wrapper .contact-left .contact-info-item .logo {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact .contact-wrapper .contact-left .contact-info-item .contact-info-body .subtitle {
    color: #8D98B2;
    font-size: 14px;
}

.contact .contact-wrapper .contact-left .contact-info-item .contact-info-body .content {
    font-size: 16px;
    font-weight: 600;
    color: #3D4D77;
}

.contact .contact-wrapper .contact-left .contact-info-item .contact-info-body {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.contact .contact-wrapper .contact-left .contact-info-item {
    width: 100%;
    height: 92px;
    border-radius: 16px;
    background-color: white;
    padding: 0px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact .contact-wrapper .contact-left .contact-social button,
.contact .contact-wrapper .contact-left .contact-social a {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact .contact-wrapper .contact-left .contact-social {
    width: 100%;
    height: 92px;
    border-radius: 16px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.contact .contact-wrapper .contact-right {
    width: 100%;
    padding: 20px;
    background-color: white;
    border-radius: 16px;
}

.contact .contact-wrapper .contact-right .icon-title {
    color: #FFA524;
    margin-bottom: 12px;
}

.contact .contact-wrapper .contact-right .contact-title {
    font-size: 20px;
    font-weight: 600;
    color: #3F4250;
    margin-bottom: 0px;
}

.contact .contact-wrapper .contact-right .contact-subtitle {
    font-size: 14px;
    color: #8D98B2;
}

.login {
    width: 100%;
    max-width: 1030px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 35px auto;
}

.login .login-card .title {
    font-size: 20px;
    font-weight: 600;
    color: #3D4D77;
    margin: 0px;
}

.login .login-card .subtitle {
    font-size: 14px;
    color: #8D98B2;
    margin-bottom: 24px;
}

.login .login-card {
    width: 530px;
    height: auto;
    background-color: white;
    border-radius: 16px;

    padding: 50px 30px;
    display: flex;
    align-items: start;
    flex-direction: column;
}

.login .login-card .footer-actions .left .checkbox {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background-color: #FFA524;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login .login-card .footer-actions .left .remember {
    font-size: 14px;
    color: #8D98B2;
}

.login .login-card .footer-actions .forgot-pass {
    color: #FFA524;
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.login .login-card .footer-text {
    font-size: 14px;
    color: #3F4250;
}

.login .login-card .submit-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFA524;
    color: white;
    font-weight: 600;

    border-radius: 16px;
    height: 56px;
    margin-bottom: 24px;
}

.login .login-card .footer-actions .left {
    display: flex;
    align-items: center;
    gap: 12px;
    user-select: none;
    cursor: pointer;
}

.login .login-card .footer-actions {
    margin: 24px 0px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.login .login-img {
    width: 434px;
    height: 589px;
    object-fit: contain;
}

.blog-detail .blog-detail-wrapper .blog-left h1 {
    font-size: 20px;
    font-weight: 600;
    color: #3D4D77;
}

.blog-detail .blog-detail-wrapper .blog-left .share {
    width: 100%;
}

.blog-detail .blog-detail-wrapper .blog-left .share .title {
    font-weight: 600;
    color: #3F4250;
}

.blog-detail .blog-detail-wrapper .blog-left .share .share-social-list {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 12px;
}

.blog-detail .blog-detail-wrapper .blog-left .user .user-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.blog-detail .blog-detail-wrapper .blog-left .user .user-body .author {
    color: #3D4D77;
    font-weight: 600;
}

.blog-detail .blog-detail-wrapper .blog-left .user .user-body .job {
    color: #8D98B2;
    font-size: 14px;
}

.blog-detail .blog-detail-wrapper .blog-left .user .user-body .bio {
    color: #8D98B2;
    margin-top: 12px;
}

.blog-detail .blog-detail-wrapper .blog-left .user img {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 70px;
    object-fit: contain;
}

.blog-detail .blog-detail-wrapper .blog-left .user {
    display: flex;
    align-items: start;
    gap: 18px;
}

.blog-detail .blog-detail-wrapper .blog-left .share .share-social-list .share-social.insta {
    background-color: #E1306C;
}

.blog-detail .blog-detail-wrapper .blog-left .share .share-social-list .share-social.tw {
    background-color: #00ACED;
}

.blog-detail .blog-detail-wrapper .blog-left .share .share-social-list .share-social.face {
    background-color: #3089FF;
}

.blog-detail .blog-detail-wrapper .blog-left .share .share-social-list .share-social {
    height: 40px;
    width: max-content;
    padding: 0px 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    border-radius: 8px;
    font-size: 12px;
}

.blog-detail .blog-detail-wrapper .blog-left .divider {
    margin: 16px 0px;
    width: 100%;
    height: 1px;
    background-color: #EBF1F7;
}

.blog-detail .blog-detail-wrapper .blog-left p {
    font-size: 14px;
    color: #8d8d8d;
}

.blog-detail .blog-detail-wrapper .blog-left {
    width: 100%;
    padding: 20px;
    background-color: white;
    border-radius: 16px;
}

.contents .contents-body {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
}

.contents .contents-item.active {
    background-color: #FFA52410;
    color: #FFA524;
}

.contents .contents-item {
    height: 45px;
    width: 100%;
    padding: 0px 12px;
    border-radius: 12px;
    color: #3D4D77;
    font-size: 13px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.contents .contents-item:hover {
    background-color: #FFA52405;
    color: #FFA524;
}


.contents .contents-header {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #3F4250;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-detail .blog-detail-wrapper .blog-right .like-blogs {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 12px;
    width: 100%;
}

.blog-detail .blog-detail-wrapper .blog-right .like-blog {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.blog-detail .blog-detail-wrapper .blog-right .like-blogs {
    padding: 20px;
    background-color: white;
    border-radius: 16px;
    width: 100%;
    margin-top: 16px;
}

.blog-detail .blog-detail-wrapper .blog-right .like-blogs .like-blogs-header {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: #3F4250;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-detail .blog-detail-wrapper .blog-right .like-blog img {
    width: 117px;
    height: 117px;
    border-radius: 6px;
    object-fit: cover;
}

.blog-detail .blog-detail-wrapper .blog-right .like-blog .like-blog-body h1 {
    font-size: 16px;
    font-weight: 600;
    color: #3D4D77;
}

.blog-detail .blog-detail-wrapper .blog-right .like-blog .like-blog-body p {
    font-size: 12px;
    color: #8d8d8d;
}

.show-desktop {
    display: block !important;
    padding: 20px;
}

.show-mobile {
    display: none !important;
}

.contents {
    width: 100%;
    flex-shrink: 0;
    background-color: white;
    border-radius: 16px;
}

.blog-detail .blog-detail-wrapper .blog-right {
    width: 382px;
}

.blog-detail .blog-detail-wrapper {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 100px;
    margin-top: -40px;
}

.sss .sss-wrapper .sss-left img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
}

.sss .sss-wrapper .sss-left {
    width: 284px;
    height: 100%;
}

.sss .sss-wrapper .sss-middle .sss-item {
    width: 100%;
    cursor: pointer;
    user-select: none;
}

.sss .sss-wrapper .sss-middle .sss-item.opened .sss-body {
    display: block;
}

.sss .sss-wrapper .sss-middle .sss-item .sss-body {
    padding: 16px 20px;

    width: 100%;
    background-color: white;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    font-size: 14px;
    color: #8D98B2;
    display: none;
}

.sss .sss-wrapper .sss-middle .sss-item .sss-header .sss-icon {
    color: #BFC2CD;
}

.sss .sss-wrapper .sss-middle .sss-item.opened .sss-header .sss-icon {
    color: #FFA524;
}

.sss .sss-wrapper .sss-middle .sss-item .sss-header {
    padding: 20px;
    background-color: white;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    gap: 16px;
    display: flex;
    align-items: center;
}

.sss .sss-wrapper .sss-middle .sss-item .sss-header .title {
    font-size: 15px;
    color: #3D4D77;
    font-weight: 600;
}

.sss .sss-wrapper .sss-middle {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    width: 100%;
}

.sss .sss-wrapper .sss-right .sss-right-header {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #3F4250;
    font-weight: 600;
}

.sss .sss-wrapper .sss-right .sss-right-body {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}

.sss .sss-wrapper .sss-right .sss-right-body .sss-right-body-item {
    height: 52px;
    width: 100%;
    border-radius: 6px;
    background-color: #F6F8FC;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0px 12px;
    cursor: pointer;
    user-select: none;
}

.sss .sss-wrapper .sss-right .sss-right-body .sss-right-body-item .icon {
    width: 12px;
    height: 12px;
    color: #FFA524;
}

.sss .sss-wrapper .sss-right .sss-right-body .sss-right-body-item.active span {
    color: white;
}

.sss .sss-wrapper .sss-right .sss-right-body .sss-right-body-item span {
    font-size: 14px;
    color: #3D4D77;
}

.sss .sss-wrapper .sss-right .sss-right-body .sss-right-body-item.active {
    background-color: #FFA524;
}

.sss .sss-wrapper .sss-right .sss-right-body .sss-right-body-item.active .icon {
    color: white;
}

.sss .sss-wrapper .sss-right {
    width: 253px;
    height: 300px;
    background-color: white;
    border-radius: 16px;
    flex-shrink: 0;
    padding: 20px;
}

.sss .sss-wrapper {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-top: -50px;
    margin-bottom: 100px;
}

.free-tools .package-list .package-card .package-icon {}

.free-tools .package-list .package-card .footer .left .stars .icon {
    width: 18px;
    height: 18px;
    color: #FFA524;
}

.free-tools .package-list .package-card .footer button,
.free-tools .package-list .package-card .footer a {
    height: 40px;
    padding: 12px 16px;
    border-radius: 6px;
    background-color: #FFA524;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 14px;
}

.free-tools .package-list .package-card .footer .left span {
    font-size: 12px;
    color: #3D4D77;
    font-weight: 600;
}

.free-tools .package-list .package-card .footer .left .stars {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.free-tools .package-list .package-card .footer .left {
    display: flex;
    align-items: start;
    flex-direction: column;
}

.free-tools .package-list .package-card .footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.free-tools .package-list .package-card .divider {
    margin: 16px 0px;
    width: 100%;
    height: 1px;
    background-color: #EBF1F7;
}

.free-tools .package-list .package-card .badges .badge {
    width: max-content;
    height: 36px;
    padding: 10px;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.free-tools .package-list .package-card .badges .badge.green {
    background-color: #16A34A15;
    color: #16A34A;
}

.free-tools .package-list .package-card .badges .badge.red {
    background-color: #E1306C15;
    color: #E1306C;
}

.free-tools .package-list .package-card .badges {
    display: flex;
    align-items: center;
    gap: 6px;
    width: 100%;
}

.free-tools .package-list .package-card p {
    font-size: 13px;
    color: #8D98B2;
    margin-bottom: 12px;
}

.free-tools .package-list .package-card .title {
    font-size: 16px;
    font-weight: 600;
    color: #3D4D77;
    margin: 12px 0px;
}

.free-tools .package-list .package-card {
    width: 100%;
    border-radius: 16px;
    padding: 20px;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.free-tools .package-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr !important;
    gap: 12px;
    width: 100%;
}

.free-tool-detail .package-list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.free-tool-detail .tool-wrapper {
    display: flex;
    align-items: start;
    gap: 16px;
    margin-bottom: 16px;
}

.free-tool-detail .banner .banner-body {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.free-tool-detail .banner .title {
    font-size: 46px;
    font-weight: 600;
    color: #3D4D77;
}

.free-tool-detail .banner .title .colored {
    color: #FFA524;
}

.free-tool-detail .banner .subtitle {
    color: #8D98B2;
    font-size: 17px;
}

.free-tool-detail .banner img {
    width: 485px;
    height: auto;
    object-fit: contain;
}

.free-tool-detail .banner.reversed {
    flex-direction: row-reverse;
}

.free-tool-detail .banner {
    display: flex;
    align-items: center;
    gap: 46px;
    width: 100%;
    justify-content: space-between;
    margin: 50px 0px;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-header span {
    font-size: 20px;
    font-weight: 600;
    color: white;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-header {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card button,
.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 48px;
    gap: 20px;
    background-color: #202230;
    border-radius: 12px;
    color: white;
    margin-bottom: 16px;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card .statistics .statistic-card .statistic-body .title {
    font-size: 14px;
    font-weight: 600;
    color: #282828;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card .statistics .statistic-card .statistic-body .subtitle {
    font-size: 12px;
    font-weight: 500;
    color: #4B5563;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card .statistics .statistic-card .statistic-body {
    display: flex;
    align-items: start;
    flex-direction: column;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card .statistics .statistic-card .logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background-color: #FFA52405;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFA524;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card .statistics .statistic-card {
    background-color: #F6F8FC;
    border-radius: 6px;
    width: 100%;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card .statistics {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 10px;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card .title {
    font-size: 24px;
    font-weight: 600;
    color: #3D4D77;
    margin: 0px;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card .subtitle {
    color: #8D98B2;
    font-size: 14px;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card .sub-header {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    margin-bottom: 15px;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card .sub-header .badge {
    height: 33px;
    border-radius: 6px;
    width: 92px;
    background-color: #FFA52410;
    gap: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card .sub-header .badge span {
    color: #FFA524;
    font-size: 14px;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card .sub-header .title {
    font-size: 14px;
    color: #8D98B2;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body-card {
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 16px;
    padding: 20px 12px;
}

.free-tool-detail .tool-wrapper .tool-left .tool-left-body {
    width: 100%;
    padding: 4px;
}

.free-tool-detail .tool-wrapper .tool-left {
    width: 100%;
    background-color: #FFA524;
    border-radius: 16px;
}

.free-tool-detail .tool-wrapper .tool-right img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin: 8px 0px;
}

.free-tool-detail .tool-wrapper .tool-right .progress-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.free-tool-detail .tool-wrapper .tool-right .progress-item img {
    width: 60px;
    height: 60px;
}

.free-tool-detail .tool-wrapper .tool-right .progress-item .progress-body {
    display: flex;
    flex-direction: column;
    align-items: start;
}

.free-tool-detail .tool-wrapper .tool-right .progress-item .title {
    font-weight: 600;
    font-size: 14px;
    color: #3D4D77;
}

.free-tool-detail .tool-wrapper .tool-right .badges {
    display: flex;
    width: 100%;
    align-items: center;
    gap: 12px;
}

.free-tool-detail .tool-wrapper .tool-right .badge {
    width: 100%;
    height: 36px;
    background-color: #FFA52415;
    color: #FFA524;
    border-radius: 6px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.free-tool-detail .tool-wrapper .tool-right .progress-item .subtitle {
    font-size: 13px;
    color: #8D98B2;
}

.free-tool-detail .tool-wrapper .tool-right {
    width: 380px;
    background-color: white;
    flex-shrink: 0;
    border-radius: 16px;
    padding: 20px;
}

.service-list .service-list-card .service .title {
    font-size: 15px;
    color: #FFFFFF;
    margin-top: 12px;
}

.service-list .service-list-card .service .subtitle {
    font-size: 13px;
    color: #FFFFFF60;
}

.service-list .service-list-card .service {
    width: 100%;
    height: 160px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.service-list .service-list-card {
    width: 100%;
    background-color: white;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    gap: 12px;
    padding: 12px;
}

.service-list {
    position: absolute;
    top: 180px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-query-modal-btn {
    height: 40px;
    width: 128px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #FFA524;
    color: white;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 16px;
}

.order-query-card {
    background-color: white;
    padding: 20px;
    border-radius: 16px;
    max-width: 560px;
    width: 100%;
}

.order-query-card .coupon-input {
    margin: 0px;
    background-color: #F6F8FC;
}


@media (max-width: 1280px) {
    .main-nav .container .right .login span {
        display: none !important;
    }

    #intro .intro-row .advertisement {
        display: none !important;
    }

    #popular-packages .package-list {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    #popular-packages-with-tabs .package-list {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }

    #sss .sss-row .middle {
        display: none;
    }

    #sss .sss-row {
        flex-direction: column !important;
    }

    #last-blogs .blog-list {
        grid-template-columns: 1fr 1fr;
    }

    #packages-wrapper .left .packages .package-list {
        grid-template-columns: 1fr 1fr;
    }

    #how-order .how-order-cards-container .how-order-cards {
        position: static;
        display: none;
    }

    #how-order .how-order-cards-container img {
        width: 100%;
        object-fit: contain;
    }

    #how-order .how-order-cards-container {
        flex-direction: column;
    }

    #how-order .how-order-cards-container .how-order-cards-mobile {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .how-order-card {
        width: 100%;
        min-width: 100%;
    }

    .how-order-card .logo {
        flex-shrink: 0;
    }

    .service-list .service-list-card {
        display: none;
    }
}

@media (max-width: 1130px) {
    .main-nav .container ul {
        display: none !important;
    }

    .main-nav .container .right .menu {
        display: flex !important;
    }

    .main-nav .container .right .login span {
        display: flex !important;
    }

    #intro {
        height: auto !important;
    }

    #intro .intro-row {
        flex-direction: column-reverse !important;
    }

    #intro .intro-row .selections {
        width: 100% !important;
    }

    #popular-packages-with-tabs .package-list {
        grid-template-columns: 1fr 1fr 1fr;
    }

    footer .footer-header .container .statistics {
        display: none;
    }

    #happy-customers .customer-list {
        grid-template-columns: 1fr 1fr 1fr;
    }

    footer .footer-header .container .social-media button,
    footer .footer-header .container .social-media a {
        width: 40px;
        height: 40px;
    }

    footer .footer-links {
        height: auto;
        padding: 20px 0px;
    }

    footer .footer-links .container {
        grid-template-columns: 1fr 1fr;
    }

    .popular-package-list {
        grid-template-columns: 1fr 1fr;
    }

    .login .login-img {
        display: none;
    }

    .login {
        padding: 0px 12px;
    }

    .login .login-card {
        padding: 24px;
        width: 100%;
        height: auto;
    }

    #last-blogs .blog-list.blog {
        grid-template-columns: 1fr 1fr;
    }

    #last-blogs .last-blog-cards {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .free-tools .package-list {
        grid-template-columns: 1fr 1fr 1fr !important;
    }
}

@media (max-width: 768px) {
    .main-nav .container .right .bell {
        display: none !important;
    }

    .main-nav .container .right .cart {
        display: none !important;
    }

    .main-nav .container .right .login {
        display: none !important;
    }

    /* Show mobile menu only on small screens */
    .mobile-menu {
        display: none;
    }

    .topbar .container .right {
        display: none !important;
    }

    .main-nav .container img {
        width: 200px !important;
        height: max-content !important;
    }

    .main-nav {
        height: 60px;
    }

    .topbar .container .left .coupon-btn {
        height: 30px;
    }

    .topbar .container .left {
        justify-content: space-between !important;
        width: 100%;
    }

    .topbar {
        height: 60px;
    }

    #intro .intro-row .banner .figure {
        display: none !important;
    }

    #intro .intro-row .banner {
        padding: 16px;
    }

    #popular-packages .package-list {
        grid-template-columns: 1fr 1fr;
    }

    #popular-packages-with-tabs .package-list {
        grid-template-columns: 1fr;
    }

    .main-package-item .footer {
        flex-direction: column;
        width: 100%;
    }

    .main-package-item .footer .left {
        width: 100%;
    }

    .main-package-item .footer .right {
        width: 100%;
        margin-top: 10px;
    }

    #why-we .card-item:first-child {
        margin-top: 12px;
    }

    #happy-customers .customer-list {
        grid-template-columns: 1fr;
    }

    #sss .sss-item {
        min-width: 100%;
    }

    #last-blogs .blog-list {
        grid-template-columns: 1fr;
    }

    footer .footer-copyright {
        padding: 20px 0px;
        height: auto;

    }

    footer .footer-copyright .container {
        flex-direction: column;
        gap: 10px;
    }

    .page-header .tab {
        height: auto;
    }

    .page-header .page-header-container {
        padding: 16px;
    }

    .page-header img {
        display: none;
    }

    #package-list {
        grid-template-columns: 1fr;
    }

    #packages-wrapper {
        flex-direction: column;
    }

    #packages-wrapper .left {
        width: 100%;
    }

    #packages-wrapper .right {
        width: 100%;
    }

    #packages-wrapper .left .packages .package-list {
        grid-template-columns: 1fr;
    }

    .create-order .order-form {
        padding: 15px;
    }

    .create-order .order-service {
        flex-direction: column;
        align-items: start;
    }

    .create-order .order-service .order-service-right {
        margin-top: 16px;
    }

    .create-order .order-service .order-service-right img {
        width: 200px;
    }

    .create-order .order-service .order-service-right span {
        font-size: 12px;
    }

    .popular-package-list {
        grid-template-columns: 1fr;
    }

    .cart-wrapper {
        flex-direction: column;
    }

    .cart-products {
        padding: 10px;
    }

    .cart-products .cart-product-list .cart-product .cart-product-left .input-wrapper {
        min-width: auto;
    }

    .cart-wrapper .cart-left .package-list {
        grid-template-columns: 1fr;
    }

    .cart-products .cart-product-list .cart-product .cart-product-right {
        gap: 0px;
    }

    .popular-services-header .payment-methods {
        grid-template-columns: 1fr;
    }

    .popular-services-header {
        padding: 10px;
    }

    .query-order .container .steps .statuses .status-item .subtitle {
        display: none;
    }

    .query-order .container .detail-wrapper {
        flex-direction: column;
    }

    .query-order .container .detail-wrapper .detail-right {
        width: 100%;
        flex-shrink: 0;
    }

    .intro .query-order-page-header {
        display: none;
    }

    .intro {
        height: auto;
        padding-bottom: 60px;
    }

    .intro .container .intro-left {
        padding: 20px 0px 0px 0px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .intro .container .intro-left .intro-body {
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .about .about-wrapper {
        flex-direction: column;
    }

    .about .about-wrapper .about-left {
        width: 100%;
    }

    .about .intro {
        padding-bottom: 60px !important;
        height: auto !important;
    }

    .contact .contact-wrapper {
        flex-direction: column;
    }

    .contact .support-btn {
        margin: 10px auto;
    }

    .input-row {
        grid-template-columns: 1fr;
    }

    #last-blogs .blog-list.blog {
        grid-template-columns: 1fr;
    }

    #last-blogs .last-blog-cards {
        grid-template-columns: 1fr;
    }

    .blog-detail .blog-detail-wrapper {
        flex-direction: column;
    }

    .blog-detail .intro {
        padding: 50px 0px 80px 0px !important;
    }

    .sss .sss-wrapper .sss-right {
        width: 100%;
    }

    .sss .sss-wrapper .sss-left {
        display: none;
    }

    .sss .sss-wrapper {
        flex-direction: column-reverse;
    }

    .sss .intro {
        padding-bottom: 80px !important;
        height: auto !important;
    }

    .free-tools .package-list {
        grid-template-columns: 1fr !important;
    }

    .free-tool-detail .tool-wrapper .tool-left .statistics {
        flex-direction: column;
    }

    .free-tool-detail .tool-wrapper {
        flex-direction: column;
    }

    .free-tool-detail .package-list {
        grid-template-columns: 1fr;
    }

    .free-tool-detail .banner img {
        width: 100%;
    }

    .free-tool-detail .banner .title {
        font-size: 22px;
    }

    .free-tool-detail .banner {
        flex-direction: column;
    }

    .blog-detail .blog-detail-wrapper .blog-left .share .share-social-list {
        flex-wrap: wrap;
    }

    footer .footer-header .container .statistics {
        display: none;
    }

    .main-modal .welcome-card {
        min-width: 96%;
    }

    .main-modal .welcome-card .right {
        display: none;
    }

    #intro .intro-row .banner {
        display: none;
    }

    .banner-mobile {
        display: block;
    }

    #intro .intro-row .selections {
        margin-top: -140px;
    }

    #intro {
        margin-top: 0px;
    }

    .main-modal .welcome-card .welcome-card-close {
        background-color: #3D4D77;
        color: white;
        border: none;
        width: 32px;
        height: 32px;
        border-radius: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }





    .show-desktop {
        display: none !important;
    }

    .show-mobile {
        display: block !important;
    }

    #sss .sss-row .right {
        width: 100%;
    }

    #sss .sss-row .left {
        width: 100%;
    }

}