/* Noorofy logo palette: black base, bronze shadows, and glossy yellow-gold highlights. */
:root {
    --noor-bg: #050301;
    --noor-menu: #0b0703;
    --noor-menu-2: #170b02;
    --noor-panel: #fffaf0;
    --noor-panel-2: #fff3d1;
    --noor-border: rgba(255,207,51,.36);
    --noor-bronze-deep: #401000;
    --noor-bronze: #702000;
    --noor-copper: #a04000;
    --noor-orange: #d66a00;
    --noor-gold: #f0a51a;
    --noor-gold-bright: #ffcf33;
    --noor-gold-light: #fff2a6;
    --noor-ink: #1b1004;
    --noor-muted: #705b2a;
    --noor-glow: 0 10px 34px rgba(255,183,24,.34);
    --color-primary: var(--noor-gold);
    --color-yellow: var(--noor-gold-bright);
    --color-orange: var(--noor-orange);
    --color-heading: var(--noor-ink);
    --color-brand-200: #fff1bf;
    --color-brand-300: #ffe29a;
}

.ecom-mobile-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}
.ecom-mobile-links a,
.ecom-mobile-category-toggle {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    color: #111;
    font-weight: 600;
    padding: 10px 12px;
    text-align: left;
    text-decoration: none;
}
.ecom-mobile-category-toggle {
    align-items: center;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.ecom-mobile-links a.is-active,
.ecom-mobile-category-toggle.is-active {
    background: #f0a51a;
    border-color: #f0a51a;
    color: #ffffff;
}
.ecom-mobile-category-list {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-top: 10px;
    padding: 8px;
}
.ecom-mobile-category-list a {
    align-items: center;
    border-radius: 6px;
    color: #222222;
    display: flex;
    gap: 10px;
    padding: 8px;
    text-decoration: none;
}
.ecom-mobile-category-list a:hover {
    background: #fff3d1;
    color: #f0a51a;
}
.ecom-mobile-category-list img {
    border-radius: 6px;
    height: 34px;
    object-fit: cover;
    width: 34px;
}
.ecom-search-form {
    position: relative;
}
.ecom-search-suggestions {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    box-shadow: 0 16px 45px rgba(0,0,0,.12);
    left: 0;
    max-height: 360px;
    overflow-y: auto;
    padding: 8px;
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    z-index: 1200;
}
.ecom-search-suggestions[hidden] {
    display: none;
}
.ecom-search-suggestion {
    align-items: center;
    border-radius: 6px;
    color: #222222;
    display: flex;
    gap: 10px;
    padding: 8px;
    text-decoration: none;
}
.ecom-search-suggestion:hover,
.ecom-search-suggestion:focus {
    background: #fff3d1;
    color: #f0a51a;
    outline: none;
}
.ecom-search-suggestion img {
    background: #f6f7fb;
    border-radius: 6px;
    height: 44px;
    object-fit: cover;
    width: 44px;
}
.ecom-search-suggestion span {
    display: block;
    min-width: 0;
}
.ecom-search-suggestion strong {
    display: block;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ecom-search-suggestion small {
    color: #777777;
    display: block;
    font-size: 12px;
    line-height: 1.2;
    margin-top: 4px;
}
.ecom-header-categories {
    position: relative;
}
.rbt-header-mid-1,
.rbt-header-mid-1 .rbt-header-sec,
.rbt-header-mid-1 .rbt-main-navigation,
.rbt-header-mid-1 .rbt-mainmenu-nav {
    overflow: visible;
}
.rbt-header-mid-1 .rbt-mainmenu-nav .mainmenu {
    align-items: center;
    display: flex;
    gap: 6px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.rbt-header-mid-1 .rbt-mainmenu-nav .mainmenu > li {
    margin: 0;
    padding: 0;
    position: relative;
}
.rbt-header-mid-1 .rbt-mainmenu-nav .mainmenu > li > a {
    align-items: center;
    border-radius: 6px;
    color: #ffffff !important;
    display: flex;
    font-weight: 700;
    gap: 6px;
    line-height: 1;
    padding: 14px 16px;
    position: relative;
    text-decoration: none;
    z-index: 2;
}
.rbt-header-mid-1 .rbt-mainmenu-nav .mainmenu > li > a:hover,
.rbt-header-mid-1 .rbt-mainmenu-nav .mainmenu > li > a:focus,
.rbt-header-mid-1 .rbt-mainmenu-nav .mainmenu > li > a.is-active {
    background: #ffffff;
    color: #f0a51a !important;
}
.rbt-header-mid-1 .rbt-mainmenu-nav .mainmenu.has-nav-bg-shape-hover > li > a::after {
    content: none !important;
}
.rbt-main-navigation .mainmenu .ecom-header-categories .ecom-category-dropdown {
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    box-shadow: 0 16px 45px rgba(0,0,0,.12);
    display: grid;
    gap: 4px;
    left: 0;
    list-style: none;
    margin: 0;
    min-width: 320px;
    opacity: 0;
    padding: 10px;
    position: absolute;
    top: calc(100% + 10px);
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    visibility: hidden;
    z-index: 1100;
}
.rbt-main-navigation .mainmenu .ecom-header-categories:hover .ecom-category-dropdown,
.rbt-main-navigation .mainmenu .ecom-header-categories:focus-within .ecom-category-dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.rbt-main-navigation .mainmenu .ecom-header-categories .ecom-category-dropdown li {
    margin: 0;
    padding: 0;
}
.rbt-main-navigation .mainmenu .ecom-header-categories .ecom-category-dropdown a {
    align-items: center;
    border-radius: 6px;
    color: #222222;
    display: flex;
    gap: 12px;
    padding: 10px;
}
.rbt-main-navigation .mainmenu .ecom-header-categories .ecom-category-dropdown a:hover {
    background: #fff3d1;
    color: #f0a51a;
}
.ecom-category-thumb {
    align-items: center;
    background: #f6f7fb;
    border-radius: 6px;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    overflow: hidden;
    width: 44px;
}
.ecom-category-thumb img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.ecom-category-dropdown strong,
.ecom-category-dropdown small {
    display: block;
    line-height: 1.2;
}
.ecom-category-dropdown small {
    color: #777777;
    font-size: 12px;
    margin-top: 3px;
}
.copyright-area.copyright-style-1 {
    padding: 22px 0 28px;
}
.copyright-area .rbt-footer-social-area {
    align-items: center;
}
.copyright-area .rbt-footer-social-area .title,
.copyright-area .rbt-link-hover {
    color: #555555;
    margin-bottom: 0;
}
.rbt-social-icon-list,
.payment-img-link {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.rbt-social-icon-list li,
.payment-img-link li {
    margin: 0;
    padding: 0;
}
.rbt-social-icon-list a {
    align-items: center;
    background: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 50%;
    color: #333333;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    width: 34px;
}
.rbt-social-icon-list a:hover {
    background: #f0a51a;
    border-color: #f0a51a;
    color: #ffffff;
}
.payment-img-link img {
    max-height: 34px;
    width: auto;
}
.rbt-header .logo img,
.rbt-footer-area .logo img {
    height: 54px !important;
    max-height: 54px !important;
    max-width: 220px !important;
    object-fit: contain;
    width: auto !important;
}
.rbt-header .header-left .logo img {
    height: 58px !important;
    max-height: 58px !important;
}
.ecom-hero {
    background: #fff3d1;
    overflow: hidden;
    position: relative;
}
.ecom-hero-slider {
    height: clamp(360px, 37.5vw, 720px);
    min-height: 0;
    position: relative;
}
.ecom-hero-slider .swiper-wrapper,
.ecom-hero-slider .swiper-slide {
    height: 100%;
}
.ecom-hero-slide {
    align-items: center;
    display: flex;
    height: 100%;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
}
.ecom-hero-slide::before {
    background: linear-gradient(90deg, rgba(5,3,1,.72) 0%, rgba(5,3,1,.48) 34%, rgba(5,3,1,.12) 68%, rgba(5,3,1,0) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}
.ecom-hero-copy-wrap {
    position: relative;
    width: 100%;
    z-index: 2;
}
.ecom-hero-content {
    max-width: 560px;
    padding: clamp(22px, 3vw, 46px) 0;
    position: relative;
    z-index: 2;
}
.ecom-hero-content p {
    color: #4b5565;
    font-size: 18px;
    line-height: 1.7;
}
.ecom-hero-media {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 300px;
}
.ecom-hero .ecom-hero-img {
    height: 100%;
    inset: 0;
    max-height: none;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    width: 100%;
    z-index: 0;
}
.ecom-hero-nav {
    align-items: center;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(240, 165, 26, .14);
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(0,0,0,.12);
    color: #172033;
    display: inline-flex;
    height: 46px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background .2s ease, color .2s ease, transform .2s ease;
    width: 46px;
    z-index: 4;
}
.ecom-hero-nav:hover {
    background: #f0a51a;
    color: #ffffff;
    transform: translateY(-50%) scale(1.04);
}
.ecom-hero-prev {
    left: 24px;
}
.ecom-hero-next {
    right: 24px;
}
.ecom-hero-pagination.swiper-pagination {
    bottom: 24px;
}
.ecom-hero-pagination .swiper-pagination-bullet {
    background: #172033;
    height: 8px;
    opacity: .22;
    transition: opacity .2s ease, width .2s ease;
    width: 8px;
}
.ecom-hero-pagination .swiper-pagination-bullet-active {
    background: #f0a51a;
    border-radius: 999px;
    opacity: 1;
    width: 28px;
}
.ecom-category-card {
    border: 1px solid #eeeeee;
    border-radius: 8px;
    display: block;
    height: 100%;
    overflow: hidden;
    padding: 18px;
    transition: box-shadow .2s ease, transform .2s ease;
}
.ecom-category-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
    transform: translateY(-2px);
}
.ecom-category-card img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    width: 100%;
}
.rbt-product-card .rbt-card-img img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
    transition: transform .24s ease;
}
.rbt-product-card .rbt-card-img {
    overflow: hidden;
}
.rbt-product-card:hover .rbt-card-img img {
    transform: scale(1.06);
}
.ecom-product-gallery {
    overflow: hidden;
}
.ecom-product-main-image {
    aspect-ratio: 1 / 1;
    background: #f6f7fb;
    border: 0;
    border-radius: 8px;
    cursor: zoom-in;
    display: block;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 100%;
}
.ecom-product-main-image img {
    height: 100%;
    object-fit: contain;
    transition: transform .24s ease;
    width: 100%;
}
.ecom-product-main-image:hover img {
    transform: scale(1.18);
}
.ecom-gallery-zoom-badge {
    align-items: center;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(240, 165, 26, .14);
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    color: #172033;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    position: absolute;
    right: 14px;
    top: 14px;
    width: 38px;
}
.ecom-product-thumbs {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ecom-product-thumb {
    aspect-ratio: 1 / 1;
    background: #f6f7fb;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
}
.ecom-product-thumb img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}
.ecom-product-thumb.is-active,
.ecom-product-thumb:hover,
.ecom-product-thumb:focus {
    border-color: #f0a51a;
    outline: none;
}
body.ecom-lightbox-open {
    overflow: hidden;
}
.ecom-gallery-lightbox[hidden] {
    display: none;
}
.ecom-gallery-lightbox {
    align-items: center;
    background: rgba(12, 18, 32, .92);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 58px 72px;
    position: fixed;
    z-index: 9999;
}
.ecom-gallery-lightbox-slider {
    height: min(820px, calc(100vh - 116px));
    width: min(1120px, calc(100vw - 144px));
}
.ecom-gallery-lightbox .swiper-slide {
    align-items: center;
    display: flex;
    justify-content: center;
}
.ecom-gallery-lightbox img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}
.ecom-gallery-close,
.ecom-gallery-nav {
    align-items: center;
    background: rgba(255,255,255,.94);
    border: 0;
    border-radius: 999px;
    color: #172033;
    display: inline-flex;
    height: 44px;
    justify-content: center;
    position: absolute;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    width: 44px;
    z-index: 3;
}
.ecom-gallery-close:hover,
.ecom-gallery-nav:hover {
    background: #f0a51a;
    color: #ffffff;
}
.ecom-gallery-close {
    right: 24px;
    top: 22px;
}
.ecom-gallery-prev {
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.ecom-gallery-next {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}
.ecom-gallery-prev:hover,
.ecom-gallery-next:hover {
    transform: translateY(-50%) scale(1.04);
}
.ecom-gallery-pagination.swiper-pagination {
    bottom: 22px;
}
.ecom-gallery-pagination .swiper-pagination-bullet {
    background: #ffffff;
    opacity: .36;
}
.ecom-gallery-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    opacity: 1;
}
.prd-btn-grp form + form {
    margin-top: 8px !important;
}
.ecom-card-cart-actions {
    display: grid;
    gap: 8px;
}
.ecom-buy-now-btn {
    justify-content: center;
}
.ecom-product-cart-row .rbt-btn {
    min-height: 44px;
}
.ecom-price-prefix {
    color: var(--noor-copper);
    font-size: 12px;
    font-weight: 800;
    margin-right: 4px;
    text-transform: uppercase;
}
.ecom-mini-format-note {
    color: var(--noor-copper);
    font-size: 12px;
    font-weight: 700;
    margin-top: -4px;
}
.ecom-format-options {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ecom-format-option {
    align-items: center;
    background: #fff8df;
    border: 1px solid rgba(160,64,0,.18);
    border-radius: 8px;
    cursor: pointer;
    display: grid;
    gap: 12px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 14px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.ecom-format-option input {
    accent-color: var(--noor-gold-bright);
}
.ecom-format-option strong,
.ecom-format-option small {
    display: block;
}
.ecom-format-option strong {
    color: var(--noor-ink);
    line-height: 1.2;
}
.ecom-format-option small {
    color: var(--noor-copper);
    font-size: 12px;
    line-height: 1.35;
    margin-top: 3px;
}
.ecom-format-option b {
    color: var(--noor-bronze-deep);
    white-space: nowrap;
}
.ecom-format-option.is-selected,
.ecom-format-option:hover {
    border-color: var(--noor-gold-bright);
    box-shadow: 0 10px 24px rgba(255,183,24,.2);
    transform: translateY(-1px);
}
.ecom-format-option.is-disabled {
    cursor: not-allowed;
    opacity: .62;
}
.ecom-summary-box,
.ecom-panel {
    border: 1px solid #eeeeee;
    border-radius: 8px;
    padding: 24px;
}
.ecom-checkout-form label {
    color: var(--noor-ink);
    display: block;
    font-weight: 800;
    width: 100%;
}
.ecom-required .text-danger {
    font-weight: 900;
    margin-left: 3px;
}
.ecom-checkout-form .form-control,
.ecom-checkout-form .bootstrap-select > .dropdown-toggle {
    min-height: 48px;
}
.ecom-checkout-form .bootstrap-select {
    width: 100% !important;
}
.ecom-checkout-form .bootstrap-select > .dropdown-toggle {
    align-items: center;
    background: #fff8df !important;
    border: 1px solid rgba(160,64,0,.25) !important;
    border-radius: 8px;
    box-shadow: none !important;
    color: var(--noor-ink) !important;
    display: flex;
    font-weight: 700;
    padding: 11px 36px 11px 13px;
}
.ecom-checkout-form .bootstrap-select > .dropdown-toggle::after {
    margin-left: auto;
}
.ecom-checkout-form .bootstrap-select > .dropdown-toggle:focus,
.ecom-checkout-form .form-control:focus {
    border-color: var(--noor-gold-bright) !important;
    box-shadow: 0 0 0 .16rem rgba(255,183,24,.22) !important;
}
.ecom-checkout-form.was-validated .form-control:invalid,
.ecom-checkout-form.was-validated .bootstrap-select > .dropdown-toggle.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 .16rem rgba(220,53,69,.18) !important;
}
.ecom-phone-row {
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(168px, 205px) minmax(0, 1fr);
}
.ecom-country-option {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    max-width: 100%;
    min-width: 0;
}
.ecom-country-flag {
    display: inline-flex;
    flex: 0 0 24px;
    justify-content: center;
    margin-right: 2px;
    width: 24px;
}
.ecom-phone-code {
    color: var(--noor-bronze-deep);
    font-weight: 900;
}
.ecom-country-option small {
    color: #76501b;
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.ecom-checkout-address-box {
    background: #fff8df;
    border: 1px solid rgba(160,64,0,.16);
    border-radius: 8px;
    padding: 16px;
}
.ecom-checkout-address-heading {
    align-items: center;
    display: flex;
    gap: 14px;
    justify-content: space-between;
    margin-bottom: 14px;
}
.ecom-checkout-address-heading h3 {
    color: var(--noor-ink);
}
.ecom-checkout-address-heading p {
    color: #76501b;
    font-size: 13px;
}
.ecom-checkout-address-heading a {
    color: var(--noor-copper);
    font-weight: 900;
    white-space: nowrap;
}
.ecom-checkout-address-grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.ecom-checkout-address-card {
    cursor: pointer;
    display: block;
    margin: 0;
    position: relative;
}
.ecom-checkout-address-card input {
    opacity: 0;
    position: absolute;
}
.ecom-checkout-address-card > span {
    background: #fffaf0;
    border: 1px solid rgba(160,64,0,.18);
    border-radius: 8px;
    display: block;
    min-height: 100%;
    padding: 14px 14px 14px 42px;
    position: relative;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.ecom-checkout-address-card > span::before {
    border: 2px solid rgba(112,32,0,.35);
    border-radius: 50%;
    content: "";
    height: 18px;
    left: 14px;
    position: absolute;
    top: 17px;
    width: 18px;
}
.ecom-checkout-address-card.is-selected > span {
    border-color: var(--noor-gold-bright);
    box-shadow: 0 12px 28px rgba(255,183,24,.18);
}
.ecom-checkout-address-card.is-selected > span::before {
    background: radial-gradient(circle at center, var(--noor-gold-bright) 0 38%, transparent 42%);
    border-color: var(--noor-bronze-deep);
}
.ecom-checkout-address-card:hover > span,
.ecom-checkout-address-card:focus-within > span {
    border-color: var(--noor-gold);
    transform: translateY(-1px);
}
.ecom-checkout-address-card strong,
.ecom-checkout-address-card small,
.ecom-checkout-address-card em {
    display: block;
    font-style: normal;
    line-height: 1.35;
}
.ecom-checkout-address-card strong {
    color: var(--noor-ink);
    margin-bottom: 4px;
}
.ecom-checkout-address-card small {
    color: var(--noor-copper);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 7px;
    text-transform: uppercase;
}
.ecom-checkout-address-card em {
    color: #5b4017;
    font-size: 13px;
    overflow-wrap: anywhere;
}
.ecom-checkout-address-card--new > span {
    background: linear-gradient(180deg, #fffef6 0%, #fff3d1 100%);
}
.ecom-checkout-address-empty {
    align-items: center;
    background: #fffaf0;
    border: 1px dashed rgba(160,64,0,.25);
    border-radius: 8px;
    color: #5b4017;
    display: flex;
    gap: 10px;
    padding: 12px;
}
.ecom-checkout-address-empty i {
    color: var(--noor-copper);
}
.ecom-checkout-save-line {
    background: #fff8df;
    border: 1px solid rgba(160,64,0,.14);
    border-radius: 8px;
    padding: 11px 12px;
}
.ecom-checkout-form .bootstrap-select .dropdown-menu {
    border: 1px solid rgba(160,64,0,.22);
    border-radius: 8px;
}
.ecom-checkout-form .bootstrap-select .dropdown-menu li a {
    color: var(--noor-ink);
    padding: 8px 12px;
}
.ecom-checkout-form .bootstrap-select .dropdown-menu li.selected a,
.ecom-checkout-form .bootstrap-select .dropdown-menu li a:hover,
.ecom-checkout-form .bootstrap-select .dropdown-menu li a:focus {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 40%, var(--noor-orange) 100%);
    color: var(--noor-bg);
}
.ecom-account-page .bootstrap-select {
    width: 100% !important;
}
.ecom-account-page .bootstrap-select > .dropdown-toggle {
    align-items: center;
    background: #fff8df !important;
    border: 1px solid rgba(160,64,0,.25) !important;
    border-radius: 8px;
    box-shadow: none !important;
    color: var(--noor-ink) !important;
    display: flex;
    font-weight: 700;
    min-height: 48px;
    padding: 11px 36px 11px 13px;
}
.ecom-account-page .bootstrap-select > .dropdown-toggle::after {
    margin-left: auto;
}
.ecom-account-page .bootstrap-select > .dropdown-toggle:focus {
    border-color: var(--noor-gold-bright) !important;
    box-shadow: 0 0 0 .16rem rgba(255,183,24,.22) !important;
}
.ecom-account-page form.was-validated .bootstrap-select > .dropdown-toggle.is-invalid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 .16rem rgba(220,53,69,.18) !important;
}
.ecom-account-page .bootstrap-select .dropdown-menu {
    border: 1px solid rgba(160,64,0,.22);
    border-radius: 8px;
}
.ecom-account-page .bootstrap-select .dropdown-menu li a {
    color: var(--noor-ink);
    padding: 8px 12px;
}
.ecom-account-page .bootstrap-select .dropdown-menu li.selected a,
.ecom-account-page .bootstrap-select .dropdown-menu li a:hover,
.ecom-account-page .bootstrap-select .dropdown-menu li a:focus {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 40%, var(--noor-orange) 100%);
    color: var(--noor-bg);
}
.ecom-payment-method-static {
    align-items: center;
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 42%, var(--noor-orange) 100%);
    border: 1px solid rgba(255,242,166,.7);
    border-radius: 8px;
    box-shadow: var(--noor-glow);
    color: var(--noor-bg);
    display: flex;
    font-weight: 900;
    gap: 10px;
    min-height: 48px;
    padding: 11px 14px;
}
.ecom-checkout-items {
    border-top: 1px solid rgba(160,64,0,.14);
    margin-top: 14px;
}
.ecom-checkout-item {
    align-items: center;
    border-bottom: 1px solid rgba(160,64,0,.14);
    display: grid;
    gap: 10px;
    grid-template-columns: 58px minmax(0, 1fr) auto 34px;
    padding: 12px 0;
}
.ecom-checkout-item-img {
    background: #fff8df;
    border: 1px solid rgba(160,64,0,.16);
    border-radius: 8px;
    display: block;
    height: 58px;
    overflow: hidden;
    width: 58px;
}
.ecom-checkout-item-img img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.ecom-checkout-item-info {
    min-width: 0;
}
.ecom-checkout-item-title {
    color: var(--noor-ink);
    display: block;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.3;
    overflow-wrap: anywhere;
}
.ecom-checkout-item-info small {
    color: var(--noor-copper);
    display: block;
    font-size: 12px;
    font-weight: 800;
    margin-top: 3px;
}
.ecom-checkout-item-price {
    color: var(--noor-ink);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}
.ecom-checkout-remove-btn {
    align-items: center;
    background: #fff3f3;
    border: 1px solid rgba(220,53,69,.22);
    border-radius: 8px;
    color: #d9363e;
    display: inline-flex;
    height: 34px;
    justify-content: center;
    padding: 0;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
    width: 34px;
}
.ecom-checkout-remove-btn:hover,
.ecom-checkout-remove-btn:focus {
    background: #d9363e;
    border-color: #d9363e;
    box-shadow: 0 8px 20px rgba(217,54,62,.24);
    color: #ffffff;
}
.ecom-table-img {
    height: 72px;
    object-fit: contain;
    width: 72px;
}
.ecom-cart-table {
    border-collapse: separate;
    border-spacing: 0 12px;
    margin-top: -12px;
}
.ecom-cart-table tbody tr {
    filter: drop-shadow(0 10px 22px rgba(64,16,0,.08));
}
.ecom-cart-table tbody tr td {
    background: #fffaf0;
    border-bottom: 1px solid rgba(255,207,51,.22);
    border-top: 1px solid rgba(255,207,51,.22);
}
.ecom-cart-table tbody tr:nth-child(even) td {
    background: #fff6de;
}
.ecom-cart-table tbody tr td:first-child {
    border-left: 1px solid rgba(255,207,51,.22);
    border-radius: 8px 0 0 8px;
}
.ecom-cart-table tbody tr td:last-child {
    border-right: 1px solid rgba(255,207,51,.22);
    border-radius: 0 8px 8px 0;
}
.ecom-cart-table thead th {
    border-bottom: 0;
}
.ecom-cart-product {
    align-items: center;
    display: flex;
    gap: 14px;
    min-width: 240px;
}
.ecom-cart-product-image {
    display: inline-flex;
    flex: 0 0 auto;
}
.ecom-cart-product-info {
    min-width: 0;
}
.ecom-cart-product-title {
    display: block;
    line-height: 1.35;
    overflow-wrap: anywhere;
}
.ecom-cart-sku {
    color: #777777;
    display: block;
    margin-top: 4px;
}
.ecom-cart-format {
    color: var(--noor-copper);
    display: block;
    font-weight: 800;
    margin-top: 4px;
}
.ecom-qty-input {
    max-width: 92px;
}
.ecom-cart-qty-form {
    align-items: center;
    flex-wrap: nowrap;
}
.ecom-cart-update-btn {
    border-radius: 4px !important;
    font-size: 13px !important;
    height: 38px !important;
    line-height: 1 !important;
    min-height: 38px !important;
    min-width: 0 !important;
    padding: 0 10px !important;
}
.ecom-cart-action-cell {
    min-width: 54px;
}
.ecom-cart-actions {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ecom-cart-move-form,
.ecom-cart-remove-form {
    margin: 0;
}
.ecom-cart-move-btn {
    align-items: center;
    background: var(--noor-menu);
    border: 1px solid var(--noor-border);
    border-radius: 8px;
    color: var(--noor-gold-bright);
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    height: 38px;
    justify-content: center;
    min-height: 38px;
    padding: 0;
    position: relative;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
    white-space: nowrap;
    width: 38px;
}
.ecom-cart-move-btn span {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}
.ecom-cart-move-btn[data-tooltip]::after {
    background: var(--noor-menu);
    border: 1px solid rgba(255,207,51,.32);
    border-radius: 6px;
    bottom: calc(100% + 8px);
    box-shadow: 0 10px 22px rgba(0,0,0,.18);
    color: var(--noor-gold-bright);
    content: attr(data-tooltip);
    font-size: 12px;
    font-weight: 800;
    left: 50%;
    line-height: 1;
    opacity: 0;
    padding: 8px 10px;
    pointer-events: none;
    position: absolute;
    transform: translate(-50%, 4px);
    transition: opacity .16s ease, transform .16s ease;
    visibility: hidden;
    z-index: 5;
}
.ecom-cart-move-btn[data-tooltip]::before {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--noor-menu);
    bottom: calc(100% + 3px);
    content: "";
    left: 50%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: translateX(-50%);
    transition: opacity .16s ease;
    visibility: hidden;
    z-index: 6;
}
.ecom-cart-move-btn[data-tooltip]:hover::after,
.ecom-cart-move-btn[data-tooltip]:focus::after,
.ecom-cart-move-btn[data-tooltip]:hover::before,
.ecom-cart-move-btn[data-tooltip]:focus::before {
    opacity: 1;
    transform: translate(-50%, 0);
    visibility: visible;
}
.ecom-cart-move-btn[data-tooltip]:hover::before,
.ecom-cart-move-btn[data-tooltip]:focus::before {
    transform: translateX(-50%);
}
.ecom-cart-move-btn:hover,
.ecom-cart-move-btn:focus {
    background: var(--noor-gold-bright);
    border-color: var(--noor-gold-bright);
    box-shadow: 0 8px 20px rgba(255,207,51,.26);
    color: var(--noor-ink);
    transform: translateY(-1px);
}
.ecom-cart-remove-btn {
    align-items: center;
    background: #fff3f3;
    border: 1px solid rgba(220,53,69,.22);
    border-radius: 8px;
    color: #d9363e;
    display: inline-flex;
    height: 38px;
    justify-content: center;
    padding: 0;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
    width: 38px;
}
.ecom-cart-remove-btn:hover,
.ecom-cart-remove-btn:focus {
    background: #d9363e;
    border-color: #d9363e;
    box-shadow: 0 8px 20px rgba(217,54,62,.24);
    color: #ffffff;
    transform: translateY(-1px);
}
.ecom-checkout-btn {
    display: flex !important;
    justify-content: center;
    text-align: center;
}
.ecom-shop-title-row {
    align-items: flex-start;
    display: flex;
    gap: 16px;
    justify-content: space-between;
}
.ecom-shop-title-row .h3 {
    flex: 1 1 auto;
}
.ecom-shop-sort-form {
    flex: 0 0 148px;
    justify-content: flex-end;
}
.ecom-shop-sort-form .form-select {
    appearance: none;
    background-color: #fff8df;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.25 6 6.25 11 1.25' fill='none' stroke='%231b1004' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 10px center;
    background-repeat: no-repeat;
    background-size: 12px 8px;
    border-radius: 7px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    min-height: 38px;
    min-width: 148px;
    padding: 8px 30px 8px 12px;
}
.ecom-meta-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
}
.ecom-meta-list li {
    display: flex;
    justify-content: space-between;
    list-style: none;
}
.ecom-meta-list .ecom-total-row {
    align-items: center;
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 42%, var(--noor-orange) 100%);
    border: 1px solid rgba(255,242,166,.75);
    border-radius: 8px;
    box-shadow: 0 10px 28px rgba(255,183,24,.24);
    color: var(--noor-bg);
    font-size: 18px;
    font-weight: 800;
    margin-top: 8px;
    padding: 12px 14px;
}
.ecom-meta-list .ecom-total-row strong {
    color: var(--noor-bg);
    font-size: 22px;
    font-weight: 900;
}
.ecom-rating-stars {
    align-items: center;
    color: #f5a623;
    display: inline-flex;
    gap: 3px;
    list-style: none;
    margin: 0;
    padding: 0;
}
.ecom-rating-stars li {
    line-height: 1;
    margin: 0;
    padding: 0;
}
.ecom-rating-stars .rbt-empty-icon {
    color: #d8c38a;
}
.ecom-review-summary {
    height: 100%;
}
.ecom-review-score {
    color: #172033;
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}
.ecom-rating-breakdown {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 58px minmax(0, 1fr) 28px;
    margin-top: 10px;
}
.ecom-rating-breakdown span,
.ecom-rating-breakdown strong {
    color: #555555;
    font-size: 13px;
}
.ecom-rating-breakdown div {
    background: #efe1b4;
    border-radius: 999px;
    height: 8px;
    overflow: hidden;
}
.ecom-rating-breakdown i {
    background: #f5a623;
    display: block;
    height: 100%;
}
.ecom-rating-input {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
}
.ecom-rating-input input {
    height: 1px;
    opacity: 0;
    position: absolute;
    width: 1px;
}
.ecom-rating-input label {
    color: #c7b174;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
    transition: color .15s ease, transform .15s ease;
}
.ecom-rating-input label:hover,
.ecom-rating-input label:hover ~ label,
.ecom-rating-input input:checked ~ label {
    color: #f5a623;
}
.ecom-rating-input label:hover {
    transform: translateY(-1px);
}
.ecom-review-form {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 28px;
}
.ecom-review-locked {
    align-items: center;
    background: #f6f7fb;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    color: #555555;
    display: flex;
    gap: 10px;
    padding: 14px 16px;
}
.ecom-verified-badge {
    align-items: center;
    background: #e8f8ef;
    border-radius: 999px;
    color: #147c3d;
    display: inline-flex;
    font-size: 12px;
    font-weight: 800;
    gap: 6px;
    line-height: 1;
    padding: 7px 10px;
}
.ecom-review-list {
    display: grid;
    gap: 18px;
}
.ecom-review-card {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 18px;
}
.ecom-review-card:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.ecom-review-card p {
    color: #444444;
    margin: 10px 0 0;
}
.ecom-review-images {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.ecom-review-images img {
    border: 1px solid #eeeeee;
    border-radius: 8px;
    height: 86px;
    object-fit: cover;
    width: 86px;
}
.ecom-admin-badge {
    border-radius: 999px;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    padding: 6px 9px;
}
.ecom-admin-badge.ok {
    background: #e8f8ef;
    color: #147c3d;
}
.ecom-admin-badge.warn {
    background: #fff7df;
    color: #946200;
}
.ecom-admin-badge.off {
    background: #f1f1f1;
    color: #666;
}
.rbt-toolbar.rbt-toolbar--bottom {
    background: #ffffff;
    border-top: 1px solid #ececec;
    bottom: 0;
    box-shadow: 0 -8px 24px rgba(0,0,0,.08);
    left: 0;
    padding-bottom: env(safe-area-inset-bottom);
    position: fixed;
    right: 0;
    z-index: 1040;
}
.rbt-toolbar.rbt-toolbar--bottom.is-footer-docked {
    bottom: 0;
    position: fixed;
    top: auto;
}
.rbt-toolbar.rbt-toolbar--bottom .rbt-quick-access {
    align-items: center;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-content: stretch;
    margin: 0;
    padding: 8px 0;
}
.rbt-toolbar.rbt-toolbar--bottom .rbt-access-box {
    flex: 1 1 0;
    list-style: none;
    min-width: 0;
    text-align: center;
}
.rbt-toolbar.rbt-toolbar--bottom .rbt-round-btn {
    align-items: center;
    color: #444444;
    display: inline-flex;
    flex-direction: column;
    font-size: 20px;
    gap: 4px;
    height: auto;
    justify-content: center;
    min-height: 56px;
    position: relative;
    text-decoration: none;
    width: 100%;
}
.rbt-toolbar.rbt-toolbar--bottom .rbt-toolbar-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}
.rbt-toolbar.rbt-toolbar--bottom .access-box-count {
    align-items: center;
    background: #f0a51a;
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 10px;
    font-weight: 700;
    height: 17px;
    justify-content: center;
    min-width: 17px;
    padding: 0 4px;
    position: absolute;
    right: calc(50% - 22px);
    top: 2px;
}
.ecom-footer-modal .modal-content {
    border-radius: 10px;
    overflow: hidden;
    padding: 0 !important;
}
.ecom-footer-modal .modal-body {
    padding: 24px;
}
.ecom-footer-modal .rbt-close-button {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
}
.ecom-modal-product {
    align-items: center;
    border-bottom: 1px solid #ececec;
    display: flex;
    gap: 12px;
    padding: 10px 0;
}
.ecom-modal-product:first-child {
    padding-top: 0;
}
.ecom-modal-product:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.ecom-modal-product img {
    border-radius: 6px;
    height: 64px;
    object-fit: cover;
    width: 64px;
}
.ecom-modal-product span {
    color: #f0a51a;
    display: block;
    font-weight: 700;
    margin-top: 4px;
}
.ecom-floating-whatsapp {
    align-items: center;
    background: linear-gradient(135deg, #25d366 0%, #128c4a 100%);
    border: 2px solid rgba(255,255,255,.86);
    border-radius: 999px;
    bottom: 24px;
    box-shadow: 0 12px 26px rgba(18,140,74,.34);
    color: #ffffff !important;
    display: inline-flex;
    font-size: 15px;
    font-weight: 800;
    gap: 9px;
    line-height: 1;
    padding: 14px 18px 14px 15px;
    position: fixed;
    right: 22px;
    text-decoration: none !important;
    transition: box-shadow .18s ease, filter .18s ease, transform .18s ease;
    z-index: 1042;
}
.ecom-floating-whatsapp i {
    font-size: 24px;
    line-height: 1;
}
.ecom-floating-whatsapp:hover,
.ecom-floating-whatsapp:focus {
    box-shadow: 0 16px 34px rgba(18,140,74,.46), 0 0 0 5px rgba(37,211,102,.16);
    color: #ffffff !important;
    filter: brightness(1.06);
    transform: translateY(-2px);
}
@media (max-width: 1199px) {
    body {
        padding-bottom: calc(76px + env(safe-area-inset-bottom));
    }
    .ecom-floating-whatsapp {
        bottom: calc(88px + env(safe-area-inset-bottom));
        padding: 14px;
        right: 14px;
    }
    .ecom-floating-whatsapp span {
        display: none;
    }
    .rbt-toolbar.rbt-toolbar--bottom,
    .rbt-toolbar.rbt-toolbar--bottom.is-footer-docked {
        bottom: 0 !important;
        left: 0 !important;
        position: fixed !important;
        right: 0 !important;
        top: auto !important;
        transform: none !important;
    }
    body.modal-open .rbt-toolbar.rbt-toolbar--bottom,
    body.modal-open .rbt-toolbar.rbt-toolbar--bottom.is-footer-docked {
        bottom: 0 !important;
        padding-bottom: env(safe-area-inset-bottom) !important;
        transform: none !important;
    }
    body.modal-open .rbt-toolbar.rbt-toolbar--bottom .rbt-quick-access {
        padding-bottom: 8px !important;
        padding-top: 8px !important;
    }
    body.modal-open .rbt-toolbar.rbt-toolbar--bottom .rbt-round-btn {
        min-height: 56px !important;
    }
    .ecom-hero-nav {
        display: none;
    }
}
@media (max-width: 767px) {
    .ecom-footer-modal {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }
    .ecom-footer-modal .modal-dialog {
        margin: 12px auto;
        max-width: min(100%, 420px);
        min-height: calc(100% - 24px);
    }
    .ecom-footer-modal .modal-content {
        border-radius: 8px;
    }
    .ecom-footer-modal .modal-body {
        padding: 18px;
    }
    .ecom-footer-modal .rbt-title {
        padding-right: 34px;
    }
}
@media (min-width: 1200px) {
    .rbt-toolbar.rbt-toolbar--bottom {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .ecom-hero-slider {
        height: clamp(300px, 52vw, 520px);
    }
    .ecom-hero-slide {
        padding: 0;
        text-align: left;
    }
    .ecom-hero-content {
        margin: 0;
        max-width: 460px;
    }
    .ecom-hero-media {
        display: none;
    }
}
@media (max-width: 767px) {
    .ecom-format-options {
        grid-template-columns: 1fr;
    }
    .ecom-format-option {
        align-items: flex-start;
        grid-template-columns: auto minmax(0, 1fr);
    }
    .ecom-format-option b {
        grid-column: 2;
    }
    .ecom-shop-title-row {
        display: block;
    }
    .ecom-shop-sort-form {
        margin-top: 10px;
        width: 100%;
    }
    .ecom-shop-sort-form .form-select {
        min-width: 0;
        width: 100%;
    }
    .ecom-cart-panel {
        overflow: visible;
        padding: 0;
    }
    .ecom-cart-table {
        border-collapse: separate;
        border-spacing: 0 12px;
        margin: 0;
    }
    .ecom-cart-table thead {
        display: none;
    }
    .ecom-cart-table tbody,
    .ecom-cart-table tr,
    .ecom-cart-table td {
        display: block;
        width: 100%;
    }
    .ecom-cart-table tr {
        background: #fffaf0;
        border: 1px solid rgba(255,207,51,.22);
        border-radius: 8px;
        box-shadow: 0 10px 24px rgba(64,16,0,.08);
        padding: 12px;
        position: relative;
    }
    .ecom-cart-table td {
        border: 0 !important;
        padding: 6px 0 !important;
    }
    .ecom-cart-product-cell {
        padding-top: 0 !important;
    }
    .ecom-cart-product {
        display: block;
        min-width: 0;
        padding-right: 82px;
        text-align: center;
    }
    .ecom-cart-product-image {
        display: flex;
        justify-content: center;
        margin: 0 auto 8px;
    }
    .ecom-cart-product .ecom-table-img {
        height: 88px;
        width: 88px;
    }
    .ecom-cart-product-title {
        font-size: 13px;
        line-height: 1.25;
        margin: 0 auto;
        max-width: 230px;
    }
    .ecom-cart-sku {
        display: none !important;
    }
    .ecom-cart-table td[data-cart-label] {
        align-items: center;
        display: flex;
        font-size: 13px;
        gap: 12px;
        justify-content: space-between;
    }
    .ecom-cart-table td[data-cart-label]::before {
        color: var(--noor-muted);
        content: attr(data-cart-label);
        font-weight: 700;
    }
    .ecom-cart-price,
    .ecom-cart-subtotal {
        color: var(--noor-ink);
        font-weight: 800;
    }
    .ecom-cart-qty-form {
        justify-content: flex-end;
    }
    .ecom-cart-update-btn {
        display: none !important;
    }
    .ecom-product-cart-row {
        align-items: stretch !important;
    }
    .ecom-product-cart-row .rbt-btn {
        flex: 1 1 100%;
    }
    .ecom-cart-quantity .ecom-qty-input {
        max-width: 74px;
        min-height: 40px;
        text-align: center;
    }
    .ecom-cart-action-cell {
        min-height: 0;
        padding: 0 !important;
    }
    .ecom-cart-actions {
        flex-direction: row;
        position: absolute;
        right: 10px;
        top: 10px;
    }
    .ecom-cart-move-btn {
        font-size: 14px;
        height: 34px;
        min-height: 34px;
        padding: 0;
        width: 34px;
    }
    .ecom-cart-remove-btn {
        height: 34px;
        width: 34px;
    }
    .ecom-checkout-item {
        gap: 8px;
        grid-template-columns: 52px minmax(0, 1fr) 30px;
        padding: 10px 0;
    }
    .ecom-checkout-item-img {
        height: 52px;
        width: 52px;
    }
    .ecom-checkout-item-price {
        font-size: 13px;
        grid-column: 2 / 4;
        justify-self: start;
        margin-top: -2px;
    }
    .ecom-checkout-remove-btn {
        height: 30px;
        width: 30px;
    }
    .rbt-header .logo img,
    .rbt-footer-area .logo img {
        height: 48px !important;
        max-height: 48px !important;
        max-width: 190px !important;
    }
    .ecom-panel,
    .ecom-summary-box {
        padding: 16px;
    }
    .ecom-hero-slider {
        height: clamp(260px, 78vw, 420px);
        min-height: 0;
    }
    .ecom-hero-slide {
        min-height: 0;
        padding: 0;
    }
    .ecom-hero-copy-wrap {
        inset: 0;
        position: absolute;
    }
    .ecom-hero-content {
        display: block;
        max-width: none;
        padding: 0;
        position: static;
    }
    .ecom-hero-content .h1,
    .ecom-hero-content h1,
    .ecom-hero-content h2,
    .ecom-hero-content p {
        display: none;
    }
    .ecom-hero-content .rbt-btn {
        bottom: 22px;
        left: 50%;
        min-width: 132px;
        position: absolute;
        transform: translateX(-50%);
        z-index: 3;
    }
    .ecom-hero-content .rbt-btn:hover,
    .ecom-hero-content .rbt-btn:focus {
        transform: translateX(-50%) !important;
    }
    .ecom-hero-content .h1 {
        font-size: clamp(22px, 7vw, 32px);
        line-height: 1.12;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
        overflow-wrap: break-word;
    }
    .ecom-hero-content p {
        font-size: 15px;
        line-height: 1.6;
    }
    .ecom-hero .ecom-hero-img {
        height: 100%;
        max-height: none;
    }
    .ecom-hero-pagination.swiper-pagination {
        bottom: 8px;
    }
    .ecom-product-thumbs {
        gap: 8px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    .ecom-gallery-lightbox {
        padding: 54px 18px 46px;
    }
    .ecom-gallery-lightbox-slider {
        height: calc(100vh - 110px);
        width: calc(100vw - 36px);
    }
    .ecom-gallery-close {
        right: 12px;
        top: 12px;
    }
    .ecom-gallery-prev {
        left: 10px;
    }
    .ecom-gallery-next {
        right: 10px;
    }
}

/* Storefront gold theme overrides. Keep these after template rules so the logo palette wins. */
body.rbt-header-sticky {
    background: var(--noor-panel);
}

.rbt-header .rbt-header-wrapper,
.rbt-header .rbt-topbar-section,
.rbt-header .rbt-wrapper-middle,
.rbt-header-common-sticky-activation {
    background: linear-gradient(180deg, var(--noor-menu-2) 0%, var(--noor-menu) 62%, var(--noor-bg) 100%) !important;
    color: var(--noor-gold-light);
}

.rbt-header .rbt-separator,
.rbt-header .rbt-separator-gray100 {
    border-color: rgba(255,207,51,.2) !important;
}

.rbt-header .rbt-topbar-section p,
.rbt-header .rbt-access-box-wrapper .content p,
.rbt-header .rbt-access-box-wrapper .content span,
.rbt-header .rbt-access-link {
    color: var(--noor-gold-light) !important;
}

.rbt-header .rbt-access-link:hover,
.rbt-header .rbt-access-box-wrapper:hover .content p,
.rbt-header .rbt-access-box-wrapper:hover .content span {
    color: var(--noor-gold-bright) !important;
}

.rbt-header .logo img,
.rbt-footer-area .logo img {
    filter: drop-shadow(0 8px 16px rgba(255,160,0,.25));
    height: 76px !important;
    max-height: 76px !important;
    max-width: 280px !important;
    object-fit: contain;
    width: auto !important;
}

.rbt-header .rbt-round-btn,
.rbt-header .rbt-bg-static-gray,
.mobile-menu-bar .hamberger-button {
    background: linear-gradient(145deg, #211004 0%, #050301 100%) !important;
    border: 1px solid var(--noor-border) !important;
    color: var(--noor-gold-bright) !important;
    box-shadow: inset 0 1px 0 rgba(255,242,166,.16), 0 10px 24px rgba(0,0,0,.22);
}

.rbt-header .rbt-round-btn:hover,
.rbt-header .rbt-bg-static-gray:hover,
.mobile-menu-bar .hamberger-button:hover {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 32%, var(--noor-gold) 62%, var(--noor-copper) 100%) !important;
    color: var(--noor-bg) !important;
    box-shadow: var(--noor-glow);
}

.rbt-header .header-right .rbt-access-box-wrapper,
.rbt-header .header-right .rbt-access-box > .rbt-round-btn.rbt-bg-static-gray {
    border-radius: 8px;
    transition: background .2s ease, box-shadow .2s ease, color .2s ease, transform .2s ease;
}

.rbt-header .header-right {
    padding-right: 12px;
}

.rbt-header .header-right .rbt-quick-access {
    padding-right: 6px;
}

.rbt-header .header-right .rbt-mini-cart .rbt-access-box-wrapper {
    padding-right: 14px;
}

.rbt-header .header-right .rbt-round-btn.rbt-bg-static-gray {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 34%, var(--noor-gold) 62%, var(--noor-orange) 100%) !important;
    border-color: rgba(255,242,166,.78) !important;
    color: var(--noor-bg) !important;
    box-shadow: 0 8px 22px rgba(255,183,24,.28);
}

.rbt-header .header-right .rbt-round-btn.rbt-bg-static-gray i {
    color: inherit !important;
}

.rbt-header .header-right .rbt-access-box-wrapper:hover,
.rbt-header .header-right .rbt-access-box-wrapper:focus,
.rbt-header .header-right .rbt-access-box > .rbt-round-btn.rbt-bg-static-gray:hover,
.rbt-header .header-right .rbt-access-box > .rbt-round-btn.rbt-bg-static-gray:focus {
    background: linear-gradient(135deg, #fff7bd 0%, var(--noor-gold-bright) 32%, var(--noor-gold) 62%, var(--noor-orange) 100%) !important;
    box-shadow: var(--noor-glow);
    color: var(--noor-bg) !important;
    transform: translateY(-1px);
}

.rbt-header .header-right .rbt-access-box-wrapper:hover .content p,
.rbt-header .header-right .rbt-access-box-wrapper:focus .content p,
.rbt-header .header-right .rbt-access-box-wrapper:hover .content span,
.rbt-header .header-right .rbt-access-box-wrapper:focus .content span {
    color: var(--noor-bg) !important;
}

.rbt-header .access-box-count,
.rbt-toolbar.rbt-toolbar--bottom .access-box-count,
.access-box-count.rbt-shiny {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 36%, var(--noor-orange) 100%) !important;
    color: var(--noor-bg) !important;
    box-shadow: 0 0 0 2px var(--noor-menu), 0 5px 15px rgba(255,183,24,.35);
}

.rbt-header-mid-1,
.rbt-header-mid-1.rbt-bg-color-primary,
.rbt-header-mid-1 .rbt-header-sec,
.rbt-header-mid-1 .rbt-main-navigation,
.rbt-header-mid-1 .rbt-mainmenu-nav {
    background: linear-gradient(180deg, #1d0d02 0%, #080402 100%) !important;
}

.rbt-header-mid-1 {
    border-bottom: 1px solid var(--noor-border);
    border-top: 1px solid rgba(255,207,51,.2);
    box-shadow: 0 13px 32px rgba(0,0,0,.22);
}

.rbt-header-mid-1 .rbt-mainmenu-nav .mainmenu > li > a {
    border: 1px solid transparent;
    color: var(--noor-gold-light) !important;
    letter-spacing: 0;
    text-shadow: 0 0 12px rgba(255,207,51,.18);
}

.rbt-header-mid-1 .rbt-mainmenu-nav .mainmenu > li > a:hover,
.rbt-header-mid-1 .rbt-mainmenu-nav .mainmenu > li > a:focus,
.rbt-header-mid-1 .rbt-mainmenu-nav .mainmenu > li > a.is-active {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 35%, var(--noor-gold) 62%, var(--noor-copper) 100%) !important;
    border-color: rgba(255,242,166,.55);
    color: var(--noor-bg) !important;
    box-shadow: var(--noor-glow);
}

.rbt-main-navigation .mainmenu .ecom-header-categories .ecom-category-dropdown,
.ecom-search-suggestions {
    background: linear-gradient(180deg, #160a02 0%, #070301 100%) !important;
    border: 1px solid var(--noor-border) !important;
    box-shadow: 0 22px 46px rgba(0,0,0,.34), 0 0 24px rgba(255,183,24,.14) !important;
}

.rbt-main-navigation .mainmenu .ecom-header-categories .ecom-category-dropdown a,
.ecom-search-suggestion {
    color: var(--noor-gold-light) !important;
}

.rbt-main-navigation .mainmenu .ecom-header-categories .ecom-category-dropdown strong,
.ecom-search-suggestion strong {
    color: var(--noor-gold-light);
}

.rbt-main-navigation .mainmenu .ecom-header-categories .ecom-category-dropdown small,
.ecom-search-suggestion small {
    color: #d8c38a;
}

.rbt-main-navigation .mainmenu .ecom-header-categories .ecom-category-dropdown a:hover,
.ecom-search-suggestion:hover,
.ecom-search-suggestion:focus {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 40%, var(--noor-orange) 100%) !important;
    color: var(--noor-bg) !important;
}

.rbt-main-navigation .mainmenu .ecom-header-categories .ecom-category-dropdown a:hover strong,
.rbt-main-navigation .mainmenu .ecom-header-categories .ecom-category-dropdown a:hover small,
.ecom-search-suggestion:hover strong,
.ecom-search-suggestion:hover small,
.ecom-search-suggestion:focus strong,
.ecom-search-suggestion:focus small {
    color: var(--noor-bg);
}

.ecom-category-thumb,
.ecom-search-suggestion img {
    background: rgba(255,207,51,.1) !important;
    border: 1px solid rgba(255,207,51,.24);
}

.rbt-search-with-category .rbt-inner-search-field,
.ecom-search-form .form-control,
.ecom-qty-input,
.form-control,
.form-select {
    background: #fff8df;
    border: 1px solid rgba(160,64,0,.25) !important;
    color: var(--noor-ink);
}

.rbt-search-with-category .rbt-inner-search-field {
    box-shadow: inset 0 0 0 1px rgba(255,207,51,.16), 0 9px 24px rgba(0,0,0,.18);
}

.rbt-search-with-category .rbt-search-input-section input,
.ecom-search-form .form-control {
    color: var(--noor-ink);
}

.rbt-search-with-category .search-btn {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 35%, var(--noor-orange) 100%) !important;
    border: 0 !important;
    color: var(--noor-bg) !important;
}

.ecom-mobile-links a,
.ecom-mobile-category-toggle,
.ecom-mobile-category-list {
    background: linear-gradient(180deg, #160a02 0%, #080402 100%) !important;
    border-color: var(--noor-border) !important;
    color: var(--noor-gold-light) !important;
}

.ecom-mobile-links a.is-active,
.ecom-mobile-category-toggle.is-active,
.ecom-mobile-links a:hover,
.ecom-mobile-category-toggle:hover,
.ecom-mobile-category-list a:hover {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 38%, var(--noor-orange) 100%) !important;
    color: var(--noor-bg) !important;
}

.ecom-mobile-category-list a {
    color: var(--noor-gold-light) !important;
}

.rbt-btn.rbt-btn-primary,
.btn-primary,
.rbt-btn:not(.rbt-btn-border):not(.rbt-btn-transparent):not(.rbt-round-btn) {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 34%, var(--noor-gold) 60%, var(--noor-copper) 100%) !important;
    border-color: rgba(255,242,166,.7) !important;
    color: var(--noor-bg) !important;
    box-shadow: var(--noor-glow);
}

