@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;
}

.recommended-products {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid #eceff3;
}

.recommended-products-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.recommended-products-head h5 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #111827;
}

.recommended-section .rec-card {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.06);
}

.recommended-section .rec-card:hover {
    transform: translateY(-3px);
    transition: transform 0.25s ease;
}

.recommended-section .small-product {
    padding: 10px;
    border: 1px solid #eef1f5;
    border-radius: 12px;
    background: #fff;
}

.recommended-section .small-img {
    border-radius: 8px;
}

@media (max-width: 991px) {
    .recommended-products {
        margin-top: 24px;
        padding-top: 18px;
    }

    .recommended-products-head h5 {
        font-size: 16px;
    }
}



.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-checkout-btn:hover {
    color: #fff;
}

.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;
    }
}


/* =========================================
   HOMEPAGE — ANIMATIONS & UX IMPROVEMENTS
   ========================================= */

/* ---------- Keyframes ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatAlt {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-7px);
    }
}

/* ---------- Hero Entrance Animations ---------- */

.hero-badge {
    animation: fadeInUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

.hero-content h1 {
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-content p {
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.hero-buttons {
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hero-features {
    animation: fadeInUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}

/* Images: staggered fade-in + continuous float */
.img-one {
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both, float 6s ease-in-out 1.5s infinite;
}

.img-two {
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both, floatAlt 7s ease-in-out 1.7s infinite;
}

.img-three {
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both, float 8s ease-in-out 1.9s infinite;
}

.img-four {
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both, floatAlt 6.5s ease-in-out 2.1s infinite;
}

.hero-card {
    animation: scaleIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.85s both;
}

/* No float on mobile — images are static in a grid */
@media (max-width: 576px) {
    .img-one {
        animation: fadeIn 0.7s ease 0.2s both;
    }

    .img-two {
        animation: fadeIn 0.7s ease 0.3s both;
    }

    .img-three {
        animation: fadeIn 0.7s ease 0.25s both;
    }

    .img-four {
        animation: fadeIn 0.7s ease 0.4s both;
    }
}

/* ---------- Hero Button Hover Fixes ---------- */

.hero-buttons a {
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
    background: #541e80;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 42, 160, 0.35);
}

.btn-outline:hover {
    background: #6b2aa0;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 42, 160, 0.25);
}

/* ---------- Product Card Hover ---------- */

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.product-image img {
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.wishlist-btn {
    transition: transform 0.25s ease, color 0.25s ease;
}

.wishlist-btn:hover {
    transform: scale(1.15);
    color: #e53e3e;
}

.wishlist-btn.active i {
    color: #e53e3e;
}

/* ---------- Use Case Card Hover ---------- */

.use-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.use-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(107, 42, 160, 0.1);
    border-color: #d4b5f0;
}

.use-card-thumb img {
    transition: transform 0.4s ease;
}

.use-card:hover .use-card-thumb img {
    transform: scale(1.06);
}

/* ---------- Category Card Icon Hover ---------- */

.category-icon {
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.category-card:hover .category-icon {
    background: #6b2aa0;
    color: #fff;
    transform: scale(1.05) rotate(-3deg);
}

/* ---------- Why Dayafa — Item & Stat Hover ---------- */

.why-item {
    transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.why-item:hover {
    border-color: #d4b5f0;
    background: #faf5ff;
    transform: translateX(4px);
}

html[dir="rtl"] .why-item:hover {
    transform: translateX(-4px);
}

.stat-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

/* ---------- CTA — Button Border-Radius Fix ---------- */

.btn-contact {
    border-radius: 8px !important;
}

.btn-quote {
    border-radius: 8px !important;
}

/* ---------- Recommended Section ---------- */

.rec-btn {
    border-radius: 8px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.rec-btn.purple:hover {
    background: #541e80;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 42, 160, 0.35);
}

.rec-btn.outline:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

/* ---------- View All Link ---------- */

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease, color 0.2s ease;
}

.view-all:hover {
    color: #541e80;
    text-decoration: none;
    gap: 8px;
}

/* ---------- Scroll-Reveal Classes ---------- */

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-left {
    transform: translateX(-28px);
}

.reveal.reveal-right {
    transform: translateX(28px);
}

.reveal.is-revealed {
    opacity: 1;
    transform: translate(0, 0);
}

/* ---------- Reduced Motion Support ---------- */

@media (prefers-reduced-motion: reduce) {

    .hero-badge,
    .hero-content h1,
    .hero-content p,
    .hero-buttons,
    .hero-features,
    .hero-card,
    .img-one,
    .img-two,
    .img-three,
    .img-four {
        animation: none !important;
        opacity: 1 !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* PAGE HERO BANNER */
.page-hero-banner {
    background: linear-gradient(135deg, #6b2aa0 0%, #9253c7 60%, #b07ee0 100%);
    padding: 64px 0 52px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-banner.page-hero-compact {
    padding: 44px 0 36px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero-content h1 {
    color: #fff;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.15;
}

.page-hero-content>p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    margin-bottom: 18px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-hero-content .breadcrumb {
    justify-content: center;
    margin-bottom: 0;
    background: none;
    padding: 0;
}

.page-hero-content .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s ease;
}

.page-hero-content .breadcrumb-item a:hover {
    color: #fff;
}

.page-hero-content .breadcrumb-item.active {
    color: #fff;
    font-size: 13px;
}

.page-hero-content .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 768px) {
    .page-hero-banner {
        padding: 48px 0 40px;
    }

    .page-hero-content h1 {
        font-size: 30px;
    }

    .page-hero-content>p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-hero-banner {
        padding: 36px 0 30px;
    }

    .page-hero-content h1 {
        font-size: 26px;
    }
}

/* HERO CAROUSEL */
.hero-slider-wrap {
    position: relative;
    animation: fadeInUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s both;
}

.hero-carousel .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(107, 42, 160, 0.2);
}

.hero-slide-img {
    height: 480px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.hero-indicators {
    bottom: 58px;
    z-index: 5;
    margin: 0;
}

.hero-indicators button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 0;
    margin: 0 3px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    opacity: 1;
}

.hero-indicators button.active {
    background: #fff;
    width: 26px;
    border-radius: 4px;
    border-color: #fff;
}

.hero-carousel-prev,
.hero-carousel-next {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    border: none;
}

.hero-carousel-prev:hover,
.hero-carousel-next:hover {
    background: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    opacity: 1;
}

.hero-carousel-prev i,
.hero-carousel-next i {
    color: #6b2aa0;
    font-size: 14px;
    line-height: 1;
}

.hero-carousel-prev {
    left: 14px;
}

.hero-carousel-next {
    right: 14px;
}

.hero-carousel .hero-card {
    position: absolute;
    bottom: 22px;
    left: 20px;
    z-index: 10;
    animation: scaleIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.1s both;
}

@media (max-width: 991px) {
    .hero-slide-img {
        height: 360px;
    }

    .hero-carousel .hero-card {
        bottom: 16px;
        left: 16px;
    }

    .hero-indicators {
        bottom: 50px;
    }
}

@media (max-width: 576px) {
    .hero-slide-img {
        height: 240px;
    }

    .hero-carousel .hero-card {
        bottom: 10px;
        left: 12px;
        padding: 10px 14px;
        gap: 10px;
    }

    .hero-carousel .hero-card .card-icon {
        width: 34px;
        height: 34px;
        font-size: 15px;
    }

    .hero-carousel .hero-card span {
        font-size: 11px;
    }

    .hero-carousel .hero-card strong {
        font-size: 13px;
    }

    .hero-carousel-prev,
    .hero-carousel-next {
        width: 30px;
        height: 30px;
    }

    .hero-carousel-prev i,
    .hero-carousel-next i {
        font-size: 12px;
    }

    .hero-indicators {
        bottom: 36px;
    }
}

/* SEARCH FORM */
.search-form {
    width: 100%;
    max-width: 520px;
    margin-bottom: 14px;
    display: block;
}

.search-icon-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #7b8491;
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.search-icon-btn:hover {
    color: #6b2aa0;
}

.search-box:focus-within {
    border-color: #6b2aa0;
    box-shadow: 0 0 0 3px rgba(107, 42, 160, 0.1);
}

/* ABOUT CTA */
.about-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6b2aa0;
    color: #fff;
    padding: 13px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.about-cta-btn:hover {
    background: #541e80;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 42, 160, 0.35);
}

/* SUPPLIERS PAGE */
.suppliers-search-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 36px;
}

.suppliers-search-wrap .search-form {
    max-width: 580px;
    margin-bottom: 0;
}

.suppliers-search-wrap .search-box {
    max-width: 100%;
    height: 46px;
    border-radius: 12px;
    border: 1.5px solid #e4e7ec;
}

.suppliers-list-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.suppliers-list-head h5 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.suppliers-count-badge {
    font-size: 12px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 999px;
}

/* SUPPLIER DETAILS */
.supplier-profile-card {
    background: #fff;
    border: 1px solid #e4e7ec;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.supplier-profile-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f2f4f7;
}

.supplier-logo-wrap {
    width: 96px;
    height: 96px;
    border-radius: 12px;
    border: 1px solid #e4e7ec;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    flex-shrink: 0;
}

.supplier-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.supplier-profile-meta h2 {
    font-size: 22px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 6px;
}

.supplier-type-badge {
    background: #f4eaff;
    color: #6b2aa0;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    display: inline-block;
    margin-top: 4px;
}

.supplier-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.supplier-info-item {
    padding: 14px 18px;
    background: #f9fafb;
    border-radius: 10px;
    border: 1px solid #f2f4f7;
}

.supplier-info-item .info-label {
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 5px;
}

.supplier-info-item .info-value {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.supplier-description {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #f2f4f7;
}

.supplier-section-label {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.supplier-description-body {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
}

@media (max-width: 768px) {
    .supplier-profile-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .supplier-profile-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }

    .supplier-info-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE IMPROVEMENTS */
@media (max-width: 576px) {
    .section-head {
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-container {
        gap: 32px;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .btn-contact,
    .btn-quote {
        text-align: center;
        width: 100%;
        justify-content: center;
    }

    .contact-page {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .header-wrap {
        grid-template-columns: 130px 1fr 200px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .header-wrap {
        grid-template-columns: 100px 1fr auto;
        gap: 8px;
        min-height: 68px;
    }

    .logo img {
        max-height: 40px;
    }
}

/* MARKETPLACE PILLS */
#categoryFilters .btn-outline-secondary,
#categoryFiltersMobile .btn-outline-secondary {
    border-color: #e4e7ec;
    color: #374151;
    border-radius: 999px;
    font-size: 12px;
    padding: 4px 14px;
    transition: all 0.2s ease;
}

#categoryFilters .btn-outline-secondary:hover,
#categoryFiltersMobile .btn-outline-secondary:hover {
    border-color: #6b2aa0;
    color: #6b2aa0;
    background: #f4eaff;
}

#categoryFilters .btn-outline-secondary.active,
#categoryFiltersMobile .btn-outline-secondary.active {
    background: #6b2aa0;
    border-color: #6b2aa0;
    color: #fff;
}

.filter-btn {
    width: 100%;
    border: 1.5px solid #e4e7ec;
    border-radius: 8px;
    background: #fff;
    color: #374151;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 0;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.filter-btn:hover {
    border-color: #6b2aa0;
    color: #6b2aa0;
}

@media (prefers-reduced-motion: reduce) {
    .hero-slider-wrap {
        animation: none !important;
    }

    .hero-carousel .hero-card {
        animation: none !important;
    }
}

/* =====================================================
   GLOBAL TYPOGRAPHY & BASE IMPROVEMENTS
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif !important;
    background: #f8f9fc !important;
    color: #1a1a2e;
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    letter-spacing: -0.02em;
    color: #0f1117;
}

p {
    color: #4b5563;
    line-height: 1.7;
}

a {
    text-decoration: none;
}


/* =====================================================
   NAVBAR — Font, Spacing, Active State
   ===================================================== */

.dayafa-header {
    background: #fff !important;
    border-bottom: 1px solid #f0f0f5 !important;
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.05);
    position: sticky !important;
    top: 0;
    z-index: 1000;
    transition: background-color 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, backdrop-filter 0.28s ease;
}

.header-wrap {
    min-height: 72px !important;
    grid-template-columns: 170px 1fr 300px !important;
    gap: 24px !important;
    transition: min-height 0.28s ease, gap 0.28s ease;
}

/* Nav links — bigger, better spaced */
.nav-menu {
    gap: 4px !important;
}

.nav-menu a {
    font-size: 14.5px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    padding: 7px 13px !important;
    border-radius: 8px;
    position: relative;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
    white-space: nowrap;
}

.nav-menu a:hover {
    background: #f5f0ff;
    color: #6b2aa0 !important;
    transform: translateY(-1px);
}

.nav-menu a.active {
    background: #f0e6ff;
    color: #6b2aa0 !important;
    font-weight: 600 !important;
}

/* Search box improvements */
.search-box,
.mobile-search {
    height: 42px !important;
    border: 1.5px solid #e9ecef !important;
    border-radius: 12px !important;
    padding: 0 16px !important;
    gap: 10px !important;
    margin-bottom: 12px !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.search-box input,
.mobile-search input {
    font-size: 14px !important;
    font-family: inherit !important;
}

.search-box:focus-within,
.mobile-search:focus-within {
    border-color: #c9a6e6 !important;
    box-shadow: 0 0 0 3px rgba(107, 42, 160, 0.12) !important;
    background: #fff;
}

/* Sign in button */
.signin {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #374151 !important;
    padding: 8px 16px !important;
    border-radius: 8px;
    border: 1.5px solid #e4e7ec;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    line-height: 1;
    transition: border-color 0.2s ease, color 0.2s ease !important;
}

.signin:hover {
    border-color: #6b2aa0 !important;
    color: #6b2aa0 !important;
}

/* Register button */
.register {
    font-size: 14px !important;
    font-weight: 600 !important;
    padding: 10px 20px !important;
    border-radius: 9px !important;
    background: #6b2aa0 !important;
    letter-spacing: 0.01em;
}

.register:hover {
    background: #541e80 !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(107, 42, 160, 0.28);
}

/* Cart icon */
.icon-btn {
    font-size: 17px !important;
    color: #374151 !important;
    transition: color 0.2s ease;
}

.icon-btn:hover {
    color: #6b2aa0 !important;
}

.dayafa-header.is-scrolled {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: saturate(160%) blur(8px);
    -webkit-backdrop-filter: saturate(160%) blur(8px);
    border-bottom-color: #eceaf4 !important;
    box-shadow: 0 8px 28px rgba(15, 17, 23, 0.08);
}

.dayafa-header.is-scrolled .header-wrap {
    min-height: 66px !important;
    gap: 20px !important;
}


/* =====================================================
   LANGUAGE / CURRENCY BUTTON — Redesigned
   ===================================================== */

.lang-trigger {
    width: auto !important;
    height: 38px !important;
    padding: 0 14px !important;
    border: 1.5px solid #e4e7ec !important;
    border-radius: 9px !important;
    background: #fff !important;
    color: #374151 !important;
    display: flex !important;
    align-items: center !important;
    gap: 7px !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;
}

.lang-trigger:hover {
    border-color: #6b2aa0 !important;
    color: #6b2aa0 !important;
    box-shadow: 0 0 0 3px rgba(107, 42, 160, 0.08) !important;
}

.lang-globe-icon {
    font-size: 14px;
    color: inherit;
}

.lang-current-code {
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
}

.lang-chevron {
    font-size: 10px;
    transition: transform 0.22s ease;
}

.custom-lang-currency:hover .lang-chevron,
.custom-lang-currency.is-open .lang-chevron {
    transform: rotate(180deg);
}

.custom-dropdown {
    width: 230px !important;
    border-radius: 14px !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14), 0 0 0 1px rgba(0, 0, 0, 0.04) !important;
    padding: 18px !important;
    top: 46px !important;
}

.dropdown-title {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #9ca3af !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px !important;
}

.language-item {
    font-size: 14px !important;
    font-weight: 500 !important;
    padding: 9px 12px !important;
    border-radius: 8px;
    transition: background 0.15s ease, color 0.15s ease;
}

.language-item:hover {
    background: #f5f0ff !important;
    color: #6b2aa0 !important;
}

.language-item.active {
    background: #f0e6ff !important;
    color: #6b2aa0 !important;
    font-weight: 700 !important;
}

.currency-select {
    height: 40px !important;
    border-radius: 9px !important;
    font-size: 14px !important;
    font-family: inherit !important;
    border: 1.5px solid #e4e7ec !important;
    padding: 0 12px !important;
}

/* Mobile lang button */
.mobile-lang .lang-trigger {
    width: 100% !important;
    height: 48px !important;
    justify-content: space-between !important;
    padding: 0 16px !important;
    border-radius: 12px !important;
    border: 1.5px solid #e9ecef !important;
    font-size: 14px !important;
}


/* =====================================================
   CONTACT PAGE v2 — Complete Redesign
   ===================================================== */

.contact-v2 {
    padding: 64px 0 80px;
    background: #f8f9fc;
}

.contact-v2-grid {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.05);
    min-height: 640px;
}

/* ── Info Panel (left, purple) ── */
.cv2-info-panel {
    background: linear-gradient(160deg, #6b2aa0 0%, #4a1870 100%);
    padding: 52px 44px 52px 44px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cv2-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.95);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 999px;
    width: fit-content;
    margin-bottom: 28px;
}

.cv2-heading {
    color: #fff !important;
    font-size: 34px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 16px;
    letter-spacing: -0.03em !important;
}

.cv2-sub {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    margin-bottom: 40px;
}

.cv2-details {
    display: flex;
    flex-direction: column;
    gap: 22px;
    flex: 1;
}

.cv2-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.cv2-detail-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: background 0.2s ease;
}

.cv2-detail-item:hover .cv2-detail-icon {
    background: rgba(255, 255, 255, 0.25);
}

.cv2-detail-label {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.cv2-detail-val {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.4;
}

.cv2-social {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cv2-social-label {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 14px !important;
}

.cv2-social-links {
    display: flex;
    gap: 10px;
}

.cv2-social-links a {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.cv2-social-links a:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

/* Decorative blobs */
.cv2-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.cv2-blob-1 {
    width: 280px;
    height: 280px;
    bottom: -80px;
    right: -80px;
}

.cv2-blob-2 {
    width: 160px;
    height: 160px;
    top: -40px;
    right: 40px;
}

/* ── Form Panel (right, white) ── */
.cv2-form-panel {
    background: #fff;
    padding: 52px 52px 52px 52px;
    display: flex;
    flex-direction: column;
}

.cv2-form-header {
    margin-bottom: 36px;
}

.cv2-form-header h3 {
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #0f1117 !important;
    margin-bottom: 8px;
    letter-spacing: -0.02em !important;
}

.cv2-form-header p {
    font-size: 14.5px !important;
    color: #6b7280 !important;
    margin: 0;
}

.cv2-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}

.cv2-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.cv2-field label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.cv2-field label .req {
    color: #ef4444;
    margin-left: 2px;
}

.cv2-input-wrap {
    position: relative;
}

.cv2-field-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
    font-size: 14px;
    pointer-events: none;
    transition: color 0.2s ease;
}

.cv2-input {
    width: 100%;
    height: 48px;
    border: 1.5px solid #e9ecef;
    border-radius: 11px;
    padding: 0 16px 0 42px;
    font-size: 14.5px;
    font-family: inherit;
    color: #111827;
    background: #fafafa;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cv2-input:focus {
    border-color: #6b2aa0;
    box-shadow: 0 0 0 3.5px rgba(107, 42, 160, 0.12);
    background: #fff;
}

.cv2-input:focus~.cv2-field-icon,
.cv2-input-wrap:focus-within .cv2-field-icon {
    color: #6b2aa0;
}

.cv2-input::placeholder {
    color: #c4c9d4;
    font-size: 14px;
}

.cv2-input.cv2-input-error {
    border-color: #ef4444;
    background: #fef9f9;
}

.cv2-textarea {
    height: 140px !important;
    padding: 14px 16px 14px 42px !important;
    resize: vertical;
    min-height: 120px;
}

.cv2-error-msg {
    margin-top: 5px;
    font-size: 12.5px;
    color: #ef4444;
    font-weight: 500;
}

.cv2-success-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: #f0fdf4;
    border: 1.5px solid #86efac;
    border-radius: 10px;
    color: #166534;
    font-size: 14px;
    font-weight: 500;
}

.cv2-submit-btn {
    height: 52px;
    width: 100%;
    border: none;
    border-radius: 11px;
    background: linear-gradient(135deg, #6b2aa0 0%, #8b3fc8 100%);
    color: #fff;
    font-size: 15.5px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.01em;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    margin-top: 4px;
}

.cv2-submit-btn:hover {
    opacity: 0.92;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(107, 42, 160, 0.32);
}

.cv2-submit-btn:active {
    transform: translateY(0);
}

/* ── Contact Responsive ── */
@media (max-width: 1024px) {
    .contact-v2-grid {
        grid-template-columns: 360px 1fr;
    }

    .cv2-info-panel {
        padding: 44px 36px;
    }

    .cv2-form-panel {
        padding: 44px 40px;
    }
}

@media (max-width: 768px) {
    .contact-v2 {
        padding: 40px 0 60px;
    }

    .contact-v2-grid {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .cv2-info-panel {
        padding: 40px 28px;
    }

    .cv2-heading {
        font-size: 28px !important;
    }

    .cv2-form-panel {
        padding: 40px 28px;
    }

    .cv2-form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cv2-form-header h3 {
        font-size: 22px !important;
    }
}

@media (max-width: 480px) {
    .contact-v2 {
        padding: 24px 0 48px;
    }

    .cv2-info-panel {
        padding: 32px 20px;
    }

    .cv2-form-panel {
        padding: 32px 20px;
    }

    .cv2-heading {
        font-size: 24px !important;
    }
}


/* =====================================================
   NAVBAR RESPONSIVE
   ===================================================== */

@media (max-width: 1200px) {
    .nav-menu a {
        font-size: 13.5px !important;
        padding: 6px 10px !important;
    }

    .header-wrap {
        grid-template-columns: 150px 1fr 260px !important;
    }
}

@media (max-width: 991px) {
    .mobile-nav a {
        font-size: 15px !important;
        font-weight: 600 !important;
    }

    .mobile-cart,
    .mobile-signin,
    .mobile-register {
        font-size: 15px !important;
    }
}

/* =====================================================================
   MARKETPLACE REDESIGN — Modern Cards + Smooth Sidebar
   ===================================================================== */

/* ── Product Card Shell ── */
.product-card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    transition: transform 0.32s cubic-bezier(.25, .8, .25, 1), box-shadow 0.32s cubic-bezier(.25, .8, .25, 1);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 48px rgba(107, 42, 160, 0.13);
}

/* ── Product Image ── */
.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    margin-bottom: 0;
    background: #f5f0ff;
    aspect-ratio: 4 / 3;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(.25, .8, .25, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* ── Image Overlay ── */
.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(107, 42, 160, 0.55), rgba(74, 24, 112, 0.72));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-image-overlay {
    opacity: 1;
}

.quick-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    color: #6b2aa0;
    border: none;
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transform: translateY(12px);
    transition: transform 0.32s cubic-bezier(.25, .8, .25, 1), box-shadow 0.25s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.product-card:hover .quick-view-btn {
    transform: translateY(0);
}

.quick-view-btn:hover {
    background: #6b2aa0;
    color: #fff;
}

/* ── Wishlist Button ── */
.wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.95);
    color: #9ca3af;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
    z-index: 3;
}

.wishlist-btn:hover {
    transform: scale(1.15);
    color: #e53e3e;
    background: #fff;
}

.wishlist-btn.active i,
.wishlist-btn.active {
    color: #e53e3e;
}

/* ── Category Badge on Image ── */
.pc-cat-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(107, 42, 160, 0.88);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    z-index: 3;
    backdrop-filter: blur(4px);
}

/* ── Product Content ── */
.product-content {
    padding: 16px 18px 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-content h3 {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-content h3:hover {
    color: #6b2aa0;
}

/* ── Stars ── */
.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    flex: 1;
}

.pc-stars {
    display: flex;
    gap: 2px;
}

.pc-stars i {
    font-size: 11px;
}

.pc-rating-val {
    font-size: 12px;
    font-weight: 700;
    color: #374151;
}

.pc-review-count {
    font-size: 11px;
    color: #9ca3af;
}

/* ── Price + Cart Row ── */
.product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.pc-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
}

.pc-currency {
    font-size: 11px;
    font-weight: 700;
    color: #6b2aa0;
    letter-spacing: 0.4px;
}

.pc-amount {
    font-size: 17px;
    font-weight: 800;
    color: #6b2aa0;
    line-height: 1;
}

/* ── Cart Button ── */
.cart-btn {
    background: linear-gradient(135deg, #6b2aa0, #8b3fc8);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 14px rgba(107, 42, 160, 0.28);
    flex-shrink: 0;
}

.cart-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(107, 42, 160, 0.38);
}

.cart-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ── Variation note ── */
.pc-variation-note {
    font-size: 11px;
    color: #9ca3af;
    margin: 0;
    font-style: italic;
}

/* ── Skeleton Loading ── */
.product-card-skeleton {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
}

.skel-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(90deg, #f0f0f5 25%, #e8e8f0 50%, #f0f0f5 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
}

.skel-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.skel-line {
    border-radius: 6px;
    background: linear-gradient(90deg, #f0f0f5 25%, #e8e8f0 50%, #f0f0f5 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
}

.skel-title {
    height: 14px;
    width: 85%;
}

.skel-sub {
    height: 12px;
    width: 55%;
}

.skel-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.skel-price {
    height: 18px;
    width: 70px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f0f0f5 25%, #e8e8f0 50%, #f0f0f5 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
}

.skel-btn {
    height: 32px;
    width: 72px;
    border-radius: 50px;
    background: linear-gradient(90deg, #f0f0f5 25%, #e8e8f0 50%, #f0f0f5 75%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s infinite;
}

@keyframes skeletonShimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ── Empty State ── */
.mp-empty-state {
    padding: 60px 20px;
    text-align: center;
    color: #9ca3af;
}

.mp-empty-state i {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    opacity: 0.4;
}

.mp-empty-state p {
    font-size: 15px;
    margin: 0;
}

/* =====================================================================
   MARKETPLACE SIDEBAR — Sticky + Smooth
   ===================================================================== */

.market-sidebar {
    position: sticky;
    top: 88px;
    max-height: calc(100vh - 108px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #d4b5f0 transparent;
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.07);
}

.market-sidebar::-webkit-scrollbar {
    width: 4px;
}

.market-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.market-sidebar::-webkit-scrollbar-thumb {
    background: #d4b5f0;
    border-radius: 4px;
}

/* Filter Blocks */
.filter-block {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #f3f4f6;
}

.filter-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.filter-block h6 {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #9ca3af;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-block h6::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #f3f4f6;
}

/* Search Input */
.market-sidebar .form-control {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 9px 14px;
    font-size: 13px;
    color: #374151;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    background: #fafafa;
}

.market-sidebar .form-control:focus {
    border-color: #6b2aa0;
    box-shadow: 0 0 0 3px rgba(107, 42, 160, 0.1);
    background: #fff;
    outline: none;
}

/* Category Pill Buttons */
#categoryFilters,
#categoryFiltersMobile {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

#categoryFilters .btn,
#categoryFiltersMobile .btn {
    border-radius: 50px !important;
    padding: 5px 14px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    border: 1.5px solid #e5e7eb !important;
    color: #6b7280 !important;
    background: #fafafa !important;
    transition: all 0.2s ease !important;
    line-height: 1.5;
}

#categoryFilters .btn:hover,
#categoryFiltersMobile .btn:hover {
    border-color: #6b2aa0 !important;
    color: #6b2aa0 !important;
    background: #faf5ff !important;
}

#categoryFilters .btn.active,
#categoryFiltersMobile .btn.active {
    background: #6b2aa0 !important;
    border-color: #6b2aa0 !important;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(107, 42, 160, 0.25) !important;
}

/* Price Inputs */
.price-inputs {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.price-inputs .form-control {
    flex: 1;
    text-align: center;
    padding: 9px 8px;
}

/* Clear Filter Button */
.filter-btn {
    width: 100%;
    padding: 9px 16px;
    background: #f3e8ff;
    color: #6b2aa0;
    border: 1.5px solid #e9d5ff;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.22s ease;
}

.filter-btn:hover {
    background: #6b2aa0;
    color: #fff;
    border-color: #6b2aa0;
    box-shadow: 0 4px 14px rgba(107, 42, 160, 0.25);
}

/* ── Sort Select ── */
.marketplace-sort {
    border: 1.5px solid #e5e7eb;
    border-radius: 10px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    cursor: pointer;
    transition: border-color 0.2s ease;
    background: #fff;
    height: 40px;
}

.marketplace-sort:focus {
    border-color: #6b2aa0;
    box-shadow: 0 0 0 3px rgba(107, 42, 160, 0.1);
    outline: none;
}

/* ── Marketplace Header ── */
.marketplace-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 18px 22px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.marketplace-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: #111827;
    margin: 0 0 2px;
}

.marketplace-header p {
    font-size: 13px;
    color: #9ca3af;
    margin: 0;
}

.marketplace-header #itemsCount {
    font-weight: 700;
    color: #6b2aa0;
}

/* ── Mobile Filter Button ── */
.mobile-filter-btn {
    height: 40px;
    border: 1.5px solid #6b2aa0;
    background: #6b2aa0;
    color: #fff;
    border-radius: 10px;
    padding: 0 16px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s ease;
}

.mobile-filter-btn:hover {
    background: #5a1f8c;
    border-color: #5a1f8c;
}

/* ── Filter Offcanvas ── */
.filter-offcanvas .offcanvas-header {
    background: linear-gradient(135deg, #6b2aa0, #8b3fc8);
    padding: 18px 20px;
}

.filter-offcanvas .offcanvas-title {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
}

.filter-offcanvas .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.filter-offcanvas .offcanvas-body {
    padding: 0;
    background: #fafafa;
}

.mobile-filter-sidebar {
    background: #fff;
    border-radius: 0;
    padding: 20px;
    box-shadow: none;
    border-right: 0;
}

/* ── Pagination ── */
#paginationWrap .pagination {
    gap: 4px;
    flex-wrap: wrap;
}

#paginationWrap .page-item .page-link {
    border: 1.5px solid #e5e7eb;
    border-radius: 8px !important;
    color: #6b7280;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 13px;
    transition: all 0.2s ease;
    background: #fff;
    min-width: 38px;
    text-align: center;
}

#paginationWrap .page-item .page-link:hover {
    background: #f3e8ff;
    border-color: #6b2aa0;
    color: #6b2aa0;
}

#paginationWrap .page-item.active .page-link {
    background: #6b2aa0;
    border-color: #6b2aa0;
    color: #fff;
    box-shadow: 0 4px 12px rgba(107, 42, 160, 0.28);
}

