@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-regular.woff2') format('woff2'),
        url('../fonts/poppins-regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-semibold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins-bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    --base-color: #0080FF;
    --dark-gray: #1c1c1c;
    --light-orange: #eeb79f;
    --seashell-white: #fff8f5;
    --brown: #7d6f68;
    --chablis-red: #fde5d9;
    --cinderella-red: #fadbc9;
    --light-medium-gray: #f4f2ee;
    --primary-font: Poppins;

    --bg-modern-gradient-primary: linear-gradient(145deg, #4361ee, #0080FF);
    --bg-modern-success-gradient: linear-gradient(145deg, #10b981, #059669);
    --bg-modern-warning-gradient: linear-gradient(145deg, #f59e0b, #d97706);
    --bg-modern-danger-gradient: linear-gradient(145deg, #ef4444, #dc2626);

    --modern-card-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --modern-hover-shadow: 0 25px 30px -5px rgba(67, 97, 238, 0.1), 0 15px 15px -5px rgba(0, 0, 0, 0.03);
}

body {
    font-size: 18px;
    line-height: 30px;
    font-family: var(--primary-font);
}

.disable-actions {
    pointer-events: none;
    user-select: none;
}

body.disable-actions .loader-overlay {
    display: flex !important;
}

.loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(20, 20, 20, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;

    opacity: 1;
    visibility: visible;
    transition: glow .4s ease;
}

@keyframes glow {
    0% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    }

    100% {
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.8));
    }
}

/* Fade Out */
.loader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
}

/* Center Box */
.loader-box {
    position: relative;
    text-align: center;
    padding: 40px 50px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(1px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.loader-box img {
    position: absolute;
    top: 24%;
    left: 32%;
    width: 80px;
    animation: fadeText 1.5s ease-in-out infinite alternate;
}

@keyframes fadeText {
    from {
        opacity: 0.5;
    }

    to {
        opacity: 1;
    }
}

/* Spinner Ring */
.loader-spinner {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.15);
    border-top: 4px solid #ffffff;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

/* Loading Text */
.loader-text {
    margin-top: 25px;
    font-size: 14px;
    letter-spacing: 1px;
    color: #ffffffcc;
}

section {
    padding-top: 100px;
    padding-bottom: 100px;
}

a:hover {
    color: var(--dark-gray);
}

.input-small,
.textarea-small,
.select-small {
    font-size: 14px;
}

/* header */
.header-icon .icon>a {
    font-size: 20px;
    padding-left: 30px;
}

header .navbar-brand {
    padding: 20px 0;
}

header .navbar-brand img {
    max-height: 80px;
}

.navbar>.container-fluid,
.header-top-bar>.container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}

.header-icon {
    padding-right: 20px;
}

.navbar .navbar-nav .nav-link {
    font-size: 18px;
    line-height: 24px;
}

.center-logo .navbar-nav .nav-link,
header.sticky .center-logo .navbar-nav .nav-link {
    padding: 55px 34px;
}

.header-cart-icon .header-cart .cart-item-list .cart-item .product-detail a {
    font-weight: 500;
}

.header-with-topbar+.top-space-margin {
    margin-top: 129px;
}

.header-cart-icon .cart-count {
    background-color: var(--dark-gray);
}

.navbar .navbar-nav .dropdown .dropdown-menu .mega-menu .btn-hover-animation i {
    top: 1px;
}

/* navbar */
.navbar .navbar-nav .submenu-content ul .sub-title {
    font-size: 17px;
}

.navbar .navbar-nav .dropdown .dropdown-menu a {
    font-size: 17px;
}

.navbar .navbar-nav .simple-dropdown .dropdown-menu {
    width: 190px;
}

.header-cart-icon .header-cart .cart-item-list {
    border-radius: 0;
}

/* text color */
.text-light-orange {
    color: var(--light-orange);
}

.text-seashell-white {
    color: var(--seashell-white);
}

.text-brown {
    color: var(--brown);
}

.text-cinderella-red {
    color: var(--cinderella-red);
}

/* bg color */
.bg-seashell-white {
    background-color: var(--seashell-white);
}

.bg-chablis-red {
    background-color: var(--chablis-red);
}

.bg-gradient-very-light-gray {
    background-image: linear-gradient(to bottom, #f7f7f7, #f7f7f7, #fbfbfc, #fdfdfd, #ffffff);
}

.bg-welcome-header {
    background-image: url('../images/bg-01.png');
    background-repeat: no-repeat;
    background-position: center;
}

.form-label,
.table th,
.table td {
    font-size: 16px;
    font-weight: 500;
}

.remove-wishlist {
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--bs-box-shadow-sm) !important;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 999;
}

/* modern elements */
.modern-card {
    background: var(--bs-white);
    border: none;
    border-radius: 24px;
    box-shadow: var(--brand-card-shadow);
    overflow: hidden;
}

.modern-card:hover {
    box-shadow: var(--brand-hover-shadow);
}

.card-header-modern {
    background: var(--bs-white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem;
}

.btn-modern {
    padding: 1rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    text-decoration: none;
    line-height: 1.5;
}

.btn-modern.btn-sm {
    padding: 6px 12px;
}

.btn-modern-primary {
    background: var(--bg-gradient-primary);
    color: var(--bs-white);
    box-shadow: 0 10px 20px -5px rgba(67, 97, 238, 0.2);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(67, 97, 238, 0.3);
    color: var(--bs-white);
}

.btn-modern-outline {
    background: transparent;
    border: 1px solid rgba(67, 97, 238, 0.2);
    color: var(--brand-primary-color);
}

.btn-modern-outline:hover {
    background: rgba(67, 97, 238, 0.05);
    border-color: var(--brand-primary-color);
}

.btn-modern-success {
    background: var(--brand-success-gradient);
    color: var(--bs-white);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.2);
}

.btn-modern-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(16, 185, 129, 0.3);
    color: var(--bs-white);
}

