/* Manufacturers Pages - Dedicated CSS */

/* ============================================
   MANUFACTURER HERO SECTION
   ============================================ */
.manufacturer-hero {
    background: linear-gradient(135deg, #0a4c05 0%, #17bcda 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
}

.manufacturer-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.133 7-7s-3.134-7-7-7-7 3.133-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.133 7-7s-3.134-7-7-7-7 3.133-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.3;
}

.manufacturer-hero .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 30px;
}

.manufacturer-hero .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.8);
}

.manufacturer-hero .hero-cta .btn {
    margin: 5px;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.manufacturer-hero .hero-cta .btn-light {
    background: white;
    color: #0a4c05;
    border: 2px solid white;
}

.manufacturer-hero .hero-cta .btn-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.manufacturer-hero .hero-cta .btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.manufacturer-hero .hero-cta .btn-outline-light:hover {
    background: white;
    color: #0a4c05;
    transform: translateY(-2px);
}

/* ============================================
   PRODUCT SERIES CARDS
   ============================================ */
.product-series-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.product-series-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0a4c05, #17bcda);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-series-card:hover::before {
    transform: scaleX(1);
}

.product-series-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.series-badge {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #0a4c05, #17bcda);
    color: white;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.product-series-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.product-series-card ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.product-series-card ul li {
    padding: 5px 0;
    font-size: 14px;
    color: black;
}
.product-series-card ul li i {
    margin-right: 5px;
}
.product-series-card .text-primary {
    color: #0a4c05 !important;
}
.service-card p {
    color: black;
}
.fa-screwdriver-wrench:before, .fa-tools:before, .fa-calendar-check:before, .fa-headset:before
{
    color:green;
}
.factory-placeholder img{
    width: 100%;
}
/* ============================================
   TECHNOLOGY FEATURES
   ============================================ */
.tech-feature {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.tech-feature:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0a4c05, #17bcda);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    margin-right: 20px;
    flex-shrink: 0;
}

.tech-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.tech-feature p {
    margin: 0;
    color: #666;
    line-height: 1.5;
}


.tech-showcase {
    margin-top: 60px;
    padding: clamp(30px, 5vw, 60px);
    background: linear-gradient(135deg, rgba(10, 76, 5, 0.05) 0%, rgba(23, 188, 218, 0.05) 100%);
    border-radius: 32px;
    border: 1px solid rgba(10, 76, 5, 0.08);
    box-shadow: 0 20px 60px rgba(10, 76, 5, 0.12);
    position: relative;
    overflow: hidden;
}

.tech-showcase::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(23, 188, 218, 0.12), transparent 45%),
                radial-gradient(circle at 80% 0%, rgba(10, 76, 5, 0.10), transparent 55%),
                radial-gradient(circle at 50% 100%, rgba(23, 188, 218, 0.08), transparent 60%);
    pointer-events: none;
    opacity: 0.75;
}

.tech-showcase > * {
    position: relative;
    z-index: 1;
}

.tech-header {
    max-width: 760px;
    margin: 0 auto clamp(32px, 4vw, 48px);
}

.tech-eyebrow {
    display: inline-block;
    padding: 6px 16px;
    margin-bottom: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #0a4c05;
    background: rgba(23, 188, 218, 0.18);
    border-radius: 999px;
}

.tech-subtitle {
    color: #5f6b7a;
    font-size: 1.05rem;
    margin: 0 auto;
}

.tech-section {
    background: transparent;
    border-radius: 0;
    padding: 0;
    border: none;
    box-shadow: none;
}

.tech-section + .tech-section {
    margin-top: clamp(40px, 5vw, 60px);
}

.tech-section-head {
    max-width: 640px;
    margin-bottom: clamp(20px, 3vw, 28px);
}

.tech-section-head h4 {
    font-weight: 600;
    margin-bottom: 12px;
    color: #152234;
}

.tech-section-head p {
    color: #5f6b7a;
    margin: 0;
}

