:root {
    --primary: #7B1D2E;
    --primary-dark: #521320;
    --primary-light: #9D2540;
    --secondary: #1C3870;
    --accent: #C9981A;
    --accent-dark: #A07A0A;
    --accent-light: #E8C85A;
    --emerald: #155E3C;
    --amethyst: #5C2580;
    --lapis: #1C3870;
    --copper: #96461A;
    --bg-light: #F5EDD8;
    --bg-dark: #0D0B20;
    --text-dark: #2B1810;
    --text-muted: #6B4A38;
    --white: #FFFEF9;
    --border: #E4D5B8;
    --shadow: rgba(123, 29, 46, 0.14);
    --gold-gradient: linear-gradient(135deg, #C9981A 0%, #E8C85A 50%, #C9981A 100%);
    --burg-gradient: linear-gradient(135deg, #7B1D2E 0%, #9D2540 100%);
    --lapis-gradient: linear-gradient(135deg, #1C3870 0%, #2A52A8 100%);
    --mughal-gradient: linear-gradient(160deg, #0D0B20 0%, #1C3870 50%, #521320 100%)
}

*,
*::before,
*::after {
    box-sizing: border-box
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.7;
    margin: 0
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color .2s
}

a:hover {
    color: var(--accent)
}

img {
    max-width: 100%
}

.announcement-bar {
    background: var(--primary);
    color: var(--white);
    padding: 9px 0;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .3px
}

.announcement-bar i {
    margin-right: 6px;
    color: var(--accent)
}

.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 12px var(--shadow)
}

.logo-link {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px
}

.site-logo {
    height: 56px;
    width: auto;
    display: block
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -.3px
}

.logo-sub {
    font-size: 11px;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase
}

.search-form {
    width: 100%
}

.search-input {
    border: 2px solid var(--border);
    border-right: none;
    padding: 10px 16px;
    font-size: 14px;
    border-radius: 6px 0 0 6px
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: none;
    outline: none
}

.search-btn {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    border-radius: 0 6px 6px 0;
    padding: 10px 18px;
    font-size: 16px;
    transition: background .2s
}

.search-btn:hover {
    background: var(--primary-dark);
    color: var(--white)
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-dark);
    padding: 6px 10px;
    position: relative;
    transition: color .2s;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px
}

.icon-btn i {
    font-size: 20px
}

.icon-btn:hover {
    color: var(--primary)
}

.icon-btn .dropdown-toggle::after {
    display: none
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px
}

.mobile-search {
    padding: 10px 0;
    border-top: 1px solid var(--border)
}

.site-nav {
    background: var(--primary);
    position: relative;
    z-index: 999
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0
}

.nav-item {
    position: relative
}

.nav-link-item {
    display: block;
    color: var(--white);
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: .2px;
    transition: background .2s, color .2s;
    white-space: nowrap
}

.nav-link-item:hover,
.nav-item.active .nav-link-item {
    color: var(--accent);
    background: rgba(0, 0, 0, .15)
}

.has-dropdown:hover .dropdown-nav {
    display: block
}

.dropdown-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--accent);
    min-width: 200px;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    border-radius: 0 0 6px 6px;
    z-index: 100
}

.dropdown-nav li a {
    display: block;
    padding: 9px 20px;
    font-size: 13.5px;
    color: var(--text-dark);
    transition: background .15s, color .15s
}

.dropdown-nav li a:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 26px
}

.mobile-nav {
    display: none;
    background: var(--primary-dark);
    padding: 10px 0
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0 15px
}

.mobile-nav-list li a {
    display: block;
    color: var(--white);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    font-size: 14px
}

.mobile-nav-list li a:hover {
    color: var(--accent)
}

.mobile-nav-list ul {
    list-style: none;
    padding-left: 15px;
    margin: 0
}

.mobile-nav-list ul a {
    font-size: 13px;
    opacity: .85
}

.mobile-nav.open {
    display: block
}

.hero-section {
    background: var(--mughal-gradient);
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23C9981A' stroke-width='0.7' opacity='0.13'%3E%3Crect x='25' y='25' width='70' height='70'/%3E%3Crect x='25' y='25' width='70' height='70' transform='rotate(45 60 60)'/%3E%3Ccircle cx='60' cy='60' r='25'/%3E%3Ccircle cx='60' cy='60' r='8'/%3E%3Cline x1='60' y1='0' x2='60' y2='120'/%3E%3Cline x1='0' y1='60' x2='120' y2='60'/%3E%3C/g%3E%3C/svg%3E");
    opacity: .55
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent-light) 50%, var(--accent) 70%, transparent);
}

/* ============================================================
   ORDER TRACKING
   ============================================================ */
.tracking-lookup-card {
    border: 1px solid var(--border);
}

.tracking-meta-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600;
}

.order-timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.timeline-step {
    position: relative;
    padding: 14px 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: #fff;
    text-align: center;
}

.timeline-dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    margin: 0 auto 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    border: 2px solid #d7cbba;
    color: #7d6e5b;
    background: #fff;
}

.timeline-name {
    font-size: 13px;
    font-weight: 600;
    color: #594838;
}

.timeline-step.done {
    background: #f1fbf4;
    border-color: #b6dfc1;
}

.timeline-step.done .timeline-dot {
    background: #1f9c43;
    color: #fff;
    border-color: #1f9c43;
}

.timeline-step.active {
    background: #fef7e6;
    border-color: #efd38c;
}

.timeline-step.active .timeline-dot {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.tracking-info-box {
    height: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    padding: 14px 16px;
}

.tracking-info-title {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.tracking-info-value {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.tracking-history {
    border-top: 1px solid var(--border);
    padding-top: 18px;
}

.history-item {
    border-left: 3px solid var(--accent);
    padding: 0 0 14px 14px;
    margin-bottom: 14px;
}

.history-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
}

.history-status {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
}

.history-time {
    font-size: 12px;
    margin-bottom: 5px;
}

.history-detail {
    font-size: 13px;
}

@media (max-width: 767.98px) {
    .order-timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.hero-content {
    position: relative;
    z-index: 1
}

.hero-badge {
    display: inline-block;
    background: rgba(201, 168, 76, .2);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px
}

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2
}

.hero-title span {
    color: var(--accent)
}

.hero-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, .85);
    max-width: 480px;
    margin-bottom: 28px
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.hero-stat {
    text-align: center
}

.hero-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--accent);
    font-weight: 700
}

.hero-stat span {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    text-transform: uppercase;
    letter-spacing: .5px
}

.btn-primary-taj {
    background: var(--accent);
    color: var(--primary-dark);
    border: 2px solid var(--accent);
    padding: 12px 28px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    letter-spacing: .3px;
    transition: all .25s;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase
}

.btn-primary-taj:hover {
    background: var(--accent-dark);
    border-color: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(201, 168, 76, .4)
}

.btn-outline-taj {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, .6);
    padding: 12px 28px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: all .25s;
    display: inline-block;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: .3px
}

.btn-outline-taj:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--white);
    color: var(--white)
}

.btn-burgundy {
    background: var(--primary);
    color: var(--white);
    border: 2px solid var(--primary);
    padding: 10px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: all .25s;
    display: inline-block;
    cursor: pointer
}

.btn-burgundy:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-1px)
}

.btn-gold {
    background: var(--accent);
    color: var(--primary-dark);
    border: 2px solid var(--accent);
    padding: 10px 24px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    transition: all .25s;
    display: inline-block;
    cursor: pointer
}

.btn-gold:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-1px)
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0
}

.section-divider {
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin: 12px 0 30px;
    border-radius: 2px
}

.section-divider.center {
    margin: 12px auto 30px
}

.feature-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px 20px;
    text-align: center;
    transition: box-shadow .25s, transform .25s
}

.feature-box:hover {
    box-shadow: 0 8px 24px var(--shadow);
    transform: translateY(-2px)
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 24px;
    color: var(--primary-dark);
    box-shadow: 0 4px 14px rgba(212,168,83,0.35)
}

.feature-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-dark)
}

.feature-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0
}

.category-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    display: block
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px var(--shadow)
}

