/**
 * Component Styles
 * Manton Forklifts WordPress Theme
 */

/* ===================================
   Buttons
   =================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: var(--button-radius, 999px);
    cursor: pointer;
    transition: all 0.18s ease;
    font-family: inherit;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-orange {
    background: var(--wp--preset--color--orange-500, #F26B21);
    color: var(--wp--preset--color--white, #FFFFFF);
}

.btn-orange:hover {
    background: var(--wp--preset--color--navy-800, #112B54);
    color: var(--wp--preset--color--white, #FFFFFF);
}

.btn-navy {
    background: var(--wp--preset--color--navy-900, #0B1C3A);
    color: var(--wp--preset--color--white, #FFFFFF);
}

.btn-navy:hover {
    background: var(--wp--preset--color--navy-800, #112B54);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--wp--preset--color--navy-900, #0B1C3A);
    color: var(--wp--preset--color--navy-900, #0B1C3A);
}

.btn-outline:hover {
    background: var(--wp--preset--color--navy-900, #0B1C3A);
    color: var(--wp--preset--color--white, #FFFFFF);
}

.btn-light {
    background: var(--wp--preset--color--sky-050, #EEF2F8);
    color: var(--wp--preset--color--navy-900, #0B1C3A);
}

.btn-light:hover {
    background: var(--wp--preset--color--orange-500, #F26B21);
    color: var(--wp--preset--color--white, #FFFFFF);
}

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* ===================================
   Cards
   =================================== */

