/**
 * Dubai Diesel Template - Main CSS
 * Mobile-First Responsive Design
 * Optimized for Core Web Vitals
 */

/* CSS Custom Properties (CSS Variables) */
:root {
    /* Color Schemes */
    --primary-color: #f26522;
    --secondary-color: #2d3748;
    --accent-color: #f26522;
    --success-color: #38a169;
    --warning-color: #d69e2e;
    --error-color: #e53e3e;
    --text-color: #2d3748;
    --text-muted: #718096;
    --background-color: #ffffff;
    --surface-color: #f7fafc;
    --border-color: #e2e8f0;
    
    /* Typography */
    --font-family-base: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 24px;
    --font-size-3xl: 30px;
    --font-size-4xl: 36px;
    --line-height-base: 1.6;
    --line-height-tight: 1.2;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Breakpoints */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    --breakpoint-2xl: 1400px;
    
    /* Layout */
    --container-max-width: 95%;
    --header-height: 70px;
    --footer-height: auto;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 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);
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

/* Color Scheme Variations */
.blue {
    --primary-color: #3182ce;
    --accent-color: #63b3ed;
}

.green {
    --primary-color: #38a169;
    --accent-color: #68d391;
}

.red {
    --primary-color: #f26522;
    --accent-color: #ff8c42;
}

/* Font Family Variations */
.roboto {
    --font-family-base: 'Roboto', sans-serif;
    --font-family-heading: 'Roboto', sans-serif;
}

.opensans {
    --font-family-base: 'Open Sans', sans-serif;
    --font-family-heading: 'Open Sans', sans-serif;
}

.lato {
    --font-family-base: 'Lato', sans-serif;
    --font-family-heading: 'Lato', sans-serif;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    font-weight: 400;
    line-height: var(--line-height-base);
    color: var(--text-color);
    background-color: var(--background-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin: 0 0 var(--spacing-md) 0;
    font-family: var(--font-family-heading);
    font-weight: 600;
    line-height: var(--line-height-tight);
    color: var(--text-color);
}

h1 { font-size: var(--font-size-4xl); }
h2 { font-size: var(--font-size-3xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin: 0 0 var(--spacing-md) 0;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover,
a:focus {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.lazy {
    opacity: 0;
    transition: opacity var(--transition-base);
}

.lazy.loaded {
    opacity: 1;
}

/* Container - Override Bootstrap */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    width: 95% !important;
    max-width: none !important;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

@media (min-width: 576px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        padding: 0 var(--spacing-lg);
        width: 95% !important;
        max-width: none !important;
    }
}

@media (min-width: 768px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        width: 95% !important;
        max-width: none !important;
    }
}

@media (min-width: 992px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        padding: 0 var(--spacing-xl);
        width: 95% !important;
        max-width: none !important;
    }
}

@media (min-width: 1200px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        width: 95% !important;
        max-width: none !important;
    }
}

@media (min-width: 1400px) {
    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl,
    .container-xxl {
        width: 95% !important;
        max-width: none !important;
    }
}

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--spacing-sm));
}

.col,
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
.col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    flex: 0 0 auto;
    padding: 0 var(--spacing-sm);
}

.col { flex: 1 0 0%; }
.col-1 { flex: 0 0 8.333333%; }
.col-2 { flex: 0 0 16.666667%; }
.col-3 { flex: 0 0 25%; }
.col-4 { flex: 0 0 33.333333%; }
.col-5 { flex: 0 0 41.666667%; }
.col-6 { flex: 0 0 50%; }
.col-7 { flex: 0 0 58.333333%; }
.col-8 { flex: 0 0 66.666667%; }
.col-9 { flex: 0 0 75%; }
.col-10 { flex: 0 0 83.333333%; }
.col-11 { flex: 0 0 91.666667%; }
.col-12 { flex: 0 0 100%; }

@media (min-width: 576px) {
    .col-sm-1 { flex: 0 0 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; }
    .col-sm-5 { flex: 0 0 41.666667%; }
    .col-sm-6 { flex: 0 0 50%; }
    .col-sm-7 { flex: 0 0 58.333333%; }
    .col-sm-8 { flex: 0 0 66.666667%; }
    .col-sm-9 { flex: 0 0 75%; }
    .col-sm-10 { flex: 0 0 83.333333%; }
    .col-sm-11 { flex: 0 0 91.666667%; }
    .col-sm-12 { flex: 0 0 100%; }
}

@media (min-width: 768px) {
    .col-md-1 { flex: 0 0 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; }
    .col-md-3 { flex: 0 0 25%; }
    .col-md-4 { flex: 0 0 33.333333%; }
    .col-md-5 { flex: 0 0 41.666667%; }
    .col-md-6 { flex: 0 0 50%; }
    .col-md-7 { flex: 0 0 58.333333%; }
    .col-md-8 { flex: 0 0 66.666667%; }
    .col-md-9 { flex: 0 0 75%; }
    .col-md-10 { flex: 0 0 83.333333%; }
    .col-md-11 { flex: 0 0 91.666667%; }
    .col-md-12 { flex: 0 0 100%; }
}

@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; }
    .col-lg-5 { flex: 0 0 41.666667%; }
    .col-lg-6 { flex: 0 0 50%; }
    .col-lg-7 { flex: 0 0 58.333333%; }
    .col-lg-8 { flex: 0 0 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; }
    .col-lg-11 { flex: 0 0 91.666667%; }
    .col-lg-12 { flex: 0 0 100%; }
}

/* Utility Classes */
.d-flex { display: flex; }
.d-block { display: block; }
.d-none { display: none; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }

.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Header */
.site-header {
    background-color: var(--background-color);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    height: var(--header-height);
}

.site-header .container {
    height: 100%;
}

.site-header .row {
    height: 100%;
    align-items: center;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 50px;
    width: auto;
}


/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    justify-content: flex-end;
}

/* Global Hover Transitions */
* {
    transition: all 0.25s ease;
}

/* Search Button - Bootstrap Override */
.search-toggle-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--accent-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-toggle-btn:hover {
    background-color: var(--accent-color);
    color: white;
}

.search-toggle-btn i {
    color: var(--accent-color);
}

.search-toggle-btn:hover i {
    color: white;
}

@media (max-width: 767px) {
    .search-toggle-btn span {
        display: none;
    }
}

/* Search */
.search-module {
    display: flex;
    justify-content: flex-end;
}

.search-form {
    position: relative;
    max-width: 300px;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: var(--font-size-sm);
    transition: border-color var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

/* Main Content */
.site-main {
    min-height: calc(100vh - var(--header-height) - var(--footer-height));
    padding: var(--spacing-xl) 0;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-align: center;
}

.hero-section h1 {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-lg);
}

.hero-section p {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-xl);
}

/* Filters Section */
.filters-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--surface-color);
}

.filter-group {
    margin-bottom: var(--spacing-lg);
}

.filter-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-color);
}

.filter-select {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    background-color: var(--background-color);
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast);
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

/* Products Section */
.products-section {
    padding: var(--spacing-xl) 0;
}