.category-card-bg {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.category-card-bg.cat-1 {
    background: linear-gradient(135deg, #7B1D2E, #A02540)
}

.category-card-bg.cat-2 {
    background: linear-gradient(135deg, #1C3870, #2A52A8)
}

.category-card-bg.cat-3 {
    background: linear-gradient(135deg, #155E3C, #1E8854)
}

.category-card-bg.cat-4 {
    background: linear-gradient(135deg, #7A4800, #B86E00)
}

.category-card-bg.cat-5 {
    background: linear-gradient(135deg, #5C2580, #8035B8)
}

.category-card-bg.cat-6 {
    background: linear-gradient(135deg, #0A4A6A, #106898)
}

.cat-icon {
    font-size: 40px;
    color: rgba(255, 255, 255, .9)
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .7) 0%, transparent 100%);
    padding: 20px 14px 14px;
    text-align: center
}

.category-card-name {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    display: block
}

.category-card-count {
    font-size: 12px;
    color: var(--accent);
    font-weight: 500
}

/* -- Category Scroll Row -- */
.cat-scroll-wrap {
    position: relative;
}
.cat-scroll-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 4px 16px;
    scrollbar-width: none;
}
.cat-scroll-track::-webkit-scrollbar { display: none; }
.cat-scroll-card {
    flex: 0 0 140px;
    text-decoration: none;
    display: block;
    border-radius: 12px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.cat-scroll-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(44,24,16,0.15);
}
.cat-scroll-bg {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cat-scroll-bg.cat-1 { background: linear-gradient(135deg,#7B1D2E,#A02540); }
.cat-scroll-bg.cat-2 { background: linear-gradient(135deg,#1C3870,#2A52A8); }
.cat-scroll-bg.cat-3 { background: linear-gradient(135deg,#155E3C,#1E8854); }
.cat-scroll-bg.cat-4 { background: linear-gradient(135deg,#7A4800,#B86E00); }
.cat-scroll-bg.cat-5 { background: linear-gradient(135deg,#5C2580,#8035B8); }
.cat-scroll-bg.cat-6 { background: linear-gradient(135deg,#0A4A6A,#106898); }
.cat-scroll-name {
    background: #FFFEF9;
    border: 1px solid #E4D5B8;
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 8px 6px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #2B1810;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}
.cat-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #FFFEF9;
    border: 1px solid #E4D5B8;
    box-shadow: 0 2px 8px rgba(28,56,112,0.12);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1C3870;
    font-size: 14px;
    transition: background .18s, color .18s;
    z-index: 2;
}
.cat-scroll-btn:hover { background: #1C3870; color: #FFFEF9; }
.cat-scroll-prev { left: -18px; }
.cat-scroll-next { right: -18px; }

.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
    height: 100%;
    display: flex;
    flex-direction: column
}

.product-card:hover {
    box-shadow: 0 10px 28px var(--shadow);
    transform: translateY(-3px)
}

.product-card-img {
    position: relative;
    background: #faf6f0;
    aspect-ratio: 1;
    overflow: hidden
}

.product-card-img > a {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

.product-card-img img {
    max-width: calc(100% - 12px);
    max-height: calc(100% - 12px);
    width: auto;
    height: auto;
    display: block;
    transition: transform .35s
}

.product-card:hover .product-card-img img {
    transform: scale(1.05)
}

.badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.badge-featured {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 4px;
    text-transform: uppercase
}

.product-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1
}

.product-category {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px
}

.product-name {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    flex: 1
}

.product-name a {
    color: inherit
}

.product-name a:hover {
    color: var(--primary)
}

.product-cert-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px
}

.product-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-radius: 999px;
    font-weight: 600;
    line-height: 1
}

.product-cert-badge.small {
    font-size: 10px;
    padding: 5px 8px
}

.product-cert-badge.large {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 10px;
    border: 1px solid;
    padding: 10px 12px;
    width: 100%
}

.product-cert-badge .badge-head {
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.product-cert-badge .badge-desc {
    margin-top: 6px;
    font-size: 12px;
    line-height: 1.5
}

.product-cert-badge.halal {
    background: #eaf8ef;
    color: #1f6d3d;
    border-color: #b8e0c6
}

.product-cert-badge.authentic {
    background: #fff6ea;
    color: #8a531b;
    border-color: #f2d9b8
}

.product-cert-badge.hajj {
    background: #e8f4ff;
    color: #1f4f80;
    border-color: #c5ddf5
}

.product-detail-certifications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px
}

.price-current {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary)
}

.price-original {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through
}

.price-save {
    font-size: 11px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 2px 7px;
    border-radius: 3px;
    font-weight: 600
}

.btn-add-cart {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    transition: background .2s, transform .15s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px
}

.btn-add-cart:hover {
    background: var(--primary-dark);
    transform: translateY(-1px)
}

.btn-add-cart.added {
    background: var(--accent);
    color: var(--primary-dark)
}

.out-of-stock-btn {
    background: #e0e0e0;
    color: #9e9e9e;
    border: none;
    border-radius: 6px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    width: 100%;
    cursor: not-allowed
}

.btn-quick-view {
    width: 100%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-dark);
    border-radius: 6px;
    padding: 9px 16px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    transition: border-color .2s, color .2s, background .2s
}

.btn-quick-view:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: #fff8f9
}

.quick-view-modal-content {
    border: 1px solid var(--border);
    border-radius: 12px
}

.quick-view-image {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    aspect-ratio: 1;
    background: var(--bg-light)
}

.quick-view-category {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-muted);
    margin-bottom: 6px
}

.quick-view-name {
    font-size: 24px;
    margin-bottom: 8px
}

.quick-view-price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px
}

.quick-view-price {
    font-size: 22px;
    color: var(--primary);
    font-weight: 700
}

.quick-view-original {
    text-decoration: line-through;
    color: var(--text-muted);
    font-size: 16px
}

.quick-view-original:empty {
    display: none
}

.quick-view-desc {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px
}

.quick-view-add-btn {
    width: auto;
    min-width: 150px
}

.shop-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 20px;
    position: sticky;
    top: 120px
}

.sidebar-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent);
    font-family: 'Playfair Display', serif
}

.filter-link {
    display: block;
    padding: 7px 0;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    transition: color .15s, padding-left .15s
}

.filter-link:hover,
.filter-link.active {
    color: var(--primary);
    padding-left: 6px
}

.filter-link.active {
    font-weight: 600
}

.shop-toolbar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px
}

.result-count {
    font-size: 14px;
    color: var(--text-muted)
}

.sort-select {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 7px 12px;
    font-size: 13px;
    color: var(--text-dark);
    cursor: pointer
}

.sort-select:focus {
    outline: none;
    border-color: var(--primary)
}

.product-detail-img {
    border-radius: 12px;
    overflow: hidden;
    background: #faf6f0;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative
}

.product-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    will-change: transform
}

.product-gallery-wrap:hover img,
.product-gallery-wrap:focus img {
    transform: scale(1.12)
}

.product-detail-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    margin-bottom: 10px
}

.product-sku {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px
}

.product-detail-price {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px
}

.product-detail-original {
    font-size: 18px;
    color: var(--text-muted);
    text-decoration: line-through
}

.product-detail-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 16px 0
}

.qty-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--border);
    border-radius: 6px;
    overflow: hidden;
    width: fit-content
}

.qty-btn {
    background: var(--bg-light);
    border: none;
    width: 38px;
    height: 42px;
    font-size: 18px;
    cursor: pointer;
    transition: background .15s
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--white)
}

.qty-input {
    width: 54px;
    height: 42px;
    border: none;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    background: var(--white)
}

.qty-input:focus {
    outline: none
}

.stock-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    font-weight: 600
}

.stock-badge.in {
    color: #2e7d32
}

.stock-badge.out {
    color: #c62828
}

.cart-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden
}

.cart-table th {
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .5px
}

.cart-item-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px
}

.cart-item-name {
    font-weight: 600;
    font-size: 14px
}

.cart-qty {
    width: 64px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 4px 8px;
    font-size: 14px
}

.order-summary-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 24px
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px
}

.summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: none;
    padding-top: 12px
}

.free-shipping-bar {
    background: var(--bg-light);
    border-radius: 6px;
    padding: 10px 14px;
    margin-bottom: 14px;
    font-size: 13px
}

.checkout-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 28px
}

.checkout-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--accent);
    font-family: 'Playfair Display', serif
}

.payment-option {
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 16px;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    margin-bottom: 10px
}

.payment-option:has(input:checked) {
    border-color: var(--primary);
    background: #F5EBD0
}

.payment-option label {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0
}

.payment-logo {
    font-size: 22px
}

.form-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px;
    box-shadow: 0 4px 20px var(--shadow);
    max-width: 500px;
    margin: 0 auto
}

.form-label {
    font-weight: 600;
    font-size: 13.5px;
    color: var(--text-dark);
    margin-bottom: 5px
}

.form-control,
.form-select {
    border: 2px solid var(--border);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    transition: border-color .2s;
    color: var(--text-dark)
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: none;
    outline: none
}

.review-rating-picker {
    display: inline-flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 6px;
    position: relative;
}

.review-rating-picker input {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
}

.review-rating-star {
    color: #d7d1c5;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: color .15s ease, transform .15s ease;
}

.review-rating-star:hover,
.review-rating-star:hover ~ .review-rating-star,
.review-rating-picker input:checked + .review-rating-star,
.review-rating-picker input:checked + .review-rating-star ~ .review-rating-star {
    color: #ffb400;
}

.review-rating-star:hover {
    transform: translateY(-1px);
}

