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

:root {
    /* Primary Colors */
    --color-primary: #1a1a2e;
    --color-primary-dark: #0f1129;
    --color-primary-hover: #2d2d4a;

    /* Background Colors */
    --color-white: #ffffff;
    --color-bg-light: #f8f8f8;
    --color-bg-lighter: #f9f9f9;
    --color-bg-hover: #f0f4ff;
    --color-bg-hover-sub: #e8eeff;
    --color-bg-hover-mobile: #eaeaea;
    --color-bg-active: #f0f0f0;

    /* Text Colors */
    --color-text-dark: #333333;
    --color-text-medium: #555555;
    --color-text-light: #666666;
    --color-text-muted: #888888;
    --color-text-placeholder: #999999;

    /* Border Colors */
    --color-border: #e8e8e8;
    --color-border-light: #f0f0f0;
    --color-border-input: #d0d0d0;
    --color-border-submenu: #eee;

    /* Accent Colors */
    --color-gold: #ffd700;
    --color-red: #ff4757;
    --color-blue: #2563eb;

    /* Shadow Colors */
    --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 4px 15px rgba(0, 0, 0, 0.12);
    --shadow-nav: 2px 0 15px rgba(0, 0, 0, 0.15);
    --shadow-menu: 0 4px 15px rgba(0, 0, 0, 0.15);
    --shadow-overlay: rgba(0, 0, 0, 0.5);
    --shadow-hero: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ========== TOP BAR ========== */
.top-bar {
    background-color: var(--color-primary-dark);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ========== TOP BAR QUICK LINKS ========== */
.top-bar-quick-links {
    display: none;
    max-width: 1400px;
    margin: 8px auto 0;
    padding: 8px 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px 10px;
}

@media (max-width: 1024px) {
    .top-bar-quick-links {
        display: flex;
    }
}

.quick-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.quick-link-btn i {
    font-size: 11px;
    transition: transform 0.3s ease;
}

.quick-link-btn.ql-shopping i {
    color: #FFC93C;
}

.quick-link-btn.ql-employment i {
    color: #5BC8FF;
}

.quick-link-btn.ql-other i {
    color: #C792EA;
}

.quick-link-btn:hover {
    background: var(--color-white);
    border-color: var(--color-white);
    color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.28);
}

.quick-link-btn:hover i {
    transform: scale(1.15);
}

.ql-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    flex-shrink: 0;
}

.sticky-top-bar .top-bar-quick-links {
    margin-top: 6px;
    padding: 6px 30px 0;
}

.sticky-top-bar .quick-link-btn {
    padding: 4px 13px;
    font-size: 11px;
}

@media (max-width: 576px) {
    .top-bar-quick-links,
    .sticky-top-bar .top-bar-quick-links {
        padding-left: 12px;
        padding-right: 12px;
        gap: 5px 7px;
        row-gap: 6px;
    }
    .quick-link-btn {
        padding: 4px 12px;
        font-size: 11px;
        letter-spacing: 0.2px;
    }
    .quick-link-btn i {
        font-size: 10px;
    }
    .ql-dot {
        display: none;
    }
}

.whatsapp-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    color: var(--color-white);
    transition: all 0.3s ease;
}

.whatsapp-link i {
    color: #25D366;
    font-size: 16px;
    animation: whatsappPulse 1.5s ease-in-out infinite;
}

.whatsapp-link:hover {
    color: #25D366;
    transform: scale(1.05);
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.3;
    }
}

/* Settings Dropdown */
.settings-dropdown {
    position: relative;
}

.settings-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    padding: 5px 0;
}

.settings-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.settings-dropdown:hover .settings-btn i,
.settings-dropdown.active .settings-btn i {
    transform: rotate(180deg);
}

.settings-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    min-width: 210px !important;
    background-color: var(--color-white) !important;
    list-style: none !important;
    margin: 8px 0 0 0 !important;
    padding: 8px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 10px !important;
    text-align: left !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-6px) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
    z-index: 99999 !important;
}

/* hover bridge so the menu doesn't close between the button and the menu */
.settings-dropdown::after {
    content: '' !important;
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: 0 !important;
    height: 8px !important;
}

.settings-dropdown:hover .settings-menu,
.settings-dropdown.active .settings-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.settings-menu li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.settings-menu li a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 11px 14px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    color: var(--color-text-dark) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    border-radius: 8px !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
}

.settings-menu li a:hover {
    background-color: var(--color-bg-hover) !important;
    color: var(--color-primary) !important;
}

.settings-menu li a i,
.settings-menu li a svg {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    color: var(--color-white) !important;
    background-color: var(--color-primary) !important;
    border-radius: 7px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
    padding: 6px !important;
    box-sizing: border-box !important;
}

.settings-menu li a svg {
    fill: var(--color-white) !important;
    stroke: none !important;
}

.settings-menu li a svg path,
.settings-menu li a svg g,
.settings-menu li a svg circle,
.settings-menu li a svg rect,
.settings-menu li a svg polygon,
.settings-menu li a svg line,
.settings-menu li a svg polyline {
    fill: currentColor !important;
}

.settings-menu li a:hover i,
.settings-menu li a:hover svg {
    color: var(--color-white) !important;
    background-color: var(--color-primary-hover) !important;
    transform: scale(1.05) !important;
}

/* ========== MAIN HEADER ========== */
.header-wrapper {
    position: relative;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

/* ========== STICKY HEADER ========== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.sticky-header.show {
    transform: translateY(0);
}

/* Sticky Top Bar */
.sticky-top-bar {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 0;
    font-size: 13px;
}
.sticky-top-bar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sticky-top-bar .whatsapp-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--color-white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
}
.sticky-top-bar .whatsapp-link i {
    color: #25D366;
    font-size: 14px;
}
.sticky-top-bar .settings-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    cursor: pointer;
    padding: 4px 0;
}
.sticky-top-bar .settings-btn i {
    font-size: 10px;
    transition: transform 0.3s ease;
}
.sticky-top-bar .settings-dropdown:hover .settings-btn i,
.sticky-top-bar .settings-dropdown.active .settings-btn i {
    transform: rotate(180deg);
}
.sticky-top-bar .settings-menu {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    left: auto !important;
    min-width: 210px !important;
    background-color: var(--color-white) !important;
    list-style: none !important;
    margin: 8px 0 0 0 !important;
    padding: 8px !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 10px !important;
    text-align: left !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-6px) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
    z-index: 99999 !important;
}
.sticky-top-bar .settings-dropdown:hover .settings-menu,
.sticky-top-bar .settings-dropdown.active .settings-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}
.sticky-top-bar .settings-menu li {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}
.sticky-top-bar .settings-menu li a {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 11px 14px !important;
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 500 !important;
    color: var(--color-text-dark) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    border-radius: 8px !important;
    transition: background-color 0.2s ease, color 0.2s ease !important;
}
.sticky-top-bar .settings-menu li a:hover {
    background-color: var(--color-bg-hover) !important;
    color: var(--color-primary) !important;
}
.sticky-top-bar .settings-menu li a i,
.sticky-top-bar .settings-menu li a svg {
    width: 30px !important;
    height: 30px !important;
    min-width: 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    flex-shrink: 0 !important;
    color: var(--color-white) !important;
    background-color: var(--color-primary) !important;
    border-radius: 7px !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15) !important;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease !important;
    padding: 6px !important;
    box-sizing: border-box !important;
}
.sticky-top-bar .settings-menu li a svg {
    fill: var(--color-white) !important;
    stroke: none !important;
}
.sticky-top-bar .settings-menu li a svg path,
.sticky-top-bar .settings-menu li a svg g,
.sticky-top-bar .settings-menu li a svg circle,
.sticky-top-bar .settings-menu li a svg rect,
.sticky-top-bar .settings-menu li a svg polygon,
.sticky-top-bar .settings-menu li a svg line,
.sticky-top-bar .settings-menu li a svg polyline {
    fill: currentColor !important;
}
.sticky-top-bar .settings-menu li a:hover i,
.sticky-top-bar .settings-menu li a:hover svg {
    color: var(--color-white) !important;
    background-color: var(--color-primary-hover) !important;
    transform: scale(1.05) !important;
}

/* Sticky main row */
.sticky-header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    height: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--color-border);
}
.sticky-logo {
    flex-shrink: 0;
}
.sticky-logo img {
    width: 120px !important;
    height: 40px !important;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Sticky desktop nav */
.sticky-nav {
    flex: 1;
    min-width: 0;
    overflow: visible;
}
.sticky-nav-list {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0;
}
/* First sticky nav item flush-left to align with logo */
.sticky-nav-list > .nav-item:first-child > a {
    padding-left: 0;
}
.sticky-nav-list .nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 20px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
}
.sticky-nav-list .nav-item > a:hover {
    color: var(--color-primary-hover);
}
.sticky-nav-list .nav-item > a i {
    font-size: 8px;
    transition: transform 0.3s ease;
}
.sticky-nav-list .nav-item.has-dropdown:hover > a i {
    transform: rotate(180deg);
}
/* Sticky nav dropdowns — reuse existing submenu styles */
.sticky-nav-list .nav-item.has-dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sticky mobile toggle */
.sticky-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--color-text-dark);
    padding: 6px;
    flex-shrink: 0;
}

/* Sticky mobile search toggle + bar + user account (shown only on mobile) */
.sticky-search-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--color-text-dark);
    padding: 6px;
    flex-shrink: 0;
}
.sticky-user-account {
    display: none;
}
.sticky-search-bar {
    display: none;
}

/* Sticky right actions */
.sticky-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.sticky-halal-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}
.sticky-halal-btn i {
    font-size: 16px;
    color: #0d7c3d;
}
.sticky-cart {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-text-dark);
}
.sticky-cart i {
    font-size: 24px;
}
.sticky-cart .cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

/* ========== STICKY HEADER RESPONSIVE ========== */
@media (max-width: 1200px) {
    .sticky-nav-list .nav-item > a {
        padding: 20px 10px;
        font-size: 13px;
    }
    .sticky-top-bar {
        display: block;
    }
}
@media (max-width: 992px) {
    .sticky-top-bar {
        display: block;
    }
    .sticky-nav {
        display: none;
    }
    .sticky-header-container {
        padding: 0 16px;
        height: 60px;
        position: relative;
        justify-content: flex-start;
        gap: 10px;
    }
    .sticky-menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .sticky-search-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }
    .sticky-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        flex: unset;
        display: block;
    }
    .sticky-logo img {
        height: 38px !important;
        width: 114px !important;
    }
    .sticky-search-bar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        display: none;
        padding: 12px 15px;
        background-color: var(--color-white);
        border-top: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        z-index: 50;
    }
    .sticky-search-bar.active {
        display: flex;
    }
    .sticky-search-bar input {
        flex: 1;
        padding: 14px 18px;
        border: 1px solid var(--color-border-input);
        border-right: none;
        border-radius: 6px 0 0 6px;
        font-size: 14px;
        background-color: var(--color-bg-light);
    }
    .sticky-search-bar .search-btn {
        padding: 0 18px;
        border-radius: 0 6px 6px 0;
    }
    .sticky-actions {
        margin-left: auto;
        gap: 14px;
    }
    .sticky-halal-btn {
        display: none;
    }
    .sticky-user-account {
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: var(--color-text-dark);
    }
    .sticky-user-account i {
        font-size: 26px;
        color: var(--color-text-dark);
    }
}
@media (max-width: 576px) {
    .sticky-top-bar-container {
        padding: 0 15px;
        font-size: 11px;
    }
    .sticky-top-bar .whatsapp-link span {
        display: none;
    }
    .sticky-header-container {
        padding: 0 12px;
        height: 56px;
    }
    .sticky-logo img {
        height: 34px !important;
        width: 102px !important;
    }
    .sticky-user-account i {
        font-size: 22px;
    }
    .sticky-cart i {
        font-size: 22px;
    }
    .sticky-actions {
        gap: 12px;
    }
}

.main-header {
    background-color: var(--color-white);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.mobile-menu-toggle,
.mobile-search-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--color-text-dark);
    padding: 5px;
}

/* Logo */
.logo img {
    width: 200px !important;
    height: 65px !important;
    max-width: 100%;
    object-fit: contain;
}

/* Search Bar */
.search-bar {
    flex: 1;
    max-width: 700px;
    display: flex;
    border: 2px solid #000;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-white);
}

.search-bar input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    outline: none;
    font-size: 14px;
    color: var(--color-text-dark);
    background-color: transparent;
}

.search-bar input::placeholder {
    color: var(--color-text-placeholder);
    font-weight: 400;
}

.search-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-left: 2px solid #000;
    padding: 0 22px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn i {
    font-size: 16px;
}

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

