:root {
    --navy: #0A1628;
    --navy-light: #132038;
    --navy-muted: #1a2d4d;
    --red: #E63946;
    --red-dark: #c1121f;
    --red-light: #fde8ea;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --shadow: 0 4px 20px rgb(10 22 40 / 0.08);
    --shadow-lg: 0 12px 40px rgb(10 22 40 / 0.12);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-800);
    line-height: 1.65;
    background: var(--white);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--red-dark); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* Header */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 3px solid var(--red);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 1.5rem;
    padding: 0.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
}

.logo-img { height: 80px; width: auto; max-width: 320px; object-fit: contain; }
.footer-logo { height: 64px; max-width: 280px; }

.logo-icon {
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: white;
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.logo-text strong { display: block; font-size: 1.05rem; color: var(--navy); font-weight: 800; }
.logo-text small { color: var(--red); font-size: 0.72rem; font-weight: 600; }

.nav { display: flex; gap: 1.25rem; align-items: center; }
.nav a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.35rem 0;
    position: relative;
}
.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--red);
    transition: width var(--transition);
}
.nav a:hover, .nav a.active { color: var(--navy); }
.nav a:hover::after, .nav a.active::after { width: 100%; }

.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    font-size: 0.95rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; }

/* Hero */
.hero-slider, .hero-fallback {
    position: relative;
    overflow: hidden;
    background: var(--navy);
    min-height: 580px;
}

.hero-slider-track { position: relative; width: 100%; min-height: 580px; }

.hero-slide {
    position: absolute;
    inset: 0;
    min-height: 580px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.7s ease, visibility 0.7s ease;
    z-index: 0;
}
.hero-slide.is-active { opacity: 1; visibility: visible; z-index: 1; }

.hero-slide::before, .hero-fallback::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10,22,40,0.92) 0%, rgba(10,22,40,0.65) 45%, rgba(230,57,70,0.35) 100%);
}

.hero-fallback { display: flex; align-items: center; }
.hero-fallback::before { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-muted) 60%, rgba(230,57,70,0.4) 100%); }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    color: white;
    padding: 3rem 0;
}

.hero-badge {
    display: inline-block;
    background: rgba(230,57,70,0.2);
    border: 1px solid rgba(230,57,70,0.5);
    color: #ffb3b9;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.hero-content h1, .hero-slide-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.hero-content p {
    font-size: 1.15rem;
    opacity: 0.92;
    margin-bottom: 1.75rem;
    max-width: 540px;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    backdrop-filter: blur(6px);
    transition: background var(--transition);
}
.hero-nav:hover { background: rgba(230,57,70,0.6); }
.hero-nav.prev { left: 1rem; }
.hero-nav.next { right: 1rem; }

.hero-dots {
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background var(--transition);
}
.hero-dot.is-active { background: var(--red); border-color: var(--red); }

/* Stats */
.stats-section {
    background: var(--navy);
    padding: 2.5rem 0;
    margin-top: -1px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-item { color: white; }
.stat-number {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--red);
    line-height: 1.1;
    margin-bottom: 0.35rem;
}
.stat-item span { font-size: 0.9rem; opacity: 0.85; font-weight: 500; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--gray-50); }

.section-title { text-align: center; margin-bottom: 2.75rem; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-label {
    display: inline-block;
    color: var(--red);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.section-title h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}
.section-title p { color: var(--gray-600); }
.section-heading { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 1.5rem; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--red);
    color: white;
    border-color: var(--red);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: white; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(230,57,70,0.35); }

.btn-white { background: white; color: var(--navy); }
.btn-white:hover { background: var(--gray-100); color: var(--navy); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: white; }

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover { background: white; color: var(--navy); border-color: white; }

/* Cards & Grids */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
}

.service-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--red);
    transform: scaleY(0);
    transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }

.service-card-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.service-card p { color: var(--gray-600); font-size: 0.9rem; margin-bottom: 0.75rem; }
.service-count { font-size: 0.8rem; color: var(--red); font-weight: 600; }

.product-card, .project-card, .news-card {
    display: block;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
    border: 1px solid var(--gray-200);
}
.product-card:hover, .project-card:hover, .news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    color: inherit;
}