.review-rating-help {
    font-size: 12px;
    margin-top: 8px;
}

.form-divider {
    text-align: center;
    position: relative;
    margin: 18px 0;
    color: var(--text-muted);
    font-size: 13px
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 42%;
    height: 1px;
    background: var(--border)
}

.form-divider::before {
    left: 0
}

.form-divider::after {
    right: 0
}

.breadcrumb-section {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0
}

.breadcrumb {
    margin: 0;
    font-size: 13px
}

.breadcrumb-item a {
    color: var(--primary)
}

.breadcrumb-item.active {
    color: var(--text-muted)
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--text-muted)
}

.page-banner {
    background: var(--mughal-gradient);
    padding: 40px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cg fill='none' stroke='%23C9981A' stroke-width='0.6' opacity='0.1'%3E%3Crect x='15' y='15' width='50' height='50'/%3E%3Crect x='15' y='15' width='50' height='50' transform='rotate(45 40 40)'/%3E%3Ccircle cx='40' cy='40' r='18'/%3E%3C/g%3E%3C/svg%3E")
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent) 30%, var(--accent-light) 50%, var(--accent) 70%, transparent);
}

.page-banner-title {
    font-size: 30px;
    color: var(--white);
    margin: 0;
    position: relative
}

.page-banner-sub {
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    margin-top: 4px;
    position: relative
}

.account-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden
}

.account-nav-item {
    display: flex;
    padding: 13px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border);
    transition: background .15s, color .15s, padding-left .15s;
    align-items: center;
    gap: 10px
}

.account-nav-item:hover,
.account-nav-item.active {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 26px
}

.account-nav-item.active {
    font-weight: 700;
    border-left: 3px solid var(--primary)
}

.toast-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999
}

.toast-msg {
    background: var(--primary);
    color: var(--white);
    padding: 14px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .2);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn .3s ease;
    min-width: 260px
}

@keyframes slideIn {
    from {
        transform: translateX(110%);
        opacity: 0
    }

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

.toast-msg.success {
    background: #1b5e20
}

.toast-msg.error {
    background: #b71c1c
}

.site-footer {
    background: #0D0B20;
    color: #ccc;
    margin-top: 60px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cg fill='none' stroke='%23C9981A' stroke-width='0.5' opacity='0.06'%3E%3Crect x='15' y='15' width='70' height='70'/%3E%3Crect x='15' y='15' width='70' height='70' transform='rotate(45 50 50)'/%3E%3Ccircle cx='50' cy='50' r='25'/%3E%3C/g%3E%3C/svg%3E");
    border-top: 3px solid rgba(201,152,26,0.25);
}

.footer-top {
    padding: 50px 0 30px
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px
}

.footer-tagline {
    color: var(--accent);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 14px
}

.footer-desc {
    font-size: 13.5px;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 16px
}

.footer-social {
    display: flex;
    gap: 10px
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    font-size: 15px;
    transition: background .2s, color .2s
}

.footer-social a:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary)
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif
}

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

.footer-links li {
    margin-bottom: 8px
}

.footer-links a {
    font-size: 13.5px;
    color: #aaa;
    transition: color .15s, padding-left .15s
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 4px
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13.5px;
    color: #aaa
}

.footer-contact i {
    color: var(--accent);
    font-size: 15px;
    margin-top: 2px;
    flex-shrink: 0
}

.footer-contact a {
    color: #aaa;
    transition: color .15s
}

.footer-contact a:hover {
    color: var(--accent)
}

.footer-payments {
    font-size: 12px;
    color: #888
}

.footer-payments i {
    color: var(--accent);
    margin-right: 3px
}

.footer-newsletter {
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 10px;
    background: rgba(255, 255, 255, .03);
}

.footer-newsletter-title {
    font-size: 13px;
    color: #fff;
    margin: 0 0 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.footer-newsletter-text {
    font-size: 12.5px;
    color: #bbb;
}

.footer-newsletter-form .form-control {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.footer-newsletter-form .form-control::placeholder {
    color: #c7c7c7;
}

.footer-newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    border-color: var(--accent);
    box-shadow: none;
}

.footer-newsletter-form .btn {
    font-weight: 600;
}

.footer-bottom {
    background: rgba(0, 0, 0, .3);
    padding: 16px 0;
    font-size: 12.5px;
    color: #777;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.pagination .page-link {
    color: var(--primary);
    border-color: var(--border);
    padding: 8px 14px;
    font-size: 14px
}

.pagination .page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white)
}

.pagination .page-link:hover {
    background: var(--bg-light);
    color: var(--primary)
}

.section-pad {
    padding: 56px 0
}

.section-pad-sm {
    padding: 36px 0
}

.bg-light-cream {
    background: var(--bg-light)
}

.text-primary-taj {
    color: var(--primary) !important
}

.text-accent {
    color: var(--accent) !important
}

.border-accent {
    border-color: var(--accent) !important
}

.divider {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 24px 0
}

.badge {
    font-size: 11px;
    font-weight: 600;
    padding: 4px 9px
}

@media (max-width:991.98px) {
    .site-nav .nav-list {
        display: none
    }

    .hero-section {
        min-height: 380px;
        text-align: center;
        padding: 40px 0
    }

    .hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto
    }

    .hero-buttons {
        justify-content: center
    }

    .hero-stat {
        margin-top: 16px
    }

    .shop-sidebar {
        position: static;
        margin-bottom: 16px
    }
}

@media (max-width:767.98px) {
    .form-box {
        padding: 24px 20px
    }

    .checkout-box {
        padding: 20px
    }

    .section-pad {
        padding: 36px 0
    }

    .section-pad-sm {
        padding: 24px 0
    }

    .logo-main {
        font-size: 18px
    }

    /* Hero */
    .hero-section {
        min-height: auto;
        padding: 32px 0
    }

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

    .hero-buttons .btn-primary-taj,
    .hero-buttons .btn-outline-taj {
        width: 100%;
        max-width: 280px;
        text-align: center
    }

    .hero-stat strong {
        font-size: 22px
    }

    /* Page banner */
    .page-banner {
        padding: 24px 0
    }

    .page-banner-title {
        font-size: 22px
    }

    /* Product detail */
    .product-detail-price {
        font-size: 24px
    }

    /* Cart */
    .cart-item-img {
        width: 52px;
        height: 52px
    }

    .cart-item-name {
        font-size: 13px
    }

    /* Order summary */
    .order-summary-box {
        padding: 16px
    }

    /* Remove sticky on mobile so summary appears naturally below checkout form */
    .order-summary-box[style*="sticky"] {
        position: static !important;
        top: auto !important
    }

    /* Account sidebar — horizontal scrollable tabs */
    .account-sidebar {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
        border-radius: 8px
    }

    .account-nav-item {
        border-bottom: none;
        border-right: 1px solid var(--border);
        padding: 10px 14px;
        flex-shrink: 0;
        font-size: 13px
    }

    .account-nav-item:hover,
    .account-nav-item.active {
        padding-left: 14px
    }

    .account-nav-item.active {
        border-left: none;
        border-bottom: 3px solid var(--primary)
    }

    /* Shop toolbar */
    .shop-toolbar {
        flex-direction: column;
        align-items: flex-start
    }

    .sort-select {
        width: 100%
    }

    /* Toast — full width on mobile */
    .toast-container {
        bottom: 12px;
        right: 12px;
        left: 12px
    }

    .toast-msg {
        min-width: unset;
        width: 100%
    }

    /* Footer */
    .site-footer {
        margin-top: 40px
    }

    .footer-top {
        padding: 32px 0 16px
    }

    /* Pagination */
    .pagination .page-link {
        padding: 6px 10px;
        font-size: 13px
    }
}

@media (max-width:480px) {
    /* Already has chatWindow width */

    /* Hero stats */
    .hero-stat strong {
        font-size: 20px
    }

    /* Page banner */
    .page-banner-title {
        font-size: 18px
    }

    /* Feature boxes */
    .feature-box {
        padding: 16px 14px
    }

    /* Chat widget */
    #chatWidget {
        bottom: 16px;
        right: 16px
    }

    #chatBubble {
        width: 50px;
        height: 50px;
        font-size: 20px
    }
}

/* ============================================================
   AI LIVE CHAT WIDGET
   ============================================================ */
#chatWidget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px
}

#chatBubble {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--burg-gradient);
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(123, 30, 46, .45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, box-shadow .2s;
    position: relative
}

#chatBubble:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 28px rgba(123, 30, 46, .55)
}

#chatBubble::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px solid var(--accent);
    opacity: .5
}

#chatWindow {
    width: 340px;
    max-height: 480px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .18);
    display: none;
    flex-direction: column;
    overflow: hidden
}

#chatWindow.open {
    display: flex
}

#chatHeader {
    background: var(--burg-gradient);
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px
}