/* Header Right */
.header-right {
    display: flex;
    align-items: center;
    gap: 35px;
}

.user-account {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.user-account > i {
    font-size: 36px;
    color: var(--color-text-medium);
}

.account-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.sign-in {
    font-size: 12px;
    color: var(--color-text-muted);
}

.your-account {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-icon i {
    font-size: 26px;
    color: var(--color-text-dark);
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background-color: var(--color-red);
    color: var(--color-white);
    font-size: 10px;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========== DESKTOP NAVIGATION ========== */
.desktop-nav {
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.desktop-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-nav-container.sub-nav {
    border-top: 1px solid var(--color-border);
}
.desktop-nav-container .nav-list > .nav-item:first-child > a {
    padding-left: 0;
}

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

.nav-item > a {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 14px 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary);
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-item > a:hover {
    color: var(--color-primary);
}

.nav-item > a i {
    font-size: 9px;
    transition: transform 0.3s ease;
}

.nav-item.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.flash-sale > a {
    color: var(--color-red);
    font-weight: 700;
}

.fire-emoji {
    font-style: normal;
}

/* ========== SUBMENU ========== */
.nav-item {
    position: relative;
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background-color: var(--color-white);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: var(--shadow-xl);
    border-top: 3px solid var(--color-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1100;
}

.submenu li {
    position: relative;
}

.submenu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-dark);
    transition: padding 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.submenu li a:hover {
    background-color: var(--color-bg-hover);
    color: var(--color-primary);
    padding-left: 25px;
}

.submenu li a i {
    font-size: 8px;
    transition: transform 0.2s ease;
}

.submenu li.has-submenu:hover > a i {
    transform: translateX(3px);
}

.nav-item.has-dropdown:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ========== SUB-SUBMENU ========== */
.sub-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    background-color: var(--color-white);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.12);
    border-top: 3px solid var(--color-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-5px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 101;
}

.submenu li.has-submenu:hover > .sub-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sub-submenu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-dark);
    border-left: 0;
    transition: padding 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.sub-submenu li a:hover {
    background-color: var(--color-bg-hover-sub);
    color: var(--color-primary);
    padding-left: 25px;
}

.hotline {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    white-space: nowrap;
    text-decoration: none;
}

.hotline:hover .hotline-number {
    text-decoration: underline;
}

.hotline i {
    color: var(--color-blue);
    font-size: 20px;
}

.hotline-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.hotline-label {
    font-size: 11px;
    color: var(--color-text-muted);
}

.hotline-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

/* ========== MOBILE NAV OVERLAY ========== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== MOBILE NAVIGATION ========== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 1002;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
}
.main-nav.active {
    transform: translateX(0);
}

/* Mobile nav header */
.mobile-nav-header {
    position: sticky;
    top: 0;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 2px solid var(--color-border);
    z-index: 10;
    gap: 10px;
    flex-shrink: 0;
}
.mobile-nav-logo {
    flex-shrink: 0;
}
.mobile-nav-logo img {
    width: auto!important;
    height: 36px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}
.mobile-nav-close {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-text-dark);
    flex-shrink: 0;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
.mobile-nav-close:hover {
    background-color: var(--color-bg-hover);
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.mobile-halal-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: linear-gradient(135deg, #0d7c3d, #15a852);
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: opacity 0.2s;
}
.mobile-halal-btn:hover {
    opacity: 0.88;
}
.mobile-halal-btn i {
    font-size: 13px;
}

/* Halal bar strip */
.mobile-halal-bar {
    background: linear-gradient(135deg, #0d7c3d, #15a852);
    flex-shrink: 0;
}
.mobile-halal-bar-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: background-color 0.2s;
}
.mobile-halal-bar-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
.mobile-halal-bar-link i:first-child {
    font-size: 18px;
}
.mobile-halal-bar-link span {
    flex: 1;
}
.mobile-halal-bar-link i:last-child {
    font-size: 11px;
    opacity: 0.75;
    transition: transform 0.3s ease;
}
.mobile-halal-bar-link:hover i:last-child {
    transform: translateX(4px);
}

/* Mobile nav list */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}
.mobile-nav-item > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.2s, color 0.2s;
}
.mobile-nav-item > a:hover,
.mobile-nav-item.has-dropdown.open > a {
    background-color: var(--color-bg-hover);
    color: var(--color-primary);
}
.mobile-nav-item > a i {
    font-size: 10px;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.mobile-nav-item.has-dropdown.open > a i {
    transform: rotate(180deg);
}
.mobile-nav-item.flash-sale > a {
    color: var(--color-red);
    font-weight: 700;
}

/* Mobile submenu accordion */
.mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background-color: #f8f9fa;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav-item.has-dropdown.open > .mobile-submenu {
    max-height: 600px;
}
.mobile-submenu li a {
    display: block;
    padding: 12px 20px 12px 38px;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-medium);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.2s, color 0.2s, padding-left 0.2s;
}
.mobile-submenu li a:hover {
    background-color: var(--color-bg-hover);
    color: var(--color-primary);
    padding-left: 46px;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 993px) {
    .main-nav,
    .mobile-nav-overlay {
        display: none !important;
    }
}

@media (max-width: 1200px) {
    .desktop-nav-container {
        padding: 0 20px;
    }
    .nav-item > a {
        padding: 12px 10px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    .submenu,
    .sub-submenu {
        display: none !important;
    }
    .mobile-menu-toggle,
    .mobile-search-toggle {
        display: block;
    }
    .header-container {
        position: relative;
        justify-content: flex-start;
        gap: 10px;
        padding: 0 16px;
    }
    /* Center logo between hamburger and icons */
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .logo img {
        height: 50px !important;
        width: 50px !important;
    }
    /* Search becomes dropdown */
    .search-bar {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-width: 100%;
        display: none;
        padding: 12px 15px;
        background-color: var(--color-white);
        border-top: 1px solid var(--color-border);
        box-shadow: var(--shadow-md);
        z-index: 50;
        border-radius: 0;
        border-left: none;
        border-right: none;
        border-bottom: none;
    }
    .search-bar.active {
        display: flex;
    }
    .search-bar input {
        flex: 1;
        padding: 14px 18px;
        border: 1px solid var(--color-border-input);
        border-right: none;
        border-radius: 6px 0 0 6px;
        font-size: 14px;
        background-color: var(--color-bg-light);
    }
    .search-bar .search-btn {
        padding: 0 18px;
        border-radius: 0 6px 6px 0;
    }
    .user-account .account-text {
        display: none;
    }
    .user-account > i {
        font-size: 26px;
    }
    .cart-icon i {
        font-size: 24px;
    }
    .header-right {
        gap: 16px;
        margin-left: auto;
    }
}
@media (max-width: 768px) {
    .header-right {
        gap: 12px;
    }
    .halal-btn span,
    .cart-action-btn span {
        display: none;
    }
    /* 75% width — dark overlay visible on right, close button accessible */
    .main-nav {
        width: 75vw;
        max-width: 380px;
    }
}
@media (max-width: 576px) {
    .top-bar-container {
        padding: 0 15px;
        font-size: 11px;
    }
.whatsapp-link span {
        display: inline;
    }
    .header-container {
        padding: 0 12px;
    }
    .logo img {
        height: 34px !important;
        width: 102px !important;
    }
    .user-account > i {
        font-size: 22px;
    }
    .cart-icon i {
        font-size: 22px;
    }
    .header-right {
        gap: 10px;
    }
    .main-nav {
        width: 75vw;
        max-width: 320px;
    }
    .mobile-nav-header {
        padding: 10px 14px;
    }
}
    }
}