/* Visited Products Section */
.visited-products-section {
    padding: var(--spacing-xl) 0;
    background: var(--surface-color);
    border-top: 1px solid var(--border-color);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.product-card {
    background-color: var(--background-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-content {
    padding: var(--spacing-lg);
}

.product-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.product-description {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.product-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--accent-color);
}

/* Articles Section */
.articles-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--surface-color);
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.article-card {
    background-color: var(--background-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.article-card:hover {
    box-shadow: var(--shadow-md);
}

.article-image {
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content {
    padding: var(--spacing-lg);
}

.article-title {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.article-excerpt {
    color: var(--text-muted);
    margin-bottom: var(--spacing-md);
}

.article-meta {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

/* Social Icons */
.social-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: background-color var(--transition-fast);
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    text-decoration: none;
    color: white;
}

/* Consultation Form */
.consultation-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--surface-color);
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--background-color);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: var(--spacing-lg);
}

.form-label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: var(--font-size-base);
    transition: border-color var(--transition-fast);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(242, 101, 34, 0.1);
}

.btn {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: 4px;
    font-size: var(--font-size-base);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
}

/* Footer */
.site-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: var(--spacing-xl) 0;
}

.footer-bottom {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3 {
    color: white;
    margin-bottom: var(--spacing-md);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-sm);
}

.footer-section a:hover {
    color: white;
    text-decoration: none;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    z-index: var(--z-fixed);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    font-size: 25px;
}
#navbarNav .nav-item.active.current a {
  color: #ff4700;
}
.video-play-button {
  display: none;
}
.back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Loading Indicator */
.loading-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    pointer-events: none;
}

.loading-indicator.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--accent-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 767px) {
    .hero-section h1 {
        font-size: var(--font-size-3xl);
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .article-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        flex-wrap: wrap;
    }
}