.btn-modern-success {
    background: var(--brand-success-gradient);
    color: var(--bs-white);
    box-shadow: 0 10px 20px -5px rgba(16, 185, 129, 0.2);
}

.btn-modern-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px -5px rgba(16, 185, 129, 0.3);
    color: var(--bs-white);
}

.btn-modern-danger {
    background: var(--bg-danger-gradient);
    color: var(--bs-white);
    box-shadow: 0 10px 20px -5px rgba(239, 68, 68, 0.2);
}

.btn-modern-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(239, 68, 68, 0.2);
    color: var(--bs-white);
}

.form-control-modern {
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1rem;
    transition: all 0.2s ease;
}

.form-control-modern:focus {
    border-color: var(--brand-primary-color);
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1);
    outline: none;
}

.form-select-modern {
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 0.75rem 1rem;
    transition: all 0.2s ease;
    background-color: var(--white);
    width: 100%;
}

.form-select-modern:focus {
    border-color: #4361ee;
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.1);
    outline: none;
}

.modal-modern .modal-content {
    border: none;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 40px -15px rgba(0, 0, 0, 0.2);
}

.modal-header-modern {
    background: var(--base-color);
    padding: 1.75rem 2rem;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header-modern .modal-title {
    font-size: 1.25rem;
    width: 100%;
}

.modal-header-modern.primary {
    background: var(--bg-modern-gradient-primary);
}

.modal-header-modern.success {
    background: var(--bg-modern-success-gradient);
}

.modal-header-modern.warning {
    background: var(--bg-modern-warning-gradient);
}

.modal-header-modern.danger,
.modal-header-modern.reject {
    background: var(--bg-modern-danger-gradient);
}

.modal-body-modern {
    padding: 2rem;
}

.modal-footer-modern {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    text-align: end;
}

.alert-modern {
    border: none;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.alert-modern.warning {
    background: rgba(245, 158, 11, 0.05);
    border-left: 4px solid var(--bs-warning);
}

.alert-modern.info {
    background: rgba(67, 97, 238, 0.05);
    border-left: 4px solid var(--bs-info);
}

.alert-modern.success {
    background: rgba(16, 185, 129, 0.05);
    border-left: 4px solid var(--bs-success);
}

.alert-modern.danger {
    background: rgba(239, 68, 68, 0.05);
    border-left: 4px solid var(--bs-danger);
}

.alert-modern.primary {
    background: rgba(67, 97, 238, 0.05);
    border-left: 4px solid var(--bs-primary);
}

.btn-close-white {
    filter: var(--bs-btn-close-white-filter);
}

.rating-stars .star {
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 2rem;
    line-height: 1;
}

.rating-stars .star:hover {
    transform: scale(1.1);
}

.page-title-extra-large h1 {
    font-size: 4.25rem;
    line-height: 4.25rem;
}

.btn {
    font-weight: 500;
    letter-spacing: -0.5px;
}

.btn.btn-extra-large {
    padding: 16px 41px 17px;
    font-size: 18px;
}

.btn.btn-large {
    padding: 13px 30px;
    font-size: 16px;
}

.btn.btn-medium {
    padding: 12px 30px 11px;
    font-size: 14px;
}

.btn.btn-small {
    font-size: 14px;
    padding: 10px 25px 9px;
}

.btn.btn-very-small {
    font-size: 12px;
    padding: 7px 21px 7px;
}

.btn.btn-link {
    padding: 0 0 2px;
}

.btn.btn-transparent-base-color {
    color: var(--dark-gray);
}

.btn.btn-transparent-base-color:hover {
    background-color: var(--dark-gray);
}

/* tab style 04 */
.tab-style-04 .nav-tabs .nav-item {
    padding: 0 42px;
}

.tab-style-04 .nav-tabs .nav-item .nav-link {
    line-height: 50px;
}

/* tooltip */
.tooltip.show {
    opacity: 1;
}

.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,
.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--dark-gray);
    top: -2px;
}