/* ========== HERO BANNER ========== */
.hero-section {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background-color: var(--color-white);
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-swiper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.hero-slide {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-link {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-link:hover .hero-img {
    transform: scale(1.03);
}

/* Hero Pagination */
.hero-pagination {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    z-index: 10;
    text-align: center;
    padding: 20px 0;
    background-color: var(--color-white);
}

.hero-pagination .swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 2px;
    background-color: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-pagination .swiper-pagination-bullet-active {
    width: 50px;
    background-color: var(--color-primary);
}

/* Hero Navigation */
.hero-nav-prev,
.hero-nav-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.hero-nav-prev:hover,
.hero-nav-next:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
}

.hero-nav-prev {
    left: 20px;
}

.hero-nav-next {
    right: 20px;
}

.hero-nav-prev i,
.hero-nav-next i {
    font-size: 16px;
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .hero-slide {
        height: 450px;
    }
}

@media (max-width: 992px) {
    .hero-slide {
        height: 400px;
    }

    .hero-container {
        padding: 0 20px;
    }
}

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

    .hero-container {
        padding: 0 0;
    }

    .hero-slide {
        height: auto;
        /* aspect-ratio: 16/9; */
    }

    .hero-img {
        object-fit: contain;
    }

    .hero-swiper {
        border-radius: 0;
        box-shadow: none;
    }

    .hero-pagination {
        padding: 10px 0;
    }

    .hero-pagination .swiper-pagination-bullet {
        width: 25px;
        height: 3px;
    }

    .hero-pagination .swiper-pagination-bullet-active {
        width: 40px;
    }
}

.hero-nav-prev,
.hero-nav-next {
    width: 40px;
    height: 40px;
}

.hero-nav-prev {
    left: 10px;
}

.hero-nav-next {
    right: 10px;
}

/* ========== TOP CATEGORIES ========== */
.top-categories {
    padding: 50px 0;
    background-color: var(--color-white);
}

.categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.categories-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.title-line {
    flex: 1;
    max-width: 200px;
    height: 1px;
    background-color: var(--color-border);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 20px;
}

.category-card {
    display: block;
    text-decoration: none;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.category-img {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 12px;
}

.category-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.category-card:hover .category-img img {
    transform: scale(1.08);
}

/* ========== TOP CATEGORIES RESPONSIVE ========== */
@media (max-width: 1200px) {
    .categories-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 992px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .categories-title {
        font-size: 20px;
    }
}

@media (max-width: 768px) and (min-width: 577px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .categories-container {
        padding: 0 20px;
    }

    .categories-title {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .category-img {
        aspect-ratio: auto;
        overflow: hidden;
    }

    .category-img img {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .top-categories {
        padding: 30px 0;
    }

    .categories-container {
        padding: 0 15px;
    }

    .categories-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .title-line {
        max-width: 60px;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .category-card {
        border-radius: 8px;
    }

    .category-img {
        border-radius: 8px;
        aspect-ratio: auto;
        overflow: hidden;
    }

    .category-img img {
        position: relative;
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/* ========== SHOWROOM BANNER ========== */
.showroom-section {
    padding: 30px 0;
    background-color: var(--color-white);
}

.showroom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.showroom-link {
    display: block;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.showroom-link:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.showroom-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.showroom-link:hover .showroom-img {
    transform: scale(1.02);
}

/* Showroom Responsive */
@media (max-width: 992px) {
    .showroom-section {
        padding: 25px 0;
    }

    .showroom-container {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .showroom-section {
        padding: 20px 0;
    }

    .showroom-container {
        padding: 0 15px;
    }

    .showroom-link {
        border-radius: 8px;
    }

    .showroom-img {
        width: 100%;
        height: auto;
    }
}

/* ========== PRODUCTS SECTION ========== */
.products-section {
    padding: 50px 0;
    background-color: var(--color-white);
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.products-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: 40px;
    text-transform: uppercase;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    align-items: start;
}

/* Product Card */
.product-card {
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    border: 1px solid var(--color-border-light);
}

.product-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    transform: translateY(-3px);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: var(--pl-img-w, 100%);
    max-width: 100%;
    height: var(--pl-img-h, auto);
    display: block;
    object-fit: var(--pl-fit, contain);
    transition: opacity 0.4s ease, transform 0.4s ease;
    background-color: var(--color-bg-light);
    padding: 10px;
    box-sizing: border-box;
}

.product-image .img-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    padding: 10px;
    box-sizing: border-box;
    background-color: var(--color-bg-light);
}

.product-card:hover .product-image .img-default {
    opacity: 0;
}

.product-card:hover .product-image .img-hover {
    opacity: 1;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 2;
}

.product-info {
    padding: 10px 15px 14px 15px;
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-price del {
    color: var(--color-text-muted);
    font-size: 14px;
}

.product-price ins {
    color: var(--color-text-dark);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

/* ========== PRODUCTS RESPONSIVE ========== */
@media (max-width: 767px) {
    .product-image img.img-default {
        width: 100%;
        height: auto;
        aspect-ratio: var(--pl-img-w, 314) / var(--pl-img-h, 419);
        object-fit: var(--pl-fit, cover);
    }
}

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .products-title {
        font-size: 20px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .products-section {
        padding: 30px 0;
    }

    .products-container {
        padding: 0 15px;
    }

    .products-title {
        font-size: 18px;
        margin-bottom: 25px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        border-radius: 6px;
    }

    .product-info {
        padding: 10px 10px 10px;
    }

    .product-title {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .product-price del {
        font-size: 12px;
    }

    .product-price ins {
        font-size: 14px;
    }

    .product-badge {
        font-size: 10px;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }
}

/* ========== FOOTER ========== */
.site-footer {
    background-color: #111;
    color: var(--color-white);
    padding-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-columns {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.3fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #333;
}

.footer-logo img {
    height: 60px;
    /* filter: brightness(0) invert(1); */
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    margin-top: 15px;
    max-width: 250px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 16px;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-facebook {
    background-color: #1877f2;
}

.social-youtube {
    background-color: #ff0000;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-white);
    display: inline-block;
}

.footer-links {
    list-style: none;
    padding-left: 0 !important;
}

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

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-white);
}

.footer-subtitle {
    font-size: 14px;
    color: #ccc;
    margin-bottom: 5px;
}

.footer-phone {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
    transition: opacity 0.3s ease;
}

.footer-phone:hover {
    opacity: 0.8;
}

.footer-contact p {
    font-size: 13px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-contact i {
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #4caf50;
    color: var(--color-white);
    border: none;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.scroll-top:hover {
    background-color: #388e3c;
    transform: translateY(-3px);
}

.scroll-top.show {
    display: flex;
}

/* ========== SHOP PAGE ========== */
.shop-page {
    min-height: 80vh;
    background-color: var(--color-bg-light);
}

/* Breadcrumb */
.breadcrumb {
    grid-area: breadcrumb;
    padding: 0 0 12px 0;
    border-bottom: 1px solid var(--color-border);
}

.breadcrumb-container {
    font-size: 14px;
    color: var(--color-text-light);
}

.breadcrumb a {
    color: var(--color-text-light);
    transition: color 0.3s ease;
}

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

.breadcrumb .separator {
    margin: 0 10px;
    color: var(--color-text-muted);
}

.breadcrumb .current {
    color: var(--color-text-dark);
    font-weight: 500;
}

/* Single product page breadcrumb */
.product-detail-breadcrumb {
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}
.product-detail-breadcrumb .breadcrumb {
    border-bottom: none;
    padding: 0;
}
.product-detail-breadcrumb nav,
.product-detail-breadcrumb .woocommerce-breadcrumb {
    font-size: 14px;
    color: var(--color-text-light);
}
.product-detail-breadcrumb a {
    color: var(--color-text-light);
    transition: color 0.3s ease;
}
.product-detail-breadcrumb a:hover {
    color: var(--color-primary);
}

/* Single product description content */
.softro-description-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-medium);
    margin-bottom: 15px;
}


/* Shop Container */
.shop-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "breadcrumb breadcrumb"
        "sidebar   products";
    column-gap: 30px;
    row-gap: 30px;
    align-items: start;
}

/* Sidebar */
.shop-sidebar {
    grid-area: sidebar;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-section {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--color-border-light);
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 15px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-border);
}

/* Category List */
.category-list {
    list-style: none;
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--color-border) transparent;
}

.category-list::-webkit-scrollbar {
    width: 6px;
}

.category-list::-webkit-scrollbar-track {
    background: transparent;
}

.category-list::-webkit-scrollbar-thumb {
    background-color: var(--color-border);
    border-radius: 3px;
}

.category-list li {
    margin-bottom: 5px;
}

.category-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: var(--color-text-medium);
    font-size: 15px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.category-list a:hover {
    background-color: var(--color-bg-hover);
    color: var(--color-primary);
}

.category-list .bullet {
    width: 8px;
    height: 8px;
    background-color: var(--color-text-muted);
    border-radius: 50%;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.category-list a:hover .bullet {
    background-color: var(--color-primary);
}

/* Active category (AJAX filter) */
.category-list a.active {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.category-list a.active .bullet {
    background-color: var(--color-gold);
}

/* Shop AJAX loading state */
.shop-products.shop-loading {
    pointer-events: none;
    min-height: 300px;
}

/* Skeleton product cards (AJAX loading placeholder) */
.product-card.skeleton-card {
    pointer-events: none;
    border: 1px solid var(--color-border-light);
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-white);
}

.skeleton-card .skel-image {
    width: 100%;
    aspect-ratio: 3 / 4;
    background-color: #e0e0e0;
}

.skeleton-card .product-info {
    padding: 12px 15px 16px;
}

.skeleton-card .skel-line {
    height: 14px;
    border-radius: 7px;
    margin-bottom: 10px;
    background-color: #d6d6d6;
}

.skeleton-card .skel-title {
    width: 72%;
}

.skeleton-card .skel-price {
    width: 42%;
    margin-bottom: 0;
}

/* Shimmer sweep */
.skeleton-card .skel-image,
.skeleton-card .skel-line {
    position: relative;
    overflow: hidden;
}

.skeleton-card .skel-image::after,
.skeleton-card .skel-line::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
    animation: softroShimmer 1.4s ease-in-out infinite;
}

@keyframes softroShimmer {
    100% { transform: translateX(100%); }
}

@media (max-width: 576px) {
    .skeleton-card .product-info {
        padding: 10px 10px 12px;
    }

    .skeleton-card .skel-line {
        height: 12px;
        margin-bottom: 8px;
    }
}

.softro-shop-no-results {
    grid-column: 1 / -1;
    padding: 60px 0;
    text-align: center;
    font-size: 16px;
    color: var(--color-text-light);
}

/* New Products */
.new-products-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.new-product-item {
    display: flex;
    gap: 12px;
    padding: 8px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.new-product-item:hover {
    background-color: var(--color-bg-hover);
}

.new-product-thumb {
    width: 60px;
    height: 75px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.new-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.new-product-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.new-product-price {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-dark);
}

/* Shop Products */
.shop-products {
    grid-area: products;
    width: 100%;
}

.shop-products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Out of Stock Badge */
.product-badge.out-of-stock {
    background-color: rgba(0, 0, 0, 0.6);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 4px;
    white-space: nowrap;
}

/* Out of Stock Card - Shadow Blur */
.product-card.out-of-stock-card .product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.3) 100%);
    pointer-events: none;
}

.product-card.out-of-stock-card .product-image img {
    opacity: 0.85;
}

.product-card.out-of-stock-card:hover .product-image img {
    opacity: 0.85;
    transform: none;
}

/* ========== SHOP PAGE RESPONSIVE ========== */
@media (max-width: 1200px) {
    .shop-container {
        grid-template-columns: 250px 1fr;
        gap: 25px;
    }

    .shop-products .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .shop-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "breadcrumb"
            "products";
        padding: 20px;
    }

    .shop-sidebar {
        display: none;
    }

    .shop-products .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .shop-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .breadcrumb-container {
        padding: 0 15px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .shop-container {
        padding: 15px;
    }

    .shop-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-info {
        padding: 10px;
    }

    .product-title {
        font-size: 12px;
    }

    .product-price del {
        font-size: 11px;
    }

    .product-price ins {
        font-size: 13px;
    }

    .product-badge {
        font-size: 10px;
        padding: 4px 8px;
    }

    .sidebar-title {
        font-size: 16px;
    }

    .shop-top-bar {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

/* ========== SHOP TOP BAR ========== */
.shop-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.shop-top-bar .woocommerce-result-count {
    margin: 0;
    font-size: 14px;
    color: var(--color-text-medium);
}

.shop-top-bar .woocommerce-ordering {
    margin: 0;
}

.shop-top-bar .woocommerce-ordering select {
    padding: 8px 12px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: 14px;
    color: var(--color-text-dark);
    background-color: var(--color-white);
}

/* ========== PRODUCT CARD BUTTONS ========== */
.product-card-actions {
    margin-top: 12px;
}

.card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.card-btn:hover {
    background-color: var(--color-primary-hover);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.2);
}

.card-btn i {
    font-size: 12px;
}

/* In-button loading spinner (WooCommerce .loading state on card buttons) */
.card-btn.add_to_cart_button.loading {
    position: relative;
    color: transparent !important;
    pointer-events: none;
}

.card-btn.add_to_cart_button.loading i {
    visibility: hidden;
}

.card-btn.add_to_cart_button.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 18px;
    margin: -9px 0 0 -9px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: softroBtnSpin 0.6s linear infinite;
}

@keyframes softroBtnSpin {
    to { transform: rotate(360deg); }
}

/* Pre-order button */
.card-btn-preorder {
    background-color: #009688;
}

.card-btn-preorder:hover {
    background-color: #00796b;
    color: var(--color-white);
}

.card-btn-preorder i {
    animation: preorder-pulse 1.5s ease-in-out infinite;
}

@keyframes preorder-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Variable/Grouped product type */
.card-btn.ajax_add_to_cart.product_type_variable,
.card-btn.ajax_add_to_cart.product_type_grouped {
    background-color: #e67e22;
}

.card-btn.ajax_add_to_cart.product_type_variable:hover,
.card-btn.ajax_add_to_cart.product_type_grouped:hover {
    background-color: #d35400;
    color: var(--color-white);
}

/* External product */
.card-btn.ajax_add_to_cart.product_type_external {
    background-color: #8e44ad;
}

.card-btn.ajax_add_to_cart.product_type_external:hover {
    background-color: #7d3c98;
    color: var(--color-white);
}

/* View Cart (after add to cart) */
.card-btn-view-cart {
    background-color: #28a745;
}

.card-btn-view-cart:hover {
    background-color: #218838;
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

/* Hide WooCommerce's auto-appended "View cart" link on product cards
   (theme swaps the button itself to a green View Cart button instead) */
.product-card a.added_to_cart,
.products-grid .added_to_cart.wc-forward {
    display: none !important;
}

/* Read More (out of stock) */
.card-btn-read-more {
    background-color: #6c757d;
}

.card-btn-read-more:hover {
    background-color: #5a6268;
    color: var(--color-white);
}

/* ========== SHOP PAGINATION ========== */
.softro-pagination {
    margin-top: 40px;
    text-align: center;
}

.softro-pagination .page-numbers-list {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.softro-pagination .page-numbers-list li {
    display: inline-flex;
}

.softro-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--color-border);
    color: var(--color-text-medium);
    background-color: var(--color-white);
}

.softro-pagination .page-numbers:hover:not(.current):not(.dots) {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background-color: var(--color-bg-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 26, 46, 0.15);
}

.softro-pagination .page-numbers.current {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 15px rgba(26, 26, 46, 0.3);
    transform: translateY(-2px);
}

.softro-pagination .page-numbers.prev,
.softro-pagination .page-numbers.next {
    min-width: 48px;
    font-size: 14px;
    gap: 6px;
}

.softro-pagination .page-numbers.dots {
    border: none;
    min-width: auto;
    color: var(--color-text-muted);
    letter-spacing: 2px;
}

.softro-pagination .page-numbers.dots:hover {
    background: none;
    transform: none;
    box-shadow: none;
}

@media (max-width: 576px) {
    .softro-pagination .page-numbers-list {
        gap: 6px;
    }

    .softro-pagination .page-numbers {
        min-width: 38px;
        height: 38px;
        padding: 0 10px;
        font-size: 13px;
        border-radius: 8px;
    }

    .softro-pagination .page-numbers.prev,
    .softro-pagination .page-numbers.next {
        min-width: 42px;
    }
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-detail-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 30px;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Product Gallery */
.product-gallery {
    display: flex;
    gap: 15px;
}

.gallery-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-shrink: 0;
}

.thumb-item {
    width: 80px;
    height: 100px;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.thumb-item:hover,
.thumb-item.active {
    border-color: var(--color-primary);
}

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

.gallery-main {
    flex: 1;
    position: relative;
    background-color: var(--color-bg-light);
    border-radius: 12px;
    overflow: hidden;
}

.gallery-main img {
    width: 100%;
    height: auto;
    display: block;
}

.zoom-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background-color: rgba(0,0,0,0.5);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.zoom-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

/* Product Detail Info */
.product-detail-info {
    padding: 10px 0;
}

.product-detail-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 12px;
}

.stock-status {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.stock-status.in-stock {
    background-color: #e8f5e9;
    color: #2e7d32;
}

.stock-status.out-of-stock {
    background-color: #ffebee;
    color: #c62828;
}

.product-detail-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-detail-price del {
    font-size: 18px;
    color: var(--color-text-muted);
}

.product-detail-price ins {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-dark);
    text-decoration: none;
}

/* Product Options */
.product-options {
    margin-bottom: 20px;
}

.option-label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-dark);
    margin-bottom: 10px;
}

.size-options {
    display: flex;
    gap: 10px;
}

.size-btn {
    min-width: 50px;
    height: 42px;
    padding: 0 15px;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    background-color: var(--color-white);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.size-btn.active {
    border-color: var(--color-primary);
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* Brand */
.product-brand {
    margin-bottom: 25px;
    font-size: 15px;
}

.brand-label {
    color: var(--color-text-light);
}

.brand-name {
    color: var(--color-text-dark);
    font-weight: 500;
}

/* Quantity */
.product-quantity-section {
    margin-bottom: 20px;
}

.quantity-row {
    display: flex;
    gap: 20px;
    align-items: center;
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    overflow: hidden;
}

.qty-btn {
    width: 42px;
    height: 42px;
    border: none;
    background-color: var(--color-bg-light);
    color: var(--color-text-dark);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.qty-input {
    width: 60px;
    height: 42px;
    border: none;
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    outline: none;
}

.qty-input::-webkit-inner-spin-button,
.qty-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Buttons */
.btn-add-to-cart {
    flex: 1;
    height: 50px;
    padding: 0 25px !important;
    border: none;
    border-radius: 6px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-add-to-cart:hover {
    background-color: var(--color-primary-hover);
}

.btn-buy-now {
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 6px;
    background-color: #1a1a2e;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.btn-buy-now:hover {
    background-color: #2d2d4a;
}

/* ========== PRODUCT TABS ========== */
.product-tabs-section {
    border-top: 1px solid var(--color-border);
    padding-top: 40px;
}

.tabs-container {
    max-width: 100%;
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 2px solid var(--color-border);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 40px;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.tab-btn::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

.tab-btn:hover {
    color: var(--color-text-dark);
}

.tab-btn.active {
    color: var(--color-text-dark);
    font-weight: 600;
}

.tab-btn.active::after {
    background-color: var(--color-primary);
}

.tabs-content {
    min-height: 200px;
}

.tab-pane {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-pane p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-medium);
    margin-bottom: 15px;
}

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

.description-list li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text-medium);
}

.description-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.additional-info-table {
    width: 100%;
    border-collapse: collapse;
}

.additional-info-table th,
.additional-info-table td {
    padding: 12px 20px;
    text-align: left;
    font-size: 15px;
    border-bottom: 1px solid var(--color-border);
}

.additional-info-table th {
    width: 200px;
    font-weight: 600;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
}

.additional-info-table td {
    color: var(--color-text-medium);
}

/* ========== PRODUCT DETAIL RESPONSIVE ========== */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .product-gallery {
        flex-direction: row-reverse;
    }

    .gallery-thumbnails {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .thumb-item {
        width: 70px;
        height: 85px;
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .product-detail-page {
        padding: 20px 15px;
    }

    .product-detail-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .product-detail-price ins {
        font-size: 26px;
    }

    .product-detail-price del {
        font-size: 16px;
    }

    .size-btn {
        min-width: 45px;
        height: 38px;
        font-size: 13px;
    }

    .quantity-row {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .quantity-selector {
        justify-content: center;
    }

    .btn-add-to-cart {
        width: 100% !important;
        height: 50px !important;
        padding: 0 20px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        flex: none !important;
    }

    .btn-buy-now {
        width: 100% !important;
        height: 50px !important;
        padding: 0 20px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .additional-info-table th {
        width: 120px;
        font-size: 13px;
        padding: 10px 12px;
    }

    .additional-info-table td {
        font-size: 13px;
        padding: 10px 12px;
    }

    .product-tabs-section {
        padding-top: 30px;
    }

    .tabs-nav {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .product-detail-page {
        padding: 15px 12px;
    }

    .product-gallery {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .gallery-thumbnails {
        flex-direction: row;
        justify-content: center;
        gap: 8px;
    }

    .thumb-item {
        width: 60px;
        height: 70px;
    }

    .gallery-main {
        min-height: 280px;
        border-radius: 10px;
    }

    .gallery-main img {
        height: 280px;
        object-fit: cover;
    }

    .product-detail-title {
        font-size: 20px;
    }

    .product-detail-price ins {
        font-size: 24px;
    }

    .product-options {
        margin-bottom: 15px;
    }

    .option-label {
        font-size: 14px;
    }

    .size-options {
        flex-wrap: wrap;
        gap: 8px;
    }

    .size-btn {
        min-width: 42px;
        height: 36px;
        font-size: 12px;
        padding: 0 12px;
    }

    .product-brand {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .qty-btn {
        width: 38px;
        height: 38px;
    }

    .qty-input {
        width: 50px;
        height: 38px;
        font-size: 14px;
    }

    .btn-add-to-cart {
        width: 100% !important;
        height: 50px !important;
        padding: 0 20px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 10px !important;
        flex: none !important;
    }

    .btn-buy-now {
        width: 100% !important;
        height: 50px !important;
        padding: 0 20px !important;
        font-size: 16px !important;
        font-weight: 600 !important;
        border-radius: 8px !important;
    }

    .tabs-nav {
        display: flex;
        border-bottom: 2px solid var(--color-border);
    }

    .tab-btn {
        flex: 1;
        padding: 12px 10px;
        font-size: 13px;
        text-align: center;
        white-space: nowrap;
    }

    .tab-pane p {
        font-size: 14px;
        line-height: 1.7;
    }

    .description-list li {
        font-size: 14px;
        line-height: 1.7;
    }

    .additional-info-table {
        display: block;
    }

    .additional-info-table tbody {
        display: block;
    }

    .additional-info-table tr {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid var(--color-border);
    }

    .additional-info-table th,
    .additional-info-table td {
        width: 100%;
        padding: 10px 0;
    }

    .additional-info-table th {
        background-color: transparent;
        font-weight: 600;
        padding-bottom: 2px;
    }

    .additional-info-table td {
        padding-top: 2px;
        color: var(--color-text-dark);
    }
}

/* ========== FOOTER RESPONSIVE ========== */
@media (max-width: 1200px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding-top: 40px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-heading {
        display: block;
        text-align: center;
    }

    .footer-contact p {
        text-align: left;
    }

    .footer-phone {
        font-size: 20px;
    }

    .scroll-top {
        width: 42px;
        height: 42px;
        bottom: 20px;
        right: 20px;
        font-size: 16px;
    }
}

/* ========== HEADER ACTION BUTTONS ========== */
.header-action-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.header-action-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.header-action-btn span {
    transition: all 0.3s ease;
}

/* Shimmer overlay */
.header-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.header-action-btn:hover::before {
    left: 100%;
}

/* Halal Investment Button */
.halal-btn {
    background: linear-gradient(135deg, #0d7c3d, #15a852);
    color: #fff;
    padding: 10px 20px;
    font-size: 13px;
    box-shadow: 0 2px 12px rgba(13, 124, 61, 0.4);
    animation: halalBlink 1.5s ease-in-out infinite, halalPulse 2s ease-in-out infinite;
    border: 2px solid rgba(255, 215, 0, 0.5);
}

.halal-btn i {
    font-size: 16px;
    animation: iconSpin 4s ease-in-out infinite;
}

.halal-btn:hover {
    transform: translateY(-2px) scale(1.08);
    box-shadow: 0 6px 25px rgba(13, 124, 61, 0.6);
    border-color: rgba(255, 215, 0, 1);
}

.halal-btn:hover i {
    transform: rotate(-10deg) scale(1.2);
}

/* Cart Action Button */
.cart-action-btn {
    background: linear-gradient(135deg, #1a3a6b, #2563eb);
    color: #fff;
    box-shadow: 0 2px 10px rgba(37, 99, 235, 0.3);
}

.cart-action-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.cart-action-btn:hover i {
    transform: scale(1.2) rotate(5deg);
}

@keyframes halalPulse {
    0%, 100% {
        box-shadow: 0 2px 12px rgba(13, 124, 61, 0.4), 0 0 0 0 rgba(13, 124, 61, 0.3);
    }
    50% {
        box-shadow: 0 2px 20px rgba(13, 124, 61, 0.6), 0 0 0 6px rgba(13, 124, 61, 0.1);
    }
}

@keyframes halalBlink {
    0%, 100% {
        opacity: 1;
        border-color: rgba(255, 215, 0, 0.5);
    }
    50% {
        opacity: 0.85;
        border-color: rgba(255, 215, 0, 1);
    }
}

/* ========== STICKY HEADER ACTION BUTTONS ========== */
.sticky-action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.sticky-action-btn i {
    font-size: 12px;
}

/* Sticky Halal Button */
.sticky-halal-btn {
    background: linear-gradient(135deg, #0d7c3d, #15a852);
    color: #fff;
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 25px;
    animation: stickyHalalPulse 2s ease-in-out infinite;
}

.sticky-halal-btn i {
    font-size: 14px;
}

.sticky-halal-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(13, 124, 61, 0.4);
}

@keyframes stickyHalalPulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(13, 124, 61, 0.3);
    }
    50% {
        box-shadow: 0 2px 15px rgba(13, 124, 61, 0.5), 0 0 0 3px rgba(13, 124, 61, 0.15);
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .header-action-btn span {
        display: none;
    }

    .header-action-btn {
        padding: 8px 10px;
        border-radius: 50%;
    }

    .sticky-action-btn span {
        display: none;
    }

    .sticky-action-btn {
        padding: 8px 10px;
        border-radius: 50%;
    }
}

@media (max-width: 768px) {
    .header-action-btn {
        display: none;
    }

    .sticky-action-btn {
        display: none;
    }

    .mobile-halal-btn {
        display: none;
    }
}

@media (max-width: 576px) {
    .mobile-halal-btn {
        padding: 8px 14px;
        font-size: 11px;
    }

    .mobile-halal-btn i {
        font-size: 13px;
    }
}

/* ========== SETTINGS DROPDOWN RESPONSIVE ========== */
@media (max-width: 768px) {
    .settings-menu,
    .sticky-top-bar .settings-menu {
        min-width: 180px !important;
        max-width: calc(100vw - 24px) !important;
        right: 0 !important;
        left: auto !important;
    }
    .settings-menu li a,
    .sticky-top-bar .settings-menu li a {
        padding: 10px 12px !important;
        font-size: 13px !important;
    }
    .settings-menu li a i,
    .sticky-top-bar .settings-menu li a i,
    .settings-menu li a svg,
    .sticky-top-bar .settings-menu li a svg {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        font-size: 15px !important;
    }
}

@media (max-width: 576px) {
    .settings-menu,
    .sticky-top-bar .settings-menu {
        min-width: 165px !important;
        max-width: calc(100vw - 20px) !important;
    }
    .settings-btn,
    .sticky-top-bar .settings-btn {
        font-size: 11px !important;
        padding: 4px 0 !important;
    }
    .settings-btn i,
    .sticky-top-bar .settings-btn i {
        font-size: 9px !important;
    }
    .settings-menu li a i,
    .sticky-top-bar .settings-menu li a i,
    .settings-menu li a svg,
    .sticky-top-bar .settings-menu li a svg {
        width: 26px !important;
        height: 26px !important;
        min-width: 26px !important;
        font-size: 14px !important;
    }
}

/* ========== HEADER TWO (IFIC Modern Style) ========== */
.softro-header-two {
    --h2-green: #00843D;
    --h2-dark-green: #00612c;
    --h2-red: #DA291C;
    --h2-dark-red: #B82216;
    --h2-gold: #D4AF37;
}

/* ---- Utility classes (scoped under .softro-header-two) ---- */
.softro-header-two .d-flex { display: flex !important; }
.softro-header-two .d-inline-flex { display: inline-flex !important; }
.softro-header-two .d-block { display: block !important; }
.softro-header-two .d-none { display: none !important; }
.softro-header-two .align-items-center { align-items: center !important; }
.softro-header-two .align-items-start { align-items: flex-start !important; }
.softro-header-two .justify-content-between { justify-content: space-between !important; }
.softro-header-two .justify-content-center { justify-content: center !important; }
.softro-header-two .flex-nowrap { flex-wrap: nowrap !important; }
.softro-header-two .flex-shrink-0 { flex-shrink: 0 !important; }
.softro-header-two .flex-column { flex-direction: column !important; }
.softro-header-two .flex-grow-1 { flex-grow: 1 !important; }
.softro-header-two .gap-1 { gap: 0.25rem !important; }
.softro-header-two .gap-2 { gap: 0.5rem !important; }
.softro-header-two .gap-3 { gap: 1rem !important; }
.softro-header-two .gap-4 { gap: 1.5rem !important; }
.softro-header-two .gap-1\.5 { gap: 0.375rem !important; }
.softro-header-two .gap-2\.5 { gap: 0.625rem !important; }
.softro-header-two .ms-1 { margin-start: 0.25rem !important; }
.softro-header-two .ms-2 { margin-start: 0.5rem !important; }
.softro-header-two .ms-2\.5 { margin-start: 0.625rem !important; }
.softro-header-two .ms-3 { margin-start: 1rem !important; }
.softro-header-two .me-2 { margin-end: 0.5rem !important; }
.softro-header-two .mt-1 { margin-top: 0.25rem !important; }
.softro-header-two .mt-2 { margin-top: 0.5rem !important; }
.softro-header-two .mt-3 { margin-top: 1rem !important; }
.softro-header-two .mt-4 { margin-top: 1.5rem !important; }
.softro-header-two .mb-0 { margin-bottom: 0 !important; }
.softro-header-two .p-1 { padding: 0.25rem !important; }
.softro-header-two .p-2 { padding: 0.5rem !important; }
.softro-header-two .p-3 { padding: 1rem !important; }
.softro-header-two .px-1 { padding-left: 0.25rem !important; padding-right: 0.25rem !important; }
.softro-header-two .px-2 { padding-left: 0.5rem !important; padding-right: 0.5rem !important; }
.softro-header-two .px-2\.5 { padding-left: 0.625rem !important; padding-right: 0.625rem !important; }
.softro-header-two .px-3 { padding-left: 1rem !important; padding-right: 1rem !important; }
.softro-header-two .ps-1 { padding-left: 0.25rem !important; }
.softro-header-two .ps-2 { padding-left: 0.5rem !important; }
.softro-header-two .ps-3 { padding-left: 1rem !important; }
.softro-header-two .ps-5 { padding-left: 3rem !important; }
.softro-header-two .py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.softro-header-two .py-1\.5 { padding-top: 0.375rem !important; padding-bottom: 0.375rem !important; }
.softro-header-two .py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.softro-header-two .py-2\.5 { padding-top: 0.625rem !important; padding-bottom: 0.625rem !important; }
.softro-header-two .py-3 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.softro-header-two .pt-3 { padding-top: 1rem !important; }
.softro-header-two .border,
.softro-header-two .border-top,
.softro-header-two .border-bottom,
.softro-header-two .border-start,
.softro-header-two .border-end { border: 1px solid var(--color-border) !important; }
.softro-header-two .border-0 { border: 0 !important; }
.softro-header-two .border-start { border-top: 0 !important; border-bottom: 0 !important; border-right: 0 !important; }
.softro-header-two .border-top { border-top: 1px solid var(--color-border) !important; border-left: 0 !important; border-right: 0 !important; border-bottom: 0 !important; }
.softro-header-two .border-bottom { border-bottom: 1px solid var(--color-border) !important; border-left: 0 !important; border-right: 0 !important; border-top: 0 !important; }
.softro-header-two .bg-white { background-color: var(--color-white) !important; }
.softro-header-two .bg-light { background-color: var(--color-bg-light) !important; }
.softro-header-two .text-muted { color: var(--color-text-muted) !important; }
.softro-header-two .text-secondary { color: var(--color-text-medium) !important; }
.softro-header-two .text-success { color: var(--h2-green) !important; }
.softro-header-two .text-warning { color: #F59E0B !important; }
.softro-header-two .text-danger { color: var(--h2-red) !important; }
.softro-header-two .fw-bold { font-weight: 700 !important; }
.softro-header-two .fw-medium { font-weight: 500 !important; }
.softro-header-two .fw-normal { font-weight: 400 !important; }
.softro-header-two .text-uppercase { text-transform: uppercase !important; }
.softro-header-two .text-decoration-none { text-decoration: none !important; }
.softro-header-two .rounded { border-radius: 0.25rem !important; }
.softro-header-two .rounded-3 { border-radius: 0.5rem !important; }
.softro-header-two .rounded-4 { border-radius: 1rem !important; }
.softro-header-two .rounded-circle { border-radius: 50% !important; }
.softro-header-two .shadow-sm { box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }
.softro-header-two .position-relative { position: relative !important; }
.softro-header-two .position-absolute { position: absolute !important; }
.softro-header-two .top-50 { top: 50% !important; }
.softro-header-two .start-0 { left: 0 !important; }
.softro-header-two .translate-middle-y { transform: translateY(-50%) !important; }
.softro-header-two small { font-size: 0.875em !important; }
.softro-header-two .btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 400 !important;
    text-align: center !important;
    vertical-align: middle !important;
    cursor: pointer !important;
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    border: 1px solid transparent !important;
    border-radius: 0.25rem !important;
}
.softro-header-two .btn-light {
    background-color: var(--color-bg-light) !important;
    border-color: var(--color-border) !important;
    color: var(--color-text-dark) !important;
}
.softro-header-two .btn-sm {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.875rem !important;
}
.softro-header-two .btn-close {
    background: transparent !important;
    border: 0 !important;
    font-size: 1.2rem !important;
    cursor: pointer !important;
}
.softro-header-two .form-control {
    display: block !important;
    width: 100% !important;
    padding: 0.375rem 0.75rem !important;
    font-size: 1rem !important;
    line-height: 1.5 !important;
    border: 1px solid var(--color-border) !important;
    border-radius: 0.25rem !important;
    background-color: var(--color-white) !important;
}
.softro-header-two .form-control-sm {
    font-size: 0.875rem !important;
    padding: 0.25rem 0.5rem !important;
}
.softro-header-two .img-fluid { max-width: 100% !important; height: auto !important; }
.softro-header-two .text-center { text-align: center !important; }
.softro-header-two .btn-outline-secondary {
    background-color: transparent !important;
    border-color: var(--color-text-medium) !important;
    color: var(--color-text-dark) !important;
}
.softro-header-two .btn-outline-secondary:hover {
    background-color: var(--color-text-medium) !important;
    color: var(--color-white) !important;
}
.softro-header-two .mx-auto { margin-left: auto !important; margin-right: auto !important; }
.softro-header-two .w-100 { width: 100% !important; }

/* Responsive gap utilities */
@media (min-width: 768px) {
    .softro-header-two .gap-md-3 { gap: 1rem !important; }
    .softro-header-two .gap-md-4 { gap: 1.5rem !important; }
}
@media (min-width: 992px) {
    .softro-header-two .gap-lg-3 { gap: 1rem !important; }
}
@media (min-width: 1200px) {
    .softro-header-two .gap-xl-2 { gap: 0.5rem !important; }
}

/* ---- Display utilities at breakpoints ---- */
.softro-header-two .d-none.d-lg-flex { display: none !important; }
.softro-header-two .d-none.d-lg-block { display: none !important; }
.softro-header-two .d-none.d-md-inline-flex { display: none !important; }
.softro-header-two .d-none.d-md-flex { display: none !important; }
.softro-header-two .d-flex.d-lg-none { display: flex !important; }
.softro-header-two .d-inline-flex.d-lg-none { display: inline-flex !important; }
.softro-header-two .d-block.d-lg-none { display: block !important; }

@media (min-width: 992px) {
    .softro-header-two .d-none.d-lg-flex { display: flex !important; }
    .softro-header-two .d-none.d-lg-block { display: block !important; }
    .softro-header-two .d-flex.d-lg-none { display: none !important; }
    .softro-header-two .d-inline-flex.d-lg-none { display: none !important; }
    .softro-header-two .d-block.d-lg-none { display: none !important; }
}

@media (min-width: 768px) {
    .softro-header-two .d-none.d-md-inline-flex { display: inline-flex !important; }
    .softro-header-two .d-none.d-md-flex { display: flex !important; }
}

/* Top Bar (Header Two) */
.softro-header-two .top-bar {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border-light);
    font-size: 12px;
    padding: 6px 0;
}

.softro-header-two .top-bar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.softro-header-two .top-bar-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.softro-header-two .top-bar-links a {
    color: var(--color-text-medium);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.softro-header-two .top-bar-links a:hover {
    color: var(--h2-green);
}

.softro-header-two .social-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: var(--color-bg-light);
    color: var(--color-text-medium);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.softro-header-two .social-icon:hover {
    background-color: var(--h2-green);
    color: var(--color-white);
    transform: translateY(-1px);
}

/* Halal Investment Animated Button */
.softro-header-two .btn-halal-investment {
    position: relative;
    background: linear-gradient(135deg, var(--h2-green) 0%, var(--h2-dark-green) 100%);
    color: var(--color-white) !important;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 0 0 rgba(0, 132, 61, 0.4);
    animation: h2-halalGlow 2.5s infinite;
    overflow: hidden;
    transition: all 0.25s ease;
    border: none;
}

.softro-header-two .btn-halal-investment::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.35);
    transform: rotate(30deg);
    animation: h2-shimmer 3s infinite;
}

.softro-header-two .btn-halal-investment:hover {
    transform: scale(1.03);
    box-shadow: 0 4px 14px rgba(0, 132, 61, 0.35);
    background: linear-gradient(135deg, #009646 0%, #006f32 100%);
}

.softro-header-two .btn-halal-investment i.text-warning {
    color: #F59E0B !important;
}

@keyframes h2-halalGlow {
    0% { box-shadow: 0 0 0 0 rgba(0, 132, 61, 0.5); }
    70% { box-shadow: 0 0 0 8px rgba(0, 132, 61, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 132, 61, 0); }
}

@keyframes h2-shimmer {
    0% { left: -60%; }
    30% { left: 140%; }
    100% { left: 140%; }
}

.softro-header-two .top-search-input {
    font-size: 12px;
    border-radius: 8px;
    padding-left: 30px;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-light);
}

.softro-header-two .top-search-input:focus {
    box-shadow: 0 0 0 2px rgba(0, 132, 61, 0.2);
    border-color: var(--h2-green);
    background-color: var(--color-white);
}

/* Main Header (Header Two) */
.softro-header-two .main-header {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 100;
}

.softro-header-two .main-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
}

.softro-header-two .header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Desktop Nav (Header Two) */
.softro-header-two .header-nav {
    flex: 1;
    min-width: 0;
    overflow: visible;
}

.softro-header-two .header-nav .nav-list {
    display: flex;
    flex-wrap: nowrap;
    list-style: none;
    gap: 0;
    margin: 0;
    padding: 0;
    align-items: center;
}

.softro-header-two .header-nav .nav-item > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 14px 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.softro-header-two .header-nav .nav-item > a:hover {
    color: var(--h2-green);
}

.softro-header-two .header-nav .nav-item > a i {
    font-size: 9px;
    transition: transform 0.2s ease;
    color: #94a3b8;
}

/* Hover Dropdown Behavior (No Clicking Required) */
.softro-header-two .header-nav .nav-item.has-dropdown:hover > .submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

.softro-header-two .header-nav .nav-item.has-dropdown:hover > a i {
    transform: rotate(180deg);
    color: var(--h2-green);
}

.softro-header-two .header-nav .nav-item:first-child > a {
    padding-left: 0;
}

/* Submenu Dropdown */
.softro-header-two .header-nav .submenu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    min-width: 220px !important;
    background-color: var(--color-white) !important;
    list-style: none !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12) !important;
    border-top: 3px solid var(--h2-green) !important;
    border-radius: 12px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateY(-6px) !important;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease !important;
    z-index: 999 !important;
}

.softro-header-two .header-nav .submenu li {
    position: relative !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

.softro-header-two .header-nav .submenu li a {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--color-text-dark) !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: background-color 0.2s ease, color 0.2s ease, padding-left 0.2s ease !important;
}

.softro-header-two .header-nav .submenu li a:hover {
    background-color: var(--h2-green) !important;
    color: var(--color-white) !important;
    padding-left: 24px !important;
}

.softro-header-two .header-nav .submenu li a i {
    font-size: 8px !important;
    color: var(--color-text-light) !important;
    transition: transform 0.2s ease !important;
}

.softro-header-two .header-nav .submenu li.has-submenu:hover > a i {
    transform: translateX(3px);
}

.softro-header-two .header-nav .submenu li:hover > .sub-submenu,
.softro-header-two .header-nav .submenu li.has-submenu:hover > .sub-submenu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

/* Sub-submenu */
.softro-header-two .header-nav .sub-submenu {
    position: absolute !important;
    top: 0 !important;
    left: 100% !important;
    min-width: 200px !important;
    background-color: var(--color-white) !important;
    list-style: none !important;
    padding: 8px 0 !important;
    margin: 0 !important;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.12) !important;
    border-top: 3px solid var(--h2-green) !important;
    border-radius: 12px !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transform: translateX(-5px) !important;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease !important;
    z-index: 101 !important;
}

.softro-header-two .header-nav .sub-submenu li a {
    display: block !important;
    padding: 10px 20px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--color-text-dark) !important;
    border-left: 0 !important;
}

.softro-header-two .header-nav .sub-submenu li a:hover {
    background-color: var(--color-bg-hover-sub) !important;
    color: var(--h2-green) !important;
    padding-left: 24px !important;
}

/* Islamic Branding */
.softro-header-two .header-islamic {
    display: flex;
    align-items: center;
}

.softro-header-two .header-logo {
    flex-shrink: 0;
}

.softro-header-two .header-logo img {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    object-fit: contain;
    display: block;
}

.softro-header-two .header-islamic img {
    width: 120px !important;
    height: 40px !important;
    max-width: 120px !important;
    max-height: 40px !important;
    display: block;
    object-fit: contain;
}

/* Mobile Controls */
.softro-header-two .mobile-search-toggle-two,
.softro-header-two .mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--color-text-dark);
    padding: 5px;
}

/* Mobile Search Collapse */
.softro-header-two .mobile-search-collapse {
    position: absolute !important;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    display: none;
    padding: 12px 15px;
    background-color: var(--color-white);
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    z-index: 50;
}

.softro-header-two .mobile-search-collapse.active {
    display: block;
}

/* Mobile Nav Overlay */
.softro-header-two .mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.softro-header-two .mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Nav Slide-in */
.softro-header-two .main-nav.main-nav-two {
    position: fixed;
    top: 0;
    left: 0;
    width: 340px;
    max-width: 85vw;
    height: 100vh;
    background-color: var(--color-white);
    z-index: 1002;
    overflow-y: auto;
    overflow-x: hidden;
    transform: translateX(-100%);
    transition: transform 0.38s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
}

.softro-header-two .main-nav.main-nav-two.active {
    transform: translateX(0);
}

/* Mobile Nav Header */
.softro-header-two .mobile-nav-header {
    position: sticky;
    top: 0;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 2px solid var(--color-border);
    z-index: 10;
    gap: 10px;
    flex-shrink: 0;
}

.softro-header-two .mobile-nav-logo {
    flex-shrink: 0;
}

.softro-header-two .mobile-nav-logo img {
    width: 100px;
    height: 36px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.softro-header-two .mobile-nav-close {
    background: none;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-text-dark);
    flex-shrink: 0;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

.softro-header-two .mobile-nav-close:hover {
    background-color: var(--color-bg-hover);
    color: var(--h2-green);
    border-color: var(--h2-green);
}

/* Mobile Halal Banner */
.softro-header-two .main-nav.main-nav-two .p-3.rounded-4 {
    margin: 16px 16px 0;
}

/* Mobile Nav Social */
.softro-header-two .mobile-nav-social {
    padding: 12px 20px !important;
}

.softro-header-two .mobile-nav-social .social-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

/* Mobile Nav Top Links */
.softro-header-two .mobile-nav-top-links {
    padding: 0 10px 10px;
}

.softro-header-two .mobile-nav-top-links a {
    display: block !important;
    padding: 10px 16px !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    color: var(--color-text-dark) !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    transition: background-color 0.2s ease !important;
}

.softro-header-two .mobile-nav-top-links a:hover {
    background-color: var(--color-bg-hover) !important;
    color: var(--h2-green) !important;
}

/* Mobile Nav Menu Area */
.softro-header-two .mobile-nav-menu-area {
    padding: 0 16px;
}

.softro-header-two .mobile-nav-menu-area small {
    font-size: 11px !important;
    letter-spacing: 0.5px;
}

/* Mobile Nav List */
.softro-header-two .mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.softro-header-two .mobile-nav-item > a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.2s, color 0.2s;
}

.softro-header-two .mobile-nav-item > a:hover,
.softro-header-two .mobile-nav-item.has-dropdown.open > a {
    background-color: var(--color-bg-hover);
    color: var(--h2-green);
}

.softro-header-two .mobile-nav-item > a i {
    font-size: 10px;
    margin-left: auto;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.softro-header-two .mobile-nav-item.has-dropdown.open > a i {
    transform: rotate(180deg);
}

/* Mobile Submenu */
.softro-header-two .mobile-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    background-color: #f8f9fa;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.softro-header-two .mobile-nav-item.has-dropdown.open > .mobile-submenu {
    max-height: 600px;
}

.softro-header-two .mobile-submenu li a {
    display: block;
    padding: 12px 20px 12px 38px;
    font-size: 13px;
    font-weight: 400;
    color: var(--color-text-medium);
    text-decoration: none;
    border-bottom: 1px solid var(--color-border);
    transition: background-color 0.2s, color 0.2s, padding-left 0.2s;
}

.softro-header-two .mobile-submenu li a:hover {
    background-color: var(--color-bg-hover);
    color: var(--h2-green);
    padding-left: 46px;
}

/* Mobile Nav Footer */
.softro-header-two .main-nav.main-nav-two .border-top.mt-4 {
    margin-top: 16px !important;
    padding-top: 16px !important;
}

/* ========== HEADER TWO RESPONSIVE ========== */
@media (max-width: 1200px) {
    .softro-header-two .top-bar-container { padding: 0 16px; }
    .softro-header-two .header-container { padding: 0 16px; }
    .softro-header-two .header-nav .nav-item > a {
        padding: 14px 8px;
        font-size: 12px;
    }
    .softro-header-two .header-logo img {
        width: 46px !important;
        height: 46px !important;
        max-width: 46px !important;
        max-height: 46px !important;
    }
    .softro-header-two .header-islamic img {
        width: 110px !important;
        height: 36px !important;
    }
}

@media (max-width: 992px) {
    .softro-header-two .mobile-search-toggle-two,
    .softro-header-two .mobile-menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }
    .softro-header-two .header-nav { display: none !important; }
    .softro-header-two .header-islamic.d-none.d-lg-flex { display: none !important; }
    .softro-header-two .top-bar-links { gap: 8px; }
    .softro-header-two .top-bar-links a { font-size: 11px; font-weight: 600; }
    .softro-header-two .social-icon { width: 24px; height: 24px; font-size: 10px; }
    .softro-header-two .btn-halal-investment { font-size: 11px; padding: 4px 12px; }
    .softro-header-two .header-logo img {
        width: 46px !important;
        height: 46px !important;
        max-width: 46px !important;
        max-height: 46px !important;
    }
}

@media (max-width: 768px) {
    .softro-header-two .top-bar-links a { display: none; }
    .softro-header-two .top-bar-links { justify-content: center; }
    .softro-header-two .main-nav.main-nav-two {
        width: 75vw;
        max-width: 380px;
    }
    .softro-header-two .header-logo img {
        width: 46px !important;
        height: 46px !important;
        max-width: 46px !important;
        max-height: 46px !important;
    }
}

@media (max-width: 576px) {
    .softro-header-two .top-bar-container {
        padding: 0 12px;
        font-size: 11px;
    }
    .softro-header-two .header-container { padding: 0 12px; }
    .softro-header-two .main-nav.main-nav-two {
        width: 75vw;
        max-width: 320px;
    }
    .softro-header-two .mobile-nav-header { padding: 12px 16px; }
    .softro-header-two .mobile-nav-logo img {
        height: 34px !important;
        width: 102px !important;
    }
    .softro-header-two .header-logo img {
        width: 42px !important;
        height: 42px !important;
        max-width: 42px !important;
        max-height: 42px !important;
    }
    .softro-header-two .mobile-nav-social { padding: 10px 16px !important; }
    .softro-header-two .mobile-nav-menu-area { padding: 0 12px; }
}

.desktop-nav-container ul.nav-list{
    margin-bottom: 0px;
}


/*--------------------------------------------------------------
# Spacing Utilities (mt-/mb-/ml-/mr-/mx-/my-/m- and pt-/pb-/pl-/pr-/px-/py-/p-)
--------------------------------------------------------------*/
.m-0 { margin: 0; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.ml-0 { margin-left: 0; }
.mr-0 { margin-right: 0; }
.mx-0 { margin-left: 0; margin-right: 0; }
.my-0 { margin-top: 0; margin-bottom: 0; }
.p-0 { padding: 0; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.pl-0 { padding-left: 0; }
.pr-0 { padding-right: 0; }
.px-0 { padding-left: 0; padding-right: 0; }
.py-0 { padding-top: 0; padding-bottom: 0; }
.m-5 { margin: 5px; }
.mt-5 { margin-top: 5px; }
.mb-5 { margin-bottom: 5px; }
.ml-5 { margin-left: 5px; }
.mr-5 { margin-right: 5px; }
.mx-5 { margin-left: 5px; margin-right: 5px; }
.my-5 { margin-top: 5px; margin-bottom: 5px; }
.p-5 { padding: 5px; }
.pt-5 { padding-top: 5px; }
.pb-5 { padding-bottom: 5px; }
.pl-5 { padding-left: 5px; }
.pr-5 { padding-right: 5px; }
.px-5 { padding-left: 5px; padding-right: 5px; }
.py-5 { padding-top: 5px; padding-bottom: 5px; }
.m-10 { margin: 10px; }
.mt-10 { margin-top: 10px; }
.mb-10 { margin-bottom: 10px; }
.ml-10 { margin-left: 10px; }
.mr-10 { margin-right: 10px; }
.mx-10 { margin-left: 10px; margin-right: 10px; }
.my-10 { margin-top: 10px; margin-bottom: 10px; }
.p-10 { padding: 10px; }
.pt-10 { padding-top: 10px; }
.pb-10 { padding-bottom: 10px; }
.pl-10 { padding-left: 10px; }
.pr-10 { padding-right: 10px; }
.px-10 { padding-left: 10px; padding-right: 10px; }
.py-10 { padding-top: 10px; padding-bottom: 10px; }
.m-15 { margin: 15px; }
.mt-15 { margin-top: 15px; }
.mb-15 { margin-bottom: 15px; }
.ml-15 { margin-left: 15px; }
.mr-15 { margin-right: 15px; }
.mx-15 { margin-left: 15px; margin-right: 15px; }
.my-15 { margin-top: 15px; margin-bottom: 15px; }
.p-15 { padding: 15px; }
.pt-15 { padding-top: 15px; }
.pb-15 { padding-bottom: 15px; }
.pl-15 { padding-left: 15px; }
.pr-15 { padding-right: 15px; }
.px-15 { padding-left: 15px; padding-right: 15px; }
.py-15 { padding-top: 15px; padding-bottom: 15px; }
.m-20 { margin: 20px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.ml-20 { margin-left: 20px; }
.mr-20 { margin-right: 20px; }
.mx-20 { margin-left: 20px; margin-right: 20px; }
.my-20 { margin-top: 20px; margin-bottom: 20px; }
.p-20 { padding: 20px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }
.pl-20 { padding-left: 20px; }
.pr-20 { padding-right: 20px; }
.px-20 { padding-left: 20px; padding-right: 20px; }
.py-20 { padding-top: 20px; padding-bottom: 20px; }
.m-25 { margin: 25px; }
.mt-25 { margin-top: 25px; }
.mb-25 { margin-bottom: 25px; }
.ml-25 { margin-left: 25px; }
.mr-25 { margin-right: 25px; }
.mx-25 { margin-left: 25px; margin-right: 25px; }
.my-25 { margin-top: 25px; margin-bottom: 25px; }
.p-25 { padding: 25px; }
.pt-25 { padding-top: 25px; }
.pb-25 { padding-bottom: 25px; }
.pl-25 { padding-left: 25px; }
.pr-25 { padding-right: 25px; }
.px-25 { padding-left: 25px; padding-right: 25px; }
.py-25 { padding-top: 25px; padding-bottom: 25px; }
.m-30 { margin: 30px; }
.mt-30 { margin-top: 30px; }
.mb-30 { margin-bottom: 30px; }
.ml-30 { margin-left: 30px; }
.mr-30 { margin-right: 30px; }
.mx-30 { margin-left: 30px; margin-right: 30px; }
.my-30 { margin-top: 30px; margin-bottom: 30px; }
.p-30 { padding: 30px; }
.pt-30 { padding-top: 30px; }
.pb-30 { padding-bottom: 30px; }
.pl-30 { padding-left: 30px; }
.pr-30 { padding-right: 30px; }
.px-30 { padding-left: 30px; padding-right: 30px; }
.py-30 { padding-top: 30px; padding-bottom: 30px; }
.m-35 { margin: 35px; }
.mt-35 { margin-top: 35px; }
.mb-35 { margin-bottom: 35px; }
.ml-35 { margin-left: 35px; }
.mr-35 { margin-right: 35px; }
.mx-35 { margin-left: 35px; margin-right: 35px; }
.my-35 { margin-top: 35px; margin-bottom: 35px; }
.p-35 { padding: 35px; }
.pt-35 { padding-top: 35px; }
.pb-35 { padding-bottom: 35px; }
.pl-35 { padding-left: 35px; }
.pr-35 { padding-right: 35px; }
.px-35 { padding-left: 35px; padding-right: 35px; }
.py-35 { padding-top: 35px; padding-bottom: 35px; }
.m-40 { margin: 40px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
.ml-40 { margin-left: 40px; }
.mr-40 { margin-right: 40px; }
.mx-40 { margin-left: 40px; margin-right: 40px; }
.my-40 { margin-top: 40px; margin-bottom: 40px; }
.p-40 { padding: 40px; }
.pt-40 { padding-top: 40px; }
.pb-40 { padding-bottom: 40px; }
.pl-40 { padding-left: 40px; }
.pr-40 { padding-right: 40px; }
.px-40 { padding-left: 40px; padding-right: 40px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.m-45 { margin: 45px; }
.mt-45 { margin-top: 45px; }
.mb-45 { margin-bottom: 45px; }
.ml-45 { margin-left: 45px; }
.mr-45 { margin-right: 45px; }
.mx-45 { margin-left: 45px; margin-right: 45px; }
.my-45 { margin-top: 45px; margin-bottom: 45px; }
.p-45 { padding: 45px; }
.pt-45 { padding-top: 45px; }
.pb-45 { padding-bottom: 45px; }
.pl-45 { padding-left: 45px; }
.pr-45 { padding-right: 45px; }
.px-45 { padding-left: 45px; padding-right: 45px; }
.py-45 { padding-top: 45px; padding-bottom: 45px; }
.m-50 { margin: 50px; }
.mt-50 { margin-top: 50px; }
.mb-50 { margin-bottom: 50px; }
.ml-50 { margin-left: 50px; }
.mr-50 { margin-right: 50px; }
.mx-50 { margin-left: 50px; margin-right: 50px; }
.my-50 { margin-top: 50px; margin-bottom: 50px; }
.p-50 { padding: 50px; }
.pt-50 { padding-top: 50px; }
.pb-50 { padding-bottom: 50px; }
.pl-50 { padding-left: 50px; }
.pr-50 { padding-right: 50px; }
.px-50 { padding-left: 50px; padding-right: 50px; }
.py-50 { padding-top: 50px; padding-bottom: 50px; }
.m-55 { margin: 55px; }
.mt-55 { margin-top: 55px; }
.mb-55 { margin-bottom: 55px; }
.ml-55 { margin-left: 55px; }
.mr-55 { margin-right: 55px; }
.mx-55 { margin-left: 55px; margin-right: 55px; }
.my-55 { margin-top: 55px; margin-bottom: 55px; }
.p-55 { padding: 55px; }
.pt-55 { padding-top: 55px; }
.pb-55 { padding-bottom: 55px; }
.pl-55 { padding-left: 55px; }
.pr-55 { padding-right: 55px; }
.px-55 { padding-left: 55px; padding-right: 55px; }
.py-55 { padding-top: 55px; padding-bottom: 55px; }
.m-60 { margin: 60px; }
.mt-60 { margin-top: 60px; }
.mb-60 { margin-bottom: 60px; }
.ml-60 { margin-left: 60px; }
.mr-60 { margin-right: 60px; }
.mx-60 { margin-left: 60px; margin-right: 60px; }
.my-60 { margin-top: 60px; margin-bottom: 60px; }
.p-60 { padding: 60px; }
.pt-60 { padding-top: 60px; }
.pb-60 { padding-bottom: 60px; }
.pl-60 { padding-left: 60px; }
.pr-60 { padding-right: 60px; }
.px-60 { padding-left: 60px; padding-right: 60px; }
.py-60 { padding-top: 60px; padding-bottom: 60px; }
.m-65 { margin: 65px; }
.mt-65 { margin-top: 65px; }
.mb-65 { margin-bottom: 65px; }
.ml-65 { margin-left: 65px; }
.mr-65 { margin-right: 65px; }
.mx-65 { margin-left: 65px; margin-right: 65px; }
.my-65 { margin-top: 65px; margin-bottom: 65px; }
.p-65 { padding: 65px; }
.pt-65 { padding-top: 65px; }
.pb-65 { padding-bottom: 65px; }
.pl-65 { padding-left: 65px; }
.pr-65 { padding-right: 65px; }
.px-65 { padding-left: 65px; padding-right: 65px; }
.py-65 { padding-top: 65px; padding-bottom: 65px; }
.m-70 { margin: 70px; }
.mt-70 { margin-top: 70px; }
.mb-70 { margin-bottom: 70px; }
.ml-70 { margin-left: 70px; }
.mr-70 { margin-right: 70px; }
.mx-70 { margin-left: 70px; margin-right: 70px; }
.my-70 { margin-top: 70px; margin-bottom: 70px; }
.p-70 { padding: 70px; }
.pt-70 { padding-top: 70px; }
.pb-70 { padding-bottom: 70px; }
.pl-70 { padding-left: 70px; }
.pr-70 { padding-right: 70px; }
.px-70 { padding-left: 70px; padding-right: 70px; }
.py-70 { padding-top: 70px; padding-bottom: 70px; }
.m-75 { margin: 75px; }
.mt-75 { margin-top: 75px; }
.mb-75 { margin-bottom: 75px; }
.ml-75 { margin-left: 75px; }
.mr-75 { margin-right: 75px; }
.mx-75 { margin-left: 75px; margin-right: 75px; }
.my-75 { margin-top: 75px; margin-bottom: 75px; }
.p-75 { padding: 75px; }
.pt-75 { padding-top: 75px; }
.pb-75 { padding-bottom: 75px; }
.pl-75 { padding-left: 75px; }
.pr-75 { padding-right: 75px; }
.px-75 { padding-left: 75px; padding-right: 75px; }
.py-75 { padding-top: 75px; padding-bottom: 75px; }
.m-80 { margin: 80px; }
.mt-80 { margin-top: 80px; }
.mb-80 { margin-bottom: 80px; }
.ml-80 { margin-left: 80px; }
.mr-80 { margin-right: 80px; }
.mx-80 { margin-left: 80px; margin-right: 80px; }
.my-80 { margin-top: 80px; margin-bottom: 80px; }
.p-80 { padding: 80px; }
.pt-80 { padding-top: 80px; }
.pb-80 { padding-bottom: 80px; }
.pl-80 { padding-left: 80px; }
.pr-80 { padding-right: 80px; }
.px-80 { padding-left: 80px; padding-right: 80px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.m-85 { margin: 85px; }
.mt-85 { margin-top: 85px; }
.mb-85 { margin-bottom: 85px; }
.ml-85 { margin-left: 85px; }
.mr-85 { margin-right: 85px; }
.mx-85 { margin-left: 85px; margin-right: 85px; }
.my-85 { margin-top: 85px; margin-bottom: 85px; }
.p-85 { padding: 85px; }
.pt-85 { padding-top: 85px; }
.pb-85 { padding-bottom: 85px; }
.pl-85 { padding-left: 85px; }
.pr-85 { padding-right: 85px; }
.px-85 { padding-left: 85px; padding-right: 85px; }
.py-85 { padding-top: 85px; padding-bottom: 85px; }
.m-90 { margin: 90px; }
.mt-90 { margin-top: 90px; }
.mb-90 { margin-bottom: 90px; }
.ml-90 { margin-left: 90px; }
.mr-90 { margin-right: 90px; }
.mx-90 { margin-left: 90px; margin-right: 90px; }
.my-90 { margin-top: 90px; margin-bottom: 90px; }
.p-90 { padding: 90px; }
.pt-90 { padding-top: 90px; }
.pb-90 { padding-bottom: 90px; }
.pl-90 { padding-left: 90px; }
.pr-90 { padding-right: 90px; }
.px-90 { padding-left: 90px; padding-right: 90px; }
.py-90 { padding-top: 90px; padding-bottom: 90px; }
.m-95 { margin: 95px; }
.mt-95 { margin-top: 95px; }
.mb-95 { margin-bottom: 95px; }
.ml-95 { margin-left: 95px; }
.mr-95 { margin-right: 95px; }
.mx-95 { margin-left: 95px; margin-right: 95px; }
.my-95 { margin-top: 95px; margin-bottom: 95px; }
.p-95 { padding: 95px; }
.pt-95 { padding-top: 95px; }
.pb-95 { padding-bottom: 95px; }
.pl-95 { padding-left: 95px; }
.pr-95 { padding-right: 95px; }
.px-95 { padding-left: 95px; padding-right: 95px; }
.py-95 { padding-top: 95px; padding-bottom: 95px; }
.m-100 { margin: 100px; }
.mt-100 { margin-top: 100px; }
.mb-100 { margin-bottom: 100px; }
.ml-100 { margin-left: 100px; }
.mr-100 { margin-right: 100px; }
.mx-100 { margin-left: 100px; margin-right: 100px; }
.my-100 { margin-top: 100px; margin-bottom: 100px; }
.p-100 { padding: 100px; }
.pt-100 { padding-top: 100px; }
.pb-100 { padding-bottom: 100px; }
.pl-100 { padding-left: 100px; }
.pr-100 { padding-right: 100px; }
.px-100 { padding-left: 100px; padding-right: 100px; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }
.m-105 { margin: 105px; }
.mt-105 { margin-top: 105px; }
.mb-105 { margin-bottom: 105px; }
.ml-105 { margin-left: 105px; }
.mr-105 { margin-right: 105px; }
.mx-105 { margin-left: 105px; margin-right: 105px; }
.my-105 { margin-top: 105px; margin-bottom: 105px; }
.p-105 { padding: 105px; }
.pt-105 { padding-top: 105px; }
.pb-105 { padding-bottom: 105px; }
.pl-105 { padding-left: 105px; }
.pr-105 { padding-right: 105px; }
.px-105 { padding-left: 105px; padding-right: 105px; }
.py-105 { padding-top: 105px; padding-bottom: 105px; }
.m-110 { margin: 110px; }
.mt-110 { margin-top: 110px; }
.mb-110 { margin-bottom: 110px; }
.ml-110 { margin-left: 110px; }
.mr-110 { margin-right: 110px; }
.mx-110 { margin-left: 110px; margin-right: 110px; }
.my-110 { margin-top: 110px; margin-bottom: 110px; }
.p-110 { padding: 110px; }
.pt-110 { padding-top: 110px; }
.pb-110 { padding-bottom: 110px; }
.pl-110 { padding-left: 110px; }
.pr-110 { padding-right: 110px; }
.px-110 { padding-left: 110px; padding-right: 110px; }
.py-110 { padding-top: 110px; padding-bottom: 110px; }
.m-115 { margin: 115px; }
.mt-115 { margin-top: 115px; }
.mb-115 { margin-bottom: 115px; }
.ml-115 { margin-left: 115px; }
.mr-115 { margin-right: 115px; }
.mx-115 { margin-left: 115px; margin-right: 115px; }
.my-115 { margin-top: 115px; margin-bottom: 115px; }
.p-115 { padding: 115px; }
.pt-115 { padding-top: 115px; }
.pb-115 { padding-bottom: 115px; }
.pl-115 { padding-left: 115px; }
.pr-115 { padding-right: 115px; }
.px-115 { padding-left: 115px; padding-right: 115px; }
.py-115 { padding-top: 115px; padding-bottom: 115px; }
.m-120 { margin: 120px; }
.mt-120 { margin-top: 120px; }
.mb-120 { margin-bottom: 120px; }
.ml-120 { margin-left: 120px; }
.mr-120 { margin-right: 120px; }
.mx-120 { margin-left: 120px; margin-right: 120px; }
.my-120 { margin-top: 120px; margin-bottom: 120px; }
.p-120 { padding: 120px; }
.pt-120 { padding-top: 120px; }
.pb-120 { padding-bottom: 120px; }
.pl-120 { padding-left: 120px; }
.pr-120 { padding-right: 120px; }
.px-120 { padding-left: 120px; padding-right: 120px; }
.py-120 { padding-top: 120px; padding-bottom: 120px; }
.m-125 { margin: 125px; }
.mt-125 { margin-top: 125px; }
.mb-125 { margin-bottom: 125px; }
.ml-125 { margin-left: 125px; }
.mr-125 { margin-right: 125px; }
.mx-125 { margin-left: 125px; margin-right: 125px; }
.my-125 { margin-top: 125px; margin-bottom: 125px; }
.p-125 { padding: 125px; }
.pt-125 { padding-top: 125px; }
.pb-125 { padding-bottom: 125px; }
.pl-125 { padding-left: 125px; }
.pr-125 { padding-right: 125px; }
.px-125 { padding-left: 125px; padding-right: 125px; }
.py-125 { padding-top: 125px; padding-bottom: 125px; }
.m-130 { margin: 130px; }
.mt-130 { margin-top: 130px; }
.mb-130 { margin-bottom: 130px; }
.ml-130 { margin-left: 130px; }
.mr-130 { margin-right: 130px; }
.mx-130 { margin-left: 130px; margin-right: 130px; }
.my-130 { margin-top: 130px; margin-bottom: 130px; }
.p-130 { padding: 130px; }
.pt-130 { padding-top: 130px; }
.pb-130 { padding-bottom: 130px; }
.pl-130 { padding-left: 130px; }
.pr-130 { padding-right: 130px; }
.px-130 { padding-left: 130px; padding-right: 130px; }
.py-130 { padding-top: 130px; padding-bottom: 130px; }
.m-135 { margin: 135px; }
.mt-135 { margin-top: 135px; }
.mb-135 { margin-bottom: 135px; }
.ml-135 { margin-left: 135px; }
.mr-135 { margin-right: 135px; }
.mx-135 { margin-left: 135px; margin-right: 135px; }
.my-135 { margin-top: 135px; margin-bottom: 135px; }
.p-135 { padding: 135px; }
.pt-135 { padding-top: 135px; }
.pb-135 { padding-bottom: 135px; }
.pl-135 { padding-left: 135px; }
.pr-135 { padding-right: 135px; }
.px-135 { padding-left: 135px; padding-right: 135px; }
.py-135 { padding-top: 135px; padding-bottom: 135px; }
.m-140 { margin: 140px; }
.mt-140 { margin-top: 140px; }
.mb-140 { margin-bottom: 140px; }
.ml-140 { margin-left: 140px; }
.mr-140 { margin-right: 140px; }
.mx-140 { margin-left: 140px; margin-right: 140px; }
.my-140 { margin-top: 140px; margin-bottom: 140px; }
.p-140 { padding: 140px; }
.pt-140 { padding-top: 140px; }
.pb-140 { padding-bottom: 140px; }
.pl-140 { padding-left: 140px; }
.pr-140 { padding-right: 140px; }
.px-140 { padding-left: 140px; padding-right: 140px; }
.py-140 { padding-top: 140px; padding-bottom: 140px; }
.m-145 { margin: 145px; }
.mt-145 { margin-top: 145px; }
.mb-145 { margin-bottom: 145px; }
.ml-145 { margin-left: 145px; }
.mr-145 { margin-right: 145px; }
.mx-145 { margin-left: 145px; margin-right: 145px; }
.my-145 { margin-top: 145px; margin-bottom: 145px; }
.p-145 { padding: 145px; }
.pt-145 { padding-top: 145px; }
.pb-145 { padding-bottom: 145px; }
.pl-145 { padding-left: 145px; }
.pr-145 { padding-right: 145px; }
.px-145 { padding-left: 145px; padding-right: 145px; }
.py-145 { padding-top: 145px; padding-bottom: 145px; }
.m-150 { margin: 150px; }
.mt-150 { margin-top: 150px; }
.mb-150 { margin-bottom: 150px; }
.ml-150 { margin-left: 150px; }
.mr-150 { margin-right: 150px; }
.mx-150 { margin-left: 150px; margin-right: 150px; }
.my-150 { margin-top: 150px; margin-bottom: 150px; }
.p-150 { padding: 150px; }
.pt-150 { padding-top: 150px; }
.pb-150 { padding-bottom: 150px; }
.pl-150 { padding-left: 150px; }
.pr-150 { padding-right: 150px; }
.px-150 { padding-left: 150px; padding-right: 150px; }
.py-150 { padding-top: 150px; padding-bottom: 150px; }
.m-155 { margin: 155px; }
.mt-155 { margin-top: 155px; }
.mb-155 { margin-bottom: 155px; }
.ml-155 { margin-left: 155px; }
.mr-155 { margin-right: 155px; }
.mx-155 { margin-left: 155px; margin-right: 155px; }
.my-155 { margin-top: 155px; margin-bottom: 155px; }
.p-155 { padding: 155px; }
.pt-155 { padding-top: 155px; }
.pb-155 { padding-bottom: 155px; }
.pl-155 { padding-left: 155px; }
.pr-155 { padding-right: 155px; }
.px-155 { padding-left: 155px; padding-right: 155px; }
.py-155 { padding-top: 155px; padding-bottom: 155px; }
.m-160 { margin: 160px; }
.mt-160 { margin-top: 160px; }
.mb-160 { margin-bottom: 160px; }
.ml-160 { margin-left: 160px; }
.mr-160 { margin-right: 160px; }
.mx-160 { margin-left: 160px; margin-right: 160px; }
.my-160 { margin-top: 160px; margin-bottom: 160px; }
.p-160 { padding: 160px; }
.pt-160 { padding-top: 160px; }
.pb-160 { padding-bottom: 160px; }
.pl-160 { padding-left: 160px; }
.pr-160 { padding-right: 160px; }
.px-160 { padding-left: 160px; padding-right: 160px; }
.py-160 { padding-top: 160px; padding-bottom: 160px; }
.m-165 { margin: 165px; }
.mt-165 { margin-top: 165px; }
.mb-165 { margin-bottom: 165px; }
.ml-165 { margin-left: 165px; }
.mr-165 { margin-right: 165px; }
.mx-165 { margin-left: 165px; margin-right: 165px; }
.my-165 { margin-top: 165px; margin-bottom: 165px; }
.p-165 { padding: 165px; }
.pt-165 { padding-top: 165px; }
.pb-165 { padding-bottom: 165px; }
.pl-165 { padding-left: 165px; }
.pr-165 { padding-right: 165px; }
.px-165 { padding-left: 165px; padding-right: 165px; }
.py-165 { padding-top: 165px; padding-bottom: 165px; }
.m-170 { margin: 170px; }
.mt-170 { margin-top: 170px; }
.mb-170 { margin-bottom: 170px; }
.ml-170 { margin-left: 170px; }
.mr-170 { margin-right: 170px; }
.mx-170 { margin-left: 170px; margin-right: 170px; }
.my-170 { margin-top: 170px; margin-bottom: 170px; }
.p-170 { padding: 170px; }
.pt-170 { padding-top: 170px; }
.pb-170 { padding-bottom: 170px; }
.pl-170 { padding-left: 170px; }
.pr-170 { padding-right: 170px; }
.px-170 { padding-left: 170px; padding-right: 170px; }
.py-170 { padding-top: 170px; padding-bottom: 170px; }
.m-175 { margin: 175px; }
.mt-175 { margin-top: 175px; }
.mb-175 { margin-bottom: 175px; }
.ml-175 { margin-left: 175px; }
.mr-175 { margin-right: 175px; }
.mx-175 { margin-left: 175px; margin-right: 175px; }
.my-175 { margin-top: 175px; margin-bottom: 175px; }
.p-175 { padding: 175px; }
.pt-175 { padding-top: 175px; }
.pb-175 { padding-bottom: 175px; }
.pl-175 { padding-left: 175px; }
.pr-175 { padding-right: 175px; }
.px-175 { padding-left: 175px; padding-right: 175px; }
.py-175 { padding-top: 175px; padding-bottom: 175px; }
.m-180 { margin: 180px; }
.mt-180 { margin-top: 180px; }
.mb-180 { margin-bottom: 180px; }
.ml-180 { margin-left: 180px; }
.mr-180 { margin-right: 180px; }
.mx-180 { margin-left: 180px; margin-right: 180px; }
.my-180 { margin-top: 180px; margin-bottom: 180px; }
.p-180 { padding: 180px; }
.pt-180 { padding-top: 180px; }
.pb-180 { padding-bottom: 180px; }
.pl-180 { padding-left: 180px; }
.pr-180 { padding-right: 180px; }
.px-180 { padding-left: 180px; padding-right: 180px; }
.py-180 { padding-top: 180px; padding-bottom: 180px; }
.m-185 { margin: 185px; }
.mt-185 { margin-top: 185px; }
.mb-185 { margin-bottom: 185px; }
.ml-185 { margin-left: 185px; }
.mr-185 { margin-right: 185px; }
.mx-185 { margin-left: 185px; margin-right: 185px; }
.my-185 { margin-top: 185px; margin-bottom: 185px; }
.p-185 { padding: 185px; }
.pt-185 { padding-top: 185px; }
.pb-185 { padding-bottom: 185px; }
.pl-185 { padding-left: 185px; }
.pr-185 { padding-right: 185px; }
.px-185 { padding-left: 185px; padding-right: 185px; }
.py-185 { padding-top: 185px; padding-bottom: 185px; }
.m-190 { margin: 190px; }
.mt-190 { margin-top: 190px; }
.mb-190 { margin-bottom: 190px; }
.ml-190 { margin-left: 190px; }
.mr-190 { margin-right: 190px; }
.mx-190 { margin-left: 190px; margin-right: 190px; }
.my-190 { margin-top: 190px; margin-bottom: 190px; }
.p-190 { padding: 190px; }
.pt-190 { padding-top: 190px; }
.pb-190 { padding-bottom: 190px; }
.pl-190 { padding-left: 190px; }
.pr-190 { padding-right: 190px; }
.px-190 { padding-left: 190px; padding-right: 190px; }
.py-190 { padding-top: 190px; padding-bottom: 190px; }
.m-195 { margin: 195px; }
.mt-195 { margin-top: 195px; }
.mb-195 { margin-bottom: 195px; }
.ml-195 { margin-left: 195px; }
.mr-195 { margin-right: 195px; }
.mx-195 { margin-left: 195px; margin-right: 195px; }
.my-195 { margin-top: 195px; margin-bottom: 195px; }
.p-195 { padding: 195px; }
.pt-195 { padding-top: 195px; }
.pb-195 { padding-bottom: 195px; }
.pl-195 { padding-left: 195px; }
.pr-195 { padding-right: 195px; }
.px-195 { padding-left: 195px; padding-right: 195px; }
.py-195 { padding-top: 195px; padding-bottom: 195px; }
.m-200 { margin: 200px; }
.mt-200 { margin-top: 200px; }
.mb-200 { margin-bottom: 200px; }
.ml-200 { margin-left: 200px; }
.mr-200 { margin-right: 200px; }
.mx-200 { margin-left: 200px; margin-right: 200px; }
.my-200 { margin-top: 200px; margin-bottom: 200px; }
.p-200 { padding: 200px; }
.pt-200 { padding-top: 200px; }
.pb-200 { padding-bottom: 200px; }
.pl-200 { padding-left: 200px; }
.pr-200 { padding-right: 200px; }
.px-200 { padding-left: 200px; padding-right: 200px; }
.py-200 { padding-top: 200px; padding-bottom: 200px; }

/* ========== UTILITY CLASSES RESPONSIVE ========== */
@media (max-width: 767px) {
    .mt-120 { margin-top: 60px; }
    .mb-120 { margin-bottom: 60px; }
}

/* ========== FLOATING HALAL INVESTMENT BUTTON (mobile only) ========== */
.softro-floating-halal {
    display: none;
}

@media (max-width: 767px) {
    .softro-floating-halal {
        position: fixed;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        z-index: 9990;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        padding: 16px 9px;
        border-radius: 14px 0 0 14px;
        background: linear-gradient(180deg, #16a34a 0%, #15803d 100%);
        color: #fff;
        text-decoration: none;
        opacity: 0.45;
        box-shadow: -4px 6px 18px rgba(22, 163, 74, 0.35);
        transition: opacity 0.3s ease, transform 0.3s ease;
        animation: sfhSlideIn 0.6s ease 0.4s backwards, sfhGlow 2.6s ease-in-out infinite;
        overflow: hidden;
    }

    /* Shine sweep */
    .softro-floating-halal::after {
        content: '';
        position: absolute;
        top: -20%;
        left: -80%;
        width: 60%;
        height: 140%;
        transform: skewX(-20deg);
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
        animation: sfhShine 3.2s ease-in-out infinite;
    }

    .softro-floating-halal:hover,
    .softro-floating-halal:focus,
    .softro-floating-halal:active {
        opacity: 1;
        transform: translateY(-50%) translateX(-3px);
    }

    .sfh-icon {
        display: grid;
        place-items: center;
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.18);
        font-size: 14px;
    }

    .sfh-text {
        writing-mode: vertical-rl;
        text-orientation: mixed;
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        white-space: nowrap;
    }

    @keyframes sfhSlideIn {
        from {
            opacity: 0;
            transform: translateY(-50%) translateX(70px);
        }
        to {
            opacity: 0.45;
            transform: translateY(-50%) translateX(0);
        }
    }

    @keyframes sfhGlow {
        0%, 100% {
            box-shadow: -4px 6px 18px rgba(22, 163, 74, 0.35);
        }
        50% {
            box-shadow: -4px 6px 26px rgba(22, 163, 74, 0.7);
        }
    }

    @keyframes sfhShine {
        0%, 55% {
            left: -80%;
        }
        85%, 100% {
            left: 160%;
        }
    }
}