@media (min-width: 768px) {
    .hero-section h1 {
        font-size: var(--font-size-4xl);
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .article-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Print Styles */
@media print {
    .site-header,
    .social-section,
    .consultation-section,
    .back-to-top,
    .loading-indicator {
        display: none;
    }
    
    .site-main {
        padding: 0;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    .product-card,
    .article-card {
        page-break-inside: avoid;
    }
}


/* ------------- Kharazm Css ------------- */
.site-header * {
    margin-bottom: 0;
  }

  .row.align-items-center > div {
    border-bottom: 2px solid;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .row.align-items-center > div.col-md-6 {
    border-color: #f26b35;
  }
  .site-header .container {
    max-width: 100% !important;
    width: 100% !important;
  }
  .site-header .container .row.align-items-center .col-md-3 {
    padding: 0 2.5%;
  }
  #navbarNav {
    justify-content: center;
  }
  .uk-scope {
    width: 100%;
    height: auto;
  }
  .uk-scope [data-uk-cover]:where(img, video), .uk-scope [uk-cover]:where(img, video) {
    height: auto;
  }
  #main-content {
    padding: 0;
  }
  .uk-overlay.uk-position-cover.uk-flex.uk-flex-center.uk-flex-middle.uk-text-center.uk-overlay-primary.uk-transition-fade {
    background: none;
    color: #fff;
  }
  .slide001-title01 {
    text-transform: uppercase;
    font-size: 3.35vw;
    font-weight: bold;
  }
  .slide001-title01 span {
    font-size: 5.4vw;
    line-height: 3vw;
  }
  .slide001-title02 {
    color: #333;
    font-size: 1.1vw;
  }
  .slide001-row {
    column-count: 3;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translate(-50%);
    width: 80%;
    text-align: center;
  }
  .slide001-row div {
    color: #333;
    font-size: .85vw;
  }
  .slide001-row div.line01 {
    font-weight: bold;
  }
  .slide001-row .line_icon img {
    margin: auto;
  }
  .slide001-row .line_icon {
    padding-bottom: 10px;
  }
  .slide001-row div.slide001-row-item02 .line01, .slide001-row div.slide001-row-item02 .line02 {
    border-left: thin solid #fff;
    border-right: thin solid #fff;
  }

  .hero-section .uk-scope::after {
    content: " ";
    width: 100%;
    height: 190px;
    background: url('/templates/dubaidiesel/images/top-slideshow-mask.webp') 50% 0 no-repeat;
    display: block;
    margin-top: -58px;
    position: absolute;
    bottom: -155px;
  }
  .hero-section .uk-scope p {
    display: none;
  }
  .slide001-lnk {
    font-size: 1vw;
    background: url('/images/home-top-slideshow/explore-products-icon.svg') no-repeat #333 11px;
      background-size: auto;
    width: 12vw;
    padding: 8px 20px;
    text-align: right;
    background-size: auto 90%;
    margin: 30px auto 10px;
  }
  .hero-section {
    margin-bottom: 155px;
  }



  /*-----------------Negar Css----------*/
  .small-slideshow-section {
    height: auto;
    margin-bottom: 70px;
  }
  .small-slideshow-section .slideshow-inner {
    padding: 0;
    margin: 0;
    max-width: 100% ;
    position: relative;
  }
  .small-slideshow-section #uk-slideshow-3 {
    height: 650px;
  }
  .small-slideshow-section .uk-overlay.uk-position-right {
    top: 50%;
    transform: translateY(-50%);
    width: 50%;
  }
  .slideTextIn p {
    font-size: 4vw;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    line-height: 4vw;
  }
  .slideTextIn p span {
    color: #000;
  }
  .small-slideshow-section .uk-overlay.uk-position-right .smallText {
    text-transform: capitalize;
    color: #000;
    font-size: 1vw;
  }
  .small-slideshow-section .uk-position-relative {
    height: auto;
  }
  .small-slideshow-section .uk-scope .uk-dotnav > * > * {
    background-color: #b1b1b1 !important;
    border-radius: 0;
    border: none;
  }
  .small-slideshow-section .uk-scope .uk-dotnav > .uk-active > * {
    background-color: #ff5200 !important;
  }
  .small-slideshow-section .uk-dotnav li {
    padding-left: 8px;
  }
  .small-slideshow-section .slidebg {
    background: url("../images/centerslidebgg.png") no-repeat 50% 0;   
    position: absolute;
    left: 0;
    bottom: -43px;
    width: 100%;
    height: 165px;
  }
  .small-slideshow-section .uk-scope .uk-position-bottom {
    bottom: -80px;
  }
  .articles-section {
    background-color: #fff !important;
  }
  h2.articleTitle {
    width: calc(240px + 6vw);
    
    border: 2px solid #ff5200;
    border-left: 0;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    font-weight: bold;
    font-size: 1.5rem;
    text-transform: capitalize;
    padding: 12px 12px 17px 3vw;
    margin-bottom: 40px;
  }
  h2.articleTitle span {
    color: #ff5200;
    font-size: 3rem;
  }
  .articlesInner .uk-scope div div.uk-grid:nth-child(2n+1) > div:last-child {
    height: 465px;
    background: url("../images/articledesc.png") no-repeat 0 0 #b1b1b1;
  }
  .articlesInner .uk-scope div div.uk-grid:nth-child(2n) > div:last-child {
    height: 465px;
    background: url("../images/articledesc2.png") no-repeat 100% 0 #b1b1b1;
  }
  .articlesInner .uk-scope div div.uk-grid:nth-child(2n+1) > div:first-child {
    padding-left: 10px;
  }
  .articlesInner .uk-scope div div.uk-grid:nth-child(2n) > div:first-child {
    padding-right: 10px;
  }
  .articles-section .uk-scope .uk-grid:nth-child(2n+1) .uk-text-center {
    text-align: left !important;
  }
  .articles-section .uk-scope .uk-grid:nth-child(2n) .uk-text-center {
    text-align: right !important;
  }
  .articlesInner .uk-scope div div.uk-grid:nth-child(2n+1) > div:last-child .uk-padding {
    padding-left: 25%;
  }
  .articlesInner .uk-scope div div.uk-grid:nth-child(2n) > div:last-child .uk-padding {
    padding-right: 28%;
    }
    .articlesInner .uk-scope div div.uk-grid .uk-padding .uk-h3 {
        margin-top: 8%;
        margin-bottom: 4%;
        display: inline-table;
        min-height: 100px;
      }
      .articlesInner .uk-scope div div.uk-grid .uk-padding .uk-h3 a {
        color: #fff !important;
        font-weight: bold;
      }
      .articlesInner .uk-scope div div.uk-grid .uk-padding .uk-margin p {
        color: #000 !important;
        text-align: justify;
        font-size: 0.8vw;
      }
      .articlesInner .uk-scope div div.uk-grid .uk-padding > p a {
        background: #ff5200;
        font-weight: bold;
        color: #fff;
        border: 2px solid #fff;
      }
      .articlesInner .uk-scope div div.uk-grid .uk-inline-clip.uk-transition-toggle img {
        height: 465px;
        object-fit: cover;
      }
      .products-section .container {
        width: 100% !important;
      }
      .consult-section
      {
        background: url("../images/socialbg.png") no-repeat 0 0 #fff;
        height: 560px;
        background-size: contain;
      }
      .social-section h3 {
        color: #000;
        
      }
      .social-section h3 span {
        font-weight: bold;
      }
      .social-section {
        background: none;
      }

      .social-section a.nav-link {
        color: #000;
      }
      .social-section ul {
        text-align: center;
        display: inline-block;
      }
      .social-section ul li {
        display: inline-table;
        margin: 0 7px;
      }
      .social-section .menuTitle {
        display: none;
      }

      .social-section .icon
      {
        display: inline-block;
        width:30px;
        height: 30px;
        background-size: contain !important;
      } 

      .consultation-section {
        background: none;
      }
      .consultInner {
        width: 70%;
        margin: auto;
      }
      .consultation-section .zoo-item-list p.title {
        font-size: 1.25rem;
        text-transform: capitalize;
        font-weight: bold;
        color: #ff5200;
      }
      .consultation-section .zoo-item-list .element-textarea p {
        color: #6e6d71;
        text-align: justify;
      }
      .consultInner .zoo-item-list {
        width: 64%;
        float: left;
        padding-right: 40px;
        
      }
      .consultInner .rsform
      {
        background: url("../images/divider.png") no-repeat -3px 50%;
        width: 36%;
        float: right;
        padding-left: 40px;
      }
      .consultInner .rsform textarea {
        height: 100px !important;
        overflow: hidden;
      }
      .form-control.is-valid:focus, .was-validated .form-control:valid:focus
      {
        box-shadow: none;
      }
      .consultInner .rsform .rsform-type-submitbutton > div {
        text-align: center;
      }
      .consultInner .rsform button {
        background: #ff5200;
        border: 1px solid #ff5200;
        text-transform: capitalize;
        padding-right: 30px;
        padding-left: 30px;
        font-weight: bold;
      }
      .site-footer {
        
        background-color: #fff !important;
        padding: 0;
      }
      .footer-top
      {
        height: 430px;
        background: none;
        border-top: 2px solid #898a8c;
        padding-top: 3px;
        padding-bottom: 3px;
        position: relative;
        z-index: 2;
      }
      .site-footer .row, .site-footer .row > * {
        padding-right: 0 !important;
        padding-left: 0 !important;
        margin: 0;
      }
      .site-footer .rowIn {
        width: 30%;
        float: left;
        position: relative;
      } 
      .footerlogo {
        height: 210px;
        padding: 0 50px;
      }
      .footerlogo #mod-custom130 {
        padding-top: 3.5vw;
      }
      .footercontact {
        height: 210px;
        background: #ff5200;
        text-align: center;
        position: relative;
        padding-top: 50px;
      }
      .footercontact::before {
        content: "\1F783";
        font-size: 30px;
        width: 20px;
        height: 10px;
        position: absolute;
        top: -2px;
        margin: auto;
        line-height: 0px;
      }
      .footercontact .title {
        display: none;
      }
      .footercontact .element-textarea a {
        color: #000;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.5rem;
      }
      .footercontact .element-textarea p strong {
        color: #000;
        font-size: 1.5rem;
      }
      .footercontact .element-textarea p {
        margin-bottom: 0px;
      }
      .site-footer .map {
        width: 70%;
        height: 420px;
      }

      #footerMask{
        background: url("../images/footerpolygon.png") no-repeat 0 100% ;
        position: absolute;
        bottom: -28px;
        left: 50%;
        transform: translateX(-50%);
        width: 94px;
        height: 102px;
      }

      .row.footer-bottom {
        padding: 0 !important;
        background: url("../images/footerbottombg.png") no-repeat 100% 0 #000;
        height:305px;
      }

      .footerBottomIn {
        width: 1300px !important;
        margin: auto !important;
      }

      .footerBottomIn .footermenu {
        width: 24%;
        display: inline-table;
        height: 188px;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 70px;
      }

      .footerBottomIn .footermenu:not(:last-child) {
        border-right: 2px solid #bfbfbf;
      }

      .footerBottomIn .footermenu h3 {
        font-weight: bold;
      }

      .footerBottomIn .footermenu a {
        color: #ff5200;
        padding: 2px 0px;
        text-transform: capitalize;
      }

      .footertext {
        height: 80px;
        background: #fff;
      }
      .footertext > div {
        text-align: center;
      }
      .footertext p {
        color: #000;
        text-transform: capitalize;
        margin: 20px 0 5px;
        font-size: 1rem;
      }

      .footertext .signature {
        color: #000;
        text-transform: capitalize;
        font-size: 1rem;
      }

      .footertext .signature a {
        text-decoration: none;
        color: #ff5200;
      }
      .visited-products-section .row {
        width: 95%;
        margin: auto;
      }
      .visited-products-section .container {
        width: 100% !important;
      }
      .mod_product_list .products-title
      {
        width: auto;
        transform: translateX(-0.7vw) !important;
        padding: 12px 3vw 17px 3vw !important;
        border: 2px solid #ff5200 !important;
        border-left: 0 !important;
      }
      .alert-info {
        --bs-alert-color: #fff !important;
        --bs-alert-bg: #f26522 !important;
        --bs-alert-border-color: #c13e00 !important;
        --bs-alert-link-color: #6f2400 !important;
      }


      .interior-hero .uk-scope .uk-position-relative img
      {
        object-position: 50% 30%;
      }
  
      .interior-hero .uk-scope ,
      .interior-hero .uk-scope .uk-slideshow-items,
      .interior-hero .uk-scope .uk-slideshow-items li,
      .interior-hero .uk-scope .uk-position-cover ,
      .interior-hero .uk-scope .uk-position-relative ,
      .interior-hero .uk-scope .uk-position-relative .uk-overlay,
      .interior-hero .uk-scope .uk-position-relative img
      {
        height: 305px;
      }
      .interior-hero .uk-scope::after {
        content: " ";
        width: 100%;
        height: 190px;
        background: url('/templates/dubaidiesel/images/top-slideshow-mask.webp') 50% 0 no-repeat;
        display: block;
        margin-top: 0;
        position: absolute;
        bottom: -40px;
      }
      .interior-hero {
        height: 432px;
        position: relative;
      }
      .interior-hero .slide001-title01 {
        font-size: 3rem;
      }
      .interior-hero .slide001-title01 span {
        font-size: 4.6rem;
      }
      #filter-standby-items button ,
      #filter-standby-more button ,
      #filter-make-items button ,
      #filter-prime-items button ,
      .d-grid.gap-2 button 
      {
        text-align: left;
        color: #000;
        text-transform: capitalize;
      }
      .selected-brands {
        border: thin solid #bbb;
      }
      .brand-list {
        max-height: 180px !important;
      }
      #filter-standby-items button:hover ,
      #filter-standby-more button:hover ,
      #filter-make-items button:hover ,
      #filter-prime-items button:hover ,
      .d-grid.gap-2 button:hover 
      {
        background: linear-gradient(135deg, #FF7300 0%, #FF4500 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 115, 0, 0.3);
      }

      .card.h-100.text-decoration-none.position-relative {
        border: none;
      }
      .col-12.col-sm-6.col-lg-3:not(:nth-child(4n)) {
        border-right: 2px solid #ff5a00;
      }
      .brand-list
      {
        margin-right: 0 !important;
      }
      #productslist-app {
        width: 95%;
        margin: auto;
        padding-top: 45px;
      }
      .mb-4[aria-label="breadcrumb"] {
        margin: 45px 3vw;
          margin-bottom: 45px;
      }
      .com-content-category-blog.blog {
        margin: 50px 3vw;
      }
      
           
      
      .com-content-category-blog.blog .com-content-category-blog__item figure, .com-content-category-blog.blog .com-content-category-blog__item figure img {
        max-width: 100%;
        width: 100%;
        height: auto;
        border-radius: 7px 7px 0 0;
      }
      
      .com-content-category-blog.blog .com-content-category-blog__item {
        box-sizing: border-box;
        background: linear-gradient(300deg,rgb(240, 240, 240) 0%, rgb(255, 255, 255) 30%, rgb(255, 255, 255) 100%);
        border-radius: 10px;
        border: thin solid #ddd;
      }
      .com-content-category-blog.blog .MsoNormal {
        font-size: .85vw;
        color: #555;
        text-align: justify;
        line-height: 1.3vw;
      }
      .com-content-category-blog__items.blog-items {
        display: flex ;
        justify-content: space-between;
        flex-wrap: wrap;
            align-items: stretch;
      }
      .com-content-category-blog__items.blog-items > div {
        width: calc(33% - 40px);
        padding: 0;
        text-align: left;
        margin: 20px;
      }
      .com-content-category-blog.blog .com-content-category-blog__item figure {
        overflow: hidden;
      }
      .com-content-category-blog.blog .com-content-category-blog__item:hover img {
        transform: scale(1.1);
      }
      .com-content-article.item-page h1 {
        font-size: 3vw;
        font-weight: bold;
        line-height: 3.1vw;
        margin: 30px 0;
        color: #ff5301;
      }
      .site-footer li {
        list-style: none;
      }
      .productslist-list .row > div:hover {
        transform: translate(0,-10px);
      }
      .productslist-list .row > div:hover .card-img-top img {
        transform: scale(1.05);
      }
      .favoritesection {
        display: none !important;
      } 
      .com-content-category-blog__item.blog-item .item-content {
        padding: 20px 30px;
      }
      .com-content-category-blog.blog .page-header h2 {
        line-height: 1.5vw;
      }
      .com-content-category-blog.blog .page-header a {
        color: #ee4d00;
        text-decoration: none;
        font-weight: bold;
        font-size: 1.5vw;
        line-height: 1.5vw;
      }
      .available-products.mb-4 h3.section-title.available-title {
        padding-left: 20px;
      }
      .card-title {
        font-size: 1.1rem !important;
        font-weight: bold;
        color: #909090 !important;
        line-height: 25px;
        min-height: 75px !important;
      }
      .card-body {
        width: 88%;
        margin: auto;
        padding: 20px 0 !important;
      }
      .col-12.col-sm-6.col-lg-4 {
        margin-bottom: 50px;
      }
      .card-img-top {
        width: 88% !important;
        aspect-ratio: 1/1;
        position: relative;
        margin: auto;
      }

      .card-img-top .placeholder {
        background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%) !important;
        width: 100%;
        height: 100% !important;
        position: absolute;
        top: 0;
        left: 0;
        align-items: center;
        display: flex !important;
        color: #adb5bd;
        font-size: 3rem;
      }

      .card-img-top .placeholder .bi.bi-image
      {
        margin: auto;
      }

      .tt {
        border: 1px solid #c4c2c2;
        margin-bottom: 5px;
        padding: 2px 5px;
        width: 100%;
        border-radius: 10px;
        -o-border-radius: 10px;
        -moz-border-radius: 10px;
        -webkit-border-radius: 10px;
        color: #999;
        font-size: 0.9rem;
      }
      .product-tags {
        margin-top: 25px;
      }

      .mod_product_list h2.products-title span.title-sub {
        color: #000;
        font-size: 1.5rem;
        font-weight: bold;
        margin-left: 0;
      }
      .products-section .row , .special-products-section .row {
        width: 95%;
        margin: auto;
      }
      .small-slideshow-section #uk-slideshow-5 {
        aspect-ratio: 16 / 6 !important;
      }
      .visited-products-section {
        background: none;
        border: none;
      }

      .mod_product_list .product-card {
        box-shadow: none !important;
        border: none;
        border-radius: 0 !important;
      }

      .mod_product_list .col-6.col-lg-2.mb-4:not(:nth-child(6n+6)) 
      {
        border-right: 1.5px solid #ff5200 !important;
      }

      .mod_product_list .col-6.col-lg-2.mb-4 {
        margin-bottom: 50px !important;
      }

      .mod_product_list .product-tags .prodtags {
        border: 1px solid #ccc;
        margin-bottom: 7px;
        padding: 3px 5px;
        color: #888;
        border-radius: 5px;
        width: 100%;
      }

      .mod_product_list .col-6.col-lg-2.mb-4:hover .product-title a ,
      .mod_product_list .product-title a:hover ,
      .col-12.col-sm-6.col-lg-4:hover .card-title 
      {
          color:#000 !important;
      }
      .mod_product_list .product-title a {
        color: #848484;
      }
      .special-offer-products .badge,.sold-products .badge {
  z-index: 1;
}
      .mod_product_list .col-6.col-lg-2.mb-4:hover .prodtags ,
      .col-12.col-sm-6.col-lg-4:hover .tt
      {
        border-color: #f26522;
        background: #fff;
        color: #333;
      }

      .productslist-filters .bi-lightning-charge ,
      .mb-4.brand-filter-container .bi-building ,
      .mb-4.rated-filter .bi-speedometer2 ,
      .mb-4.body-filter .bi-box-seam ,
      .mb-4.year-filter .bi-calendar3
      {
        display: none;
      }
      .engine-power label
      {
        background: url("../images/enginepower.png") no-repeat 0 0;
        padding-left: 46px;
        height: 35px;
        line-height: 33px;
        background-size: contain;
        font-size: .85vw;
      }
      
      .mb-4.brand-filter-container label
      {
        background: url("../images/manufacturer.png") no-repeat 0 0;
        padding-left: 46px;
        height: 35px;
        line-height: 33px;
        background-size: contain;
      }
      
      .mb-4.rated-filter label
      {
        background: url("../images/enginepower.png") no-repeat 0 0;
        padding-left: 46px;
        height: 35px;
        line-height: 33px;
        background-size: contain;
      }
      
      .mb-4.body-filter label
      {
        background: url("../images/bodytype.png") no-repeat 0 0;
        padding-left: 46px;
        height: 35px;
        line-height: 33px;
        background-size: contain;
      }
      
      .mb-4.year-filter label
      {
        background: url("../images/year.png") no-repeat 0 0;
        padding-left: 46px;
        height: 35px;
        line-height: 33px;
        background-size: contain;
      }

      .product-gallery .placeholder-image {
        width: 30vw !important;
        height: 30vw !important;
      }

      .product-gallery .main-image.mb-3 {
        width: 100%;
        box-shadow: none;
        border: 2px solid #acacac;
        border-radius:          20px;
        -o-border-radius:       20px;
        -moz-border-radius:     20px;
        -webkit-border-radius:  20px;
        height:auto;
      }

      .product-info .product-title.mb-3 {
        color: #000;
        font-size: 2rem;
      }
      #addToFavorite {
        color: #acacac;
        border: none;
        line-height: 17px;
      }
      #addToFavorite:hover {
        color: #fff;
        
      }

      #addToFavorite i {
        font-size: 17px;
      }

      .product-tags .badge {
        border-radius:          8px;
        -o-border-radius:       8px;
        -moz-border-radius:     8px;
        -webkit-border-radius:  8px;
        background-color: #fff !important;
        color: #777 !important;
        border-color: #777;
        font-size: 16px;
        font-weight: normal;
      }

      .product-info .product-tags {
        margin-bottom: 20px !important;
      }

      .product-info .manufacturer-info.mb-4 {
        background: none;
        padding: 0;
        margin-bottom: 10px !important;
      }
      .row.mb-5.topContent > div {
        position: relative;
      }
      .row.mb-5.topContent > div:nth-child(2) {
        width: 60vw;
      }
      .product-info .manufacturer-card {
        border: none !important;
        box-shadow: none !important;
      }

      .product-info .manufacturer-card h6 {
        font-size: 1.1rem;
        color: #9a9a9a !important;
        margin-bottom: 21px;
      }
      .manufacturer-card:hover
      {
        transform: none !important;
      }
      .available-products.mb-4 {
        margin-top: 37px;
      }

      .product-info .manufacturer-card h6 {
        text-align: left;
        border-bottom: thin solid #ccc;
        padding-bottom: 10px;
        font-size: 13px;
        text-transform: uppercase;
      }
      #getQuoteBtn {
        width: auto !important;
        height: 71px;
        border-radius: 0;
        text-align: left;
        font-size: 1.6rem;
        line-height: 47px;
        border-radius: 7px;
      }

      #getQuoteBtn span{
          background: url("../images/quote.svg") no-repeat 0 0 ;
          width: 50px;
          height: 50px; 
          float: left;
          margin-right: 5px;
      }

      #getQuoteBtn i {
        display: none;
      }

      .product-description.mb-5 {
        box-shadow: none;
        padding-left: 0;
      }

      .section-title.text-primary.mb-4 span {
        color: #ff5200;
        font-size: 3rem;
      }
      .section-title.text-primary.mb-4 {
        color: #000 !important;
        border: 2px solid #ff5200;
        width: calc(400px + 3vw);
        border-radius:          17px;
        -o-border-radius:       17px;
        -moz-border-radius:     17px;
        -webkit-border-radius:  17px;
        padding: 12px 12px 12px 3vw;
        border-left: none;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
      #main-content .container {
        width: 100% !important;
      }
      .row.mb-5.topContent ,
      .d-flex.justify-content-end.mb-3.favoritesection
      {
        width: 95%;
        margin: auto;  
      }
      .description-content {
        width: 94%;
        margin: auto;
        color: #000;
        font-size: 1.1rem;
      }
      .technical-specifications.mb-5 {
        padding: 0;
        background: none;
      }
      #main-content .container .col-12 {
        padding: 0;
        
      }
      .technical-specifications.mb-5 .row {
        width: 95%;
        margin: auto;
      }
      .technical-specifications .spec-category {
        border: none;
        font-weight: bold;
        font-size: 1.3rem;
      }
      .technical-specifications.mb-5 .row ul {
        list-style: disc;
        margin-left: 20px;
      }

      .product-overview.mb-4 {
        margin-top: 40px !important;
      }
      .product-overview.mb-4 .text-muted {
        color: #6b6b6b !important;
        font-size: 1rem;
        text-align: justify;
        max-height: 9vw;
        overflow: hidden;
      }
      .manufacturer-info.mb-4 a {
        color: #ff5606;
        text-decoration: none;
      }
      .manufacturer-logo img.img-fluid {
        height: 60px;
        object-fit: contain;
        margin: auto;
      }
      
      .download-catalogs .catalog-list {
        width: 94%;
        margin: auto;
      }

      .download-catalogs .catalog-list .catalog-item {
        padding: 0 !important;
        border: none !important;
        margin-bottom: 10px !important;
        position: relative;
      }
      .download-catalogs .catalog-list .catalog-item .catalog-name {
        font-size: 0.85rem;
        color: #000;
        font-weight: bold;
        background: #fff;
        padding-right: 20px;
        position: relative;
      }

      .download-catalogs .catalog-list .catalog-item:hover {
        background: none;
        box-shadow: none;
      }
      .download-catalogs .catalog-list .catalog-item:hover .catalog-name
      {
        color: #ff5200;
      }
      
      .download-catalogs .catalog-list .catalog-item div {
        border-bottom: 2px solid #000;
        width: 100%;
        height: 6px;
      }
      .download-catalogs .catalog-list .catalog-item .btn.btn-outline-primary {
        border: none !important;
        color: #ff5200;
        font-weight: bold;
        font-size: 0.9rem;
      }
      .download-catalogs .catalog-list .catalog-item i
      {
        display: none;
      }
      .download-catalogs .catalog-list .catalog-item:hover .btn.btn-outline-primary
      {
        background: #ff5200;
        color: #fff;
      }
      .download-catalogs .catalog-list .catalog-item:hover div
      {
        border-color: #ff5200;
      }

      .video-gallery .section-title.text-primary.mb-4 {
        border: none;
      }
      .video-gallery.mb-5 {
        background: #eee;
        min-height: 520px;
        padding-bottom: 100px;
      }
      .video-gallery .section-title.text-primary.mb-4 {
        border: none;
        padding-top: 40px !important;
      }
      .video-gallery .section-title.text-primary.mb-4 span {
        color: #f95000;
      }

      .video-gallery.mb-5 .row {
        width: 95%;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
      }
      .video-gallery.mb-5 .row .col-md-6.mb-3 {
        width: 31.3%;
        flex-basis: 31.3%;
        margin-bottom: 50px !important;
      }

      .video-gallery.mb-5 .row .col-md-6.mb-3:nth-child(3n+2) {
        margin: 0 3%;
      }

      .video-gallery.mb-5 .row .col-md-6.mb-3 video {
        height: 280px;
        object-fit: cover;
      }

      .product-gallery .col-3 {
        width: 11% !important;
        margin-bottom: 1rem;
      }
      .product-gallery .col-3 > img {
        width: 100%;
        aspect-ratio: 1/1;
        height: auto !important;
        border: 1px solid #f0f0f0;
      } 

      /* Home Product Filters Module Styles */
