/* background: linear-gradient(180deg, #3E2723 0%, #2C1810 40%, #1A0E08 100%); */
.about p{
            text-align:justify;
        }


.brand-logo { height: 50px; width: auto; object-fit: contain;margin-left: -30px; }
        .brand-tagline {
            font-family: 'Roboto', sans-serif;
            font-size: 0.5rem;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 1px;
            line-height: 1;
            display: block;
        }
        @media (min-width: 992px) {
            .brand-logo { height: 48px; }
            .brand-tagline { font-size: 0.55rem; letter-spacing: 2.5px; margin-top: 2px; }
        }
        .brand-logo-oc { height: 40px; width: auto; object-fit: contain; }

        /* ═══ MOBILE NAV BUTTONS ROW ═══ */
        .mobile-nav-buttons {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        .mobile-search-btn {
            background: none;
            border: 1.5px solid rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.75);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.25s;
            font-size: 0.8rem;
            padding: 0;
            flex-shrink: 0;
        }
        .mobile-search-btn:hover,
        .mobile-search-btn.active {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.5);
            color: #fff;
        }

        /* ═══ MOBILE SEARCH BAR (slides down below navbar) ═══ */
        .mobile-search-bar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1060;
            background: #1a1410;
            transform: translateY(-100%);
            transition: transform 0.35s cubic-bezier(0.23, 1, 0.32, 1);
            padding: 0;
        }
        .mobile-search-bar.show {
            transform: translateY(0);
        }
        .mobile-search-inner {
            display: flex;
            align-items: center;
            padding: 0.65rem 1rem;
            gap: 0.6rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }
        .mobile-search-back {
            background: none;
            border: none;
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.85rem;
            cursor: pointer;
            padding: 0.5rem;
            flex-shrink: 0;
            transition: color 0.2s;
        }
        .mobile-search-back:hover { color: #D4A574; }
        .mobile-search-field {
            flex: 1;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            transition: border-color 0.25s;
        }
        .mobile-search-field:focus-within {
            border-color: rgba(212, 165, 116, 0.4);
        }
        .mobile-search-field i {
            color: rgba(212, 165, 116, 0.5);
            padding: 0 0 0 0.85rem;
            font-size: 0.8rem;
            flex-shrink: 0;
        }
        .mobile-search-field input {
            flex: 1;
            border: none;
            background: transparent;
            padding: 0.65rem 0.75rem;
            font-family: 'Roboto', sans-serif;
            font-size: 0.9rem;
            color: #fff;
            outline: none;
        }
        .mobile-search-field input::placeholder {
            color: rgba(212, 165, 116, 0.35);
        }
        .mobile-search-field button {
            background: none;
            border: none;
            color: rgba(212, 165, 116, 0.5);
            padding: 0.65rem 0.85rem;
            cursor: pointer;
            font-size: 0.85rem;
            transition: color 0.2s;
        }
        .mobile-search-field button:hover { color: #D4A574; }

        /* Mobile search results */
        .mobile-search-results {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
            background: rgba(0, 0, 0, 0.2);
        }
        .mobile-search-results.has-results {
            max-height: 70vh;
            overflow-y: auto;
            scrollbar-width: thin;
            scrollbar-color: rgba(212, 165, 116, 0.2) transparent;
        }
        .mobile-search-results::-webkit-scrollbar { width: 4px; }
        .mobile-search-results::-webkit-scrollbar-thumb { background: rgba(212, 165, 116, 0.2); border-radius: 4px; }
        .mobile-search-results a {
            display: flex;
            align-items: center;
            padding: 0.7rem 1rem;
            text-decoration: none;
            transition: background 0.15s;
            border-bottom: 1px solid rgba(255, 255, 255, 0.04);
        }
        .mobile-search-results a:last-child { border-bottom: none; }
        .mobile-search-results a:hover { background: rgba(212, 165, 116, 0.08); }
        .mobile-search-results img {
            width: 42px;
            height: 42px;
            border-radius: 8px;
            object-fit: cover;
            margin-right: 0.75rem;
            flex-shrink: 0;
            background: rgba(0, 0, 0, 0.3);
        }
        .mobile-search-result-name {
            font-family: 'Roboto', sans-serif;
            font-size: 0.88rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.75);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .mobile-search-results a:hover .mobile-search-result-name { color: #D4A574; }
        .mobile-search-result-cat {
            font-size: 0.7rem;
            color: rgba(212, 165, 116, 0.4);
            margin-top: 2px;
        }
        .mobile-search-empty {
            padding: 1.25rem 1rem;
            text-align: center;
            color: rgba(212, 165, 116, 0.3);
            font-size: 0.82rem;
        }
        .mobile-search-empty i {
            display: block;
            font-size: 1.3rem;
            margin-bottom: 0.4rem;
        }
        .mobile-search-viewall {
            display: block;
            text-align: center;
            padding: 0.75rem;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.78rem;
            font-weight: 600;
            color: #D4A574;
            text-decoration: none;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            transition: background 0.15s;
        }
        .mobile-search-viewall:hover { background: rgba(212, 165, 116, 0.06); }

        /* Mobile search: show only on mobile */
        @media (min-width: 992px) {
            .mobile-search-btn,
            .mobile-search-bar { display: none !important; }
        }



        /* navbar */


        .nav-search-wrap { position: relative; margin-left: 0.5rem; }
        .nav-search-toggle {
            background: none; border: 1.5px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.7);
            width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.25s; font-size: 0.85rem; padding: 0;
        }
        .nav-search-toggle:hover, .nav-search-toggle.active { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.4); color: #fff; }
        .nav-search-box {
            position: absolute; top: calc(100% + 12px); right: 0; width: 340px; background: #fff;
            border-radius: 12px; box-shadow: 0 12px 48px rgba(0,0,0,0.2); opacity: 0; visibility: hidden;
            transform: translateY(-8px); transition: all 0.25s ease; z-index: 1100; overflow: hidden;
        }
        .nav-search-box.show { opacity: 1; visibility: visible; transform: translateY(0); }
        .nav-search-form { display: flex; align-items: center; border-bottom: 1px solid #f0f0f0; }
        .nav-search-input { flex: 1; border: none; padding: 0.9rem 1rem; font-family: 'Roboto', sans-serif; font-size: 0.9rem; color: #1a1410; outline: none; background: transparent; }
        .nav-search-input::placeholder { color: #b0b0b0; }
        .nav-search-submit { background: none; border: none; color: #D4A574; padding: 0.9rem 1rem; cursor: pointer; font-size: 0.9rem; transition: color 0.2s; }
        .nav-search-submit:hover { color: #1a1410; }
        .nav-search-results { max-height: 320px; overflow-y: auto; scrollbar-width: thin; scrollbar-color: #e0e0e0 transparent; }
        .nav-search-results::-webkit-scrollbar { width: 4px; }
        .nav-search-results::-webkit-scrollbar-thumb { background: #e0e0e0; border-radius: 4px; }
        .nav-search-result-item { display: flex; align-items: center; padding: 0.65rem 0.85rem; text-decoration: none; transition: background 0.15s; border-bottom: 1px solid #f8f8f8; }
        .nav-search-result-item:last-child { border-bottom: none; }
        .nav-search-result-item:hover { background: #fdf6ee; }
        .nav-search-result-item img { width: 44px; height: 44px; border-radius: 8px; object-fit: cover; margin-right: 0.75rem; flex-shrink: 0; background: #f1f3f5; }
        .nav-search-result-info { flex: 1; min-width: 0; }
        .nav-search-result-name { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600; color: #1a1410; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
        .nav-search-result-cat { font-size: 0.7rem; color: #9ca3af; margin-top: 1px; }
        .nav-search-empty { padding: 1.5rem 1rem; text-align: center; color: #b0b0b0; font-size: 0.85rem; }
        .nav-search-empty i { display: block; font-size: 1.5rem; margin-bottom: 0.5rem; color: #d1d5db; }
        .nav-search-loading { padding: 1.5rem; text-align: center; color: #b0b0b0; font-size: 0.8rem; }
        .nav-search-viewall { display: block; text-align: center; padding: 0.7rem; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600; color: #D4A574; text-decoration: none; border-top: 1px solid #f0f0f0; transition: background 0.15s; }
        .nav-search-viewall:hover { background: #fdf6ee; color: #1a1410; }

        /* ═══ OFFCANVAS SIDEBAR ═══ */
        .oc-backdrop { position: fixed; inset: 0; background: rgba(20,10,5,0.75); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); z-index: 1040; opacity: 0; visibility: hidden; transition: all 0.4s ease; }
        .oc-backdrop.show { opacity: 1; visibility: visible; }
        .oc-sidebar { position: fixed; top: 0; left: 0; width: 300px; max-width: 88vw; height: 100%; z-index: 1050; transform: translateX(-100%); transition: transform 0.45s cubic-bezier(0.23,1,0.32,1); display: flex; flex-direction: column; background: linear-gradient(180deg, #3e272336 0%, #2C1810 40%, #1A0E08 100%);; box-shadow: 8px 0 40px rgba(0,0,0,0.5); }
        .oc-sidebar.show { transform: translateX(0); }
        .oc-sidebar::after { content: ''; position: absolute; top: 0; right: 0; width: 1px; height: 100%; background: linear-gradient(180deg, rgba(210,170,120,0) 0%, rgba(210,170,120,0.25) 50%, rgba(210,170,120,0) 100%); pointer-events: none; }
        .oc-header { padding: 1.5rem 1.5rem 1.25rem; border-bottom: 1px solid rgba(210,170,120,0.12); flex-shrink: 0; position: relative; }
        .oc-header::after { content: ''; position: absolute; bottom: -1px; left: 1.5rem; width: 35px; height: 2px; background: #D4A574; border-radius: 2px; }
        .oc-tagline { font-family: 'Roboto', sans-serif; font-size: 0.58rem; color: white; text-transform: uppercase; letter-spacing: 2.5px; margin-top: 0.2rem; font-weight: 400; }
        .oc-close { position: absolute; top: 1.25rem; right: 1.25rem; background: rgba(210,170,120,0.08); border: 1px solid rgba(210,170,120,0.1); color: rgba(210,170,120,0.5); width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer; transition: all 0.25s; padding: 0; line-height: 1; }
        .oc-close:hover { background: rgba(210,170,120,0.18); border-color: rgba(210,170,120,0.3); color: #D4A574; transform: rotate(90deg); }
        .oc-nav { flex: 1; overflow-y: auto; padding: 0.75rem 0; scrollbar-width: thin; scrollbar-color: rgba(210,170,120,0.2) transparent; }
        .oc-nav::-webkit-scrollbar { width: 4px; }
        .oc-nav::-webkit-scrollbar-thumb { background: rgba(210,170,120,0.2); border-radius: 4px; }
        .oc-nav-link { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.5rem; color: rgba(255,255,255,0.5); text-decoration: none; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; transition: all 0.3s; position: relative; border-left: 3px solid transparent; }
        .oc-nav-link::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 0; height: 55%; background: linear-gradient(180deg, #D4A574, #A0704E); border-radius: 0 3px 3px 0; transition: width 0.3s; }
        .oc-nav-link:hover, .oc-nav-link.active { color: #fff; background: rgba(210,170,120,0.06); }
        .oc-nav-link:hover::before, .oc-nav-link.active::before { width: 3px; }
        .oc-nav-link .oc-link-icon { width: 26px; height: 26px; border-radius: 7px; background: rgba(210,170,120,0.08); display: flex; align-items: center; justify-content: center; margin-right: 0.75rem; font-size: 0.65rem; color: rgba(210,170,120,0.45); transition: all 0.3s; flex-shrink: 0; }
        .oc-nav-link:hover .oc-link-icon, .oc-nav-link.active .oc-link-icon { background: rgba(210,170,120,0.18); color: #D4A574; }
        .oc-nav-link .oc-link-text { flex: 1; }
        .oc-nav-link .oc-chevron { font-size: 0.85rem; color: rgba(255,255,255,0.18); transition: all 0.35s; }
        .oc-nav-link.open .oc-chevron { transform: rotate(180deg); color: #D4A574; }
        .oc-dropdown { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1); background: rgba(10,5,2,0.3); margin-left: 1.5rem; border-left: 1px solid rgba(210,170,120,0.1); }
        .oc-dropdown.open { max-height: 400px; }
        .oc-dropdown a { display: flex; align-items: center; padding: 0.55rem 1.15rem; color: rgba(255,255,255,0.38); text-decoration: none; font-family: 'Roboto', sans-serif; font-size: 0.8rem; font-weight: 400; transition: all 0.25s; }
        .oc-dropdown a::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: rgba(210,170,120,0.18); margin-right: 0.75rem; flex-shrink: 0; transition: all 0.25s; }
        .oc-dropdown a:hover { color: #D4A574; padding-left: 1.35rem; }
        .oc-dropdown a:hover::before { background: #D4A574; box-shadow: 0 0 8px rgba(210,170,120,0.4); }
        .oc-dropdown a.oc-all-link { margin-top: 0.2rem; padding-top: 0.65rem; border-top: 1px solid rgba(210,170,120,0.08); font-weight: 500; color: rgba(210,170,120,0.45); }
        .oc-dropdown a.oc-all-link::before { display: none; }
        .oc-dropdown a.oc-all-link:hover { color: #D4A574; }
        .oc-footer { padding: 1rem 1.5rem; border-top: 1px solid rgba(210,170,120,0.1); flex-shrink: 0; }
        .oc-footer-label { font-family: 'Montserrat', sans-serif; font-size: 0.5rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.15); margin-bottom: 0.6rem; }
        .oc-social { display: flex; gap: 0.5rem; }
        .oc-social a { width: 32px; height: 32px; border-radius: 9px; background: rgba(210,170,120,0.06); border: 1px solid rgba(210,170,120,0.08); display: flex; align-items: center; justify-content: center; color: rgba(210,170,120,0.3); font-size: 0.75rem; text-decoration: none; transition: all 0.3s; }
        .oc-social a:hover { background: rgba(210,170,120,0.15); border-color: rgba(210,170,120,0.25); color: #D4A574; transform: translateY(-2px); }
        @media (max-width: 991.98px) { .navbar-collapse { display: none !important; } }
        @media (min-width: 992px) { .oc-sidebar, .oc-backdrop { display: none !important; } .navbar-toggler { visibility: hidden; } }

        /* ═══ DESKTOP NAV DROPDOWN ═══ */
        .nav-products-dropdown .dropdown-menu { min-width: 230px; margin-top: 0; border: none; border-radius: 0 0 10px 10px; box-shadow: 0 12px 36px rgba(0,0,0,0.18); padding: 0.5rem 0; animation: dropFade 0.25s ease; }
        @keyframes dropFade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }
        .nav-products-dropdown .dropdown-item { padding: 0.6rem 1.25rem; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 500; color: #374151; transition: all 0.2s; }
        .nav-products-dropdown .dropdown-item:hover { background: #fdf4eb; color: #1a1410; padding-left: 1.5rem; }
        .nav-products-dropdown .dropdown-item i { width: 20px; color: #D4A574; margin-right: 0.5rem; font-size: 0.5rem; }


        /* footer */

      
        /* Footer logo with tagline */
.footer-brand-row {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.footer-brand-row img {
    height: 60px;
    width: auto;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
    opacity: 0.85;
    margin-left: -208px;
}
.footer-tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 0.75rem;
    color: whitel;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    line-height: 1;
    margin-top: 2px;
}

        .nav-bar {
            position: sticky !important;
            top: 0;
            z-index: 1000;
            background: linear-gradient(180deg, #3E2723 0%, #2C1810 40%, #1A0E08 100%) !important; 
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        }
        .nav-bar .navbar {
            padding-top: 1rem !important;
            padding-bottom: 1rem !important;
        }
        .nav-bar .navbar-brand, 
        .nav-bar .nav-item .nav-link, 
        .nav-bar .nav-search-toggle {
            color: #fff !important;
        }
        .nav-bar .brand-tagline {
            color: #fff !important;
        }
        /* Ensure dropdown is also styled to match */
        .nav-bar .dropdown-menu {
            background: #1a1c1f !important;
            border: 1px solid #2a2d33 !important;
            border-radius: 0 !important;
        }
        .nav-bar .dropdown-item {
            color: #c7c9cc !important;
        }
        .nav-bar .dropdown-item:hover {
            background: #0e0f10 !important;
            color: var(--accent) !important;
        }


         .nav-social-divider {
            width: 1px;
            height: 18px;
            background: rgba(255,255,255,0.15);
            margin: 0 0.3rem;
            flex-shrink: 0;
        }
        .nav-social-icons {
            display: flex;
            align-items: center;
            gap: 2.35rem;
            margin-left: 0.15rem;
            padding-right:80px;
        }
        .nav-social-icon {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: 1.5px solid rgba(255,255,255,0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: rgba(255,255,255,0.55);
            font-size: 0.8rem;
            text-decoration: none;
            transition: all 0.25s ease;
            padding: 0;
        }
        .nav-social-icon:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.4);
            color: #fff;
            transform: translateY(-1px);
            text-decoration: none;
        }
        @media (min-width: 1200px) {
            .nav-social-icon { width: 36px; height: 36px; font-size: 0.82rem; }
            .nav-social-divider { margin: 0 0.4rem; height: 20px; }
        }