.tech-section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 14px;
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0a4c05;
    background: rgba(10, 76, 5, 0.08);
    border-radius: 999px;
}

.tech-section-eyebrow::before {
    content: '';
    width: 24px;
    height: 2px;
    background: linear-gradient(135deg, #0a4c05, #17bcda);
    border-radius: 999px;
    transform: translateY(1px);
}

.tech-grid {
    --bs-gutter-x: clamp(1.5rem, 4vw, 2.5rem);
    --bs-gutter-y: clamp(1.5rem, 4vw, 2.5rem);
}

.tech-card {
    position: relative;
    height: 100%;
    padding: 28px 26px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 18px;
    border: 1px solid rgba(13, 110, 253, 0.08);
    box-shadow: 0 18px 30px rgba(10, 76, 5, 0.08);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.tech-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(10, 76, 5, 0.35), rgba(23, 188, 218, 0.4));
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}

.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(10, 76, 5, 0.15);
    border-color: transparent;
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card-icon {
    width: 62px;
    height: 62px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10, 76, 5, 0.95), rgba(23, 188, 218, 0.85));
    color: white;
    font-size: 28px;
    box-shadow: 0 12px 25px rgba(23, 188, 218, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tech-card:hover .tech-card-icon {
    transform: scale(1.05);
    box-shadow: 0 18px 30px rgba(10, 76, 5, 0.25);
}

.tech-card h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #152234;
    margin: 0;
}

.tech-card {
    min-height: 100%;
}

.tech-card p {
    color: #5f6b7a;
    line-height: 1.55;
}

@media (max-width: 991.98px) {
    .tech-showcase {
        padding: clamp(24px, 7vw, 40px);
        border-radius: 24px;
    }

    .tech-section-head {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .tech-section-eyebrow::before {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .tech-showcase {
        margin-top: 40px;
    }

    .tech-card {
        padding: 24px 20px;
    }

    .tech-card-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
    }
}

/* ============================================
   SPECIFICATION TABLE
   ============================================ */
.specification-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 100%;
    border-collapse: collapse;
}