.mod-home-product-filters {
  padding: 2rem 0;
  background: none;
}
.filters-section {
  background: none;
}
.mod-home-product-filters .filter-section {
  margin-bottom: 2rem;
}

.mod-home-product-filters .filter-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 0.75rem;
}

.mod-home-product-filters .filter-header i {
  font-size: 1.5rem;
  color: var(--accent-color, #f26522);
}

.mod-home-product-filters .filter-header h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
}

/* KVA Filter Styles */
.mod-home-product-filters .kva-filter .filter-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mod-home-product-filters .kva-item {
  display: block;
  padding: 1rem 1.5rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: all 0.25s ease;
  text-align: center;
}

.mod-home-product-filters .kva-item:hover {
  background: linear-gradient(135deg, #FF7300 0%, #FF4500 100%);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 115, 0, 0.3);
}

.mod-home-product-filters .kva-item.active {
  background: linear-gradient(135deg, #FF7300 0%, #FF4500 100%);
  color: #ffffff;
  border-color: transparent;
}

/* Brand Filter Styles */
.mod-home-product-filters .brand-filter .filter-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  width: 100%;
}

.mod-home-product-filters .brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  color: #666;
  transition: all 0.25s ease;
  min-height: 128px;
  position: relative;
  overflow: hidden;
    filter: grayscale(1);
}