.chat-avatar {
    width: 36px;
    height: 36px;
    background: rgba(201, 168, 76, .25);
    border: 1px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent);
    flex-shrink: 0
}

.chat-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Playfair Display', serif
}

.chat-subtitle {
    font-size: 11px;
    color: rgba(255, 255, 255, .7)
}

#chatClose {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    cursor: pointer;
    padding: 4px;
    line-height: 1;
    transition: color .15s
}

#chatClose:hover {
    color: var(--white)
}

#chatMessages {
    flex: 1;
    overflow-y: auto;
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg-light);
    scroll-behavior: smooth
}

#chatMessages::-webkit-scrollbar {
    width: 4px
}

#chatMessages::-webkit-scrollbar-track {
    background: transparent
}

#chatMessages::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 2px
}

.chat-msg {
    display: flex;
    align-items: flex-end;
    gap: 8px
}

.chat-msg.bot {
    justify-content: flex-start
}

.chat-msg.user {
    justify-content: flex-end
}

.chat-bubble {
    max-width: 82%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 13.5px;
    line-height: 1.55;
    word-break: break-word
}

.chat-msg.bot .chat-bubble {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,.06)
}

.chat-msg.user .chat-bubble {
    background: var(--primary);
    color: var(--white);
    border-bottom-right-radius: 4px
}

.chat-msg.typing .chat-bubble {
    background: var(--white);
    border: 1px solid var(--border)
}

.chat-typing-dots {
    display: flex;
    gap: 4px;
    align-items: center;
    height: 18px
}

.chat-typing-dots span {
    width: 7px;
    height: 7px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: chatDot 1.2s infinite ease-in-out
}

.chat-typing-dots span:nth-child(2) {
    animation-delay: .2s
}

.chat-typing-dots span:nth-child(3) {
    animation-delay: .4s
}

@keyframes chatDot {
    0%, 80%, 100% { transform: scale(.7); opacity: .5 }
    40% { transform: scale(1); opacity: 1 }
}

#chatInputArea {
    padding: 10px 12px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 8px;
    align-items: center;
    background: var(--white);
    flex-shrink: 0
}

#chatInput {
    flex: 1;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 8px 14px;
    font-size: 13px;
    outline: none;
    transition: border-color .2s;
    font-family: 'Inter', sans-serif;
    background: var(--bg-light)
}

#chatInput:focus {
    border-color: var(--primary)
}

#chatSend {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: var(--white);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, transform .15s;
    flex-shrink: 0
}

#chatSend:hover {
    background: var(--primary-dark);
    transform: scale(1.08)
}

#chatSend:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none
}

@media (max-width: 480px) {
    #chatWindow {
        width: calc(100vw - 32px);
        max-height: 420px
    }
}


/* ============================================================
   FILTER SIDEBAR — Price Slider, Checkboxes, Active Tags
   ============================================================ */

.sidebar-filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sidebar-filter-header .sidebar-title {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.filter-section {
    border-bottom: 1px solid var(--border);
    padding-bottom: 14px;
    margin-bottom: 14px;
}

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

.filter-section-title {
    width: 100%;
    background: none;
    border: none;
    padding: 0 0 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    text-align: left;
    letter-spacing: .3px;
}

.filter-section-title:focus {
    outline: none;
}

.filter-section-title .toggle-icon {
    font-size: 12px;
    transition: transform .2s;
    color: var(--text-muted);
}

.filter-section-title.collapsed .toggle-icon {
    transform: rotate(-180deg);
}

/* Price Slider */
.price-slider-wrap {
    position: relative;
    height: 36px;
    margin: 10px 0 8px;
}

.price-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    transform: translateY(-50%);
}

.price-track-fill {
    position: absolute;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
}

.range-input {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background: none;
    -webkit-appearance: none;
    appearance: none;
    pointer-events: none;
    outline: none;
}

.range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    box-shadow: 0 1px 4px rgba(139,26,46,.25);
    cursor: pointer;
    pointer-events: all;
    transition: transform .15s, box-shadow .15s;
}

.range-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 2px 8px rgba(139,26,46,.35);
}

.range-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--primary);
    cursor: pointer;
    pointer-events: all;
}

.price-labels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    margin-top: 4px;
}

.price-label-box {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 4px 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 56px;
    text-align: center;
}

.price-label-sep {
    color: var(--text-muted);
    font-size: 12px;
}

/* Filter Checkboxes */
.filter-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    cursor: pointer;
    font-size: 13.5px;
    color: var(--text-dark);
    border-bottom: 1px solid transparent;
    transition: color .15s;
    user-select: none;
}

.filter-check-item:hover {
    color: var(--primary);
}

.filter-check-item input[type="checkbox"] {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid var(--border);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    transition: border-color .15s, background .15s;
}

.filter-check-item input[type="checkbox"]:checked {
    background: var(--primary);
    border-color: var(--primary);
}

.filter-check-item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 5px;
    height: 9px;
    border: 2px solid #fff;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.filter-check-label {
    flex: 1;
    line-height: 1.3;
}

/* Active Filters Bar */
.active-filters-bar {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
    margin-bottom: 14px;
}

.active-filters-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .4px;
    white-space: nowrap;
}

.active-filter-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--white);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    padding: 3px 10px 3px 10px;
    white-space: nowrap;
}

.filter-tag-remove {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: var(--primary);
    font-size: 13px;
    line-height: 1;
    display: flex;
    align-items: center;
    margin-left: 2px;
}

.filter-tag-remove:hover {
    color: #c0392b;
}

/* Clear All Button */
.btn-clear-filters {
    background: none;
    border: 1px solid var(--border);
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: color .15s, border-color .15s;
}

.btn-clear-filters:hover {
    color: var(--primary);
    border-color: var(--primary);
}

/* Product Grid Loading Overlay */
.product-grid-wrap {
    position: relative;
}