/* =====================================================================
   MARKETPLACE RESPONSIVE
   ===================================================================== */

@media (max-width: 1199px) {
    .market-sidebar {
        top: 80px;
        max-height: calc(100vh - 96px);
    }
}

@media (max-width: 991px) {
    .marketplace-section {
        padding-top: 24px !important;
    }

    .marketplace-header {
        padding: 14px 16px;
    }

    .marketplace-header h2 {
        font-size: 18px;
    }
}

@media (max-width: 767px) {

    /* 2-column product grid on tablet/mobile */
    #productsGrid .col-6 {
        padding-left: 6px;
        padding-right: 6px;
    }

    .product-content {
        padding: 12px 14px 14px;
        gap: 8px;
    }

    .product-content h3 {
        font-size: 13px;
    }

    .pc-amount {
        font-size: 15px;
    }

    .cart-btn {
        padding: 7px 12px;
        font-size: 11px;
    }

    .marketplace-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .marketplace-top-actions {
        width: 100%;
        display: flex;
        gap: 8px;
    }

    .mobile-filter-btn,
    .marketplace-sort {
        flex: 1;
    }
}

@media (max-width: 575px) {
    #productsGrid {
        --bs-gutter-x: 10px;
    }

    .product-image {
        aspect-ratio: 3 / 2;
    }

    .quick-view-btn {
        padding: 7px 16px;
        font-size: 12px;
    }

    .wishlist-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
        top: 8px;
        right: 8px;
    }

    .pc-cat-badge {
        font-size: 9px;
        padding: 3px 9px;
        bottom: 8px;
        left: 8px;
    }

    .marketplace-header {
        padding: 12px 14px;
    }

    #paginationWrap .page-item .page-link {
        padding: 6px 10px;
        font-size: 12px;
        min-width: 34px;
    }
}