.product-card img, .project-card img, .news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-placeholder {
    height: 200px;
    background: linear-gradient(135deg, var(--gray-100), var(--gray-200));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.card-placeholder.large { height: 360px; border-radius: var(--radius-lg); }

.product-card-body, .project-card-body, .news-card-body { padding: 1.25rem; }
.product-card-body .brand, .news-card-body time {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--red);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}
.product-card-body h3, .project-card-body h3, .news-card-body h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.35rem;
    line-height: 1.35;
}
.meta { display: block; font-size: 0.85rem; color: var(--gray-600); }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-muted) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(230,57,70,0.25) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 0.75rem; position: relative; }
.cta-section p { opacity: 0.9; margin-bottom: 1.75rem; position: relative; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* Partners */
.partners-section { padding: 3.5rem 0; background: var(--gray-50); border-top: 1px solid var(--gray-200); }
.partners-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}
.partner-item img {
    height: 48px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition);
}
.partner-item:hover img { filter: none; opacity: 1; }

/* Certificates */
.certificates-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}
.certificate-item {
    text-align: center;
    max-width: 160px;
}
.certificate-item img {
    height: 120px;
    width: auto;
    margin: 0 auto 0.5rem;
    object-fit: contain;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0.5rem;
    background: white;
}
.certificate-item span { font-size: 0.82rem; color: var(--gray-600); font-weight: 600; }

/* Page hero */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: white;
    padding: 3.5rem 0;
    text-align: center;
}
.page-hero-sm { padding: 2.5rem 0; text-align: left; }
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 0.5rem; }
.page-hero p, .page-subtitle { opacity: 0.88; font-size: 1.05rem; }
.breadcrumb { font-size: 0.85rem; margin-bottom: 1rem; opacity: 0.8; }
.breadcrumb a { color: rgba(255,255,255,0.9); }
.breadcrumb a:hover { color: white; }
.breadcrumb span { margin: 0 0.4rem; }

.project-meta-row { display: flex; flex-wrap: wrap; gap: 1rem; font-size: 0.9rem; opacity: 0.85; margin-top: 0.5rem; }
.news-date { display: block; font-size: 0.85rem; opacity: 0.75; margin-bottom: 0.5rem; }

/* Content */
.content-layout { max-width: 860px; }
.content-main-image { border-radius: var(--radius-lg); margin-bottom: 1.5rem; width: 100%; max-height: 480px; object-fit: cover; }
.lead { font-size: 1.15rem; color: var(--gray-600); margin-bottom: 1.5rem; font-weight: 500; }
.prose { line-height: 1.8; }
.prose h2, .prose h3 { color: var(--navy); margin: 1.5rem 0 0.75rem; font-weight: 700; }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { margin: 0 0 1rem 1.25rem; }
.prose li { margin-bottom: 0.35rem; }

/* Product detail */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    max-width: 100%;
}
.product-gallery-main img { border-radius: var(--radius-lg); width: 100%; }
.product-gallery-thumbs { display: flex; gap: 0.5rem; margin-top: 0.75rem; flex-wrap: wrap; }
.product-gallery-thumb {
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 0;
    background: none;
    cursor: pointer;
    overflow: hidden;
    width: 72px;
    height: 72px;
}
.product-gallery-thumb.is-active { border-color: var(--red); }
.product-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.specs-table { margin: 1.5rem 0; }
.specs-table h3 { font-size: 1.1rem; margin-bottom: 0.75rem; color: var(--navy); }
.specs-table table { width: 100%; border-collapse: collapse; }
.specs-table th, .specs-table td {
    padding: 0.65rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    text-align: left;
    font-size: 0.92rem;
}
.specs-table th { background: var(--gray-50); color: var(--navy); font-weight: 600; width: 40%; }

/* Services list */
.service-category-block { margin-bottom: 3rem; }
.service-category-header { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.5rem; }
.service-category-header h2 { font-size: 1.5rem; color: var(--navy); font-weight: 800; }
.services-list-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.service-list-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition);
}
.service-list-item:hover { border-color: var(--red); box-shadow: var(--shadow); color: inherit; }
.service-list-item img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--radius); flex-shrink: 0; }
.service-list-item h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.25rem; }
.service-list-item p { font-size: 0.88rem; color: var(--gray-600); }