.grid-loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(250,248,245,.75);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.grid-spinner {
    width: 38px;
    height: 38px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

/* Mobile Filter Toggle */
.btn-mobile-filter-toggle {
    display: none;
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 8px;
}

@media (max-width: 991.98px) {
    .btn-mobile-filter-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .shop-sidebar.mobile-hidden {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .active-filters-bar {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-clear-filters.ms-auto {
        margin-left: 0 !important;
    }
}

/* ============================================================
   MOBILE UX FIXES — TOUCH TARGETS, LAYOUT, CART CARDS
   ============================================================ */

/* 1. Icon buttons — 44 px touch target on tablet/mobile */
@media (max-width: 991.98px) {
    .icon-btn {
        min-height: 44px;
        min-width: 44px;
        padding: 10px 8px;
        justify-content: center;
    }
}

/* 2. Mobile nav list items — 44 px touch target (global, no breakpoint needed) */
.mobile-nav-list > li > a,
.mobile-cat-toggle {
    min-height: 44px;
}

.mobile-nav-list ul > li > a {
    min-height: 44px;
    display: flex;
    align-items: center;
}

/* 3. Header icon bar — prevent overflow at 400 px and below */
@media (max-width: 400px) {
    .site-header .col-6:last-of-type .d-flex {
        gap: 2px !important;
    }

    .icon-btn {
        padding: 8px 4px;
        min-width: 36px;
    }
}

/* 4. Button & form touch targets across all mobile sizes */
@media (max-width: 767.98px) {
    /* Primary action buttons */
    .btn-add-cart,
    .btn-quick-view,
    .out-of-stock-btn {
        min-height: 44px;
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .btn-primary-taj,
    .btn-outline-taj,
    .btn-burgundy {
        min-height: 44px;
    }

    /* Cart remove button */
    .btn-remove-cart {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    /* Qty stepper */
    .qty-btn {
        width: 44px;
        height: 44px;
    }

    .qty-input {
        height: 44px;
    }

    /* Cart inline qty input */
    .cart-qty {
        min-height: 44px;
        width: 72px;
    }

    /* Form controls */
    .form-control,
    .form-select {
        min-height: 44px;
    }

    /* Product detail — let qty + add-to-cart fill width comfortably */
    .qty-wrapper {
        flex: 0 0 auto;
    }
}

/* 5. Cart table → stacked card layout on small phones (< 576 px) */
@media (max-width: 575.98px) {
    /* Remove table overflow clip so cards show properly */
    .cart-table,
    .cart-table.table-responsive {
        overflow: visible !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .cart-table table,
    .cart-table tbody {
        display: block;
        width: 100%;
    }

    /* Hide the header row */
    .cart-table thead {
        display: none;
    }

    /* Each row becomes a card on a 4-column grid:
       cols 1-3 = product / price / qty / total
       col  4   = delete button (spans both rows)          */
    .cart-table tbody tr {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 44px;
        grid-template-rows: auto auto;
        row-gap: 10px;
        column-gap: 6px;
        align-items: center;
        background: var(--white);
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 14px;
        margin-bottom: 10px;
    }

    /* Product cell — spans cols 1-3, row 1 */
    .cart-table tbody tr td:nth-child(1) {
        grid-column: 1 / span 3;
        grid-row: 1;
        padding: 0 0 10px;
        border-bottom: 1px solid var(--border);
    }

    /* Delete button — col 4, spans both rows */
    .cart-table tbody tr td:nth-child(5) {
        grid-column: 4;
        grid-row: 1 / span 2;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Price — col 1, row 2 */
    .cart-table tbody tr td:nth-child(2) {
        grid-column: 1;
        grid-row: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        font-size: 13px;
        gap: 3px;
    }

    .cart-table tbody tr td:nth-child(2)::before {
        content: 'Price';
        font-size: 10px;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: .05em;
    }

    /* Qty — col 2, row 2 */
    .cart-table tbody tr td:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        font-size: 13px;
        gap: 3px;
    }

    .cart-table tbody tr td:nth-child(3)::before {
        content: 'Qty';
        font-size: 10px;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: .05em;
    }

    /* Total — col 3, row 2 */
    .cart-table tbody tr td:nth-child(4) {
        grid-column: 3;
        grid-row: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        font-size: 13px;
        gap: 3px;
    }

    .cart-table tbody tr td:nth-child(4)::before {
        content: 'Total';
        font-size: 10px;
        font-weight: 700;
        color: var(--text-muted);
        text-transform: uppercase;
        letter-spacing: .05em;
    }

    /* Cart item image — slightly smaller on tiny screens */
    .cart-item-img {
        width: 48px;
        height: 48px;
    }
}

/* 6. Checkout coupon row — wrap buttons below input on small screens */
@media (max-width: 480px) {
    div:has(> #couponCode) {
        flex-wrap: wrap !important;
    }

    #couponCode {
        flex: 1 1 100%;
        width: 100%;
    }

    #applyCouponBtn,
    #removeCouponBtn {
        flex: 1;
    }
}

/* 7. Product cards — tighter on very small screens (≤ 360 px) */
@media (max-width: 360px) {
    .product-card-body {
        padding: 8px 10px 10px;
    }

    .product-name a {
        font-size: 12px;
    }

    .price-current {
        font-size: 13px;
    }

    /* Announcement bar — allow wrapping so text doesn't overflow */
    .announcement-bar .container {
        flex-wrap: wrap;
        gap: 4px;
    }
}

/* -- Search Autocomplete Dropdown -- */
.search-ac-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 0; right: 0;
    background: #FFFEF9;
    border: 1px solid #E4D5B8;
    border-top: 2px solid #1C3870;
    border-radius: 10px;
    box-shadow: 0 8px 32px rgba(28,56,112,0.14);
    z-index: 9999;
    overflow: hidden;
    max-height: 420px;
    overflow-y: auto;
}
.search-ac-section {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6B4A38;
    padding: 10px 16px 4px;
    background: #F5EDD8;
    border-bottom: 1px solid #E4D5B8;
}
.search-ac-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    text-decoration: none;
    color: #2B1810;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    transition: background 0.15s;
    border-bottom: 1px solid #F5EDD8;
}
.search-ac-item:hover,
.search-ac-item.active {
    background: #EDE0B4;
    color: #1C3870;
}
.search-ac-img {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 5px;
    border: 1px solid #E4D5B8;
    flex-shrink: 0;
    background: #F5EDD8;
}
.search-ac-cat-icon {
    font-size: 16px;
    color: #1C3870;
    width: 38px;
    text-align: center;
    flex-shrink: 0;
}
.search-ac-name {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.search-ac-price {
    font-weight: 600;
    color: #7B1D2E;
    font-size: 12px;
    flex-shrink: 0;
}
.search-ac-arrow {
    font-size: 11px;
    color: #C9981A;
    flex-shrink: 0;
}
.search-ac-viewall {
    display: block;
    padding: 10px 16px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #1C3870;
    text-decoration: none;
    background: #F5EDD8;
    border-top: 1px solid #E4D5B8;
    transition: background 0.15s;
}
.search-ac-viewall:hover { background: #EDE0B4; }

/* Disable hover-zoom on touch devices — tap opens lightbox directly */
@media (hover: none) {
    .product-gallery-wrap:hover img,
    .product-gallery-wrap:focus img {
        transform: none
    }
}


/* ============================================================
   HERO STAT ICONS
   ============================================================ */
.hero-stat-icon {
    width: 42px;
    height: 42px;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 18px;
    color: var(--accent)
}

/* ============================================================
   PRODUCT TABS
   ============================================================ */
.products-tabs-nav {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    border-bottom: 2px solid var(--border);
    margin-bottom: 28px
}
.prod-tab-btn {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 11px 22px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: color .2s, border-color .2s;
    margin-bottom: -2px;
    text-transform: uppercase;
    letter-spacing: .05em;
    display: flex;
    align-items: center;
    gap: 6px
}
.prod-tab-btn:hover { color: var(--primary) }
.prod-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--accent)
}
.prod-tab-btn i { font-size: 14px }
.prod-tab-pane { display: none }
.prod-tab-pane.active { display: block }
@media (max-width: 575.98px) {
    .prod-tab-btn { padding: 9px 12px; font-size: 11px }
}

/* ============================================================
   HERITAGE SECTION
   ============================================================ */
.heritage-section { background: #fff }
.heritage-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px
}
.heritage-body {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px
}
.heritage-points {
    list-style: none;
    padding: 0;
    margin: 0 0 24px
}
.heritage-points li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 10px
}
.heritage-points li i {
    color: var(--accent);
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0
}
.heritage-stat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 28px
}
.heritage-stat-box {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 18px 14px;
    text-align: center
}
.heritage-stat-icon {
    width: 42px;
    height: 42px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 18px;
    color: var(--primary-dark)
}
.heritage-stat-num {
    font-family: Playfair Display, serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 4px
}
.heritage-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    font-weight: 600
}
.heritage-visual {
    position: relative;
    background: linear-gradient(145deg, var(--bg-dark) 0%, var(--secondary) 55%, var(--primary-dark) 100%);
    border-radius: 16px;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center
}
.heritage-visual-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 40px 32px
}
.heritage-year {
    font-family: Playfair Display, serif;
    font-size: 96px;
    font-weight: 700;
    color: rgba(212,168,83,0.18);
    line-height: 1;
    margin-bottom: 16px;
    letter-spacing: -2px
}
.heritage-quote {
    font-family: Playfair Display, serif;
    font-size: 22px;
    font-style: italic;
    color: rgba(255,255,255,0.92);
    line-height: 1.55;
    margin-bottom: 14px
}
.heritage-quote i {
    color: var(--accent);
    font-size: 18px;
    vertical-align: top;
    margin-right: 4px
}
.heritage-quote-sub {
    font-size: 12px;
    color: var(--accent);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600
}
.heritage-divider {
    width: 48px;
    height: 2px;
    background: var(--accent);
    margin: 14px auto;
    border-radius: 1px
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px 24px;
    height: 100%;
    position: relative;
    transition: box-shadow .25s, transform .25s
}
.testimonial-card:hover {
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-3px)
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    color: #F59E0B;
    font-size: 14px
}
.testimonial-text {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 18px;
    font-style: italic
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 14px
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--burg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    font-family: Playfair Display, serif;
    flex-shrink: 0;
    border: 2px solid var(--accent)
}
.testimonial-name {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark)
}
.testimonial-location {
    font-size: 12px;
    color: var(--text-muted)
}

/* ============================================================
   IMPROVED PROMO BANNER
   ============================================================ */
.promo-banner-section {
    background: var(--mughal-gradient);
    position: relative;
    overflow: hidden
}
.promo-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='%23C9981A' stroke-width='0.6' opacity='0.1'%3E%3Crect x='25' y='25' width='70' height='70'/%3E%3Crect x='25' y='25' width='70' height='70' transform='rotate(45 60 60)'/%3E%3Ccircle cx='60' cy='60' r='25'/%3E%3Ccircle cx='60' cy='60' r='8'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.promo-banner-inner {
    position: relative;
    z-index: 1
}
.promo-offer-tag {
    display: inline-block;
    background: var(--gold-gradient);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 4px;
    margin-bottom: 14px
}
.promo-perks {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 20px
}
.promo-perk {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.75)
}
.promo-perk i { color: var(--accent); font-size: 16px }

/* ============================================================
   ISLAMIC TOOLS SECTION  (Taqwa-inspired dark design)
   ============================================================ */