.rbt-btn.rbt-btn-primary:hover,
.btn-primary:hover,
.rbt-btn:not(.rbt-btn-border):not(.rbt-btn-transparent):not(.rbt-round-btn):hover {
    background: linear-gradient(135deg, #fff7bd 0%, var(--noor-gold-bright) 30%, var(--noor-orange) 72%, var(--noor-bronze) 100%) !important;
    color: var(--noor-bg) !important;
    transform: translateY(-1px);
}

.rbt-btn.rbt-btn-border,
.btn-outline-primary {
    background: #fffaf0 !important;
    border-color: var(--noor-gold) !important;
    color: var(--noor-bronze-deep) !important;
}

.rbt-btn.rbt-btn-border:hover,
.btn-outline-primary:hover {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 44%, var(--noor-orange) 100%) !important;
    color: var(--noor-bg) !important;
    box-shadow: var(--noor-glow);
}

.ecom-hero {
    background: linear-gradient(135deg, #050301 0%, #170b02 42%, #401000 100%) !important;
    border-bottom: 1px solid var(--noor-border);
    color: var(--noor-gold-light);
    overflow: hidden;
}

.ecom-hero::before {
    background: linear-gradient(90deg, rgba(255,207,51,.22) 0%, rgba(255,207,51,.08) 34%, rgba(255,207,51,0) 70%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 0;
}

.ecom-hero .container,
.ecom-hero .ecom-hero-slider {
    position: relative;
    z-index: 1;
}

.ecom-hero-content .h1,
.ecom-hero-content h1,
.ecom-hero-content h2 {
    color: var(--noor-gold-light) !important;
    -webkit-text-stroke: 1px #000000;
    paint-order: stroke fill;
    text-shadow: 0 2px 0 #000000, 0 8px 22px rgba(0,0,0,.58);
}

.ecom-hero-content p {
    color: #f6df9a !important;
    -webkit-text-stroke: .35px #000000;
    paint-order: stroke fill;
    text-shadow: 0 1px 0 #000000, 0 6px 18px rgba(0,0,0,.55);
}

.ecom-product-main-image,
.rbt-product-card .rbt-card-img {
    background: linear-gradient(180deg, #fffaf0 0%, #fff1bf 100%) !important;
    border: 1px solid rgba(255,207,51,.32);
}

.ecom-hero .ecom-hero-img {
    background: transparent !important;
    border: 0 !important;
}

.ecom-hero-nav,
.ecom-gallery-close,
.ecom-gallery-nav {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 38%, var(--noor-orange) 100%) !important;
    color: var(--noor-bg) !important;
    box-shadow: var(--noor-glow);
}

.ecom-hero-pagination .swiper-pagination-bullet,
.ecom-gallery-pagination .swiper-pagination-bullet {
    background: rgba(255,242,166,.55) !important;
}

.ecom-hero-pagination .swiper-pagination-bullet-active,
.ecom-gallery-pagination .swiper-pagination-bullet-active {
    background: var(--noor-gold-bright) !important;
}

.rbt-product-card,
.ecom-category-card,
.ecom-summary-box,
.ecom-panel,
.modal-content {
    background: #fffaf0 !important;
    border: 1px solid rgba(160,64,0,.16) !important;
    box-shadow: 0 12px 32px rgba(64,16,0,.08);
}

.rbt-product-card:hover,
.ecom-category-card:hover,
.ecom-panel:hover {
    box-shadow: 0 18px 42px rgba(160,64,0,.16);
}

.rbt-card-subtitle,
.rbt-card-catagories-text,
.price-text,
.ecom-modal-product span,
.rbt-link,
a:hover {
    color: var(--noor-copper) !important;
}

.price-text {
    color: var(--noor-bronze-deep) !important;
}

.rbt-product-badge-bg-green,
.rbt-product-badge-bg-secondary,
.rbt-product-badge-bg-disabled,
.ecom-verified-badge {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 45%, var(--noor-orange) 100%) !important;
    color: var(--noor-bg) !important;
}

.rbt-product-card .rbt-card-img {
    position: relative;
}

.rbt-product-card .ecom-product-badge-left,
.rbt-product-card .ecom-product-badge-right {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: absolute;
    top: 12px;
    z-index: 4;
}

.rbt-product-card .ecom-product-badge-left {
    align-items: flex-start;
    left: 12px;
    right: auto;
}

.rbt-product-card .ecom-product-badge-right {
    align-items: flex-end;
    left: auto !important;
    right: 12px;
}

.rbt-product-card .ecom-product-badge-new {
    background: #fff2a6 !important;
    border: 1px solid rgba(255,207,51,.74);
    box-shadow: 0 6px 16px rgba(255,183,24,.22);
    color: var(--noor-bg) !important;
}

.ecom-product-thumb.is-active,
.ecom-product-thumb:hover,
.ecom-product-thumb:focus {
    border-color: var(--noor-gold-bright) !important;
    box-shadow: 0 0 0 3px rgba(255,207,51,.22);
}

.ecom-gallery-zoom-badge,
.ecom-rating-stars,
.ecom-rating-input label:hover,
.ecom-rating-input label:hover ~ label,
.ecom-rating-input input:checked ~ label,
.ecom-rating-breakdown i {
    color: var(--noor-gold) !important;
}

.ecom-rating-breakdown i {
    background: linear-gradient(90deg, var(--noor-gold), var(--noor-gold-bright)) !important;
}

.ecom-review-locked {
    background: #fff3d1 !important;
    border-color: rgba(160,64,0,.18) !important;
}

.rbt-toolbar.rbt-toolbar--bottom {
    background: linear-gradient(180deg, #170b02 0%, #050301 100%) !important;
    border-top: 1px solid var(--noor-border) !important;
    box-shadow: 0 -12px 30px rgba(0,0,0,.3);
}

.rbt-toolbar.rbt-toolbar--bottom .rbt-round-btn {
    color: var(--noor-gold-bright) !important;
    text-shadow: 0 0 10px rgba(255,207,51,.28);
    transition: background-color .2s ease, box-shadow .2s ease, color .2s ease, text-shadow .2s ease, transform .2s ease;
}

.rbt-toolbar.rbt-toolbar--bottom .rbt-round-btn i,
.rbt-toolbar.rbt-toolbar--bottom .rbt-toolbar-label {
    color: inherit !important;
}

.rbt-toolbar.rbt-toolbar--bottom .rbt-round-btn:hover,
.rbt-toolbar.rbt-toolbar--bottom .rbt-round-btn:focus {
    background-color: rgba(255,207,51,.08) !important;
    box-shadow: inset 0 0 0 1px rgba(255,207,51,.28), 0 0 20px rgba(255,183,24,.26);
    color: var(--noor-gold-light) !important;
    text-shadow: 0 0 14px rgba(255,207,51,.58), 0 0 28px rgba(255,160,0,.26);
    transform: translateY(-1px);
}

.rbt-footer-area {
    background: linear-gradient(180deg, #120903 0%, #050301 100%) !important;
    border-top: 1px solid var(--noor-border);
    color: #f2dfab;
}

.rbt-footer-area .footer-widget p,
.rbt-footer-area .footer-widget a,
.rbt-footer-area .ft-link a,
.rbt-footer-area .copyright-area .rbt-link-hover,
.rbt-footer-area .copyright-area .title {
    color: #f2dfab !important;
}

.rbt-footer-area .ft-title,
.rbt-footer-area .rbt-text-color-heading {
    color: var(--noor-gold-bright) !important;
}

.rbt-footer-area .footer-widget a:hover,
.rbt-footer-area .ft-link a:hover {
    color: var(--noor-gold-bright) !important;
}

.rbt-social-icon-list a {
    background: linear-gradient(145deg, #211004 0%, #050301 100%) !important;
    border-color: var(--noor-border) !important;
    color: var(--noor-gold-bright) !important;
}

.rbt-social-icon-list a:hover {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 38%, var(--noor-orange) 100%) !important;
    color: var(--noor-bg) !important;
}

@media (min-width: 1200px) {
    body.ecom-cart-page {
        overscroll-behavior-y: none;
    }

    body.ecom-cart-page .rbt-footer-area .copyright-area.copyright-style-1 {
        padding-bottom: 48px;
    }

    body.ecom-cart-page .rbt-footer-area .payment-img-link,
    body.ecom-cart-page .rbt-footer-area .payment-img-link li {
        overflow: visible;
    }

    body.ecom-cart-page .rbt-footer-area .payment-img-link a {
        align-items: center;
        display: inline-flex;
        line-height: 1;
    }

    body.ecom-cart-page .rbt-footer-area .payment-img-link img {
        display: block;
    }
}

.ecom-home-promo-section {
    background: linear-gradient(180deg, #fffaf0 0%, #fff3d1 100%);
}

.ecom-home-promo {
    background:
        linear-gradient(135deg, rgba(255,207,51,.14) 0%, rgba(214,106,0,.08) 42%, rgba(5,3,1,.06) 100%),
        linear-gradient(135deg, #120903 0%, #050301 100%);
    border: 1px solid var(--noor-border);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(64,16,0,.18);
    overflow: hidden;
    padding: 38px;
}

.ecom-home-promo-content {
    max-width: 700px;
}

.ecom-promo-kicker {
    color: var(--noor-gold-bright);
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.ecom-home-promo .title {
    color: var(--noor-gold-light);
    line-height: 1.22;
    margin-bottom: 14px;
}

.ecom-promo-lead {
    color: #fff4c8;
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 12px;
    max-width: 640px;
}

.ecom-promo-copy {
    color: #e7cf91;
    line-height: 1.65;
    margin-bottom: 20px;
    max-width: 680px;
}

.ecom-promo-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
}

.ecom-promo-points span {
    align-items: center;
    background: rgba(255,242,166,.1);
    border: 1px solid rgba(255,207,51,.22);
    border-radius: 999px;
    color: var(--noor-gold-light);
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    gap: 8px;
    line-height: 1.2;
    padding: 9px 13px;
}

.ecom-promo-points i {
    color: var(--noor-gold-bright);
}

.ecom-home-promo-media {
    background: linear-gradient(135deg, rgba(255,242,166,.18), rgba(214,106,0,.12));
    border: 1px solid rgba(255,207,51,.24);
    border-radius: 8px;
    display: block;
    overflow: hidden;
    padding: 12px;
}

.ecom-home-promo-media img {

    border-radius: 6px;
    display: block;
    height: 100%;

    width: 100%;
}

@media (max-width: 991px) {
    .ecom-home-promo {
        padding: 26px;
    }

    .ecom-home-promo-content {
        max-width: none;
    }
}

@media (max-width: 767px) {
    .ecom-home-promo {
        padding: 20px;
    }

    .ecom-promo-lead {
        font-size: 16px;
    }

    .ecom-promo-points {
        display: grid;
        grid-template-columns: 1fr;
    }

    .ecom-promo-points span {
        border-radius: 8px;
        width: 100%;
    }
}

@media (max-width: 767px) {
    .rbt-header .logo img,
    .rbt-footer-area .logo img {
        height: 54px !important;
        max-height: 54px !important;
        max-width: 220px !important;
    }

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

.ecom-contact-hero {
    background: linear-gradient(135deg, #050301 0%, #170b02 46%, #401000 100%);
    border-bottom: 1px solid var(--noor-border);
    color: var(--noor-gold-light);
    padding: 58px 0;
}

.ecom-contact-hero h1,
.ecom-contact-hero p {
    color: inherit;
}

.ecom-contact-kicker {
    color: var(--noor-gold-bright) !important;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ecom-contact-office {
    background: rgba(255,242,166,.08);
    border: 1px solid var(--noor-border);
    border-radius: 8px;
    padding: 22px;
}

.ecom-contact-office strong,
.ecom-contact-office span {
    display: block;
}

.ecom-contact-office strong {
    color: var(--noor-gold-bright);
    margin-bottom: 8px;
}

.ecom-contact-stack {
    display: grid;
    gap: 14px;
}

.ecom-contact-card {
    align-items: center;
    background: linear-gradient(180deg, #170b02 0%, #080402 100%);
    border: 1px solid var(--noor-border);
    border-radius: 8px;
    color: var(--noor-gold-light) !important;
    display: flex;
    gap: 14px;
    padding: 18px;
}

.ecom-contact-card:hover {
    color: var(--noor-gold-bright) !important;
    box-shadow: var(--noor-glow);
}

.ecom-contact-card strong,
.ecom-contact-card small {
    display: block;
    line-height: 1.35;
}

.ecom-contact-card small {
    color: #f2dfab;
    margin-top: 3px;
}

.ecom-contact-icon {
    align-items: center;
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 42%, var(--noor-orange) 100%);
    border-radius: 50%;
    color: var(--noor-bg);
    display: inline-flex;
    flex: 0 0 46px;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.ecom-contact-form-panel label {
    color: var(--noor-ink);
    display: block;
    font-weight: 800;
}

.ecom-contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.ecom-map-frame {
    aspect-ratio: 16 / 7;
    background: #fff3d1;
    border: 1px solid rgba(160,64,0,.16);
    border-radius: 8px;
    min-height: 360px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(64,16,0,.12);
}

.ecom-map-frame iframe {
    display: block;
    height: 100%;
    width: 100%;
}

@media (max-width: 767px) {
    .ecom-contact-hero {
        padding: 42px 0;
    }

    .ecom-map-frame {
        aspect-ratio: 1 / 1;
        min-height: 320px;
    }
}

.ecom-payment-main {
    background:
        radial-gradient(circle at top left, rgba(255,207,51,.14), transparent 32%),
        linear-gradient(180deg, #fffaf0 0%, #fff3d1 100%);
}

.ecom-payment-card,
.ecom-payment-result {
    background: #fffaf0;
    border: 1px solid rgba(160,64,0,.16);
    border-radius: 8px;
    box-shadow: 0 16px 38px rgba(64,16,0,.1);
    color: var(--noor-ink);
    padding: 28px;
}

.ecom-payment-card-primary {
    background:
        linear-gradient(135deg, rgba(255,207,51,.16), rgba(255,207,51,0) 42%),
        linear-gradient(135deg, #170b02 0%, #050301 100%);
    border-color: rgba(255,207,51,.34);
    color: var(--noor-gold-light);
}

.ecom-payment-card-primary h1,
.ecom-payment-card-primary strong {
    color: var(--noor-gold-bright);
}

.ecom-payment-eyebrow {
    color: var(--noor-copper);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.ecom-payment-card-primary .ecom-payment-eyebrow {
    color: var(--noor-gold-light);
}

.ecom-payment-amount {
    color: var(--noor-gold-bright);
    font-size: 38px;
    font-weight: 900;
    line-height: 1.1;
    margin: 22px 0;
    text-shadow: 0 2px 0 rgba(0,0,0,.45);
}

.ecom-payment-actions,
.ecom-payment-next-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ecom-payment-actions .rbt-btn,
.ecom-payment-next-actions .rbt-btn {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
    min-width: 148px;
}

.ecom-payment-secure-list {
    display: grid;
    gap: 10px;
    list-style: none;
    margin: 26px 0 0;
    padding: 0;
}

.ecom-payment-secure-list li {
    align-items: center;
    display: flex;
    gap: 10px;
}

.ecom-payment-secure-list i {
    color: var(--noor-gold-bright);
}

.ecom-payment-summary-item {
    align-items: flex-start;
    border-bottom: 1px solid rgba(160,64,0,.14);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 11px 0;
}

.ecom-payment-summary-item span {
    min-width: 0;
}

.ecom-payment-summary-item small {
    color: #76501b;
    display: block;
    font-weight: 700;
    margin-top: 3px;
}

.ecom-payment-result {
    align-items: center;
    display: flex;
    gap: 18px;
}

.ecom-payment-result h1 {
    font-size: 30px;
    line-height: 1.2;
    margin: 3px 0 6px;
}

.ecom-payment-status-icon {
    align-items: center;
    border-radius: 50%;
    display: inline-flex;
    flex: 0 0 74px;
    font-size: 34px;
    height: 74px;
    justify-content: center;
    width: 74px;
}

.ecom-payment-result-success .ecom-payment-status-icon {
    background: #dff8e8;
    color: #11964b;
}

.ecom-payment-result-failed .ecom-payment-status-icon {
    background: #ffe3e3;
    color: #d9363e;
}

.ecom-payment-detail-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ecom-payment-detail-list li,
.ecom-payment-detail-inline {
    background: #fff3d1;
    border: 1px solid rgba(160,64,0,.12);
    border-radius: 8px;
    padding: 12px 14px;
}

.ecom-payment-detail-list span,
.ecom-payment-detail-inline span {
    color: #76501b;
    display: block;
    font-size: 13px;
    font-weight: 800;
}

.ecom-payment-detail-list strong,
.ecom-payment-detail-inline strong {
    color: var(--noor-ink);
    overflow-wrap: anywhere;
}

.ecom-payment-detail-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.ecom-payment-alert {
    align-items: center;
    background: #fff3d1;
    border: 1px solid rgba(255,183,24,.38);
    border-radius: 8px;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 14px;
}

.ecom-payment-alert strong,
.ecom-payment-alert span {
    display: block;
}

.ecom-payment-help {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.ecom-payment-help span {
    align-items: center;
    background: #fff3d1;
    border-radius: 8px;
    display: inline-flex;
    gap: 8px;
    padding: 10px 12px;
}

.ecom-order-success-table .ecom-total-row-table th {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 42%, var(--noor-orange) 100%);
    color: var(--noor-bg);
    font-size: 19px;
    font-weight: 900;
}

.rbt-main-navigation .mainmenu .ecom-header-account .ecom-account-dropdown {
    background: linear-gradient(180deg, #160a02 0%, #070301 100%) !important;
    border: 1px solid var(--noor-border) !important;
    border-radius: 8px;
    box-shadow: 0 22px 46px rgba(0,0,0,.34), 0 0 24px rgba(255,183,24,.14) !important;
    display: grid;
    gap: 2px;
    left: 0;
    list-style: none;
    margin: 0;
    min-width: 238px;
    opacity: 0;
    padding: 6px;
    position: absolute;
    top: calc(100% + 6px);
    transform: translateY(8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
    visibility: hidden;
    z-index: 1100;
}

.rbt-main-navigation .mainmenu .ecom-header-account:hover .ecom-account-dropdown,
.rbt-main-navigation .mainmenu .ecom-header-account:focus-within .ecom-account-dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.rbt-main-navigation .mainmenu .ecom-header-account .ecom-account-dropdown li {
    margin: 0;
    padding: 0;
}

.rbt-main-navigation .mainmenu .ecom-header-account .ecom-account-dropdown a {
    align-items: center;
    border-radius: 6px;
    color: var(--noor-gold-light) !important;
    display: flex;
    font-size: 14px;
    gap: 8px;
    line-height: 1.2;
    min-height: 34px;
    padding: 6px 10px;
    text-decoration: none;
}

.rbt-main-navigation .mainmenu .ecom-header-account .ecom-account-dropdown a i {
    color: var(--noor-gold-bright);
    text-align: center;
    width: 18px;
}

.rbt-main-navigation .mainmenu .ecom-header-account .ecom-account-dropdown a:hover,
.rbt-main-navigation .mainmenu .ecom-header-account .ecom-account-dropdown a:focus {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 40%, var(--noor-orange) 100%) !important;
    color: var(--noor-bg) !important;
}

.rbt-main-navigation .mainmenu .ecom-header-account .ecom-account-dropdown a:hover i,
.rbt-main-navigation .mainmenu .ecom-header-account .ecom-account-dropdown a:focus i {
    color: var(--noor-bg);
}

.ecom-mobile-account-list {
    margin-bottom: 8px;
}

.ecom-mobile-account-list a i {
    color: var(--noor-gold-bright);
    text-align: center;
    width: 24px;
}

.ecom-mobile-account-list a:hover i,
.ecom-mobile-account-list a:focus i {
    color: var(--noor-bg);
}

.ecom-account-heading {
    align-items: flex-end;
    border-bottom: 1px solid rgba(160,64,0,.14);
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 18px;
}

.ecom-overline {
    color: var(--noor-copper);
    display: block;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 7px;
    text-transform: uppercase;
}

.ecom-account-page label {
    color: var(--noor-ink);
    display: block;
    font-weight: 800;
    width: 100%;
}

.ecom-account-page .text-danger {
    margin-left: 3px;
}

.ecom-account-page .ecom-disabled-control,
.ecom-account-page .form-control:disabled,
.ecom-account-page .form-control[readonly] {
    background: #f3ead0;
    border-color: rgba(160,64,0,.22) !important;
    color: #6b4b16;
    cursor: not-allowed;
    opacity: 1;
}

.ecom-field-note {
    color: #7b5a20;
    display: block;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 6px;
}

.ecom-profile-form > div {
    margin-bottom: 20px !important;
}

.ecom-profile-form label {
    margin-bottom: 0;
}

.ecom-profile-form .form-control {
    margin-top: 8px !important;
}

.ecom-profile-form .rbt-btn {
    margin-top: 4px;
}

.ecom-address-book-form .mb--14,
.ecom-address-book-form .mb--18 {
    margin-bottom: 20px !important;
}

.ecom-address-book-form label {
    margin-bottom: 0;
}

.ecom-address-book-form .form-control {
    margin-top: 8px !important;
}

.ecom-address-book-form .bootstrap-select {
    margin-top: 8px !important;
}

.ecom-address-book-form .ecom-checkbox-line {
    margin-bottom: 20px !important;
}

.ecom-address-book-form .rbt-btn {
    margin-top: 6px;
}

.ecom-address-form-title {
    align-items: center;
    background: #fff8df;
    border: 1px solid rgba(160,64,0,.14);
    border-radius: 8px;
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.ecom-address-form-title i {
    align-items: center;
    background: var(--noor-menu);
    border-radius: 8px;
    color: var(--noor-gold-bright);
    display: inline-flex;
    flex: 0 0 40px;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.ecom-address-form-title h3 {
    color: var(--noor-ink);
}

.ecom-address-form-title p {
    color: #76501b;
    font-size: 13px;
}

.ecom-different-billing-line {
    align-items: flex-start !important;
    background: #fff8df;
    border: 1px solid rgba(160,64,0,.14);
    border-radius: 8px;
    gap: 12px;
    line-height: 1.25;
    margin-bottom: 18px !important;
    padding: 12px 14px;
}

.ecom-address-help-text {
    color: #76501b;
    font-size: 13px;
    font-weight: 700;
    margin: -10px 0 18px;
}

.ecom-billing-address-panel {
    border-top: 1px dashed rgba(160,64,0,.24);
    margin-top: 18px;
    padding-top: 18px;
}

.ecom-account-sidebar {
    background: linear-gradient(180deg, #180b02 0%, var(--noor-menu) 64%, #050301 100%);
    border: 1px solid var(--noor-border);
    border-radius: 8px;
    box-shadow: 0 18px 38px rgba(0,0,0,.14);
    overflow: hidden;
    position: sticky;
    top: 112px;
}

.ecom-account-sidebar__profile {
    align-items: center;
    border-bottom: 1px solid rgba(255,207,51,.22);
    display: flex;
    gap: 12px;
    padding: 18px;
}

.ecom-account-sidebar__avatar {
    align-items: center;
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 42%, var(--noor-orange) 100%);
    border-radius: 50%;
    color: var(--noor-bg);
    display: inline-flex;
    flex: 0 0 46px;
    font-weight: 900;
    height: 46px;
    justify-content: center;
    width: 46px;
}

.ecom-account-sidebar__profile strong,
.ecom-account-sidebar__profile div > span {
    display: block;
    line-height: 1.35;
}

.ecom-account-sidebar__profile strong {
    color: var(--noor-gold-light);
    font-size: 15px;
}

.ecom-account-sidebar__profile div > span {
    color: #d8c38a;
    font-size: 12px;
    overflow-wrap: anywhere;
}

.ecom-account-nav {
    display: grid;
    gap: 5px;
    padding: 10px;
}

.ecom-account-nav a {
    align-items: center;
    border-radius: 6px;
    color: var(--noor-gold-light);
    display: flex;
    gap: 11px;
    padding: 11px 12px;
    text-decoration: none;
}

.ecom-account-nav a i {
    color: var(--noor-gold-bright);
    text-align: center;
    width: 22px;
}

.ecom-account-nav a.is-active,
.ecom-account-nav a:hover,
.ecom-account-nav a:focus {
    background: linear-gradient(135deg, var(--noor-gold-light) 0%, var(--noor-gold-bright) 42%, var(--noor-orange) 100%);
    color: var(--noor-bg);
}

.ecom-account-nav a.is-active i,
.ecom-account-nav a:hover i,
.ecom-account-nav a:focus i {
    color: var(--noor-bg);
}

.ecom-account-nav__logout {
    border-top: 1px solid rgba(255,207,51,.16);
    margin-top: 6px;
}

.ecom-account-summary-grid,
.ecom-account-card-grid {
    display: grid;
    gap: 16px;
}

.ecom-account-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ecom-account-summary,
.ecom-address-card,
.ecom-empty-state {
    background: linear-gradient(180deg, #fffaf0 0%, #fff4d8 100%);
    border: 1px solid rgba(160,64,0,.16);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(64,16,0,.08);
}

.ecom-account-summary {
    color: var(--noor-ink);
    display: block;
    padding: 20px;
    text-decoration: none;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.ecom-account-summary:hover,
.ecom-account-summary:focus {
    border-color: var(--noor-gold-bright);
    box-shadow: 0 16px 34px rgba(255,183,24,.2);
    color: var(--noor-ink);
    transform: translateY(-1px);
}

.ecom-account-summary span {
    align-items: center;
    background: var(--noor-menu);
    border-radius: 8px;
    color: var(--noor-gold-bright);
    display: inline-flex;
    height: 42px;
    justify-content: center;
    margin-bottom: 14px;
    width: 42px;
}

.ecom-account-summary strong,
.ecom-account-summary small {
    display: block;
}

.ecom-account-summary strong {
    font-size: 28px;
    line-height: 1;
}

.ecom-account-summary small {
    color: var(--noor-copper);
    font-weight: 800;
    margin-top: 7px;
}

.ecom-account-table {
    margin-bottom: 0;
}

.ecom-account-table th {
    color: var(--noor-bronze-deep);
    font-size: 13px;
    text-transform: uppercase;
}

.ecom-account-table td,
.ecom-account-table th {
    vertical-align: middle;
}

.ecom-status-pill {
    background: #fff0a9;
    border: 1px solid rgba(160,64,0,.16);
    border-radius: 999px;
    color: var(--noor-bronze-deep);
    display: inline-flex;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    padding: 7px 10px;
}

.ecom-empty-state {
    padding: 28px;
    text-align: center;
}

.ecom-empty-state i {
    color: var(--noor-copper);
    font-size: 34px;
    margin-bottom: 12px;
}

.ecom-empty-state p {
    color: #76501b;
    margin-bottom: 18px;
}

.ecom-address-card {
    padding: 18px;
}

.ecom-address-card p {
    color: #5b4017;
}

.ecom-address-card__actions {
    align-items: center;
    display: flex;
    gap: 7px;
}

.ecom-address-card__actions form {
    margin: 0;
}

.ecom-address-card__actions a,
.ecom-address-card__actions button {
    align-items: center;
    background: var(--noor-menu);
    border: 1px solid var(--noor-border);
    border-radius: 6px;
    color: var(--noor-gold-bright);
    display: inline-flex;
    height: 34px;
    justify-content: center;
    padding: 0;
    width: 34px;
}

.ecom-address-card__actions button {
    cursor: pointer;
}

.ecom-address-card__actions a:hover,
.ecom-address-card__actions button:hover {
    background: var(--noor-gold-bright);
    color: var(--noor-bg);
}

.ecom-checkbox-line {
    align-items: flex-start;
    display: flex !important;
    gap: 9px;
    line-height: 1.3;
}

.ecom-checkbox-line input[type="checkbox"] {
    accent-color: var(--noor-gold-bright);
    -webkit-appearance: checkbox;
    appearance: auto;
    display: inline-block !important;
    flex: 0 0 18px;
    height: 18px;
    margin: 2px 0 0;
    opacity: 1 !important;
    position: static !important;
    visibility: visible !important;
    width: 18px;
}

.ecom-checkbox-line span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.ecom-different-billing-line .ecom-checkbox-copy {
    display: block;
}

.ecom-different-billing-line .ecom-checkbox-copy strong,
.ecom-different-billing-line .ecom-checkbox-copy small {
    display: block;
}

.ecom-different-billing-line .ecom-checkbox-copy strong {
    color: var(--noor-ink);
    font-size: 16px;
    font-weight: 900;
}

.ecom-different-billing-line .ecom-checkbox-copy small {
    color: #76501b;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 6px;
}

@media (max-width: 991px) {
    .ecom-account-sidebar {
        position: static;
    }

    .ecom-account-summary-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .ecom-account-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .ecom-account-summary-grid {
        grid-template-columns: 1fr;
    }

    .ecom-account-table {
        min-width: 680px;
    }
}

@media (max-width: 767px) {
    .ecom-checkout-address-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .ecom-checkout-address-grid {
        grid-template-columns: 1fr;
    }

    .ecom-payment-card,
    .ecom-payment-result {
        padding: 20px;
    }

    .ecom-payment-result {
        align-items: flex-start;
        flex-direction: column;
    }

    .ecom-payment-result h1 {
        font-size: 24px;
    }

    .ecom-payment-amount {
        font-size: 32px;
    }

    .ecom-payment-actions .rbt-btn,
    .ecom-payment-next-actions .rbt-btn {
        width: 100%;
    }

    .ecom-payment-alert {
        align-items: flex-start;
        flex-direction: column;
    }
}