.mod-home-product-filters .brand-item:hover {
  background: #eee;
/*  color: #ffffff;*/
  /*border-color: #000000;*/
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
   filter: grayscale(0);
}
 /*
.mod-home-product-filters .brand-item:hover .brand-logo {
 filter: brightness(0) invert(1);
   
}*/

.mod-home-product-filters .brand-item.active {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.mod-home-product-filters .brand-item.active .brand-logo {
  filter: brightness(0) invert(1);
}

.mod-home-product-filters .brand-logo {
  max-width: 100%;
  max-height: 35px;
  object-fit: contain;
  transition: filter 0.25s ease;
}

.mod-home-product-filters .brand-name {
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
}

/* More Brands Button */
.mod-home-product-filters .more-brands-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  transition: all 0.25s ease;
  min-height: 80px;
  cursor: pointer;
  width: 100%;
  grid-column: span 1;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mod-home-product-filters .more-brands-btn:hover {
  background: #f8f9fa;
  border-color: var(--accent-color, #f26522);
  color: var(--accent-color, #f26522);
}

/* Hidden Brands Animation */
.mod-home-product-filters .hidden-brands {
  grid-column: 1 / -1;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 0.75rem;
  width: 100%;
}

@keyframes slideDown {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
      opacity: 1;
      transform: translateY(0);
  }
  to {
      opacity: 0;
      transform: translateY(-20px);
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .mod-home-product-filters .filter-section {
      margin-bottom: 3rem;
  }
  
  .mod-home-product-filters .brand-filter .filter-items {
      grid-template-columns: repeat(3, 1fr);
  }
  
  .mod-home-product-filters .hidden-brands {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767.98px) {
  .mod-home-product-filters {
      padding: 1.5rem 0;
  }
  
  .mod-home-product-filters .filter-header {
      margin-bottom: 1rem;
  }
  
  .mod-home-product-filters .filter-header h3 {
      font-size: 1.1rem;
  }
  
  .mod-home-product-filters .kva-item {
      padding: 0.875rem 1.25rem;
      font-size: 0.9rem;
  }
  
  .mod-home-product-filters .brand-item {
      min-height: 70px;
      padding: 0.875rem;
  }
  
  .mod-home-product-filters .brand-logo {
      max-height: 35px;
  }
  
  .mod-home-product-filters .brand-filter .filter-items {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
  }
  
  .mod-home-product-filters .hidden-brands {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .mod-home-product-filters .brand-filter .filter-items {
      grid-template-columns: repeat(2, 1fr);
  }
  
  .mod-home-product-filters .hidden-brands {
      grid-template-columns: repeat(2, 1fr);
  }
  #getQuoteBtn
  {
    width: 100% !important;
  }
  .section-title.text-primary.mb-4
  {
      width: calc(100% - 1rem);
      font-size: 1.4rem;
      padding: 12px 12px 12px 2rem;
  }
  .section-title.text-primary.mb-4 span
  {
    font-size: 2.5rem;
  }
  .product-description.mb-5 {
    padding: 0;
  }
  .video-gallery.mb-5 .row .col-md-6.mb-3 {
    width: 100%;
    flex-basis: 100%;
  }
  .video-gallery.mb-5 .row .col-md-6.mb-3:nth-child(3n+2) {
    margin: 0 0 50px;
      
  }
}





/* Focus States for Accessibility */
.mod-home-product-filters .filter-item:focus {
  outline: 2px solid var(--accent-color, #f26522);
  outline-offset: 2px;
}

.mod-home-product-filters .more-brands-btn:focus {
  outline: 2px solid var(--accent-color, #f26522);
  outline-offset: 2px;
}

/* No data message */
.mod-home-product-filters .no-data-message {
  text-align: center;
  padding: 2rem;
  color: #666;
  font-style: italic;
  background: #f8f9fa;
  border: 1px dashed #dee2e6;
  border-radius: 8px;
}

.mod-home-product-filters .no-data-message p {
  margin: 0;
  font-size: 0.9rem;
}


.mod-home-product-filters .brand-item[data-brand="caterpillar"] .brand-logo {
max-height: 33px;
}

.mod-home-product-filters .brand-item[data-brand="isuzu"] .brand-logo {
max-height: 32px;
}
.mod-home-product-filters .brand-item[data-brand="yanmar"] .brand-logo {
max-height: 31px;
}
.mod-home-product-filters .brand-item[data-brand="airman"] .brand-logo {
max-height: 31px;
}
.mod-home-product-filters .brand-item[data-brand="nissan-diesel"] .brand-logo {
max-height: 30px;
}
.mod-home-product-filters .brand-item[data-brand="hino"] .brand-logo {
max-height: 32px;
}
.mod-home-product-filters .brand-item[data-brand="meidensha"] .brand-logo {
max-height: 29px;
}
.mod-home-product-filters .brand-item[data-brand="doosan"] .brand-logo {
max-height: 27px;
}
.mod-home-product-filters .brand-item[data-brand="hitachi"] .brand-logo {
max-height: 27px;
}

.mod-home-product-filters .brand-item[data-brand="mtu"] .brand-logo {
max-height: 47px;
}
.mod-home-product-filters .brand-item[data-brand="volvo-penta"] .brand-logo {
max-height: 44px;
}
.mod-home-product-filters .brand-item[data-brand="perkins"] .brand-logo {
max-height: 48px;
}
.mod-home-product-filters .brand-item[data-brand="deutz"] .brand-logo {
max-height: 48px;
}

.mod-home-product-filters .brand-item[data-brand="man"] .brand-logo {
max-height: 57px;
}

.mod-home-product-filters .brand-item[data-brand="john-deere"] .brand-logo {
max-height: 45px;
}

.mod-home-product-filters .brand-item[data-brand="mq-power"] .brand-logo {
max-height: 58px;
}

.mod-home-product-filters .brand-item[data-brand="stamford"] .brand-logo {
max-height: 55px;
}


.mod-home-product-filters .brand-item[data-brand="fg-wilson"] .brand-logo {
max-height: 60px;
}






#hidden-brands a:nth-child(n+15) {
display: none;
}
.hero-section .uk-scope:first-child {
  display:block;
}

.hero-section .uk-scope:last-child {
  display:none;
}

.com-content-article.item-page {
  padding: 30px 20vw;
}

@media (orientation: portrait) {
    .site-header .container .row.align-items-center .col-md-3 {
        width: 77%;
        border: none;
    }
    .card-title {
      min-height: initial !important;
    }
    .com-content-article.item-page {
      padding: 30px 10vw;
    }

    .site-header .container .row.align-items-center .col-md-6 {
        width: 22%;
        border: none;
    }
    .site-header .container .row.align-items-center .col-md-3:last-child {
        display: none;
    }
    .site-header .row
    {
      border-bottom: 2px solid #000;
      position: relative;
    }

    #navbarNav {
      position: absolute;
      top: 70px;
      width: 100%;
      left: 0;
      padding: 10px 20px;
    }
    .navbar.navbar-expand-lg {
      position: static;
    }
    .navbar-toggler {
      border: none;
      padding: 0;
      margin: auto;
    }
    .hero-section .uk-scope:first-child {
      display:none;
    }
    
    .hero-section .uk-scope:last-child {
      display:block;
    }
    .hero-section {
      min-height: auto;
    }
    .slide001-title01 {
      font-size: 1.7rem;
    }
    .slide001-title01 span {
      font-size: 2.8rem;
    }
    .slide001-title02, .slide001-title03 {
      color: #000;
      font-size: 1rem;
      line-height: 20px;
    }
    .about-top-home {
      font-size: .85vw;
    }
    .home-hero-section-buttons a {
      display: inline-block;
    } 
    .hero-section .uk-scope::after
    {
      bottom: -123px;
      background-size: cover;
      height: 140px;
    }
    .hero-section {
      margin-bottom: 105px;
    }
    .filter-section.kva-filter .filter-header i ,
    .filter-section.brand-filter .filter-header i 
    {
      display: none;
    }
    .filter-section.kva-filter .filter-header h3 {
      background: url("../images/enginepower.png") no-repeat 0 0;
      padding-left: 46px;
      height: 35px;
      line-height: 33px;
      background-size: contain;
    }

    .filter-section.brand-filter .filter-header h3
    {
      background: url("../images/manufacturer.png") no-repeat 0 0;
      padding-left: 46px;
      height: 35px;
      line-height: 33px;
      background-size: contain;
    }

    .mod-home-product-filters .kva-item {
      border: 1px solid #939598 !important;
      color: #000 !important;
      text-align: left !important;
      padding: 0.6rem 1.25rem !important;
    }
    .mod-home-product-filters .kva-item:hover, 
    .mod-home-product-filters .kva-item:focus {
      background: #ff5200;
      border-color: #ff5200;
      color: #fff;
    }
    
    .mod_product_list .product-title {
      font-size: 1rem !important;
    }
    .mod_product_list .product-tags {
      font-size: 0.75rem !important;
    }
    
    .mod_product_list .product-tags .prodtags {
      margin-left: auto;
      margin-right: auto;
      width: 100%;
    }
    .products-section .mod_product_list .products-title {
      width: calc(100% - 6vw);
      padding-left: 10vw !important;
      transform: translateX(-5vw) !important;
    }
    .products-section .row {
      width: 100%;
      margin: auto;
    }
    .products-section .mod_product_list .col-6.col-lg-2.mb-4:nth-child(2n) {
      border-right: none !important;
    }

    .small-slideshow-section {
      height: auto;
      padding-bottom: 20%;
    }
    .small-slideshow-section .uk-position-relative {
      height: auto;
    }

    .small-slideshow-section .uk-overlay.uk-position-right
    {
      transform: translateY(-80%) !important;
    }
    .small-slideshow-section .slidebg
    {
      bottom: -30px;
      width: 100%;
      height: 74px;
      background-size: cover;
    }
    h2.articleTitle
    {
      padding: 5px 10px 10px 10%;
    }
    .articlesInner .uk-scope div div.uk-grid .uk-inline-clip.uk-transition-toggle img
    {
        height: auto;
    }
    .articles-section .uk-inline-clip.uk-transition-toggle {
      margin-right: 4%;
    }

    .articlesInner .uk-scope div div.uk-grid div:last-child
    {
        background: url("../images/articledecmob.jpg") no-repeat 0 0 !important;
        margin: 0 !important;
        height: auto !important;
    }
    .articlesInner .uk-scope div div.uk-grid .uk-padding
    {
      padding-left: 30px !important;
    }
    .articlesInner .uk-scope div div.uk-grid div .uk-margin {
      display: none;
    }
    .articlesInner .uk-scope div div.uk-grid .uk-padding .uk-h3 {
      margin: 0;
      height: 150px;
      
      display: block;
    }
    
    .articlesInner .uk-scope div div.uk-grid .uk-padding .uk-h3 a {
      color: #000 !important;
      line-height: 1rem !important;
      font-size: 1.1rem !important;
    }
    .articlesInner .uk-scope div div.uk-grid:nth-child(2n+1) > div:first-child {
      margin-right: 15px;
    }
    .articlesInner .uk-scope div div.uk-grid div:last-child p {
      float: right;
      margin-top: 25px;
    }
    .articlesInner .uk-scope div div.uk-grid:nth-child(2n) > div:last-child .uk-padding {
      padding-right: 30px;
    }
    .consultInner .zoo-item-list {
      width: 100%;
      float: none;
      padding-right: 0;
    }
    .consultInner .rsform {
      background: none;
      float: none;
      width: 100%;
      padding: 0;
    }
    .consult-section {
      height: auto;
    }
    .site-footer .rowIn {
      width: 100%;
      padding-bottom: 50px;
    }
    .footerlogo {
      height: auto;
      padding: 30px;
    }
    .site-footer .map {
      width: 100%;
      height: auto;
    }
    #footerMask
    {
      bottom: 12px;
    }
    .site-footer .row {
      height: auto;
    }
    .footerBottomIn .footermenu {
      width: 100%;
      border: none;
    }
    .row.footer-bottom {
      background: #000;
    }
    .row.footer-bottom h3 {
      text-align: center;
      font-size: 1.7rem;
    }
    .row.footer-bottom ul {
      text-align: center;
    }
    .footerBottomIn .footermenu:not(:last-child) {
      border-bottom: 2px solid #ff5200;
      border-right: none;
    }
    .footerBottomIn
    {
      width: 90% !important;
    }
    .footerBottomIn .footermenu {
      height: auto;
      padding-right: 0;
      padding-left: 0;
    }
    .interior-hero .slide001-title01 span {
      font-size: 4.2rem;
    }
    .interior-hero .uk-scope::after
    {
        height: 140px;
        bottom: 21px;
        background-size: cover;
    }
    #productslist-app .col-12.d-md-none {
      width: 90% !important;
      margin: auto;
    }
    .available-products.mb-4 .row.g-3 ,
    .sold-products.mb-4
    {
      width: 95%;
      margin: auto; 
    }
    .available-products.mb-4 .col-12.col-sm-6.col-lg-4 ,
    .sold-products.mb-4 .col-12.col-sm-6.col-lg-4 
    {
      width: 50%;
      border-width: 1px;
    }
    .consultation-section .consultInner {
      width: 90%;
    }
    .available-products.mb-4 .col-12.col-sm-6.col-lg-4:nth-child(2n), 
    .sold-products.mb-4 .col-12.col-sm-6.col-lg-4:nth-child(2n) 
    {
      border-right: none;
    }
    .available-products.mb-4 .card-title ,
    .sold-products.mb-4 .card-title 
    {
      font-size: .9rem !important;
    }
    .available-products.mb-4 .tt ,
    .sold-products.mb-4 .tt 
    {
      width: 100%;
      font-size: 0.8rem;
    }
    .products-section .container {
      width: 100% !important;
      padding: 0;
    }
    .available-products.mb-4 .col-12.col-sm-6.col-lg-4:not(:nth-child(2n)) {
      border-right: 1px solid #ff5a00;
    }
    .visited-products-section .container {
      width: 100% !important;
      padding: 0;
    }
    .visited-products-section .mod_product_list .products-title {
      width: calc(300px + 6vw);
      padding-left: 10% !important;
    }
    .breadcrumb {
      width: 95%;
      margin: auto;
    }
    .breadcrumb .breadcrumb-item {
      font-size: 0.9rem;
      color: #ff5200 !important;
    }
    .breadcrumb .breadcrumb-item a {
      color: #000;
      font-weight: bold;
    }
    .product-info .product-title.mb-3
    {
      font-size: 1.5rem;
    }
    .product-gallery .col-3 > img{
      
      aspect-ratio: 1/1;
      height: auto !important;
    }
    .product-gallery .col-3{
      padding: 0 0.1rem;
    }
    .product-info .product-tags .badge {
      font-size: 0.8rem;
      margin-right: .2rem !important;
      padding: 0.4rem 0.6rem;
    }
    .product-info .product-tags {
      margin-bottom: 30% !important;
    }
    .product-info .manufacturer-card h6
    {
      font-size: 1.3rem;
      margin-bottom: 15px;
    }
    .manufacturer-logo {
      padding: 0 2rem;
    }
    
    .productslist-list .img-fluid {
      height: auto !important;
      width: 100% !important;
    }
    .col-12.col-sm-6.col-lg-3:not(:nth-child(4n)) {
      border-right: none !important;
    }

    .row.mb-5.topContent .col-lg-6:nth-child(1) {
      width: 100% !important;
      height: auto;
    }
    .main-image img {
      height: 85vw !important;
    }
    .row.mb-5.topContent > div:nth-child(2) {
      width: 100% !important;
    }
    .mb-4[aria-label="breadcrumb"] {
      margin: 0 3vw !important;
    }
    .product-info .product-tags {
      margin-bottom: 20px !important;
    }
    .manufacturer-card .manufacturer-logo a img[alt="Sawafuji Electric Co. Logo"] {
      transform: scale(2.2);
      margin-top: 50px !important;
      margin-bottom: 0 !important;
    }
    .manufacturer-info.mb-4 .col-md-4 {
      margin: 0;
    }
    .manufacturer-info.mb-4 {
      border: thin solid #ddd;
    }
    .quote-section {
      border: none !important;
    }
    #getQuoteBtn {
      text-align: center;
    }
    .product-gallery .main-image img {
      height: 90vw !important;
      object-fit: contain !important;
    }
} 









.awesomplete {
  display: block;
  width: calc(100% - 73px);
}
.awesomplete input {
  border-radius: 5px 0 0 5px;
}

.btn-primary {
  --bs-btn-color: #fff !important;
  --bs-btn-bg: #fd7e0d !important;
  --bs-btn-border-color: #fd7e0d !important;
  --bs-btn-hover-color: #fff !important;
  --bs-btn-hover-bg: #f05a00 !important;
  --bs-btn-hover-border-color: #ca520a !important;
  --bs-btn-focus-shadow-rgb: 49,132,253 !important;
  --bs-btn-active-color: #fff !important;
  --bs-btn-active-bg: #ca520a !important;
  --bs-btn-active-border-color: #0a53be !important;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125) !important;
  --bs-btn-disabled-color: #fff !important;
  --bs-btn-disabled-bg: #fd510d !important;
  --bs-btn-disabled-border-color: #fd5c0d !important;
}


.com-finder.finder {
  padding: 3vw;
}
.com-finder.finder a {
  color: #fd7e0d;
  text-decoration: none;
  transition: all ease .25s;
}
.com-finder.finder a:hover {
  transform: translate(10px);
  text-decoration: none !important;
  color: #f26522;
}
.com-finder.finder .result__item + .result__item {
  border-color: #eee;
}

@media (max-width: 991.98px) {
    .custom-collapse {
        display: block; /* Change from none to block to allow animation */
        max-height: 0; /* Initial state for slide-up/down */
        opacity: 0; /* Initial state for fade */
        overflow: hidden; /* Hide overflowing content during animation */
        transition: max-height 0.3s ease-out, opacity 0.3s ease-out; /* Animation properties */
        position: absolute;
        width: 100%;
        left: 0;
        background-color: var(--background-color); /* Or your desired background */
        z-index: var(--z-dropdown); /* Ensure it's above other content */
        box-shadow: var(--shadow-md);
        padding: var(--spacing-md) 0;
    }

    .custom-collapse.show {
        max-height: 500px; /* A value large enough to show all content */
        opacity: 1; /* Fade in */
    }
}

@media (min-width: 992px) {
    .custom-collapse {
        display: flex !important; /* Always show on desktop */
    }
}







.row.mb-5.topContent .col-lg-6:nth-child(1) {
  width: 30vw;
  height: auto;
}
.img-fluid, .img-fluid img {
  height: 30vw;
}
.main-image img {
  height: 30vw !important;  object-fit: contain !important;
}
.row.mb-5.topContent {
  margin-bottom: 50px !important;
}
.product-info .manufacturer-card h6 {
  text-align: left;
  border-bottom: thin solid #ccc;
  padding-bottom: 3px;
  font-size: 13px;
  text-transform: uppercase;
}
.quote-section {
  border-top: thin solid #ccc;
  padding-top: 20px;
}

.extra-products h2 {
  width: auto !important;
  display: inline-block;
  padding-right: 3vw !important;
}


.productslist-list .img-fluid {
  max-width: 100%;
  height: 18vw;
  aspect-ratio: 1/1;
  width: 18vw;
  object-fit: cover;
  border-radius: 10px;
  object-position: center;
}


.sku_copy {
  cursor: pointer;
  transition: all ease .25s;
}
.sku_copy:hover {
  color: #f26b35;
}
.productslist-list .placeholder {
  cursor: pointer;
}

.consultInner ul li {
  list-style: none;
}
.col-lg-6 .quote-section a {
  color: #f26522;
  text-decoration: none;
  transition: all ease .25s;
  
  border-top: thin solid rgba(255,255,255,0);
  border-bottom: thin solid rgba(255,255,255,0);
}
.col-lg-6 .quote-section a:hover {
  border-top: thin solid #f26522;
  border-bottom: thin solid #f26522;
  padding:3px 0px 5px 0;
}

.manufacturer-card .manufacturer-logo a img[alt="Sawafuji Electric Co. Logo"] {
  transform:scale(2.3);
  margin-top: 50px !important;
  margin-bottom:20px !important;
}