.islamic-tools-section {
    background: #0B3621;
    position: relative;
    overflow: hidden;
    padding: 70px 0 60px;
}
.islamic-tools-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cg fill='none' stroke='%23C9981A' stroke-width='0.6' opacity='0.18'%3E%3Crect x='15' y='15' width='70' height='70'/%3E%3Crect x='15' y='15' width='70' height='70' transform='rotate(45 50 50)'/%3E%3Ccircle cx='50' cy='50' r='26'/%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.islamic-tools-section::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9981A 30%, #C9981A 70%, transparent);
}
.itools-bismillah {
    font-size: clamp(22px, 3vw, 32px);
    color: #C9981A;
    text-align: center;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
    line-height: 1.5;
}
.itools-section-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}
.itools-section-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-align: center;
    margin-bottom: 40px;
    font-family: Inter, sans-serif;
}
.itools-gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #C9981A, transparent);
    margin: 12px auto 18px;
    border-radius: 2px;
}
.itools-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(212,168,83,0.22);
    border-radius: 14px;
    overflow: hidden;
    height: 100%;
}
.itools-card-head {
    background: rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(212,168,83,0.18);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.itools-card-head > i {
    font-size: 20px;
    color: #C9981A;
    flex-shrink: 0;
}
.itools-card-head h3 {
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    flex: 1;
}
.hijri-date-badge {
    background: rgba(212,168,83,0.15);
    border: 1px solid rgba(212,168,83,0.35);
    border-radius: 20px;
    padding: 4px 12px;
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #C9981A;
    white-space: nowrap;
    letter-spacing: 0.04em;
}
/* Prayer city row */
.prayer-city-row {
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid rgba(212,168,83,0.12);
    align-items: center;
    flex-wrap: wrap;
}
.prayer-city-row input,
.prayer-city-row select {
    flex: 1;
    min-width: 80px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(212,168,83,0.25);
    border-radius: 6px;
    color: #fff;
    padding: 7px 10px;
    font-size: 13px;
    font-family: Inter, sans-serif;
    outline: none;
    transition: border-color .2s;
}
.prayer-city-row input::placeholder { color: rgba(255,255,255,0.4); }
.prayer-city-row input:focus,
.prayer-city-row select:focus { border-color: #C9981A; }
.prayer-city-row select option { background: #0B3621; color: #fff; }
.prayer-load-btn {
    background: #C9981A;
    color: #0B3621;
    border: none;
    border-radius: 6px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 700;
    font-family: Inter, sans-serif;
    cursor: pointer;
    transition: background .2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}
.prayer-load-btn:hover { background: #E8C85A; }
/* Prayer grid */
.prayer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}
.prayer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 6px;
    border-right: 1px solid rgba(212,168,83,0.1);
    border-bottom: 1px solid rgba(212,168,83,0.1);
    position: relative;
    transition: background .2s;
}
.prayer-item:nth-child(3n) { border-right: none; }
.prayer-item:nth-last-child(-n+3) { border-bottom: none; }
.prayer-item:hover { background: rgba(212,168,83,0.06); }
.prayer-item.next-prayer { background: rgba(212,168,83,0.1); }
.prayer-item-icon { font-size: 18px; color: #C9981A; margin-bottom: 5px; opacity: 0.7; }
.prayer-item.next-prayer .prayer-item-icon { opacity: 1; }
.prayer-arabic {
    font-size: 15px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 1px;
    direction: rtl;
    font-family: serif;
}
.prayer-en-name {
    font-family: Inter, sans-serif;
    font-size: 10px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 5px;
}
.prayer-time-val {
    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}
.prayer-item.next-prayer .prayer-time-val { color: #C9981A; }
.prayer-next-badge {
    position: absolute;
    top: 5px; right: 5px;
    background: #C9981A;
    color: #0B3621;
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 2px 5px;
    border-radius: 3px;
    font-family: Inter, sans-serif;
}
.prayer-footer {
    padding: 9px 16px;
    border-top: 1px solid rgba(212,168,83,0.12);
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-family: Inter, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.prayer-footer i { color: #C9981A; margin-right: 4px; }
.prayer-loading {
    text-align: center;
    padding: 36px 20px;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    font-family: Inter, sans-serif;
}
.prayer-loading i { display: block; font-size: 26px; color: #C9981A; margin-bottom: 10px; }
/* Verse of the Day */
.ayah-arabic-text {
    font-size: clamp(17px, 2.5vw, 22px);
    color: #C9981A;
    direction: rtl;
    text-align: right;
    line-height: 2;
    padding: 18px 20px 10px;
    border-bottom: 1px solid rgba(212,168,83,0.12);
    font-family: serif;
}
.ayah-translation-text {
    font-family: "Playfair Display", serif;
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,0.82);
    line-height: 1.8;
    padding: 14px 20px 6px;
}
.ayah-ref-text {
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #C9981A;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 0 20px 12px;
}
.ayah-next-btn {
    display: block;
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    background: rgba(212,168,83,0.1);
    border: 1px solid rgba(212,168,83,0.25);
    color: #C9981A;
    border-radius: 6px;
    padding: 8px;
    font-size: 12px;
    font-family: Inter, sans-serif;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    transition: background .2s;
    letter-spacing: .04em;
}
.ayah-next-btn:hover { background: rgba(212,168,83,0.18); }
/* Zakat Calculator */
.zakat-calc-wrap { padding: 20px; }
.zakat-field-label {
    font-family: Inter, sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.zakat-field-label i { color: #C9981A; font-size: 13px; }
.zakat-field-label.deduct i { color: rgba(255,130,130,0.85); }
.zakat-field-label.deduct { color: rgba(255,130,130,0.85); }
.zakat-input {
    width: 100%;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,168,83,0.2);
    border-radius: 6px;
    color: #fff;
    padding: 9px 12px;
    font-size: 14px;
    font-family: Inter, sans-serif;
    outline: none;
    transition: border-color .2s;
    margin-bottom: 14px;
}
.zakat-input::placeholder { color: rgba(255,255,255,0.3); }
.zakat-input:focus { border-color: #C9981A; }
.zakat-deduct-input:focus { border-color: rgba(255,130,130,0.5); }
.zakat-calc-btn {
    background: linear-gradient(135deg, #C9981A, #E8C85A);
    color: #0D0B20;
    border: none;
    border-radius: 6px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 800;
    font-family: Inter, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.zakat-calc-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(201,152,26,0.45);
}
.zakat-nisab-note {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    font-family: Inter, sans-serif;
    margin-top: 12px;
    line-height: 1.6;
}
.zakat-result-panel {
    display: none;
    background: rgba(201,152,26,0.07);
    border: 1px solid rgba(201,152,26,0.28);
    border-radius: 10px;
    padding: 22px;
    margin-top: 18px;
}
.zakat-result-amount {
    font-family: "Playfair Display", serif;
    font-size: 38px;
    font-weight: 700;
    color: #C9981A;
    text-align: center;
    margin-bottom: 2px;
}
.zakat-result-sublabel {
    text-align: center;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-family: Inter, sans-serif;
    margin-bottom: 16px;
}
.zakat-result-rows { border-top: 1px solid rgba(212,168,83,0.18); padding-top: 14px; }
.zakat-result-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 13px;
    font-family: Inter, sans-serif;
    color: rgba(255,255,255,0.65);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.zakat-result-row:last-child { border-bottom: none; }
.zakat-result-row strong { color: #fff; }
.zakat-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    font-family: Inter, sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.zakat-badge.eligible { background: rgba(26,107,60,0.4); border: 1px solid rgba(26,170,80,0.4); color: #7EE8A2; }
.zakat-badge.not-eligible { background: rgba(100,100,100,0.2); border: 1px solid rgba(150,150,150,0.25); color: rgba(255,255,255,0.5); }
.btn-outline-gold {
    border: 2px solid #C9981A;
    color: #C9981A;
    background: transparent;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    font-family: Inter, sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: background .2s, color .2s, box-shadow .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}
.btn-outline-gold:hover {
    background: #C9981A;
    color: #0D0B20;
    box-shadow: 0 4px 16px rgba(201,152,26,0.35);
}
@media (max-width: 767.98px) {
    .prayer-time-val { font-size: 14px; }
    .ayah-arabic-text { font-size: 17px; }
    .zakat-result-amount { font-size: 28px; }
    .islamic-tools-section { padding: 48px 0 40px; }
}
@media (max-width: 575.98px) {
    .prayer-grid { grid-template-columns: repeat(2, 1fr); }
    .prayer-item:nth-child(3n) { border-right: 1px solid rgba(212,168,83,0.1); }
    .prayer-item:nth-child(2n) { border-right: none; }
    .prayer-item:nth-last-child(-n+2) { border-bottom: none; }
    .prayer-item:nth-last-child(-n+3) { border-bottom: 1px solid rgba(212,168,83,0.1); }
}


/* ============================================================
   MUGHAL-ARABIC ORIENTAL DESIGN ADDITIONS
   ============================================================ */

/* Heritage section: add Mughal pattern overlay */
.heritage-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cg fill='none' stroke='%23C9981A' stroke-width='0.5' opacity='0.12'%3E%3Crect x='15' y='15' width='70' height='70'/%3E%3Crect x='15' y='15' width='70' height='70' transform='rotate(45 50 50)'/%3E%3Ccircle cx='50' cy='50' r='25'/%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3Cline x1='50' y1='0' x2='50' y2='100'/%3E%3Cline x1='0' y1='50' x2='100' y2='50'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

/* ============================================================
   ORNATE SECTION DIVIDER (Mughal diamond motif)
   ============================================================ */
.ornate-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin: 14px auto 32px;
    max-width: 280px;
}
.ornate-divider::before,
.ornate-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent));
    opacity: 0.7;
}
.ornate-divider::after {
    background: linear-gradient(to left, transparent, var(--accent));
}
.ornate-divider-center {
    width: 10px;
    height: 10px;
    background: var(--accent);
    transform: rotate(45deg);
    flex-shrink: 0;
    box-shadow: 0 0 8px rgba(201,152,26,0.5);
}
.ornate-divider.center { margin: 14px auto 32px; }

/* ============================================================
   PRODUCT CARD — Mughal gold shimmer on hover
   ============================================================ */
.product-card {
    position: relative;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 1;
    border-radius: 10px 10px 0 0;
}
.product-card:hover::before {
    opacity: 1;
}

/* ============================================================
   SECTION HEADERS — Arabic-style ornamental underline
   ============================================================ */
.section-title {
    position: relative;
}

/* Feature box — ornate gold left accent */
.feature-box {
    border-top: 3px solid var(--accent);
    position: relative;
    overflow: hidden;
}
.feature-box::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 60px; height: 60px;
    background: radial-gradient(circle at top right, rgba(201,152,26,0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* ============================================================
   TESTIMONIAL CARDS — Mughal arch top accent
   ============================================================ */
.testimonial-card {
    border-top: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
}
.testimonial-card::before {
    content: '';
    position: absolute;
    top: -3px; left: 0; right: 0;
    height: 3px;
    background: var(--gold-gradient);
    border-radius: 12px 12px 0 0;
    opacity: 0;
    transition: opacity .3s;
}
.testimonial-card:hover::before {
    opacity: 1;
}

/* ============================================================
   MUGHAL ARCH SEPARATOR (between major sections)
   ============================================================ */
.mughal-arch-sep {
    text-align: center;
    overflow: hidden;
    padding: 6px 0 0;
    position: relative;
    z-index: 1;
}
.mughal-arch-sep svg {
    width: 100%;
    max-width: 600px;
    height: 32px;
    display: block;
    margin: 0 auto;
}

/* ============================================================
   HERITAGE SECTION BADGE — Mughal era stamp style
   ============================================================ */
.heritage-badge {
    background: var(--gold-gradient);
    color: var(--primary-dark);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 3px;
    margin-bottom: 16px;
    clip-path: polygon(6px 0%, calc(100% - 6px) 0%, 100% 50%, calc(100% - 6px) 100%, 6px 100%, 0% 50%);
}

/* ============================================================
   DIGITAL TASBEEH COUNTER
   ============================================================ */
.tasbeeh-body {
    padding: 24px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: 280px;
    justify-content: center;
}
.tasbeeh-count {
    font-family: 'Playfair Display', serif;
    font-size: 80px;
    font-weight: 700;
    color: var(--accent, #C9981A);
    line-height: 1;
    text-shadow: 0 0 40px rgba(201,152,26,0.35);
    transition: transform .12s ease;
    min-width: 160px;
    letter-spacing: -2px;
}
.tasbeeh-count.pulse {
    transform: scale(1.1);
}
.tasbeeh-arabic-label {
    font-size: 22px;
    color: rgba(255,255,255,0.9);
    direction: rtl;
    letter-spacing: .04em;
    line-height: 1.6;
    font-family: serif;
}
.tasbeeh-en-label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-top: -10px;
}
.tasbeeh-btn {
    background: linear-gradient(135deg, #C9981A, #E8C85A);
    color: #0D0B20;
    border: none;
    border-radius: 50%;
    width: 110px;
    height: 110px;
    font-size: 12px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: transform .12s, box-shadow .2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 8px 28px rgba(201,152,26,0.45), inset 0 1px 0 rgba(255,255,255,0.2);
    text-transform: uppercase;
    letter-spacing: .08em;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}
.tasbeeh-btn i { font-size: 26px; }
.tasbeeh-btn:hover { transform: scale(1.05); box-shadow: 0 12px 36px rgba(201,152,26,0.6); }
.tasbeeh-btn:active { transform: scale(0.94); }
.tasbeeh-progress {
    width: 100%;
    height: 5px;
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    overflow: hidden;
}
.tasbeeh-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #C9981A, #E8C85A);
    border-radius: 3px;
    transition: width .25s ease;
    width: 0%;
}
.tasbeeh-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    flex-wrap: wrap;
    gap: 6px;
}
.tasbeeh-reset {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.45);
    border-radius: 4px;
    padding: 3px 10px;
    font-size: 11px;
    cursor: pointer;
    transition: background .2s, color .2s;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 4px;
}
.tasbeeh-reset:hover { background: rgba(255,255,255,0.1); color: #fff; }
.tasbeeh-complete-msg {
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    color: #C9981A;
    font-style: italic;
    text-align: center;
    padding: 8px 0;
    display: none;
}

/* ============================================================
   QIBLA DIRECTION FINDER
   ============================================================ */
.qibla-body {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    text-align: center;
    min-height: 280px;
    justify-content: center;
}
.qibla-compass-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(0,0,0,0.35);
    border: 2px solid rgba(201,152,26,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 0 30px rgba(201,152,26,0.12), inset 0 0 20px rgba(0,0,0,0.3);
}
/* Cardinal letters */
.qibla-compass-wrap::before {
    content: 'N';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #C9981A;
    letter-spacing: .08em;
}
.qibla-compass {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qibla-needle {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
    transform-origin: bottom center;
    width: 3px;
    height: 52px;
    background: linear-gradient(to bottom, #E8C85A 0%, #C9981A 60%, rgba(201,152,26,0.2) 100%);
    border-radius: 3px 3px 0 0;
    transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.qibla-needle::before {
    content: '▲';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: #E8C85A;
    line-height: 1;
}
.qibla-kaaba-emoji {
    font-size: 20px;
    opacity: 0.6;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.qibla-status {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    margin: 0;
    max-width: 220px;
    line-height: 1.6;
}
.qibla-degree {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: #C9981A;
    min-height: 32px;
    letter-spacing: .02em;
}
.qibla-find-btn {
    width: auto !important;
    padding: 9px 20px !important;
}
@media (max-width: 767.98px) {
    .tasbeeh-count { font-size: 60px; }
    .tasbeeh-btn { width: 90px; height: 90px; font-size: 11px; }
    .tasbeeh-btn i { font-size: 22px; }
    .qibla-compass-wrap { width: 120px; height: 120px; }
}

/* ============================================================
   MUGHAL SECTION INTRO — decorative bismillah for sections
   ============================================================ */
.mughal-section-intro {
    text-align: center;
    margin-bottom: 8px;
}
.mughal-section-arabic {
    font-size: 15px;
    color: var(--accent);
    letter-spacing: .06em;
    direction: rtl;
    display: inline-block;
    opacity: 0.75;
    font-family: serif;
}

/* ============================================================
   FOOTER — Mughal gold top border glow
   ============================================================ */
.footer-social a:hover {
    background: var(--secondary);
    color: var(--white);
    border-color: var(--secondary);
}

/* ============================================================
   HERITAGE STAT BOX — Mughal jewel accent
   ============================================================ */
.heritage-stat-box {
    border-top: 2px solid transparent;
    background-image: linear-gradient(var(--bg-light), var(--bg-light)),
                      var(--gold-gradient);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    transition: transform .25s, box-shadow .25s;
}
.heritage-stat-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow);
}

/* ============================================================
   IMPROVED PAGE BANNER — ornamental sub line
   ============================================================ */
.page-banner-sub {
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

/* ============================================================
   PRODUCT TABS — Mughal styled active indicator
   ============================================================ */
.prod-tab-btn.active {
    color: var(--secondary);
    border-bottom-color: var(--accent);
    font-weight: 700;
}
.prod-tab-btn:hover { color: var(--secondary); }

/* ============================================================
   BUTTONS — enhanced Mughal feel
   ============================================================ */
.btn-primary-taj {
    letter-spacing: .06em;
    border-radius: 4px;
}
.btn-outline-taj {
    letter-spacing: .06em;
    border-radius: 4px;
}

/* ============================================================
   SECTION BACKGROUNDS — alternating Mughal-inspired
   ============================================================ */
.bg-light-cream {
    background: #F0E6CC;
}


/* ============================================================
   HERO STAT BOXES — Glass upgrade (override base)
   ============================================================ */
.hero-stat {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(201,152,26,0.28);
    border-radius: 12px;
    padding: 18px 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform .25s, background .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}
.hero-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(135deg, #C9981A 0%, #E8C85A 50%, #C9981A 100%);
    border-radius: 12px 12px 0 0;
}
.hero-stat:hover {
    background: rgba(201,152,26,0.12);
    border-color: rgba(201,152,26,0.5);
    transform: translateY(-5px);
}
.hero-stat-icon {
    width: 44px;
    height: 44px;
    background: rgba(201,152,26,0.15);
    border: 1px solid rgba(201,152,26,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 18px;
    color: var(--accent);
}

/* ============================================================
   MUGHAL PERKS STRIP
   ============================================================ */
.mughal-perks-strip {
    background: linear-gradient(135deg, #0D0B20 0%, #0F0A1E 40%, #0A0D18 100%);
    border-top: 1px solid rgba(201,152,26,0.18);
    border-bottom: 1px solid rgba(201,152,26,0.18);
    padding: 0;
    position: relative;
    overflow: hidden;
}
.mughal-perks-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 2 L22 9 L29 9 L23 13 L25 20 L20 16 L15 20 L17 13 L11 9 L18 9Z' fill='rgba(201%2C152%2C26%2C0.03)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.mughal-perks-row {
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
.mughal-perk {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    flex: 1;
    min-width: 200px;
    position: relative;
    transition: background .25s;
}
.mughal-perk:hover {
    background: rgba(201,152,26,0.05);
}
.mughal-perk-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(201,152,26,0.16) 0%, rgba(201,152,26,0.06) 100%);
    border: 1px solid rgba(201,152,26,0.38);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
    flex-shrink: 0;
    transition: transform .2s, background .2s;
}
.mughal-perk:hover .mughal-perk-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(201,152,26,0.28) 0%, rgba(201,152,26,0.12) 100%);
}
.mughal-perk-text strong {
    display: block;
    color: rgba(255,255,255,0.92);
    font-family: 'Playfair Display', serif;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: .01em;
}
.mughal-perk-text span {
    font-size: 11.5px;
    color: rgba(255,255,255,0.42);
    font-family: Inter, sans-serif;
    line-height: 1.4;
}
.mughal-perk-sep {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(to bottom, transparent 10%, rgba(201,152,26,0.22) 50%, transparent 90%);
    flex-shrink: 0;
}
@media (max-width: 767.98px) {
    .mughal-perk-sep { display: none; }
    .mughal-perk { min-width: 50%; border-bottom: 1px solid rgba(201,152,26,0.08); }
    .mughal-perk:last-of-type { border-bottom: none; }
}
@media (max-width: 480px) {
    .mughal-perk { min-width: 100%; }
}

/* ============================================================
   PRODUCTS SECTION — Dark Lapis
   ============================================================ */
.mughal-products-section {
    background: linear-gradient(180deg, #050D1A 0%, #071528 60%, #050D1A 100%);
    position: relative;
    overflow: hidden;
}
.mughal-products-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M40 8 L44 20 L56 20 L47 28 L50 40 L40 33 L30 40 L33 28 L24 20 L36 20Z' fill='none' stroke='rgba(28%2C56%2C112%2C0.2)' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.mughal-products-section > .container { position: relative; z-index: 1; }
.mughal-products-section .section-title { color: #fff; font-family: 'Playfair Display', serif; }
.mughal-products-section .section-divider {
    background: linear-gradient(135deg, #C9981A 0%, #E8C85A 50%, #C9981A 100%);
    height: 2px;
    width: 60px;
    border-radius: 1px;
    margin: 6px 0;
}
.mughal-products-section .products-tabs-nav {
    border-bottom: 1px solid rgba(201,152,26,0.18);
    background: rgba(255,255,255,0.03);
    border-radius: 8px 8px 0 0;
    padding: 0 8px;
    margin-bottom: 0;
}
.mughal-products-section .prod-tab-btn {
    color: rgba(255,255,255,0.45);
    border-bottom: 3px solid transparent;
    padding: 12px 20px;
}
.mughal-products-section .prod-tab-btn:hover {
    color: var(--accent-light);
    background: rgba(201,152,26,0.06);
}
.mughal-products-section .prod-tab-btn.active {
    color: var(--accent);
    border-bottom-color: var(--accent);
    background: rgba(201,152,26,0.08);
}
.mughal-products-section .prod-tab-pane { padding-top: 24px; }
.mughal-products-section .btn-burgundy {
    background: transparent;
    color: var(--accent);
    border: 1px solid rgba(201,152,26,0.55);
    padding: 9px 22px;
    border-radius: 6px;
    font-family: Inter, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, color .2s, border-color .2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: .04em;
}
.mughal-products-section .btn-burgundy:hover {
    background: var(--accent);
    color: #0D0B20;
    border-color: var(--accent);
}

/* ============================================================
   TESTIMONIALS SECTION — Dark Midnight Glass
   ============================================================ */
.mughal-testimonials-section {
    background: linear-gradient(160deg, #0D0B20 0%, #0B1020 45%, #140A18 100%);
    position: relative;
    overflow: hidden;
}
.mughal-testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='80' cy='80' r='60' fill='none' stroke='rgba(201%2C152%2C26%2C0.04)' stroke-width='1'/%3E%3Ccircle cx='80' cy='80' r='75' fill='none' stroke='rgba(201%2C152%2C26%2C0.02)' stroke-width='1'/%3E%3Cpath d='M80 5 L82 14 L91 14 L84 19 L87 28 L80 23 L73 28 L76 19 L69 14 L78 14Z' fill='rgba(201%2C152%2C26%2C0.04)'/%3E%3C/svg%3E");
    pointer-events: none;
}
.mughal-testimonials-section > .container { position: relative; z-index: 1; }
.mughal-testimonials-section .section-title { color: #fff; }
.mughal-testimonials-section .section-subtitle { color: rgba(255,255,255,0.45); }
.mughal-testimonials-section .testimonial-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(201,152,26,0.15);
    border-radius: 14px;
    transition: transform .3s, border-color .3s, background .3s;
}
.mughal-testimonials-section .testimonial-card:hover {
    background: rgba(201,152,26,0.06);
    border-color: rgba(201,152,26,0.38);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.mughal-testimonials-section .testimonial-card::before { opacity: 1; }
.mughal-testimonials-section .testimonial-stars i { color: var(--accent); }
.mughal-testimonials-section .testimonial-text { color: rgba(255,255,255,0.72); font-style: italic; }
.mughal-testimonials-section .testimonial-name { color: rgba(255,255,255,0.9); }
.mughal-testimonials-section .testimonial-avatar {
    background: linear-gradient(135deg, #C9981A 0%, #E8C85A 50%, #C9981A 100%);
    color: var(--primary-dark);
    font-weight: 800;
}
.mughal-testimonials-section .testimonial-location { color: rgba(255,255,255,0.4); }

/* ============================================================
   HERITAGE SECTION — Full Dark Revamp
   ============================================================ */
.mughal-heritage-section {
    background: linear-gradient(160deg, #0C0F1A 0%, #0F1828 50%, #0A0D16 100%);
    position: relative;
    overflow: hidden;
}
.mughal-heritage-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 10 L53 22 L65 22 L56 30 L59 42 L50 35 L41 42 L44 30 L35 22 L47 22Z' fill='none' stroke='rgba(28%2C56%2C112%2C0.18)' stroke-width='1'/%3E%3C/svg%3E");
    pointer-events: none;
}
.mughal-heritage-section > .container { position: relative; z-index: 1; }
.mughal-heritage-section .section-title { color: #fff; }
.mughal-heritage-section .heritage-badge { background: linear-gradient(135deg, #C9981A 0%, #E8C85A 50%, #C9981A 100%); color: var(--primary-dark); }
.mughal-heritage-section .heritage-body { color: rgba(255,255,255,0.62); }
.mughal-heritage-section .heritage-points li { color: rgba(255,255,255,0.75); }
.mughal-heritage-section .heritage-points li i { color: var(--accent); }
.mughal-heritage-section .ornate-divider::before,
.mughal-heritage-section .ornate-divider::after { background: rgba(201,152,26,0.35); }
.mughal-heritage-section .ornate-divider-center { background: var(--accent); }
.mughal-heritage-section .heritage-stat-box {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,152,26,0.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: transform .25s, border-color .25s, background .25s;
}
.mughal-heritage-section .heritage-stat-box:hover {
    background: rgba(201,152,26,0.08);
    border-color: rgba(201,152,26,0.42);
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.mughal-heritage-section .heritage-stat-num { color: var(--accent); }
.mughal-heritage-section .heritage-stat-label { color: rgba(255,255,255,0.48); }
.mughal-heritage-section .heritage-stat-icon {
    background: rgba(201,152,26,0.14);
    border: 1px solid rgba(201,152,26,0.3);
    color: var(--accent);
}