/* Products toolbar */
.products-toolbar { margin-bottom: 2rem; }
.product-search { position: relative; max-width: 420px; margin-bottom: 1rem; }
.product-search-input {
    width: 100%;
    padding: 0.85rem 1.15rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition);
}
.product-search-input:focus { outline: none; border-color: var(--red); }
.product-search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    z-index: 50;
    max-height: 360px;
    overflow-y: auto;
}
.product-search-item {
    display: flex;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--gray-100);
}
.product-search-item:hover { background: var(--gray-50); color: inherit; }
.product-search-item img { width: 48px; height: 48px; object-fit: cover; border-radius: 6px; }
.product-search-item strong { display: block; font-size: 0.9rem; color: var(--navy); }
.product-search-item span { font-size: 0.8rem; color: var(--gray-600); }
.product-search-all, .product-search-empty { display: block; padding: 0.75rem 1rem; text-align: center; font-size: 0.88rem; font-weight: 600; }
.product-search-item-placeholder { width: 48px; height: 48px; background: var(--gray-100); border-radius: 6px; }

.filter-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip {
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-600);
    text-decoration: none;
    transition: all var(--transition);
}
.chip:hover, .chip.active { background: var(--red); color: white; }

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}
.contact-info h2 { font-size: 1.35rem; color: var(--navy); margin-bottom: 1.25rem; font-weight: 800; }
.contact-details { list-style: none; }
.contact-details li { margin-bottom: 1.25rem; }
.contact-details strong { display: block; color: var(--navy); font-size: 0.85rem; margin-bottom: 0.25rem; }
.contact-details p { color: var(--gray-600); }
.contact-details a { color: var(--red); }

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}
.form-group { margin-bottom: 1.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.88rem; color: var(--navy); margin-bottom: 0.35rem; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--red); }
.form-error { color: var(--red); font-size: 0.82rem; margin-top: 0.25rem; display: block; }

/* Footer */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    padding: 3.5rem 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; opacity: 0.8; line-height: 1.7; }
.footer h4 { color: white; font-size: 0.95rem; font-weight: 700; margin-bottom: 1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.5rem; }
.footer ul a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.9rem; }
.footer ul a:hover { color: var(--red); }
.footer-bottom { padding: 1.25rem 0; text-align: center; font-size: 0.85rem; opacity: 0.65; }
.footer-copyright-vendor { margin-top: 0.35rem; font-size: 0.8rem; opacity: 0.85; }
.footer-copyright-vendor a { color: inherit; text-decoration: none; }
.footer-copyright-vendor a:hover { text-decoration: underline; }

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45);
    z-index: 300;
    transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.08); color: white; }

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(10,22,40,0.92);
    z-index: 400;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}
.lightbox.is-open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

/* Alerts & misc */
.alert { padding: 1rem 0; }
.alert-success {
    background: #ecfdf5;
    color: #065f46;
    border-bottom: 1px solid #a7f3d0;
    padding: 1rem 1.25rem;
    margin-bottom: 0;
}
.empty-state { text-align: center; color: var(--gray-600); padding: 3rem 0; }
.pagination-wrap { margin-top: 2rem; display: flex; justify-content: center; }

.site-pagination { width: 100%; }
.pagination-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}
.pagination-item { margin: 0; padding: 0; }
.pagination-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2.5rem;
    padding: 0 0.75rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1;
    color: var(--gray-600);
    background: var(--gray-100);
    text-decoration: none;
    transition: all var(--transition);
    border: 1px solid transparent;
}
.pagination-item:not(.is-disabled):not(.is-active) .pagination-link:hover {
    background: var(--red-light);
    color: var(--red-dark);
}
.pagination-item.is-active .pagination-link {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
    cursor: default;
}
.pagination-item.is-disabled .pagination-link {
    opacity: 0.45;
    cursor: not-allowed;
}
.pagination-item.is-ellipsis .pagination-link {
    background: transparent;
    min-width: auto;
    padding: 0 0.25rem;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .product-detail { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem 1.25rem 1.5rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition);
        z-index: 150;
    }
    .nav.open { transform: translateY(0); opacity: 1; visibility: visible; }
    .nav-toggle { display: flex; }
    .header-phone { display: none; }
    .hero-slider, .hero-slider-track, .hero-slide, .hero-fallback { min-height: 480px; }
    .section { padding: 3rem 0; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
}
