@font-face {
    font-family: 'Ember RG';
    src: url('../fonts/amber/AmazonEmber_Regular.ttf');
    /* IE9 Compat Modes */
}

@font-face {
    font-family: 'Ember Bold';
    src: url('../fonts/amber/AmazonEmber_Bold.ttf');
    /* IE9 Compat Modes */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f5f5f5;
}

/* =========================================
   DAYAFA HEADER CSS
========================================= */

.dayafa-header {
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #ececec;
    position: relative;
    z-index: 999;
}

/* HEADER WRAP */
.header-wrap {
    min-height: 88px;
    display: grid;
    grid-template-columns: 150px 1fr 240px;
    align-items: center;
    gap: 20px;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
}

.logo img,
.offcanvas-logo img {
    max-height: 54px;
    width: auto;
    object-fit: contain;
}

/* CENTER AREA */
.center-area {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* SEARCH BOX */
.search-box,
.mobile-search {
    width: 100%;
    max-width: 520px;
    height: 36px;
    border: 1px solid #7b8491;
    border-radius: 40px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    margin-bottom: 14px;
}

.search-box span,
.mobile-search span {
    font-size: 14px;
    color: #7b8491;
    line-height: 1;
}

.search-box input,
.mobile-search input {
    width: 100%;
    border: 0;
    outline: none;
    background: transparent;
    font-size: 13px;
    color: #111827;
}

.search-box input::placeholder,
.mobile-search input::placeholder {
    color: #98a2b3;
}

/* NAVIGATION */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.nav-menu a {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    text-decoration: none;
    transition: 0.2s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #6f2f98;
}

/* RIGHT ACTIONS */
.right-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

/* ICON BUTTON */
.icon-btn {
    position: relative;
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 15px;
    color: #667085;
    cursor: pointer;
}

/* CART BADGE */
.cart-count-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #6f2f98;
    color: #fff;
    font-size: 10px;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SIGNIN */
.signin {
    font-size: 12px;
    font-weight: 500;
    color: #667085;
    text-decoration: none;
    transition: 0.2s ease;
}

.signin:hover {
    color: #6f2f98;
}

/* REGISTER */
.register {
    background: #6f2f98;
    color: #fff;
    padding: 8px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s ease;
}

.register:hover {
    background: #5c247f;
    color: #fff;
}

/* MOBILE MENU BUTTON */
.menu-btn {
    width: 40px;
    height: 40px;
    border: 0;
    background: #6f2f98;
    color: #fff;
    border-radius: 10px;
    font-size: 22px;
    display: none;
}

/* =========================================
   MOBILE OFFCANVAS
========================================= */

.dayafa-mobile-offcanvas {
    width: 320px;
    border: 0;
}

.dayafa-mobile-offcanvas .offcanvas-header {
    border-bottom: 1px solid #edf0f3;
    padding: 18px;
}

.dayafa-mobile-offcanvas .offcanvas-body {
    padding: 18px;
}

/* MOBILE NAV */
.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 12px 14px;
    border: 1px solid #edf0f3;
    border-radius: 10px;
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
    background: #f3e4ff;
    border-color: #f3e4ff;
    color: #6f2f98;
}

