/* Main Container */

       :root {
            --primary-color: #9B2602;
            --secondary-color: #7A1E02;
            --accent-color: #C13203;
            --light-color: #f8fafc;
            --dark-color: #1e293b;
            --text-color: #334155;
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: var(--light-color);
            color: var(--text-color);
            line-height: 1.6;
        }

        /* Main Container */
        .main-wrapper {
            display: flex;
            max-width: 1400px;
            margin: 2rem auto;
            padding: 0 2rem;
            gap: 1.5rem;
        }
        
        .shop-banner {
      height: 130px !important;
}

        /* Sidebar */
        .sidebar {
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: var(--shadow);
            padding: 1.5rem;
            position: sticky;
            /*top: 100px;*/
            /*left: 2rem;*/
            width: 280px;
            max-height: calc(100vh - 120px);
            overflow-y: auto;
            z-index: 50;
        }

        /* Custom scrollbar for sidebar */
        .sidebar::-webkit-scrollbar {
            width: 6px;
        }

        .sidebar::-webkit-scrollbar-track {
            background: #f1f5f9;
            border-radius: 3px;
        }

        .sidebar::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 3px;
        }

        .sidebar::-webkit-scrollbar-thumb:hover {
            background: #94a3b8;
        }

        /* Search Bar */
        .search-container {
            margin-bottom: 2rem;
        }

        .search-bar {
            position: relative;
        }

        .search-input {
            width: 100%!important;
            padding: 0.75rem 1rem 0.75rem 3rem!important;
            border: 1px solid var(--border-color)!important;
            border-radius: 0.5rem!important;
            font-size: 0.95rem!important;
            background-color: var(--light-color)!important;
            transition: border-color 0.2s, box-shadow 0.2s!important;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(155, 38, 2, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 1rem;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
        }

        /* Tabs */
        .tabs {
            display: flex;
            border-bottom: 1px solid var(--border-color);
            margin-bottom: 1.5rem;
        }

        .tab {
            padding: 0.75rem 1rem;
            font-weight: 600;
            color: #64748b;
            cursor: pointer;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
            flex: 1;
            text-align: center;
        }

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

        .tab.active {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }

        .tab-content {
            display: none;
        }

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

        /* Filter Lists */
        .filter-list {
            list-style: none;
            padding-left: 0;
        }

        .filter-item {
            margin-bottom: 0.5rem;
        }

        .filter-link {
            display: flex;
            align-items: center;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: all 0.2s;
            text-decoration: none;
            color: var(--text-color);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .filter-link:hover {
            background-color: #f1f5f9;
            color: var(--primary-color);
            transform: translateX(4px);
        }

        .filter-link.active {
            background-color: rgba(155, 38, 2, 0.1);
            color: var(--primary-color);
            font-weight: 600;
        }

        .filter-count {
            margin-left: auto;
            background-color: #f1f5f9;
            color: #64748b;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.125rem 0.5rem;
            border-radius: 9999px;
        }

        .filter-link:hover .filter-count {
            background-color: #e2e8f0;
            color: var(--primary-color);
        }

        .filter-link.active .filter-count {
            background-color: var(--primary-color);
            color: white;
        }

        /* Content Area */
        .content {
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: var(--shadow);
            padding: 2rem;
            flex: 1;
            /* margin-left: 320px; */
        }

        /* Content Header */
        .content-header {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid var(--border-color);
        }

        .sort-container {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .sort-label {
            font-size: 0.875rem;
            color: #64748b;
            margin-bottom: 0;
        }

        .sort-select {
            padding: 0.5rem 2.5rem 0.5rem 0.75rem;
            border: 1px solid var(--border-color);
            border-radius: 0.375rem;
            font-size: 0.875rem;
            background-color: white;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23334155' d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 0.75rem center;
            background-size: 0.75rem;
            appearance: none;
            cursor: pointer;
        }

        /* Product Grid - Using Bootstrap classes with custom overrides */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
        }

        /* Product Card */
        .product-card {
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 0.75rem;
            overflow: hidden;
            transition: transform 0.2s, box-shadow 0.2s;
            display: flex;
            flex-direction: column;
            height: 100%;
            box-shadow: var(--shadow);
        }

        .product-card:hover {
            transform: translateY(-4px);
            /*box-shadow: var(--shadow-lg);*/
            box-shadow: var(--shadow);
        }

        .product-image {
            height: 220px;
            background-color: #ffffff;
            position: relative;
            overflow: hidden;
            padding: 15px 15px 5px;

        }
        
        .product-footer {
            display: none!important;
        }

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

        .product-badge {
            position: absolute;
            top: 0.75rem;
            left: 0.75rem;
            background-color: var(--primary-color);
            color: white;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.5rem;
            border-radius: 0.25rem;
        }

        .product-info {
            padding: 1.5rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .product-category {
            font-size: 16px;
            color: var(--primary-color);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            margin-bottom: 0px;
            text-align: left;
        }

        .product-name {
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
            line-height: 1.4;
        }

        .product-brand {
            font-size: 0.875rem;
            color: #64748b;
            margin-bottom: 1.5rem;
        }

        .product-footer {
           margin-top:auto;
            display: flex;
            justify-content: center;
        }

        .read-more {
            background-color: var(--primary-color);
            color: white!important;
            border: none;
            padding: 0.625rem 1.25rem;
            border-radius: 0.375rem;
            font-size: 0.875rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.2s;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .read-more:hover {
            background-color: var(--secondary-color);
        }

        /* No Results */
        .no-results {
            text-align: center;
            padding: 4rem 2rem;
            color: #64748b;
        }

        .no-results-icon {
            font-size: 3rem;
            color: #cbd5e1;
            margin-bottom: 1rem;
        }

        .no-results h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 0.5rem;
        }

        /* Responsive Design with Bootstrap overrides */
        @media (max-width: 1200px) {
            .main-wrapper {
                padding: 0 1.5rem;
            }
            
            .sidebar {
                left: 1.5rem;
                width: 240px;
            }
            
            .content {
                margin-left: 280px;
                padding: 1.5rem;
            }
            
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 15px;
            }
        }

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

        @media (max-width: 768px) {
            .main-wrapper {
                flex-direction: column;
                padding: 0 1rem;
            }
            
            .sidebar {
                position: static;
                width: 100%;
                max-height: none;
                margin-bottom: 1.5rem;
                left: 0;
            }
            
            .content {
                margin-left: 0;
                padding: 1.5rem;
            }
            
            .product-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                flex-direction: column;
                gap: 1rem;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
            
            .product-image {
                height: 180px;
            }
            
            .product-info {
                padding: 1rem;
            }
        }

        /* Bootstrap component overrides */
        .btn-primary {
            background-color: var(--primary-color) !important;
            border-color: var(--primary-color) !important;
        }

        .btn-primary:hover {
            background-color: var(--secondary-color) !important;
            border-color: var(--secondary-color) !important;
        }

        .card {
            border: 1px solid var(--border-color) !important;
            border-radius: 0.75rem !important;
        }

        .form-control:focus {
            border-color: var(--primary-color) !important;
            box-shadow: 0 0 0 0.25rem rgba(155, 38, 2, 0.25) !important;
        }

        .form-select:focus {
            border-color: var(--primary-color) !important;
            box-shadow: 0 0 0 0.25rem rgba(155, 38, 2, 0.25) !important;
        }
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        /* Content Area */
        .content {
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            padding: 2rem;
            flex: 1;
            /* margin-left: 320px; */
        }

        /* Content Header */
        .content-header {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid #e2e8f0;;
        }

        

        /* Responsive Design with Bootstrap overrides */
        @media (max-width: 1200px) {
            
            .content {
                margin-left: 280px;
                padding: 1.5rem;
            }
            
        }

        
        @media (max-width: 768px) {
            
            .content {
                margin-left: 0;
                padding: 1.5rem;
            }
            
        }


        .inner-images {
          height: 450px;
          position: relative;
          overflow: hidden;
      }


/* ------------------ */

    .inner-pro {
        margin: 2rem auto;
        padding: 0 2rem;
    }

    @media (max-width: 768px) {
    .inner-pro {
        flex-direction: column;
        padding: 0 1rem;
    }
    }

    @media (max-width: 1200px) {
        .inner-pro {
            padding: 0 1.5rem;
        }
    }

    .inner-pro .inner-images {
        /* padding: 20px; */
        /* background-color: #f8f9fa; */
        border-right: 1px solid #eaeaea;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .inner-pro .inner-images img {
        /* border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1); */
        transition: transform 0.3s ease;
    }
    
    .inner-pro .inner-images img:hover {
        transform: scale(1.03);
    }
    
    .inner-pro .details {
        padding: 30px;
    }
    
    .inner-pro .details h3 {
        color: #9b2602;
        font-weight: 600;
        margin-bottom: 25px;
        font-size: 1.8rem;
    }
    
    
    
    .inner-pro .back-section {
        margin-top: 15px;
        padding-top: 20px;
        /* border-top: 1px solid #eaeaea; */
        text-align: end;
    }
    
    .inner-pro .back-btn {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 25px;
        background-color: #9b2602;
        color: white;
        text-decoration: none;
        border-radius: 30px;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .inner-pro .back-btn:hover {
        background-color: #6b0202;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(140, 3, 3, 0.2);
    }

    .inner-pro .back-btn i {
        margin-right: 7px;
    }

    @media (max-width: 768px) {
    
        .inner-pro .back-section {
            margin-top: 0px;
            text-align: start;
        }
        
    }
    
    
    @media (max-width: 992px) {
        .inner-pro .inner-images {
            border-right: none;
            border-bottom: 1px solid #eaeaea;
            padding: 10px;
        }
        
        .inner-pro .details {
            padding: 0px;
        }
    }

    /* -------------------------- */

    .inner-pro .product-tabs {
        margin: 30px 0;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 0px 30px rgb(129 129 129 / 8%);
        background-color: #fff;
        }

        .inner-pro .tabs-header {
        display: flex;
        background: linear-gradient(to right, #f8f5f4, #fff);
        border-bottom: 1px solid rgba(155, 38, 2, 0.1);
        }

        .inner-pro .tab-btn {
        flex: 1;
        padding: 16px 24px;
        background: none;
        border: none;
        cursor: pointer;
        font-size: 16px;
        font-weight: 600;
        color: #555;
        transition: all 0.3s ease;
        position: relative;
        letter-spacing: 0.5px;
        }

        .inner-pro .tab-btn:hover {
        background-color: rgba(155, 38, 2, 0.05);
        color: #9B2602;
        }

        .inner-pro .tab-btn.active {
        color: #9B2602;
        background-color: #fff;
        }

        .inner-pro .tab-btn.active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #9B2602, #c54e2a);
        }

        .inner-pro .tabs-content {
        padding: 30px;
        }

        .inner-pro .tab-pane {
        display: none;
        animation: fadeIn 0.5s ease;
        }

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

        @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
        }

        .inner-pro .tab-pane h3 {
        color: #9B2602;
        margin-bottom: 16px;
        font-size: 24px;
        font-weight: 700;
        }

        .inner-pro .tab-pane p {
        line-height: 1.7;
        font-size: 16px;
        }

        .inner-pro .downloads-container {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 10px;
        }

        .inner-pro .download-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 24px;
        background: linear-gradient(135deg, #9B2602, #c54e2a);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(155, 38, 2, 0.25);
        letter-spacing: 0.5px;
        }

        .inner-pro .download-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(155, 38, 2, 0.35);
        background: linear-gradient(135deg, #8a2001, #b04322);
        }

        .inner-pro .download-icon {
        flex-shrink: 0;
        }

        @media (max-width: 768px) {
        .inner-pro .tabs-header {
            flex-direction: column;
            background: #fff;
        }
        
        .inner-pro .tab-btn {
            border-bottom: 1px solid rgba(155, 38, 2, 0.1);
            padding: 14px 20px;
        }
        
        .inner-pro .tab-btn:last-child {
            border-bottom: none;
        }
        
        .inner-pro .tab-btn.active::after {
            display: none;
        }
        
        .inner-pro .tab-btn.active {
            background-color: rgba(155, 38, 2, 0.05);
            border-left: 4px solid #9B2602;
        }
        
        .inner-pro .tabs-content {
            padding: 20px;
        }
        
        .inner-pro .downloads-container {
            flex-direction: column;
        }
        
        .inner-pro .download-btn {
            justify-content: center;
        }
        }
        
        
        
        
        .construction-main {
            padding: 100px 0 60px;
            /* background: linear-gradient(180deg, #fff 0%, #f4f4f4 100%); */
            background-color: #f8fafc;
        }

        .construction-title {
            font-weight: 700;
            font-size: 27px;
            color: #8C0303;
            line-height: 1.2;
        }

        .main-con-image {
            position: relative;
            padding: 15px;
        }

        .main-con-image img {
            border-radius: 30px;
            box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        }

        
        .partner-section {
            padding: 100px 0;
        }

        .partner-card {
            background: #ffffff;
            border-radius: 24px;
            padding: 40px 30px;
            height: 100%;
            border: 1px solid rgba(0,0,0,0.05);
            /* box-shadow: 0 10px 30px rgba(0,0,0,0.02); */
            box-shadow: 0 10px 30px rgb(0 0 0 / 6%);
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .partner-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: #8C0303;
        }

        .brand-logo-wrapper {
            width: 100px;
            height: 100px;
            background: #f8f9fa;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            margin-bottom: 25px;
        }

        .partner-card h5 {
            font-weight: 700;
            font-size: 1.4rem;
            color: #1a1a1a;
            margin-bottom: 15px;
        }

        
        .expand-wrapper {
            position: relative;
            overflow: hidden;
        }

        .partner-description {
            font-size: 0.95rem;
            line-height: 1.7;
            color: #666;
            margin-bottom: 0;
            max-height: 100px; 
            transition: max-height 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .partner-description.is-open {
            max-height: 800px;
        }

       
        .bottom-fade {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 45px;
            background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,1));
            transition: opacity 0.4s;
            pointer-events: none;
        }

        .partner-description.is-open + .bottom-fade {
            opacity: 0;
        }

        
        .btn-toggle {
            background: transparent;
            border: 2px solid #eee;
            border-radius: 50px;
            color: #222;
            font-size: 0.8rem;
            font-weight: 600;
            padding: 8px 24px;
            margin-top: 25px;
            transition: all 0.3s;
        }

        .btn-toggle:hover {
            background: #8C0303;
            border-color: #8C0303;
            color: white;
        }