.specification-table thead {
    background: linear-gradient(135deg, #0a4c05, #17bcda);
    color: white;
}

.specification-table th, .specification-table td {
    padding: 15px;
    text-align: left;
    border: none;
    vertical-align: middle;
}

.specification-table th {
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.specification-table tbody tr {
    border-bottom: 1px solid #eee;
}

.specification-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

.specification-table tbody tr:hover {
    background: #e9ecef;
    cursor: default;
}

.specification-table td strong {
    color: #0a4c05;
    font-weight: 600;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin: 40px 0;
}

.trust-badge {
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.trust-badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #0a4c05;
    transition: all 0.3s ease;
}

.trust-badge:hover .trust-badge-icon {
    background: #0a4c05;
    color: white;
    transform: scale(1.1);
}

.trust-badge h5 {
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.trust-badge p {
    color: #666;
    font-size: 0.9rem;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #0a4c05;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: #0a4c05;
}

.service-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card i.fa-3x {
    color: #0a4c05;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-card:hover i.fa-3x {
    color: #0a4c05;
    transform: scale(1.1);
}

.service-card ul li {
    padding: 5px 0;
    color: #666;
}

.service-card ul li i.fa-check {
    color: #0a4c05 !important;
    font-weight: bold;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0a4c05, #17bcda);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.process-step-number:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: none;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.service-card .fa-3x {
    color: #0a4c05;
}

.service-card h4 {
    color: #333;
    font-weight: 600;
    margin: 20px 0 15px;
}

.service-card .text-success {
    color: #28a745 !important;
}

/* ============================================
   RELATED LINKS SECTION (Zobacz Także)
   ============================================ */
.related-links-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.related-links-section::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    top: -50%;
    right: -50%;
    background: radial-gradient(circle at center, rgba(10,76,5,0.03) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.related-link-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.related-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(10,76,5,0.1) 0%, rgba(10,76,5,0.02) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.related-link-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #0a4c05 0%, #17bcda 100%);
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.related-link-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(10,76,5,0.15);
}

.related-link-card:hover::before {
    opacity: 1;
}

.related-link-card:hover::after {
    opacity: 0.1;
}

.related-link-card h5 {
    color: #0a4c05;
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
}

.related-link-card h5 i {
    font-size: 1.1rem;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.related-link-card:hover h5 i {
    transform: translateX(5px);
}

.related-link-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.related-link-card .btn {
    position: relative;
    z-index: 2;
    border-radius: 25px;
    padding: 8px 20px;
    font-weight: 600;
    border: 2px solid #0a4c05;
    color: #0a4c05;
    background: transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.related-link-card .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #0a4c05;
    transition: left 0.3s ease;
    z-index: -1;
}

.related-link-card .btn:hover {
    color: white;
    transform: translateX(5px);
}

.related-link-card .btn:hover::before {
    left: 0;
}

/* Glass morphism effect for modern look */
@supports (backdrop-filter: blur(10px)) {
    .related-link-card {
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.9);
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-item {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #333;
    cursor: pointer;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: #0a4c05;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 15px;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   CTA FEATURES
   ============================================ */
.cta-feature {
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cta-feature:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

.cta-feature i {
    display: block;
    margin-bottom: 15px;
}

.cta-feature h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 10px;
}

.cta-feature a {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.cta-feature a:hover {
    color: rgba(255,255,255,0.8);
}


.related-link-card .btn-outline-primary {
    border-color: #0a4c05;
    color: #0a4c05;
}

.related-link-card .btn-outline-primary:hover {
    background: #0a4c05;
    border-color: #0a4c05;
    color: white;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 768px) {
    .manufacturer-hero {
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .manufacturer-hero h1 {
        font-size: 2.5rem;
    }
    
    .product-series-card {
        padding: 20px;
        margin-bottom: 20px;
    }

    .tech-header {
        margin-bottom: 32px;
    }

    .tech-feature {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }
    
    .tech-icon {
        margin: 0 0 15px 0;
    }
    
    .trust-badges {
        gap: 20px;
    }
    
    .trust-badge {
        min-width: 120px;
    }
    
    .trust-badge-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .tech-card {
        padding: 24px 22px;
    }

    .tech-subtitle {
        font-size: 0.95rem;
    }
    
    .specification-table {
        font-size: 0.9rem;
    }
    
    .specification-table th,
    .specification-table td {
        padding: 10px 8px;
    }
    
    .process-step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .related-link-card {
        padding: 20px;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .manufacturer-hero h1 {
        font-size: 2rem;
    }
    
    .manufacturer-hero .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .manufacturer-hero .hero-cta .btn {
        width: 100%;
        max-width: 280px;
        margin: 5px 0;
    }
    
    .specification-table {
        font-size: 0.8rem;
    }
    
    .trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary-custom {
    color: #0a4c05 !important;
}

.bg-primary-custom {
    background: #0a4c05 !important;
}

.bg-gradient-custom {
    background: linear-gradient(135deg, #0a4c05, #17bcda) !important;
}

.border-primary-custom {
    border-color: #0a4c05 !important;
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-on-hover:hover {
    animation: pulse 0.6s;
}

/* ============================================
   BADGE VARIANTS
   ============================================ */
.badge-bestseller {
    background: linear-gradient(135deg, #ff6b6b, #4ecdc4) !important;
}

.badge-premium {
    background: #000 !important;
}

.badge-hitech {
    background: linear-gradient(135deg, #667eea, #764ba2) !important;
}

.badge-advanced {
    background: linear-gradient(135deg, #f093fb, #f5576c) !important;
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .manufacturer-hero {
        background: #0a4c05 !important;
        -webkit-print-color-adjust: exact;
    }
    
    .product-series-card,
    .tech-feature,
    .service-card {
        break-inside: avoid;
        margin-bottom: 20px;
    }
    
    .specification-table {
        font-size: 0.8rem;
    }
}