.tooltip .tooltip-inner {
    background-color: var(--dark-gray);
    border-radius: 3px;
    font-size: 10px;
    text-transform: uppercase;
    padding: 5px 10px;
    font-weight: 500;
}

/* tab style 07 */
.tab-style-07 .nav-tabs .nav-item .nav-link {
    padding: 20px 30px;
}

.tab-style-07 .nav-tabs .nav-item .nav-link.active span,
.tab-style-07 .nav-tabs .nav-item .nav-link:hover span {
    color: var(--white);
}

/* progress bar 02 */
.progress-bar-style-02 .progress {
    height: 10px;
}

/* newsletter style 04 */
.newsletter-style-04 .btn {
    font-size: 18px;
}

/* google map */
#map [aria-roledescription="map"] {
    left: -150px !important;
}

/* contact form style 03 */
.contact-form-style-03 {
    margin-bottom: -250px;
}

/* tag cloud */
.tag-cloud a {
    font-size: 15px;
}

.tag-cloud a.likes-count {
    font-size: 13px;
}

/* blog modern */
.blog-modern figure .post-content-wrapper {
    bottom: -54px;
}

/* pagination style 01 */
.pagination-style-01 .page-item.active .page-link,
.pagination-style-01 .page-item .page-link:hover {
    background: var(--dark-gray);
    color: var(--white);
}

.pagination-style-01 .page-item:first-child .page-link,
.pagination-style-01 .page-item:last-child .page-link {
    background: transparent;
    box-shadow: none !important;
    color: var(--medium-gray);
}

.pagination-style-01 .page-item:first-child .page-link:hover,
.pagination-style-01 .page-item:last-child .page-link:hover {
    color: var(--dark-gray);
}

/* newsletter style 04 */
.newsletter-style-04 input {
    padding-right: 100px !important;
}

/* map */
.google-maps-link a {
    color: var(--white);
}

/* footer */
footer {
    padding-top: 80px;
}

.footer-dark p,
.footer-dark a {
    color: var(--brown);
}

.footer-dark a:hover,
.footer-navbar li a:hover {
    color: var(--dark-gray);
}

footer .elements-social li {
    margin: 0 1px 5px 0;
}

footer .footer-logo img {
    max-height: 50px;
}

footer ul li {
    margin-bottom: 0;
}