.card {
    background: var(--wp--preset--color--white, #FFFFFF);
    border-radius: var(--card-radius, 24px);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(13, 27, 42, 0.12);
}

.card-navy {
    background: var(--wp--preset--color--navy-900, #0B1C3A);
    color: var(--wp--preset--color--white, #FFFFFF);
}

.card-orange {
    background: var(--wp--preset--color--orange-500, #F26B21);
    color: var(--wp--preset--color--white, #FFFFFF);
}

.card-light {
    background: var(--wp--preset--color--sky-050, #EEF2F8);
    color: var(--wp--preset--color--text-900, #0D1B2A);
}

.card-body {
    padding: 32px;
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: var(--wp--preset--color--orange-500, #F26B21);
}

.card-navy .card-icon {
    color: var(--wp--preset--color--orange-500, #F26B21);
}

.card-arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 24px;
    height: 24px;
    opacity: 0.6;
    transition: transform 0.3s ease;
}

.card:hover .card-arrow {
    transform: translate(4px, -4px);
    opacity: 1;
}

/* Service Cards */
.service-card {
    position: relative;
    padding: 48px 32px;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    margin-bottom: 12px;
}

/* ===================================
   Equipment Cards
   =================================== */

.equipment-card {
    background: var(--wp--preset--color--slate-050, #F7F9FC);
    border-radius: var(--card-radius, 24px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(13, 27, 42, 0.08);
    --wp--style--block-gap: 0;
}

.equipment-card.is-layout-flow > * + *,
.equipment-card.is-layout-constrained > * + * {
    margin-block-start: 0 !important;
}

.equipment-card:hover {
    
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(13, 27, 42, 0.15);
}

.equipment-card__image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: var(--wp--preset--color--slate-050, #F7F9FC);
}

.equipment-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.equipment-card:hover .equipment-card__image img {
    transform: scale(1.05);
}

.equipment-card__content {
    padding: 0 24px;
    background: var(--wp--preset--color--sky-050, #EEF2F8);
    flex: 1;
    margin: 0;
    border-top: 1px solid rgba(13, 27, 42, 0.06);
}

.equipment-card__content > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Remove default block spacing between image and specs */
.equipment-card .wp-block-post-featured-image {
    margin: 0 !important;

}

.equipment-card .wp-block-post-featured-image img {
    display: block;
}


.equipment-card__specs {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 16px 0;
    margin: 0;
}

.equipment-card__spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
    font-size: 14px;
    line-height: 1.4;
}

.equipment-card__spec-row:last-of-type {
    border-bottom: none;
}

.equipment-card__spec-label {
    color: var(--wp--preset--color--text-900, #0D1B2A);
    font-weight: 500;
}

.equipment-card__spec-value {
    color: var(--wp--preset--color--text-900, #0D1B2A);
    font-weight: 600;
    text-align: right;
}

/* Price row with orange color */
.equipment-card__price .equipment-card__spec-value {
    color: var(--wp--preset--color--orange-500, #F26B21);
    font-size: 16px;
}

/* Legacy spec styles for backward compatibility */
.equipment-card__spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(13, 27, 42, 0.08);
    font-size: 14px;
}

.equipment-card__spec:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--wp--preset--color--text-600, #526173);
    font-weight: 500;
}

.spec-value {
    color: var(--wp--preset--color--text-900, #0D1B2A);
    font-weight: 600;
}

.price-poa {
    font-size: 18px;
    font-weight: 600;
}

.equipment-card__footer {
    padding: 0;
    margin: 0;
    border-radius: 0 0 var(--card-radius, 24px) var(--card-radius, 24px);
    overflow: hidden;
    background: var(--wp--preset--color--navy-900, #0B1C3A);
    line-height: 0;
}

.equipment-card__footer .btn {
    border-radius: 0 0 var(--card-radius, 24px) var(--card-radius, 24px);
    padding: 16px;
}

/* WordPress post-link as button in card footer */
.equipment-card__footer .wp-block-post-link,
.equipment-card__footer .wp-block-post-excerpt,
.equipment-card__footer a {
    display: block;
    width: 100%;
    padding: 16px;
    text-align: center;
    background: var(--wp--preset--color--navy-900, #0B1C3A);
    color: var(--wp--preset--color--white, #FFFFFF) !important;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0 0 var(--card-radius, 24px) var(--card-radius, 24px);
    transition: background 0.2s ease;
    margin: 0;
    box-sizing: border-box;
}

.equipment-card__footer .wp-block-buttons {
    width: 100%;
    margin: 0;
    padding: 0;
    gap: 0;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

.equipment-card__footer .wp-block-button {
    width: 100%;
    margin: 0;
    margin-block-start: 0 !important;
    margin-block-end: 0 !important;
}

.equipment-card__footer .wp-block-button__link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    line-height: 1;
    padding: 16px;
    border-radius: 0 0 var(--card-radius, 24px) var(--card-radius, 24px);
    transform: none;
    box-shadow: none;
}

.equipment-card__footer .wp-block-button__link:hover {
    background: var(--wp--preset--color--navy-800, #112B54);
    border-radius: 0 0 var(--card-radius, 24px) var(--card-radius, 24px);
    transform: none;
}

.equipment-card__footer .wp-block-post-excerpt p {
    margin: 0;
}

.equipment-card__footer .wp-block-post-excerpt a {
    color: var(--wp--preset--color--white, #FFFFFF) !important;
    padding: 0;
    border-radius: 0;
    background: transparent;
    display: block;
    line-height: 1.2;
}

.equipment-card__footer .wp-block-post-excerpt {
    margin: 0;
    padding: 0;
}

/* Legacy hover rules disabled to avoid square hover background */

/* Badge */
.badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 999px;
}

.badge-success {
    background: #10B981;
    color: white;
}

.badge-warning {
    background: #F59E0B;
    color: white;
}

.badge-secondary {
    background: #6B7280;
    color: white;
}

/* ===================================
   Filter Pills
   =================================== */

.filter-section {
    background: var(--wp--preset--color--orange-500, #F26B21);
    padding: 32px;
    border-radius: var(--card-radius, 24px);
    margin-bottom: 48px;
}

.filter-group {
    margin-bottom: 24px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group__title {
    font-size: 14px;
    font-weight: 600;
    color: var(--wp--preset--color--white, #FFFFFF);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    color: var(--wp--preset--color--white, #FFFFFF);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.filter-pill input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    cursor: pointer;
}

.filter-pill.active {
    background: var(--wp--preset--color--white, #FFFFFF);
    border-color: var(--wp--preset--color--white, #FFFFFF);
    color: var(--wp--preset--color--orange-500, #F26B21);
}

/* ===================================
   Hero Section
   =================================== */

.hero-split {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.hero-carousel {
    position: relative;
    border-radius: var(--card-radius, 24px);
    overflow: hidden;
    min-height: 500px;
}

.hero-slide {
    position: relative;
    height: 500px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 28, 58, 0.9) 0%,
        rgba(11, 28, 58, 0.4) 50%,
        transparent 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 48px;
    color: var(--wp--preset--color--white, #FFFFFF);
    max-width: 600px;
}

.hero-content h1 {
    margin-bottom: 16px;
    color: var(--wp--preset--color--white, #FFFFFF);
}

.hero-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.9);
}

.carousel-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    gap: 12px;
    z-index: 3;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--wp--preset--color--white, #FFFFFF);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.carousel-btn:hover {
    background: var(--wp--preset--color--orange-500, #F26B21);
    border-color: var(--wp--preset--color--orange-500, #F26B21);
}

/* Category Panel */
.category-panel {
    background: var(--wp--preset--color--navy-900, #0B1C3A);
    color: var(--wp--preset--color--white, #FFFFFF);
    border-radius: var(--card-radius, 24px);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.category-panel h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: var(--wp--preset--color--white, #FFFFFF);
}

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

/* Front-page hero category links (block markup uses plain <a>) */
.category-panel .category-list a {
    color: var(--wp--preset--color--orange-500, #F26B21);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.category-panel .category-list a:hover {
    color: var(--wp--preset--color--white, #FFFFFF);
}

.category-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.category-item:last-child {
    border-bottom: none;
}

.category-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.category-link:hover {
    color: var(--wp--preset--color--orange-500, #F26B21);
    padding-left: 8px;
}

.category-link svg {
    width: 20px;
    height: 20px;
    opacity: 0.5;
    transition: opacity 0.2s ease;
}

.category-link:hover svg {
    opacity: 1;
}

/* ===================================
   Logo Strip
   =================================== */

.logo-strip {
    background: var(--wp--preset--color--white, #FFFFFF);
    padding: 48px 0;
    border-radius: var(--card-radius, 24px);
    margin-bottom: 48px;
}

.logo-strip__inner {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo-carousel {
    flex: 1;
    overflow: hidden;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.logo-item:hover {
    opacity: 1;
}

.logo-item img {
    max-height: 60px;
    width: auto;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0);
}

/* ===================================
   Expertise Tiles
   =================================== */

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.expertise-tile {
    position: relative;
    height: 280px;
    border-radius: var(--card-radius, 24px);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.expertise-tile:hover {
    transform: scale(1.02);
}

.expertise-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(11, 28, 58, 0.8) 0%,
        transparent 100%
    );
    transition: background 0.3s ease;
}

.expertise-tile:hover::before {
    background: linear-gradient(
        to top,
        rgba(11, 28, 58, 0.9) 0%,
        rgba(11, 28, 58, 0.3) 100%
    );
}

.expertise-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.expertise-tile:hover::after {
    transform: scale(1.05);
}

.expertise-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    color: var(--wp--preset--color--white, #FFFFFF);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.expertise-content h3 {
    margin: 0;
    font-size: 24px;
    color: var(--wp--preset--color--white, #FFFFFF);
}

.expertise-content svg {
    width: 32px;
    height: 32px;
}

/* ===================================
   Testimonials
   =================================== */

.testimonial-card {
    background: var(--wp--preset--color--sky-050, #EEF2F8);
    border-radius: var(--card-radius, 24px);
    padding: 40px;
    position: relative;
}

.testimonial-quote-icon {
    width: 48px;
    height: 48px;
    color: var(--wp--preset--color--orange-500, #F26B21);
    opacity: 0.3;
    margin-bottom: 24px;
}

.testimonial-logo {
    position: absolute;
    top: 32px;
    right: 32px;
    max-width: 120px;
    max-height: 40px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 24px;
    color: var(--wp--preset--color--text-900, #0D1B2A);
}

.testimonial-author {
    font-weight: 600;
    color: var(--wp--preset--color--text-900, #0D1B2A);
}

.testimonial-author-name {
    color: var(--wp--preset--color--orange-500, #F26B21);
}

/* ===================================
   Responsive
   =================================== */

/* Tablet Breakpoint - 1024px */
@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    /* WordPress columns stack at 782px by default, but we help it along */
    .wp-block-columns {
        flex-wrap: wrap;
    }
}

/* Mobile Breakpoint - 768px */
@media (max-width: 768px) {
    /* Hero Section */
    .hero-content {
        padding: 32px 24px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-slide {
        height: 400px;
    }
    
    /* Cards */
    .card-body,
    .service-card {
        padding: 24px;
    }
    
    /* Filter Section */
    .filter-section {
        padding: 24px;
    }
    
    .filter-pills {
        gap: 6px;
    }
    
    .filter-pill {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    /* Equipment Cards - Force single column on very small screens */
    .listing-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Category Panel */
    .category-panel {
        padding: 24px;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 24px;
    }
    
    .testimonial-logo {
        position: static;
        margin-bottom: 16px;
    }
    
    /* Logo Strip */
    .logo-strip {
        padding: 32px 24px;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    /* Typography Adjustments */
    h1 {
        font-size: 28px !important;
    }
    
    h2 {
        font-size: 24px !important;
    }
    
    h3 {
        font-size: 20px !important;
    }
    
    /* Hero */
    .hero-content {
        padding: 24px 16px;
    }
    
    .hero-slide {
        height: 350px;
    }
    
    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Cards */
    .card-body,
    .service-card,
    .category-panel,
    .filter-section,
    .testimonial-card {
        padding: 20px;
    }
    
    /* Filter Pills - Smaller on tiny screens */
    .filter-pill {
        font-size: 12px;
        padding: 5px 10px;
    }
    
    /* Equipment Cards */
    .equipment-card__image {
        height: 200px;
    }
    
    .equipment-card__content {
        padding: 0 16px;
    }
    
    .equipment-card__spec {
        font-size: 13px;
    }

    .equipment-card__specs {
        padding: 12px 0;
    }
    
    /* Category Links */
    .category-link {
        padding: 12px 0;
        font-size: 14px;
    }
    
    /* Expertise Tiles */
    .expertise-tile {
        height: 200px;
    }
    
    .expertise-content {
        padding: 20px;
    }
    
    .expertise-content h3 {
        font-size: 18px;
    }
}

/* ===================================
   Manufacturer Logo Carousel
   =================================== */

.manufacturer-carousel-wrapper {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
}

.manufacturer-carousel {
    overflow: hidden !important;
    width: 100% !important;
    position: relative !important;
    background: transparent !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

/* Static display (5 or fewer manufacturers) - centered, no animation */
.manufacturer-carousel-wrapper.static .manufacturer-carousel {
    padding: 20px 40px !important;
}

.manufacturer-carousel-wrapper.static .manufacturer-track {
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 48px 64px !important;
    animation: none !important;
    width: auto !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Scrolling display (more than 5 manufacturers) - animated */
.manufacturer-carousel-wrapper.scrolling .manufacturer-track {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    gap: 64px !important;
    animation: scroll-left 40s linear infinite !important;
    width: fit-content !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Pause animation on hover for accessibility */
.manufacturer-carousel-wrapper.scrolling .manufacturer-track:hover {
    animation-play-state: paused !important;
}

.manufacturer-logo {
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 120px !important;
    min-width: 180px !important;
    max-width: 250px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.manufacturer-logo a {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

.manufacturer-logo img {
    max-height: 120px !important;
    max-width: 250px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    filter: none !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
    display: block !important;
}

.manufacturer-logo img:hover,
.manufacturer-logo a:hover img {
    transform: scale(1.05) !important;
}

/* Infinite scroll animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .manufacturer-logo {
        height: 100px !important;
        min-width: 150px !important;
        max-width: 220px !important;
    }
    
    .manufacturer-logo img {
        max-height: 100px !important;
        max-width: 220px !important;
    }
    
    .manufacturer-carousel-wrapper.static .manufacturer-track {
        gap: 32px 48px !important;
    }
    
    .manufacturer-carousel-wrapper.scrolling .manufacturer-track {
        gap: 48px !important;
        animation-duration: 35s !important;
    }
}

@media (max-width: 768px) {
    .manufacturer-carousel-wrapper.static .manufacturer-carousel {
        padding: 15px 20px !important;
    }
    
    .manufacturer-carousel-wrapper.static .manufacturer-track {
        gap: 24px 40px !important;
    }
    
    .manufacturer-carousel-wrapper.scrolling .manufacturer-track {
        gap: 40px !important;
        animation-duration: 30s !important;
    }
    
    .manufacturer-logo {
        height: 90px !important;
        min-width: 140px !important;
        max-width: 200px !important;
    }
    
    .manufacturer-logo img {
        max-height: 90px !important;
        max-width: 200px !important;
    }
}

@media (max-width: 480px) {
    .manufacturer-carousel-wrapper.static .manufacturer-carousel {
        padding: 10px 15px !important;
    }
    
    .manufacturer-carousel-wrapper.static .manufacturer-track {
        gap: 20px 30px !important;
        flex-wrap: wrap !important;
    }
    
    .manufacturer-carousel-wrapper.scrolling .manufacturer-track {
        gap: 30px !important;
        animation-duration: 25s !important;
    }
    
    .manufacturer-logo {
        height: 70px !important;
        min-width: 110px !important;
        max-width: 160px !important;
    }
    
    .manufacturer-logo img {
        max-height: 70px !important;
        max-width: 160px !important;
    }
}