/* MOBILE ACTIONS */
.mobile-actions {
    margin-top: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-cart,
.mobile-signin,
.mobile-register {
    width: 100%;
    min-height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

/* MOBILE CART */
.mobile-cart {
    border: 1px solid #edf0f3;
    background: #fff;
    color: #111827;
}

.mobile-cart span {
    background: #6f2f98;
    color: #fff;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* MOBILE SIGNIN */
.mobile-signin {
    border: 1px solid #6f2f98;
    color: #6f2f98;
}

/* MOBILE REGISTER */
.mobile-register {
    background: #6f2f98;
    color: #fff;
}

.mobile-register:hover {
    color: #fff;
}

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

.custom-lang-currency {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-trigger {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: #667085;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lang-trigger:hover {
    color: #6f2f98;
}

.custom-dropdown {
    position: absolute;
    top: 42px;
    right: 0;
    width: 210px;
    background: #fff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: 0.25s ease;
}

.custom-lang-currency:hover .custom-dropdown,
.custom-lang-currency.is-open .custom-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.language-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.language-item {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    cursor: pointer;
    font-size: 13px;
    color: #111827;
    text-align: left;
}

.language-item:hover,
.language-item.active {
    color: #6f2f98;
}

.language-item input {
    accent-color: #6f2f98;
    pointer-events: none;
}

.dropdown-divider {
    width: 100%;
    height: 1px;
    background: #eee;
    margin: 12px 0;
}

.currency-select {
    width: 100%;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 0 10px;
    font-size: 13px;
    outline: none;
    background: #fff;
}

.currency-select:focus {
    border-color: #6f2f98;
}

/* =========================================
   RTL SUPPORT
========================================= */

html[dir="rtl"] .dayafa-header,
html[dir="rtl"] .dayafa-mobile-offcanvas {
    direction: rtl;
    text-align: right;
}

html[dir="rtl"] .cart-count-badge {
    right: auto;
    left: -8px;
}

html[dir="rtl"] .custom-dropdown {
    right: auto;
    left: 0;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

    .header-wrap {
        min-height: 72px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .center-area,
    .right-actions {
        display: none !important;
    }

    .menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo img {
        max-height: 44px;
    }
}

@media (max-width: 575px) {

    .dayafa-mobile-offcanvas {
        width: 290px;
    }

    .menu-btn {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    .logo img {
        max-height: 40px;
    }
}

/* MOBILE LANGUAGE DROPDOWN FIX */

@media (max-width: 991px) {

    .dayafa-mobile-offcanvas {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .mobile-lang {
        width: 100%;
        position: relative;
        z-index: 9999;
    }

    .mobile-lang .custom-lang-currency {
        width: 100%;
        position: relative;
    }

    .mobile-lang .lang-trigger {
        width: 100%;
        height: 46px;
        border: 1px solid #edf0f3;
        border-radius: 10px;
        justify-content: space-between;
        padding: 0 14px;
        background: #fff;
    }

    .mobile-lang .custom-dropdown {
        position: absolute;
        top: calc(100% + 8px);
        left: 0 !important;
        right: 0 !important;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
        transform: none;
        z-index: 99999;
    }

    html[dir="rtl"] .mobile-lang .custom-dropdown {
        left: 0 !important;
        right: 0 !important;
    }
}

/* Header CSS  End */

/* Hero Section CSS  Start */
.hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 45%, rgba(135, 184, 154, 0.33), transparent 24%),
        radial-gradient(circle at 78% 38%, rgba(176, 134, 216, 0.33), transparent 24%),
        #f7f5f5;
    padding: 95px 20px;
}

.hero-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    align-items: center;
    gap: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f4efff;
    color: #6b2aa0;
    padding: 13px 18px;
    border-radius: 999px;
    font-size: 16px;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.25;
    font-weight: 800;
    color: #07110b;
    margin-bottom: 24px;
}

.hero-content p {
    max-width: 560px;
    color: #6b7280;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-buttons a {
    text-decoration: none;
    height: 52px;
    padding: 0 22px;
    border-radius: 7px;
    display: inline-flex;
    align-items: center;
    gap: 40px;
    font-size: 16px;
}

.btn-primary {
    background: #6b2aa0;
    color: #fff;
}

.btn-outline {
    border: 1px solid #6b2aa0;
    color: #6b2aa0;
    background: transparent;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: 20px 55px;
    color: #6b7280;
    font-size: 15px;
    font-weight: 400;
}

.hero-features span i {
    color: #006400;
    font-size: 14px;
    margin-right: 10px;
}

.hero-images {
    position: relative;
    height: 560px;
}

.hero-img {
    position: absolute;
    object-fit: cover;
    border-radius: 16px;
}

.img-one {
    width: 350px;
    height: 250px;
    left: 0;
    top: 0;
}

.img-two {
    width: 240px;
    height: 185px;
    right: 70px;
    top: 5px;
}

.img-three {
    width: 180px;
    height: 150px;
    left: 0;
    top: 265px;
}

.img-four {
    width: 380px;
    height: 250px;
    right: 95px;
    top: 265px;
}

.hero-card {
    position: absolute;
    left: 0;
    bottom: 55px;
    background: #fff;
    border-radius: 8px;
    padding: 16px 22px 16px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, .18);
}

.card-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #f4e8ff;
    color: #6b2aa0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.hero-card span {
    display: block;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 4px;
}

.hero-card strong {
    color: #111827;
    font-size: 18px;
}

@media (max-width: 991px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-images {
        height: 520px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 60px 15px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons a {
        justify-content: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-images {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .hero-img,
    .img-one,
    .img-two,
    .img-three,
    .img-four {
        position: static;
        width: 100%;
        height: 160px;
    }

    .hero-card {
        position: static;
        grid-column: 1 / -1;
    }
}

/* Hero Section CSS  End */


/* Category Section CSS  Start */

.category-section {
    background: #fff;
}

.category-title {
    font-size: 28px;
    font-weight: 800;
    color: #101828;
    margin-bottom: 6px;
}

.category-subtitle {
    font-size: 13px;
    color: #8a8f98;
    margin-bottom: 0;
}

.category-card {
    height: 118px;
    width: 100%;
    border: 1px solid #ededed;
    border-radius: 12px;
    background: #fff;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: .25s ease;
}

.category-card:hover {
    border-color: #ead7ff;
    box-shadow: 0 12px 28px rgba(107, 42, 160, .08);
    transform: translateY(-3px);
}

.category-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 8px;
    background: #f4e8ff;
    color: #7b2cbf;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.category-card h5 {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 7px;
}

.category-card p {
    font-size: 12px;
    line-height: 1.45;
    color: #6b7280;
    margin: 0;
}

@media (min-width: 992px) {
    .category-section .container {
        max-width: 1120px;
    }
}

@media (max-width: 576px) {
    .category-title {
        font-size: 24px;
    }

    .category-card {
        height: auto;
        padding: 16px;
    }
}

/* Category Section CSS  End */

.form-control,
.form-control:focus,
.form-control:hover,
.form-control:active,
.form-control:visited {
    outline: none;
    box-shadow: none;
    border: 1px solid #efefef;
}


.address-selected {
    border: 2px solid orange !important;
}

/* ------------------------- Bottom Menu ------------------- */
#bottom-menu {
    position: fixed;
    bottom: 0;
    background: #131921;
    width: 100%;
    z-index: 999;
}

/* ------------------------- Products    ------------------- */

.requested-products {
    background: #fff;
}

.requested-products .container {
    max-width: 1320px;
}

.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    padding-bottom: 18px;
    border-bottom: 1px solid #ececec;
}

.section-head h2 {
    font-size: 20px;
    font-weight: 500;
    color: #111827;
    margin: 0;
}

.view-all {
    text-decoration: none;
    color: #6b2aa0;
    font-size: 14px;
    font-weight: 600;
}

.product-card {
    position: relative;
}

.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 18px;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #ff6b00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
    z-index: 2;
}

.discount-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    color: #111827;
    font-size: 11px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 50px;
    z-index: 2;
    text-decoration: none;
}