/* social */
footer .social-icon-style-09 .small-icon a {
    width: 50px;
    height: 50px;
}

footer .social-icon-style-09 ul li a span {
    background-color: var(--light-orange);
}

/* blog comment */
.blog-comment li .btn-reply:hover {
    color: var(--dark-gray);
}

/* revolution slider */
.wrapper {
    padding: 0 20%;
    position: relative;
}

.tparrows.tp-rightarrow:before {
    content: "prev";
}

.tparrows.tp-leftarrow:before {
    content: "next";
}

.uranus.tparrows:before {
    white-space: nowrap;
    text-transform: uppercase;
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 6px;
    line-height: 70px;
    transform-origin: 0 0;
    transform: rotate(-90deg);
    bottom: 0;
    margin-top: 110px;
    color: #232323;
}

.uranus.tparrows {
    width: 70px;
    height: 50%;
    display: flex;
    vertical-align: middle;
    align-items: center;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.1);
    border-width: 1px 0px 0px 1px
}

.uranus.tparrows.tp-leftarrow {
    border-top: 0;
}

.shop-btn {
    position: absolute !important;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) !important;
}

.title-text {
    padding: 100px !important;
}

.todays-deal-section,
.featured-categories-section {
    background-color: var(--white) !important;
    border: 1px solid #1b1a1f;
    border-radius: 10px;
    padding: 1.2rem !important;
}

.btn-primary:hover {
    color: var(--base-color) !important;
}

.todays-deal-section h6,
.featured-categories-section h6 {
    font-size: 20px;
}

.toggle-password-wrap {
    position: relative;
}

.toggle-password-wrap i {
    position: absolute;
    right: 20px;
    top: 60%;
    z-index: 999;
}

.tracking-card {
    transition: all 0.3s ease;
}

.tracking-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.05) !important;
}

.tracking-step {
    position: relative;
    padding-bottom: 2rem;
}

.tracking-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 44px;
    bottom: -10px;
    width: 2px;
    background: linear-gradient(180deg, #e5e7eb 0%, #e5e7eb 100%);
}

.tracking-step.completed:not(:last-child)::before {
    background: linear-gradient(180deg, #10b981 0%, #e5e7eb 80%);
}

.tracking-step .step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bs-white);
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.tracking-step.completed .step-icon {
    border-color: #10b981;
    background: #10b981;
    color: var(--bs-white);
}

.tracking-step.active .step-icon {
    border-color: #4361ee;
    background: #4361ee;
    color: var(--bs-white);
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.2);
}

.tracking-step.pending .step-icon {
    border-color: #f59e0b;
    background: #f59e0b;
    color: var(--bs-white);
}

.tracking-step .step-content {
    flex: 1;
}

.order-summary-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.order-details-timeline .status-timeline {
    position: relative;
    padding: 1rem 0;
}

.order-details-timeline .status-step {
    position: relative;
    padding-bottom: 2rem;
}

.order-details-timeline .status-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 40px;
    bottom: -10px;
    width: 2px;
    background: linear-gradient(180deg, #e5e7eb 0%, #e5e7eb 100%);
}

.order-details-timeline .status-step.completed:not(:last-child)::before {
    background: linear-gradient(180deg, #10b981 0%, #e5e7eb 80%);
}

.order-details-timeline .status-step.completed .status-icon {
    border-color: #10b981;
    background: #10b981;
    color: var(--white);
}

.order-details-timeline .status-step.active .status-icon {
    border-color: #4361ee;
    background: #4361ee;
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.2);
}

.order-details-timeline .status-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.order-summary-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.order-details .tracking-number {
    font-family: monospace;
    letter-spacing: 1px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 500;
}

.status-badge.delivered {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-badge.shipped {
    background: rgba(67, 97, 238, 0.1);
    color: #4361ee;
}

.status-badge.processing {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-badge.pending {
    background: rgba(107, 114, 128, 0.1);
    color: #6b7280;
}

.tracking-number {
    font-family: monospace;
    letter-spacing: 1px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: scaleIn 0.5s ease-out;
}

.order-summary-card {
    transition: all 0.3s ease;
}

.order-summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.1);
}