/* RTL */
html[dir="rtl"] .wishlist-btn {
    right: auto;
    left: 12px;
}

html[dir="rtl"] .pc-cat-badge {
    left: auto;
    right: 12px;
}

html[dir="rtl"] .market-sidebar {
    padding-right: 22px;
    padding-left: 4px;
}

html[dir="rtl"] .filter-block h6::after {
    margin-left: 0;
    margin-right: 6px;
}

/* Header spacing hotfix */
.dayafa-header .header-wrap {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.dayafa-header .center-area {
    justify-content: center !important;
    gap: 8px !important;
    padding-top: 2px !important;
    padding-bottom: 2px !important;
}

.dayafa-header .search-box {
    margin-bottom: 8px !important;
}

.dayafa-header .nav-menu {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
    min-height: 34px;
    align-items: center !important;
}

.dayafa-header .nav-menu a {
    line-height: 1.2 !important;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.dayafa-header.is-scrolled .header-wrap {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
}

@media (max-width: 1200px) {
    .dayafa-header .header-wrap {
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    .dayafa-header .nav-menu a {
        padding-top: 7px !important;
        padding-bottom: 7px !important;
    }
}

/* Marketplace category filter active feedback */
.market-sidebar .category-filter-btn {
    transition: all 0.18s ease;
}

.market-sidebar .category-filter-btn.is-active,
.market-sidebar .category-filter-btn.active {
    background: #6b2aa0 !important;
    border-color: #6b2aa0 !important;
    color: #fff !important;
    box-shadow: 0 6px 16px rgba(107, 42, 160, 0.24);
}

.mp-search-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
}

.mp-search-wrap .form-control {
    flex: 1;
}

.mp-search-btn {
    min-width: 92px;
    height: 38px;
    border: 0;
    border-radius: 8px;
    background: #6b2aa0;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.mp-search-btn:hover {
    background: #572284;
}

.mp-search-btn:disabled {
    opacity: 0.85;
    cursor: not-allowed;
}

.footer-v2 {
    position: relative;
    background: linear-gradient(180deg, #16141d 0%, #0f0d14 100%) !important;
    color: #f4f0ff !important;
    overflow: hidden;
    padding-top: 40px;
}

.footer-v2::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(124, 58, 237, .18) 0%, transparent 70%);
    z-index: 0;
}

.footer-v2::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -100px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(236, 72, 153, .12) 0%, transparent 70%);
    z-index: 0;
}