.wishlist-btn {
    position: absolute;
    right: 14px;
    bottom: 14px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 0;
    background: #fff;
    color: #555;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .25s ease;
}

.product-category {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #9ca3af;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.product-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 18px;
}

.product-rating i {
    color: #ffb400;
    font-size: 12px;
}

.product-rating span {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}

.product-rating small {
    color: #9ca3af;
    font-size: 12px;
}

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

.product-bottom h4 {
    font-size: 14px;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

.cart-btn {
    height: 44px;
    padding: 0 20px;
    border-radius: 50px;
    background: #6b2aa0;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: .25s ease;
    border: none;
}

.cart-btn:hover {
    background: #581f87;
    color: #fff;
}

@media (max-width: 991px) {
    .product-image img {
        height: 250px;
    }

    .product-content h3 {
        font-size: 16px;
    }

    .product-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
}

@media (max-width: 576px) {
    .section-head h2 {
        font-size: 18px;
    }

    .product-image img {
        height: 190px;
    }

    .product-content h3 {
        font-size: 16px;
    }

    .product-bottom h4 {
        font-size: 14px;
    }

    .cart-btn {
        width: 100%;
        justify-content: center;
    }
}



.why-dayafa-section {
    background: #ffffff;
}

.why-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111820;
    margin-bottom: 22px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-item {
    height: 47px;
    border: 1px solid #edf0f2;
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    background: #fff;
}

.why-item span {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: #f4e8ff;
    color: #9b51e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-right: 12px;
}

.why-item p {
    font-size: 12px;
    color: #7b8491;
    margin: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 210px);
    gap: 16px;
    justify-content: center;
}