.tracking-button {
    transition: all 0.2s ease;
}

.tracking-button:hover {
    transform: translateX(5px);
}

.order-detail-item {
    border-left: 3px solid #10b981;
    padding-left: 1rem;
    margin-bottom: 1rem;
}

/* 
.product-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.5rem;
} */

.affiliate-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.affiliate-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.affiliate-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.how-it-works-section .rounded-circle {
    font-size: 28px;
    width: 62px;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 2rem;
}

.btn-affiliate {
    background: var(--bs-white);
    color: #7256b1;
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-affiliate:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--bs-white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(67, 97, 238, 0.4);
}

.affiliate-feature-list {
    list-style: none;
    padding: 0;
}

.affiliate-feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.affiliate-feature-list li:last-child {
    border-bottom: none;
}

.affiliate-feature-list i {
    width: 24px;
    color: #10b981;
    font-size: 1.1rem;
}

.refund-request-timeline .status-timeline {
    position: relative;
    padding-left: 2rem;
}

.refund-request-timeline .status-timeline::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.refund-request-timeline .timeline-step {
    position: relative;
    padding-bottom: 1.5rem;
}

.refund-request-timeline .timeline-step:last-child {
    padding-bottom: 0;
}

.refund-request-timeline .timeline-icon {
    position: absolute;
    left: -2rem;
    top: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.refund-request-timeline .timeline-step.completed .timeline-icon {
    border-color: #10b981;
    background: #10b981;
    color: var(--white);
}

.refund-request-timeline .timeline-step.active .timeline-icon {
    border-color: #4361ee;
    background: #4361ee;
    color: var(--white);
    box-shadow: 0 0 0 4px rgba(67, 97, 238, 0.2);
}

.refund-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #4361ee;
}

.info-row {
    display: flex;
    padding: 0.3rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    width: 140px;
    color: #6b7280;
    font-weight: 500;
}

.info-value {
    flex: 1;
    color: #1f2937;
    font-weight: 500;
}

.refund-items-list {
    max-height: 300px;
    overflow-y: auto;
}

.refund-item {
    padding: 0.75rem;
    border-bottom: 1px solid #f1f5f9;
}

.refund-item:last-child {
    border-bottom: none;
}


.conversation-card {
    transition: all 0.2s ease;
}