.footer-v2 .container {
    position: relative;
    z-index: 2;
}

.footer-v2 .fv2-section {
    border-radius: 24px;
    padding: 34px;
    backdrop-filter: blur(10px);
}

.footer-v2 .fv2-section-top {
    background: linear-gradient(135deg,
            rgba(124, 58, 237, 0.16),
            rgba(236, 72, 153, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 18px;
}

.footer-v2 .fv2-section-bottom {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-v2 .fv2-top {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-v2 .fv2-brand {
    flex: 1;
    min-width: 280px;
}

.footer-v2 .fv2-logo {
    max-height: 48px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-v2 .fv2-tagline {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.74);
    max-width: 500px;
    margin-bottom: 24px;
}

.footer-v2 .fv2-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-v2 .fv2-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: all .35s ease;
}

.footer-v2 .fv2-social-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, .35);
    color: #fff;
}

.footer-v2 .fv2-newsletter {
    width: 420px;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 28px;
}

.footer-v2 .fv2-nl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 58, 237, .18);
    color: #d8b4fe;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.footer-v2 .fv2-nl-heading {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.footer-v2 .fv2-nl-sub {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 22px;
}

.footer-v2 .fv2-nl-form {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-v2 .fv2-nl-input {
    flex: 1;
    height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    padding: 0 18px;
    color: #fff !important;
    outline: none;
    font-size: 14px;
}

.footer-v2 .fv2-nl-input::placeholder {
    color: rgba(255, 255, 255, .55);
}

.footer-v2 .fv2-nl-input:focus {
    border-color: #a855f7 !important;
    box-shadow: 0 0 0 4px rgba(168, 85, 247, .18);
}

.footer-v2 .fv2-nl-btn {
    height: 52px;
    padding: 0 24px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    font-weight: 600;
    transition: .35s ease;
    white-space: nowrap;
}

.footer-v2 .fv2-nl-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(124, 58, 237, .35);
}