.stat-card {
    width: 210px;
    height: 189px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.stat-card h3 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.stat-card.green {
    background: #006b05;
}

.stat-card.orange {
    background: #df6900;
}

.stat-card.blue {
    background: #0b5cc7;
}

.stat-card.red {
    background: #b40006;
}

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

    .stat-card {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .why-content h2 {
        font-size: 26px;
    }

    .stats-grid {
        gap: 10px;
    }

    .stat-card {
        height: 140px;
    }

    .stat-card h3 {
        font-size: 28px;
    }
}




.cta-section {
    background: #ffffff;
}

.cta-wrapper {
    background: #6f2f98;
    border-radius: 20px;
    padding: 46px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-content h2 {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

.cta-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-buttons a {
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-contact {
    background: #f3f3f3;
    color: #222;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 2px;
}

.btn-contact:hover {
    background: #ffffff;
    color: #000;
}

.btn-quote {
    background: #f3e8ff;
    color: #6f2f98;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-quote span {
    font-size: 18px;
    line-height: 1;
}

.btn-quote:hover {
    background: #ffffff;
    color: #6f2f98;
}

@media (max-width: 991px) {
    .cta-wrapper {
        flex-direction: column;
        align-items: flex-start;
        padding: 35px 25px;
    }

    .cta-buttons {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .cta-wrapper {
        border-radius: 16px;
        padding: 28px 20px;
    }

    .cta-content h2 {
        font-size: 22px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .btn-contact,
    .btn-quote {
        justify-content: center;
        width: 100%;
    }
}


/* Marketplace */
.marketplace-top-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-filter-btn {
    height: 35px;
    border: 1px solid #6f2f98;
    background: #6f2f98;
    color: #fff;
    border-radius: 6px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 600;
}

.mobile-filter-btn i {
    margin-right: 5px;
}

.filter-modal .modal-content {
    border: 0;
    border-radius: 14px;
}

.filter-modal .modal-header {
    border-bottom: 1px solid #eef0f3;
}

.filter-modal .modal-title {
    font-size: 18px;
    font-weight: 800;
    color: #111820;
}

.mobile-filter-sidebar {
    border-right: 0;
    padding-right: 0;
}

.mobile-filter-sidebar .filter-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.marketplace-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .marketplace-section {
        padding-top: 30px !important;
    }

    .marketplace-header {
        align-items: center;
        gap: 12px;
    }

    .marketplace-header h2 {
        font-size: 24px;
    }

    .marketplace-sort {
        width: 105px;
    }
}

@media (max-width: 575px) {
    .marketplace-header {
        flex-wrap: wrap;
    }

    .marketplace-top-actions {
        width: 100%;
        justify-content: space-between;
    }

    .mobile-filter-btn,
    .marketplace-sort {
        flex: 1;
        width: auto;
    }
}

/* =========================================
   MOBILE FILTER OFFCANVAS STYLE
========================================= */

.filter-modal .modal-dialog {
    margin: 0;
    max-width: 380px;
    height: 100%;
}

.filter-modal .modal-content {
    height: 100vh;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    animation: filterCanvas .25s ease;
}

.filter-modal .modal-header {
    min-height: 65px;
    padding: 18px 20px;
    border-bottom: 1px solid #eef0f3;
    background: #fff;
}

.filter-modal .modal-title {
    font-size: 18px;
    font-weight: 800;
    color: #111820;
}

.filter-modal .btn-close {
    box-shadow: none !important;
    opacity: 1;
}

.filter-modal .modal-body {
    padding: 20px;
    overflow-y: auto;
    background: #fff;
}

/* =========================================
   MARKETPLACE FILTER SIDEBAR
========================================= */

.market-sidebar,
.mobile-filter-sidebar {
    width: 100%;
}

/* FILTER BLOCK */
.filter-block {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eef0f3;
}

.filter-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

/* TITLE */
.filter-block h6 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: #697386;
    margin-bottom: 14px;
}

/* CATEGORY ACTIVE BOX */
.category-box {
    min-height: 34px;
    border-radius: 8px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    font-size: 13px;
    font-weight: 500;
    color: #667085;
    margin-bottom: 14px;
    transition: .2s ease;
}

.category-box.active {
    background: #f3e4ff;
    color: #6f2f98;
    font-weight: 700;
}

/* CATEGORY ICON */
.category-box i,
.category-parent i {
    font-size: 6px;
    color: #d1d5db;
}

/* CATEGORY LIST */
.category-list {
    padding-left: 14px;
    margin-bottom: 10px;
}

/* CATEGORY PARENT */
.category-parent {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #475467;
    margin-bottom: 12px;
}

/* CATEGORY CHILD */
.category-list a {
    display: block;
    text-decoration: none;
    font-size: 12px;
    color: #98a2b3;
    margin-bottom: 10px;
    transition: .2s ease;
}

.category-list a:hover {
    color: #6f2f98;
}

/* TAG LIST */
.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* TAG BUTTON */
.tag-list button {
    border: 1px solid #dfe4ea;
    background: #fff;
    color: #667085;
    border-radius: 30px;
    padding: 7px 12px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    transition: .2s ease;
}

.tag-list button:hover {
    border-color: #6f2f98;
    color: #6f2f98;
}

.tag-list button.active {
    background: #6f2f98;
    color: #fff;
    border-color: #6f2f98;
}

/* PRICE INPUTS */
.price-inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.price-inputs input {
    width: 100%;
    height: 38px;
    border: 1px solid #e4e7ec;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 12px;
    color: #111827;
    outline: none;
    background: #fff;
    transition: .2s ease;
}

.price-inputs input:focus {
    border-color: #6f2f98;
}

/* FILTER BUTTON */
.filter-btn {
    width: 100%;
    height: 40px;
    border: 1px solid #6f2f98;
    border-radius: 8px;
    background: #6f2f98;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    transition: .2s ease;
}

.filter-btn:hover {
    background: #5d2580;
    border-color: #5d2580;
}

/* MOBILE */
@media (max-width: 991px) {

    .filter-block {
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .tag-list {
        gap: 7px;
    }

    .tag-list button {
        font-size: 11px;
    }
}

/* RTL */
html[dir="rtl"] .category-list {
    padding-left: 0;
    padding-right: 14px;
}

html[dir="rtl"] .category-list a,
html[dir="rtl"] .category-parent,
html[dir="rtl"] .filter-block h6 {
    text-align: right;
}

/* Use Case Section CSS  Start */


.use-case-section {
    background: #fff;
}

.use-title {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 800;
    color: #151a1f;
    margin-bottom: 6px;
}

.use-subtitle {
    font-size: 13px;
    color: #7b858f;
    margin-bottom: 0;
}

.use-card {
    background: #fff;
    border: 1px solid #edf0f2;
    border-radius: 12px;
    overflow: hidden;
    height: 182px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.use-card img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    display: block;
}

.use-card h5 {
    font-size: 14px;
    font-weight: 800;
    color: #111820;
    margin: 0;
    padding: 13px 14px;
    white-space: nowrap;
}

.use-case-section .row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.use-case-section .col {
    width: 100%;
}

@media (max-width: 991px) {
    .use-case-section .row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .use-case-section .row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .use-case-section .col-xl-2 {
        width: 15.5%;
    }
}

@media (max-width: 575px) {
    .use-card {
        height: auto;
    }

    .use-card img {
        height: 150px;
    }
}





/* Recommended Section */


.recommended-section {
    background: #fff;
}

.recommended-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 12px;
    margin-bottom: 30px;
}

.recommended-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #101820;
    margin: 0;
}

.recommended-header a {
    font-size: 13px;
    font-weight: 500;
    color: #0057ff;
    text-decoration: none;
}

.rec-card {
    position: relative;
    height: 286px;
    border-radius: 14px;
    overflow: hidden;
    padding: 38px 26px;
    display: flex;
    align-items: center;
}

.rec-card-light {
    background: #fff8f8;
    border: 1px solid #f0e6e6;
}

.rec-card-orange {
    background: #ffa300;
}

.rec-content {
    position: relative;
    z-index: 2;
    max-width: 55%;
}

.rec-content p {
    font-size: 12px;
    letter-spacing: .5px;
    color: #ff4b21;
    margin-bottom: 15px;
    font-weight: 500;
}

.rec-card-orange .rec-content p {
    color: #fff5d8;
}

.rec-content h2 {
    font-size: 31px;
    line-height: 1.35;
    font-weight: 800;
    color: #081018;
    margin-bottom: 45px;
}

.rec-card img {
    position: absolute;
    right: 12px;
    bottom: 18px;
    max-width: 46%;
    max-height: 245px;
    object-fit: contain;
}

.rec-card-orange img {
    right: 20px;
    bottom: 12px;
    max-width: 43%;
}

.rec-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    height: 48px;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.rec-btn.purple {
    background: #692999;
}

.rec-btn.outline {
    border: 1px solid #fff;
    background: transparent;
}

.rec-btn:hover {
    color: #fff;
}

.small-product {
    width: 100%;
}

.small-img {
    width: 100%;
    height: 91px;
    background: #efb85b;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.small-product h6 {
    font-size: 13px;
    font-weight: 800;
    color: #151515;
    margin: 12px 0 6px;
}

.small-product p {
    font-size: 12px;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .rec-card {
        height: 260px;
    }

    .rec-content h2 {
        font-size: 26px;
    }

    .small-product,
    .small-img {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .rec-card {
        height: auto;
        min-height: 250px;
        padding: 28px 20px;
    }

    .rec-content h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .rec-card img {
        max-width: 45%;
    }
}

/* Arabic Support */
html[dir="rtl"] .recommended-header {
    flex-direction: row-reverse;
}

html[dir="rtl"] .rec-content {
    margin-left: auto;
    margin-right: 0;
    text-align: right;
}

html[dir="rtl"] .rec-card img {
    right: auto;
    left: 12px;
}

html[dir="rtl"] .rec-card-orange img {
    right: auto;
    left: 20px;
}

html[dir="rtl"] .rec-btn {
    flex-direction: row-reverse;
}

html[dir="rtl"] .small-product {
    text-align: right;
}


/* Footer CSS  Start */


.dayafa-footer {
    background: #f8f8f9;
    padding-top: 82px;
    color: #6b7280;
    font-family: Arial, sans-serif;
}

.dayafa-footer .container {
    max-width: 1320px;
}

.footer-main {
    padding-bottom: 55px;
}

.footer-logo {
    width: 96px;
    height: auto;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 25px;
    color: #7b8190;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid #eef0f4;
    background: #fff;
    color: #596174;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: 0.25s ease;
}

.footer-social a:hover {
    background: #6b2aa0;
    color: #fff;
    border-color: #6b2aa0;
}

.footer-title {
    font-size: 14px;
    font-weight: 800;
    color: #667085;
    margin-bottom: 24px;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 17px;
}

.footer-links a {
    text-decoration: none;
    color: #7b8190;
    font-size: 13px;
    transition: 0.25s ease;
}

.footer-links a:hover {
    color: #6b2aa0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #7b8190;
}

.footer-contact i {
    width: 16px;
    color: #7b8190;
    font-size: 14px;
}

.newsletter-info {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 28px;
}

.newsletter-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: #f4e8ff;
    color: #6b2aa0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-info p {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: #7b8190;
}

.newsletter-form {
    max-width: 420px;
    height: 58px;
    background: #fff;
    border: 1px solid #eef0f4;
    border-radius: 9px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.newsletter-form input {
    flex: 1;
    height: 100%;
    border: 0;
    outline: 0;
    padding: 0 18px;
    font-size: 14px;
    color: #667085;
    background: transparent;
}

.newsletter-form button {
    width: 58px;
    height: 100%;
    border: 0;
    background: transparent;
    color: #667085;
    font-size: 18px;
    cursor: pointer;
}

.footer-bottom {
    border-top: 1px solid #eceef2;
    padding: 25px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-bottom p {
    margin: 0;
    color: #7b8190;
    font-size: 13px;
}

.bottom-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.bottom-links a {
    text-decoration: none;
    color: #7b8190;
    font-size: 13px;
}

.bottom-links a:hover {
    color: #6b2aa0;
}

@media (max-width: 991px) {
    .dayafa-footer {
        padding-top: 55px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .bottom-links {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-info {
        align-items: flex-start;
    }
}


.pd-page {
    background: #fff;
    padding: 38px 0 45px;
}

.pd-container {
    max-width: 1050px;
}

.pd-breadcrumb {
    font-size: 11px;
    color: #777;
    margin-bottom: 14px;
}

.pd-breadcrumb a {
    color: #777;
    text-decoration: none;
}

.pd-main-img-box {
    width: 100%;
    height: 345px;
    border-radius: 14px;
    overflow: hidden;
    background: #f5f5f5;
}

.pd-main-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pd-thumbs {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 12px;
}

.pd-thumb {
    width: 92px;
    height: 70px;
    object-fit: cover;
    border-radius: 7px;
    border: 2px solid transparent;
    cursor: pointer;
    background: #f7f7f7;
    transition: .2s;
}

.pd-thumb.active {
    border-color: #64149b;
}

.pd-thumb-next {
    width: 42px;
    height: 70px;
    border: 0;
    border-radius: 7px;
    background: #666;
    color: #fff;
    font-size: 17px;
}

.pd-info {
    padding-left: 24px;
}

.pd-category {
    font-size: 10px;
    color: #777;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: .4px;
    margin-bottom: 3px;
}

.pd-title {
    font-size: 28px;
    line-height: 1.2;
    font-weight: 800;
    color: #111;
    margin-bottom: 6px;
}

.pd-rating {
    font-size: 11px;
    color: #777;
    margin-bottom: 14px;
}

.pd-rating i {
    color: #f5a400;
    font-size: 11px;
}

.pd-desc {
    color: #777;
    font-size: 13px;
    line-height: 1.45;
    max-width: 390px;
    margin-bottom: 20px;
}

.pd-action-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.pd-qty {
    height: 34px;
    width: 110px;
    border: 1px solid #eee;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: #fff;
}

.pd-qty button {
    border: 0;
    background: transparent;
    color: #777;
    font-size: 15px;
    line-height: 1;
}

.pd-qty input {
    width: 36px;
    border: 0;
    text-align: center;
    font-size: 12px;
    outline: none;
    background: transparent;
}

.pd-cart-btn {
    height: 34px;
    border: 0;
    border-radius: 30px;
    background: #64149b;
    color: #fff;
    padding: 0 23px;
    font-size: 12px;
    font-weight: 700;
}

.pd-buy-btn {
    height: 34px;
    border: 1px solid #eee;
    border-radius: 30px;
    background: #fff;
    color: #555;
    padding: 0 27px;
    font-size: 12px;
}

.pd-service-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.pd-service {
    border: 1px solid #eee;
    border-radius: 7px;
    color: #0066ff;
    background: #fff;
    padding: 9px 15px;
    font-size: 12px;
    font-weight: 600;
}

.pd-service i {
    margin-right: 6px;
}

.pd-spec-card {
    background: #fafafa;
    border-radius: 15px;
    padding: 18px;
    max-width: 420px;
}

.pd-spec-title {
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 12px;
}

.pd-spec-item {
    background: #fff;
    border-radius: 5px;
    padding: 12px 14px;
    min-height: 58px;
    margin-bottom: 10px;
}

.pd-spec-label {
    font-size: 10px;
    font-weight: 800;
    margin-bottom: 3px;
    color: #111;
}

.pd-spec-value {
    font-size: 11px;
    color: #777;
}

.pd-related-title {
    font-size: 15px;
    font-weight: 800;
    color: #111;
    margin: 28px 0 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 14px;
}

.pd-product-card {
    position: relative;
    border: 0;
    background: transparent;
}

.pd-product-img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    border-radius: 9px;
    background: #f4f4f4;
}

.pd-heart {
    position: absolute;
    right: 8px;
    top: 158px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .14);
}

.pd-card-body {
    padding-top: 10px;
}

.pd-small-cat {
    font-size: 8px;
    color: #777;
    font-weight: 800;
    text-transform: uppercase;
}

.pd-card-name {
    font-size: 12px;
    font-weight: 800;
    color: #111;
    margin: 3px 0;
    min-height: 30px;
}

.pd-card-rating {
    font-size: 10px;
    color: #777;
    margin-bottom: 10px;
}

.pd-card-rating i {
    color: #f5a400;
    font-size: 9px;
}

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

.pd-price {
    font-size: 12px;
    font-weight: 800;
    color: #111;
}

.pd-small-cart {
    border: 0;
    background: #64149b;
    color: #fff;
    border-radius: 20px;
    font-size: 10px;
    padding: 8px 13px;
    white-space: nowrap;
}

@media(max-width: 991px) {
    .pd-info {
        padding-left: 0;
        margin-top: 24px;
    }

    .pd-main-img-box {
        height: 280px;
    }
}

@media(max-width: 575px) {
    .pd-page {
        padding-top: 20px;
    }

    .pd-title {
        font-size: 23px;
    }

    .pd-thumb {
        width: 70px;
        height: 58px;
    }

    .pd-thumb-next {
        height: 58px;
    }

    .pd-product-img {
        height: 145px;
    }

    .pd-cart-btn,
    .pd-buy-btn {
        padding: 0 18px;
    }
}


.cart-page-wrap {
    padding: 55px 0 75px;
    background: #fff;
}

.cart-title {
    font-size: 32px;
    font-weight: 800;
    color: #101820;
    margin-bottom: 32px;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 335px;
    gap: 16px;
    align-items: start;
}

.cart-items-card,
.cart-summary-card {
    border: 1px solid #ededed;
    border-radius: 18px;
    background: #fff;
}

.cart-items-card {
    padding: 18px;
}

.cart-product-row {
    display: grid;
    grid-template-columns: 78px 1fr auto;
    gap: 16px;
    padding: 0 0 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #f1f1f1;
}

.cart-product-row:last-child {
    border-bottom: 0;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-product-img {
    width: 78px;
    height: 78px;
    border-radius: 7px;
    object-fit: cover;
}

.cart-product-name {
    font-size: 13px;
    font-weight: 800;
    color: #101820;
    text-decoration: none;
    display: block;
    margin: 4px 0 7px;
}

.cart-unit-price {
    font-size: 13px;
    color: #6f7b8a;
    margin-bottom: 7px;
}

.cart-qty {
    width: 86px;
    height: 28px;
    border: 1px solid #edf0f4;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
}

.cart-qty button {
    width: 28px;
    height: 28px;
    border: 0;
    background: #fff;
    color: #687385;
    font-size: 18px;
    line-height: 1;
}

.cart-qty input {
    width: 28px;
    height: 28px;
    border: 0;
    text-align: center;
    color: #687385;
    font-size: 13px;
    outline: none;
}

.cart-line-price {
    min-width: 95px;
    text-align: right;
    font-size: 13px;
    font-weight: 800;
    color: #101820;
    padding-top: 4px;
}

.cart-remove {
    border: 0;
    background: transparent;
    color: #6f7b8a;
    font-size: 12px;
    margin-top: 8px;
    padding: 0;
}

.cart-remove i {
    margin-right: 6px;
}

.cart-summary-card {
    padding: 20px 18px 18px;
}

.cart-summary-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #6f7b8a;
    margin-bottom: 15px;
}

.cart-summary-line strong {
    color: #101820;
    font-size: 13px;
}

.cart-checkout-btn {
    width: 100%;
    height: 43px;
    border: 0;
    border-radius: 7px;
    background: #6b3097;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 15px;
}

.cart-quote-btn {
    width: 100%;
    height: 43px;
    border: 1px solid #edf0f4;
    border-radius: 7px;
    background: #fff;
    color: #777;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.cart-empty-box {
    max-width: 430px;
    margin: 40px auto;
    text-align: center;
}

@media(max-width:991px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
}

@media(max-width:575px) {
    .cart-page-wrap {
        padding: 30px 0 50px;
    }

    .cart-title {
        font-size: 26px;
    }

    .cart-product-row {
        grid-template-columns: 70px 1fr;
    }

    .cart-line-price {
        grid-column: 2;
        text-align: left;
        padding-top: 0;
    }

    .cart-product-img {
        width: 70px;
        height: 70px;
    }
}

/* Customer register and supplier register account */


.register-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
}

.login-page {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 56px 0;
    background: linear-gradient(180deg, #ffffff 0%, #faf8ff 100%);
}

.register-card {
    width: 100%;
    max-width: 460px;
    border: 1px solid #e6eaf2;
    border-radius: 16px;
    padding: 36px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(20, 28, 45, 0.08);
    animation: authCardIn .26s ease-out;
}

.login-card {
    border: 1px solid #e6eaf2;
    border-radius: 16px;
    box-shadow: 0 14px 40px rgba(20, 28, 45, 0.08);
    animation: authCardIn .26s ease-out;
}

.register-title {
    font-size: 30px;
    font-weight: 900;
    letter-spacing: -0.01em;
    color: #101820;
    margin-bottom: 20px;
}

.account-type-label,
.register-card label {
    font-size: 12px;
    font-weight: 700;
    color: #445064;
    margin-bottom: 7px;
}

.account-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 18px;
}

.account-tabs button {
    height: 40px;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    font-size: 13px;
    font-weight: 600;
    color: #414e61;
    transition: all .2s ease;
}

.account-tabs button.active {
    background: #f1e2fb;
    border-color: #e3c8f4;
    color: #6b3097;
}

.register-card .form-control,
.register-card .form-select {
    height: 42px;
    border-radius: 9px;
    border: 1px solid #dddddd;
    font-size: 13px;
    font-weight: 500;
    transition: border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

.register-card .form-control:focus,
.register-card .form-select:focus,
.login-page .form-control:focus {
    border-color: #b88ad8;
    box-shadow: 0 0 0 .2rem rgba(107, 48, 151, 0.14);
}

.register-card textarea.form-control {
    height: auto;
}

.register-card .form-control::placeholder {
    color: #cfcfcf;
}

.register-submit {
    width: 100%;
    height: 44px;
    border: 0;
    border-radius: 9px;
    background: #6b3097;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    margin-top: 10px;
    transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
}

.register-submit:hover:not(:disabled),
.login-page .btn.btn-primary:hover:not(:disabled) {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(107, 48, 151, 0.25);
}

.register-submit:disabled,
.login-page .btn.btn-primary:disabled {
    opacity: .75;
    cursor: not-allowed;
}

.login-text {
    text-align: center;
    font-size: 12px;
    color: #6f7b8a;
    margin-top: 18px;
    margin-bottom: 0;
}

.login-text a {
    color: #6b3097;
    font-weight: 700;
    text-decoration: none;
}

.password-eye {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #777;
}

.login-page .form-control,
.login-page .form-check-label,
.login-page a,
.login-page p {
    transition: all .2s ease;
}

@keyframes authCardIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.supplier-extra {
    max-height: 360px;
    overflow: auto;
    padding-right: 4px;
}

.upload-button {
    cursor: pointer;
    border: 1px dashed #6b3097;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
}

.upload-button i {
    font-size: 24px;
    color: #6b3097;
}


.dayafa-services-section {
    background: #ffffff;
    padding: 70px 0 80px;
}

.services-content {
    margin: 0 auto;
}

.section-label {
    display: block;
    color: #ff5a00;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: .2px;
}

.services-content h2 {
    font-size: 32px;
    line-height: 1.18;
    font-weight: 800;
    color: #111820;
    margin-bottom: 38px;
}

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

.service-card {
    background: #fff;
    border: 1px solid #edf0f3;
    border-radius: 12px;
    padding: 20px 18px 18px;
    min-height: 118px;
    transition: .25s ease;
}

.service-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    transform: translateY(-3px);
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 8px;
    background: #f1ddff;
    color: #8f3cc8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 16px;
}

.service-card h5 {
    font-size: 13px;
    font-weight: 800;
    color: #111820;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 12px;
    line-height: 1.35;
    color: #7f8995;
    margin: 0;
    max-width: 260px;
}

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

    .services-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .dayafa-services-section {
        padding: 45px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .services-content h2 {
        font-size: 24px;
    }
}

.dayafa-about-section {
    background: #ffffff;
    padding: 90px 0;
}

.about-content {
    max-width: 420px;
}

.about-label {
    display: inline-block;
    color: #ff5a00;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
    letter-spacing: .5px;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
    color: #141b22;
    margin-bottom: 22px;
}

.about-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #8a8f98;
    margin-bottom: 18px;
}

.about-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.gallery-item {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    height: 210px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {

    .dayafa-about-section {
        padding: 70px 0;
    }

    .about-content {
        max-width: 100%;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .gallery-item {
        height: 190px;
    }
}

@media (max-width: 575px) {

    .dayafa-about-section {
        padding: 50px 0;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-gallery {
        gap: 12px;
    }

    .gallery-item {
        height: 140px;
        border-radius: 14px;
    }

    .about-content p {
        font-size: 13px;
        line-height: 1.7;
    }
}

.setup-section {
    padding: 45px 15px 70px;
}

.setup-container {
    margin: 0 auto;
}

.section-tag {
    color: #ff6a00;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

.section-title {
    max-width: 410px;
    font-size: 30px;
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 12px;
    color: #171421;
}

.section-desc {
    max-width: 480px;
    color: #77727f;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 32px;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 18px;
}

.package-card {
    background: #fff;
    border: 1px solid #eeeaf4;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(20, 12, 40, 0.06);
}

.package-img {
    width: 100%;
    height: 135px;
    object-fit: cover;
    display: block;
}

.package-body {
    padding: 13px 16px 16px;
}

.price {
    font-size: 9px;
    font-weight: 700;
    color: #77727f;
    text-transform: uppercase;
    margin-bottom: 7px;
}

.package-title {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 12px;
    color: #171421;
}

.package-text {
    font-size: 10px;
    color: #77727f;
    line-height: 1.55;
    margin-bottom: 16px;
}

.features {
    list-style: none;
    margin-bottom: 20px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 10px;
    color: #77727f;
    margin-bottom: 12px;
}

.features li::before {
    content: "✓";
    color: #6f2da8;
    font-size: 12px;
    font-weight: 800;
}

.start-btn {
    display: block;
    width: 100%;
    border: none;
    background: #6f2da8;
    color: #fff;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.start-btn:hover {
    background: #572084;
}

@media (max-width: 768px) {
    .setup-container {
        max-width: 100%;
    }

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

    .section-title {
        font-size: 25px;
    }
}

@media (max-width: 480px) {
    .setup-section {
        padding: 35px 14px 50px;
    }

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

    .section-title {
        font-size: 23px;
    }

    .package-img {
        height: 180px;
    }
}

.contact-page {
    padding: 58px 0 60px;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.contact-wrapper {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 105px;
    align-items: start;
}

.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #6d2ca0;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.contact-info h2 {
    font-size: 28px;
    line-height: 1.2;
    color: #141414;
    margin: 0 0 14px;
    font-weight: 800;
}

.reply-text {
    font-size: 13px;
    color: #6d6d7a;
    margin-bottom: 30px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 13px;
    color: #687083;
    font-size: 12px;
}

.contact-list li i {
    color: #6d2ca0;
    font-size: 12px;
    width: 14px;
}

.follow-box {
    margin-top: 185px;
}

.follow-box h6 {
    font-size: 12px;
    color: #111;
    font-weight: 800;
    margin-bottom: 14px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    background: #f7f7f8;
    border: 1px solid #eeeeee;
    color: #687083;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
    transition: .2s;
}

.social-icons a:hover {
    background: #6d2ca0;
    color: #fff;
}

.contact-card {
    background: #fff;
    border: 1px solid #eeeeee;
    border-radius: 16px;
    padding: 34px 32px 31px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    color: #5f6573;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    height: 36px;
    border: 1px solid #dedede;
    border-radius: 7px;
    padding: 0 15px;
    font-size: 12px;
    color: #111;
    box-shadow: none;
}

.form-control::placeholder {
    color: #d4d4d4;
}

.form-control:focus {
    border-color: #6d2ca0;
    box-shadow: none;
}

.textarea {
    height: 98px;
    padding-top: 13px;
    resize: none;
}

.send-btn {
    width: 100%;
    height: 39px;
    border: none;
    border-radius: 7px;
    background: #6d2ca0;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    transition: .2s;
}

.send-btn:hover {
    background: #56207f;
}

@media (max-width: 991px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .follow-box {
        margin-top: 45px;
    }

    .contact-card {
        padding: 25px 20px;
    }
}