.conversation-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.conversation-status {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.status-open {
    background: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-closed {
    background: #6b7280;
}

.status-pending {
    background: #f59e0b;
    box-shadow: 0 0 0 2px rgba(245, 158, 11, 0.2);
}

.status-completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-failed {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-badge.approved {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-badge.rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.status-cancelled {
    background: #dc3545;
    color: #fff;
}

.track-your-order-section .tracking-timeline {
    position: relative;
    padding-left: 30px;
}

.track-your-order-section .tracking-step {
    position: relative;
    padding-bottom: 25px;
}

.track-your-order-section .tracking-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 30px;
    width: 2px;
    height: calc(100% - 20px);
    background: #dee2e6;
}

.track-your-order-section .step-icon {
    width: 32px;
    height: 32px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #adb5bd;
}

.track-your-order-section .step-icon.completed {
    background: #28a745;
    color: #fff;
}

.track-your-order-section .step-icon.active {
    background: #007bff;
    color: #fff;
    animation: pulse1 1.5s infinite;
}

.copy-to-clipboard {
    cursor: pointer;
}

.unread-badge {
    background: #ef4444;
    color: var(--white);
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.5rem;
    text-align: center;
}

.last-message {
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.conversation-link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.conversation-link:hover {
    color: #4361ee !important;
}

.refund-card {
    transition: all 0.2s ease;
}

.refund-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

.refund-amount {
    font-size: 1.25rem;
    font-weight: 700;
}

.order-link {
    text-decoration: none;
    transition: color 0.2s ease;
}

.order-link:hover {
    color: #4361ee !important;
}

.active-filter {
    background: #4361ee !important;
    color: var(--white) !important;
    border-color: #4361ee !important;
}

.filter-active {
    background: #4361ee !important;
    color: var(--white) !important;
}

.message-bubble {
    padding: 1rem;
    border-radius: 1.25rem;
    max-width: 85%;
}

.message-sent {
    background: linear-gradient(145deg, #4361ee, #3a56d4);
    color: var(--white);
    border-radius: 1.25rem 1.25rem 0.25rem 1.25rem;
    margin-left: auto;
}

.message-received {
    background: #f1f5f9;
    color: #1f2937;
    border-radius: 1.25rem 1.25rem 1.25rem 0.25rem;
}

.message-time {
    font-size: 0.7rem;
    opacity: 0.7;
    margin-top: 0.25rem;
}

.message-sent .message-time {
    color: rgba(255, 255, 255, 0.8);
}

.commission-rate {
    font-size: 2rem;
    font-weight: 700;
    color: #4361ee;
}

.copy-referral-btn {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.attachment-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    font-size: 0.8rem;
    text-decoration: none;
}

.attachment-link:hover {
    background: rgba(255, 255, 255, 0.2);
}

.chat-messages {
    max-height: 500px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
    width: 5px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

/* toastr */
#toastr-content {
    position: fixed;
    right: 20px;
    bottom: 20px;
    color: var(--bs-white);
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    background: #333;
    height: auto;
    min-height: 45px;
    width: auto;
    min-width: 200px;
    max-width: 350px;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    z-index: 9999;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

#toastr-wrap.toastr-show #toastr-content {
    opacity: 1;
    transform: translateY(0);
}

#toastr-wrap.toastr-success #toastr-content {
    background: #10b981;
}

#toastr-wrap.toastr-error #toastr-content {
    background: #ef4444;
}

#toastr-wrap.toastr-warning #toastr-content {
    background: #f59e0b;
}

#toastr-wrap.toastr-info #toastr-content {
    background: #3b82f6;
}

.banners-swiper .swiper-wrapper .swiper-slide img {
    height: 567px !important;
    object-fit: cover;
    width: 100%;
    border-radius: 10px;
}

.todays-deal-section .swiper-slide img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.slider-navigation-style-04 {
    height: 36px;
    width: 36px;
    font-size: 14px;
}

.flash-timer {
    background: linear-gradient(135deg, #ee5a24, #f39c12);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 2rem;
}

.flash-timer .timer-box {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    min-width: 70px;
}

.flash-deal-card {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
}

.flash-deal-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.flash-deal-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.flash-deal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.flash-deal-card:hover .flash-deal-image img {
    transform: scale(1.05);
}

.flash-deal-content {
    padding: 20px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.flash-deal-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 2;
}

.badge-hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(238, 90, 36, 0.3);
}

.flash-deal-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.flash-deal-description {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.5;
}

.flash-deal-timer {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 15px;
    background: #f0f0f0;
    padding: 10px;
    border-radius: 12px;
}

.timer-item {
    flex: 1;
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 10px 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.timer-item span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #ee5a24;
    line-height: 1.2;
}

.timer-item small {
    font-size: 11px;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0.8;
}

.flash-deal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.tag {
    background: #f0f0f0;
    color: #6c757d;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
}

.flash-deal-footer {
    margin-top: 5px;
}

.shop-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ee5a24;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.shop-now-btn i {
    transition: transform 0.3s ease;
}

.flash-deal-card:hover .shop-now-btn i {
    transform: translateX(5px);
}

.price-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.price-input {
    flex: 1;
    position: relative;
}

.price-input .currency {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
}

.price-input input {
    padding-left: 30px !important;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    width: 100%;
    padding: 8px 12px 8px 25px;
}

.timer-item span {
    transition: all 0.2s ease;
}

.timer-item span.updated {
    animation: pulse 0.3s ease;
}

.rating-stars {
    color: #ffc107;
    font-size: 14px;
    cursor: pointer;
}

.rating-filter {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.rating-filter input {
    display: none;
}

.category-box .category-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-wrapper .blog-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.cover-background .cover-overly {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.cover-background .container {
    position: relative;
    z-index: 2;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.message-bubble {
    padding: 1rem;
    border-radius: 1.25rem;
    max-width: 85%;
}

.message-sent {
    background: linear-gradient(145deg, #4361ee, #3a56d4);
    color: var(--white);
    border-radius: 1.25rem 1.25rem 0.25rem 1.25rem;
    margin-left: auto;
}

.message-received {
    background: #f1f5f9;
    color: #1f2937;
    border-radius: 1.25rem 1.25rem 1.25rem 0.25rem;
}

.chat-messages {
    max-height: 500px;
    overflow-y: auto;
    padding: 1rem;
}

.product-queries .product-query-avatar,
.blog-comment .blog-comment-avatar {
    width: 55px;
    height: 52px;
    margin: auto;
    border-radius: 50%;
    background: #dddddd;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-queries li {
    padding-bottom: 65px;
    position: relative;
    list-style: none;
}

.product-queries ul {
    list-style: outside none none;
    margin-left: 70px;
}

.product-queries ul li {
    margin-top: 60px;
    padding-bottom: 0;
}

.custom-pagination {
    gap: 10px;
}

.custom-pagination .page-link {
    border-radius: 30px !important;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-backface-hidden .swiper-slide p.text-dark-gray,
.shop-modern .grid-item .shop-box a.text-dark-gray,
.flash-deal-section p.text-dark-gray {
    font-size: 14px;
    text-align: left;
    line-height: normal;
    margin-bottom: 4px;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
}

.shop-modern .grid-item .shop-box .shop-footer .price,
.flash-deal-section .price,
.todays-deal-section .price {
    color: var(--base-color);
    font-size: 15px;
    font-weight: 600;
}

/* error pages */
.error-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.error-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.error-card:hover {
    transform: translateY(-5px);
}

.error-code {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
}

.error-code span {
    font-size: 80px;
    font-weight: 800;
}

.error-container-401 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.error-container-402 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.error-container-403 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.error-container-404 {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.error-container-419 {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}

.error-container-429 {
    background: linear-gradient(135deg, #e0c3fc 0%, #8ec5fc 100%);
}

.error-container-500 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.error-container-503 {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.shop-modern .grid-item .shop-box .shop-image {
    border: 1px solid var(--bs-gray-400);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

@keyframes pulse1 {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 123, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@media (min-width: 1921px) {
    .title-text {
        padding: 0 200px !important;
        font-size: 200px !important;
        line-height: 200px !important;
    }
}

@media (min-width: 1920px) {
    .cover-background {
        position: relative;
    }
    
    .cover-background::before {
        content: '';
        position: absolute;
        top: -10px;
        bottom: -10px;
        left: -10px;
        right: -10px;
        background-image: inherit;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
        filter: blur(30px);
        transform: scale(1.05);
        z-index: -1;
    }
}

@media (max-width: 1399px) {
    .navbar .navbar-nav .nav-link {
        padding: 10px 17px;
    }
}

@media (max-width: 1250px) {
    .title-text {
        padding: 0px !important;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 14px;
    }
}

@media (max-width: 1199px) {
    section {
        padding-top: 85px;
        padding-bottom: 85px;
    }

    .btn.btn-small {
        padding: 10px 15px 9px;
    }

    .btn.btn-extra-large {
        font-size: 16px;
    }

    .search-form-wrapper .search-form-box {
        width: 60%;
    }

    .title-text {
        padding: 0px !important;
    }

    .btn.btn-switch-text.btn-large>span {
        padding: 16px 30px;
    }

    footer .social-icon-style-09 .small-icon a {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 1023px) {
    .shop-btn {
        position: relative !important;
        bottom: 0px;
    }
}

@media (max-width: 991.98px) {
    .feature-box {
        padding: 1rem;
        border-radius: 10px;
        border: 1px solid var(--bs-gray-400);
    }

    .feature-box i {
        font-size: 28px;
    }

    .featured-categories-section {
        margin-bottom: 1rem;
    }

    .featured-categories-section .col-md-4 {
        width: 50%;
    }

    .flash-deal-section h6 {
        margin-top: 2rem;
    }

    .flash-deal-section img,
    .shop-modern .grid-item .shop-box .shop-image img {
        width: 220px !important;
        height: 250px;
    }

    .product-categorized .nav-tabs,
    .tab-style-04 .nav-tabs {
        display: flex;
        gap: 20px;
        margin-top: 20px;
    }

    .product-categorized .nav-item,
    .tab-style-04 .nav-item {
        display: inline-block !important;
        margin: unset !important;
    }

    .product-categorized .nav-item a,
    .tab-style-04 .nav-item a {
        font-size: 18px !important;
    }

    section {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .tab-style-04 .nav-tabs .nav-item {
        padding: 0 16px;
    }

    .tab-style-07 .nav-tabs .nav-item .nav-link {
        padding: 20px;
    }

    .navbar .btn.btn-hover-animation:hover .btn-text {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .navbar .btn.btn-hover-animation .btn-icon {
        display: none;
    }

    .navbar .navbar-nav .dropdown .dropdown-menu a,
    .navbar-modern-inner .navbar-nav .dropdown .dropdown-menu a,
    .navbar-full-screen-menu-inner .navbar-nav .dropdown .dropdown-menu a {
        line-height: 20px;
    }

    .navbar .navbar-nav .dropdown .dropdown-menu a {
        border-color: transparent;
    }

    .navbar>.container-fluid,
    .header-top-bar>.container-fluid {
        padding-left: 0;
        padding-right: 0;
    }

    /* google map */
    #map [aria-roledescription="map"] {
        left: 0px !important;
    }

    .contact-form-style-03 {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .tracking-step {
        padding-bottom: 1.5rem;
    }

    .info-row {
        flex-direction: column;
        gap: 0.5rem;
    }

    .info-label {
        width: 100%;
    }

    .affiliate-hero {
        padding: 2rem;
    }

    .tracking-step .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .tracking-step:not(:last-child)::before {
        left: 18px;
        top: 36px;
    }

    .category-card {
        padding: 0.75rem !important;
    }

    .order-details-timeline .status-icon {
        width: 40px;
        height: 40px;
        font-size: 0.875rem;
    }

    .order-details-timeline .status-step:not(:last-child)::before {
        left: 18px;
        top: 36px;
    }

    .category-card img {
        height: 70px !important;
    }

    .flash-deal-section .card-body {
        padding: 0.75rem !important;
    }

    .order-summary-card {
        margin-bottom: 1rem;
    }
}

@media (max-width: 767px) {
    .search-form-wrapper .search-form-box {
        width: 85%;
    }

    .wrapper {
        padding: 0 12%;
        margin: 0;
    }

    .column-layer {
        height: 50vh !important;
        display: flex !important;
    }

    section {
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .shop-modern .swiper-button-prev,
    .shop-modern .swiper-rtl .swiper-button-next {
        left: -15px;
        right: auto;
    }

    .shop-modern .swiper-button-next,
    .shop-modern .swiper-rtl .swiper-button-prev {
        right: -15px;
        left: auto;
    }

    .tab-style-04 .nav-tabs .nav-item .nav-link {
        line-height: 36px;
    }

    footer {
        padding-top: 50px;
    }
}

@media (max-width: 479px) {
    .uranus.tparrows:before {
        line-height: 40px;
        font-size: 14px;
    }

    .uranus.tparrows {
        width: 40px;
    }
}

@media (max-width: 900px) and (max-width: 870px) and (orientation: landscape) {
    .column-layer {
        height: 700px !important;
    }

    .uranus.tparrows {
        height: 70vh;
    }
}

@media (max-width: 991px) and (orientation: landscape) {
    .column-layer {
        height: 70vh !important;
    }

    .uranus.tparrows {
        height: 70vh;
    }

    .content-row {
        padding: 120px 120px 120px 150px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .header-icon {
        padding-right: 15px;
    }

    .navbar .navbar-nav .nav-link {
        font-size: 17px;
        padding: 10px 7px;
    }

    .header-icon .icon>a {
        font-size: 17px;
        padding-left: 18px;
    }
}