.footer-v2 .fv2-nl-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-v2 .fv2-divider {
    height: 1px;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.12),
            transparent);
    margin: 34px 0;
}

.footer-v2 .fv2-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-v2 .fv2-col-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.footer-v2 .fv2-links,
.footer-v2 .fv2-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-v2 .fv2-links li,
.footer-v2 .fv2-contact li {
    margin-bottom: 14px;
}

.footer-v2 .fv2-links a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: .3s ease;
    font-size: 15px;
}

.footer-v2 .fv2-links a:hover {
    color: #c084fc;
    transform: translateX(4px);
}

.footer-v2 .fv2-links i {
    font-size: 12px;
}

.footer-v2 .fv2-contact li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
    font-size: 15px;
}

.footer-v2 .fv2-contact-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d8b4fe;
    flex-shrink: 0;
}

.footer-v2 .fv2-bottom {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-v2 .fv2-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.64);
    margin: 0;
}

.footer-v2 .fv2-copy strong {
    color: #fff;
}

.footer-v2 .fv2-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-v2 .fv2-bottom-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: .3s ease;
}

.footer-v2 .fv2-bottom-links a:hover {
    color: #c084fc;
}

@media (max-width: 991px) {
    .footer-v2 .fv2-cols {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 767px) {
    .footer-v2 {
        padding-top: 20px;
    }

    .footer-v2 .fv2-section {
        padding: 24px;
        border-radius: 18px;
    }

    .footer-v2 .fv2-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-v2 .fv2-newsletter {
        width: 100%;
    }

    .footer-v2 .fv2-cols {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-v2 .fv2-nl-form {
        flex-direction: column;
    }

    .footer-v2 .fv2-nl-btn {
        width: 100%;
    }

    .footer-v2 .fv2-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-v2 .fv2-bottom-links {
        gap: 14px;
    }
}

/* Screenshot-matched two row header */
.dayafa-header {
    background: #fff !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    position: sticky !important;
    top: 0;
    z-index: 1000;
}

.dayafa-header .header-main {
    min-height: 60px !important;
    display: grid !important;
    grid-template-columns: 170px minmax(0, 1fr) 260px !important;
    align-items: center !important;
    justify-content: stretch !important;
    gap: 28px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.dayafa-header .logo {
    justify-content: flex-start;
}

.dayafa-header .logo img {
    max-height: 36px !important;
    max-width: 125px;
}

.dayafa-header .center-area {
    align-items: stretch !important;
    justify-content: center !important;
    gap: 0 !important;
    padding: 0 !important;
    width: 100%;
}

.dayafa-header .legacy-header-nav {
    display: none !important;
}

.dayafa-header .search-box {
    width: 100%;
    max-width: 450px !important;
    height: 34px !important;
    margin: 0 auto !important;
    border: 1px solid #1f2937 !important;
    border-radius: 999px !important;
    background: #fff !important;
    padding: 0 14px !important;
    gap: 7px !important;
    box-shadow: none !important;
}

.dayafa-header .search-box input {
    height: 100%;
    color: #4b5563 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

.dayafa-header .search-box input::placeholder {
    color: #6b7280 !important;
}

.dayafa-header .search-icon-btn {
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #4b5563;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dayafa-header .right-actions {
    gap: 12px !important;
}

.dayafa-header .lang-trigger {
    width: 24px !important;
    height: 24px !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #111827 !important;
    font-size: 13px !important;
}

.dayafa-header .lang-trigger span,
.dayafa-header .lang-trigger .lang-text,
.dayafa-header .lang-trigger .currency-text,
.dayafa-header .lang-trigger .lang-chevron {
    display: none !important;
}

.dayafa-header .icon-btn {
    width: 24px !important;
    height: 24px !important;
    font-size: 14px !important;
    color: #111827 !important;
}

.dayafa-header .cart-count-badge {
    top: -4px;
    right: -5px;
    min-width: 13px;
    height: 13px;
    font-size: 8px;
    background: #52a323;
}

.dayafa-header .signin {
    border: 0 !important;
    padding: 0 !important;
    color: #374151 !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 1 !important;
}

.dayafa-header .register {
    min-height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 14px !important;
    border-radius: 3px !important;
    background: #3d9b2f !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    box-shadow: none !important;
}

.dayafa-header .register:hover {
    background: #338527 !important;
    transform: none !important;
}

.header-nav-strip {
    height: 31px;
    background: #280036;
}

.header-nav-strip .nav-menu {
    min-height: 31px;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 19px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.header-nav-strip .nav-menu .nav-item {
    list-style: none;
}

.header-nav-strip .nav-menu a {
    padding: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    line-height: 31px !important;
    white-space: nowrap;
    transform: none !important;
}

.header-nav-strip .nav-menu a:hover,
.header-nav-strip .nav-menu a.active {
    color: #71d11e !important;
    background: transparent !important;
}

.header-nav-strip .dropdown-menu {
    margin-top: 0;
    border-radius: 4px !important;
    font-size: 12px;
}

.header-nav-strip .dropdown-menu a {
    color: #1f2937 !important;
    line-height: 1.2 !important;
    padding: 8px 12px !important;
}

.header-nav-strip .dropdown-menu a:hover {
    color: #6b2aa0 !important;
    background: #f4ecfb !important;
}

.dayafa-header.is-scrolled .header-main {
    min-height: 56px !important;
    gap: 28px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

@media (max-width: 991px) {
    .dayafa-header .header-main {
        min-height: 64px !important;
        display: flex !important;
        justify-content: space-between !important;
    }

    .dayafa-header .logo img {
        max-height: 38px !important;
    }

    .dayafa-header .center-area,
    .dayafa-header .right-actions {
        display: none !important;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .dayafa-header .header-main {
        grid-template-columns: 145px minmax(0, 1fr) 245px !important;
        gap: 20px !important;
    }

    .header-nav-strip .nav-menu {
        gap: 15px !important;
    }
}
