/*
 * Skitch PPF Premium Formal Redesign
 * Drop this file into wp-content/themes/skitchppf/ and enqueue it after style.css,
 * or append it near the end of the current theme stylesheet.
 */

:root {
    --skitch-red: #d3141b;
    --skitch-red-dark: #a90f15;
    --skitch-ink: #101114;
    --skitch-charcoal: #191b20;
    --skitch-muted: #666b73;
    --skitch-line: #e7e8eb;
    --skitch-panel: #f6f7f8;
    --skitch-white: #ffffff;
    --skitch-shadow-sm: 0 8px 24px rgba(16, 17, 20, 0.08);
    --skitch-shadow-md: 0 18px 50px rgba(16, 17, 20, 0.12);
}

.skitch-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(246, 247, 248, 0.98)),
        url("assets/ppf-film-texture.webp") center / cover no-repeat;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.45s ease, visibility 0.45s ease;
}

.skitch-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.skitch-loader-panel {
    display: grid;
    justify-items: center;
    gap: 1.25rem;
    width: min(240px, 68vw);
}

.skitch-loader-logo {
    width: min(180px, 54vw);
    height: auto;
}

.skitch-loader-line {
    width: 100%;
    height: 3px;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(16, 17, 20, 0.1);
}

.skitch-loader-line span {
    display: block;
    width: 42%;
    height: 100%;
    border-radius: inherit;
    background: var(--skitch-red);
    animation: skitchLoaderBar 1.05s ease-in-out infinite;
}

@keyframes skitchLoaderBar {
    0% {
        transform: translateX(-110%);
    }

    100% {
        transform: translateX(250%);
    }
}

body {
    background: var(--skitch-white);
    color: var(--skitch-ink);
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

html {
    overflow-x: hidden;
}

.site-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.scrolled {
    border-bottom-color: rgba(16, 17, 20, 0.08);
}

.site-header .nav-link {
    letter-spacing: 0.04em;
    font-size: 0.82rem;
}

.skitch-mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1038;
    background: rgba(8, 9, 11, 0.54);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(4px);
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

body.skitch-mobile-menu-open {
    overflow: hidden;
}

body.skitch-mobile-menu-open .skitch-mobile-menu-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.skitch-mobile-drawer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 1039;
    display: block !important;
    width: min(88vw, 370px);
    height: 100vh;
    max-height: 100vh;
    margin: 0 !important;
    padding: 1.05rem;
    overflow-y: auto;
    border-right: 1px solid rgba(16, 17, 20, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 248, 0.98)),
        url("assets/film-layer-abstract.webp") center / cover no-repeat;
    box-shadow: 24px 0 70px rgba(8, 9, 11, 0.22);
    transform: translateX(-104%);
    visibility: hidden;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.38s ease;
}

.skitch-mobile-drawer.show,
.skitch-mobile-drawer.collapsing {
    transform: translateX(0);
    visibility: visible;
}

.skitch-mobile-drawer.collapsing {
    height: 100vh !important;
    transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.38s ease;
}

.skitch-mobile-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(16, 17, 20, 0.08);
}

.skitch-mobile-drawer-logo {
    max-width: 128px;
    height: auto;
}

.skitch-mobile-drawer-close {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(16, 17, 20, 0.1);
    border-radius: 50%;
    background: #fff;
    color: var(--skitch-ink);
}

.skitch-mobile-drawer-kicker {
    margin: 1rem 0 0.75rem;
    color: var(--skitch-muted);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.skitch-mobile-nav-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem !important;
    padding: 0 !important;
}

.skitch-mobile-nav-grid li {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
}

.skitch-mobile-nav-grid a,
.skitch-mobile-nav-grid .nav-link {
    display: flex !important;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--skitch-ink) !important;
    font-size: 0.78rem !important;
    font-weight: 850 !important;
    letter-spacing: 0.03em !important;
    line-height: 1.25;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(16, 17, 20, 0.06);
}

.skitch-mobile-nav-grid a:hover,
.skitch-mobile-nav-grid .nav-link:hover {
    border-color: rgba(211, 20, 27, 0.28);
    background: rgba(211, 20, 27, 0.08);
    color: var(--skitch-red) !important;
}

.skitch-mobile-drawer-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-top: 1rem;
}

.skitch-mobile-cta,
.skitch-mobile-verify {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 6px;
    font-size: 0.76rem;
    font-weight: 850;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.skitch-mobile-cta-primary {
    background: var(--skitch-red);
    color: #fff;
}

.skitch-mobile-cta-secondary {
    border: 1px solid rgba(16, 17, 20, 0.12);
    background: var(--skitch-ink);
    color: #fff;
}

.skitch-mobile-verify {
    grid-column: 1 / -1;
    border: 1px solid rgba(211, 20, 27, 0.18);
    background: rgba(211, 20, 27, 0.08);
    color: var(--skitch-red);
}

.skitch-mobile-drawer .header-contact-mobile {
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.76);
}

.site-header .logo,
.site-header img.logo,
.site-header .brand-logo {
    width: auto;
    max-height: 46px;
    object-fit: contain;
}

.site-header.scrolled .logo,
.site-header.scrolled img.logo,
.site-header.scrolled .brand-logo {
    filter: none;
}

.skitch-footer-logo {
    width: auto;
    object-fit: contain;
}

.hero-section {
    min-height: 92vh;
    isolation: isolate;
    overflow: hidden;
    background: #08090b;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(5, 6, 8, 0.88) 0%, rgba(5, 6, 8, 0.64) 38%, rgba(5, 6, 8, 0.18) 72%, rgba(5, 6, 8, 0.22) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.36) 0%, rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-background {
    background-image: url("assets/hero-premium-ppf.webp") !important;
    background-position: center right !important;
    background-size: cover !important;
    background-attachment: scroll !important;
    transform: translate3d(0, var(--skitch-parallax-y, 0px), 0) scale(1.04);
    will-change: transform;
    filter: saturate(0.96) contrast(1.02);
}

.hero-background::after,
.hero-overlay {
    display: none !important;
}

.hero-content {
    max-width: 680px;
    padding-top: 7rem;
    padding-bottom: 5rem;
    text-align: left;
}

.hero-title {
    max-width: 12ch;
    margin-bottom: 1.2rem;
    color: #fff;
    font-size: clamp(3rem, 6vw, 5.75rem);
    font-weight: 850;
    line-height: 0.96;
    letter-spacing: 0;
    text-transform: none;
}

.hero-subtitle {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-description {
    max-width: 560px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.85rem;
    margin-top: 2rem;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    min-height: 48px;
    border-radius: 4px;
    padding: 0.85rem 1.25rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.btn-hero-primary {
    background: var(--skitch-red);
    border-color: var(--skitch-red);
    box-shadow: none;
}

.btn-hero-primary:hover {
    background: var(--skitch-red-dark);
    border-color: var(--skitch-red-dark);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.32);
    color: #fff;
    backdrop-filter: blur(12px);
}

.btn-hero-secondary:hover {
    background: #fff;
    color: var(--skitch-ink);
}

.products-section {
    position: relative;
    padding: 6.5rem 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.98)),
        url("assets/ppf-film-texture.webp") center top / cover no-repeat;
}

.products-section::before {
    display: none;
}

.products-header,
.section-header {
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

.products-title,
.section-title-main {
    color: var(--skitch-ink);
    font-weight: 850;
    letter-spacing: 0;
    text-transform: none;
}

.products-subtitle,
.section-subtitle-main {
    color: var(--skitch-muted);
    line-height: 1.75;
}

.product-card {
    border: 1px solid var(--skitch-line);
    border-radius: 6px !important;
    box-shadow: var(--skitch-shadow-sm);
    background: rgba(255, 255, 255, 0.96);
    transition: transform 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.product-card::before,
.product-card::after {
    display: none !important;
}

.product-card:hover {
    transform: translateY(-4px) !important;
    border-color: rgba(211, 20, 27, 0.22);
    box-shadow: var(--skitch-shadow-md);
}

#productsCarousel .carousel-item {
    transition: opacity 0.75s ease-in-out, transform 0.75s ease-in-out;
}

#productsCarousel .carousel-item.active .product-card {
    animation: skitchCarouselCardIn 0.72s ease both;
}

.product-image-wrapper {
    background: linear-gradient(135deg, #f7f8fa 0%, #fff 100%);
}

.product-body {
    background: #fff;
}

.product-title {
    color: var(--skitch-ink);
    letter-spacing: 0;
}

.product-series {
    border-radius: 3px;
    background: rgba(211, 20, 27, 0.08);
    letter-spacing: 0.08em;
}

.product-description {
    color: #515761;
    line-height: 1.75;
}

.skitch-best-for,
.skitch-spec-strip,
.skitch-download-meta {
    margin-top: 1rem;
}

.skitch-best-for {
    padding-left: 0.9rem;
    border-left: 3px solid var(--skitch-red);
    color: var(--skitch-ink);
    font-size: 0.9rem;
    line-height: 1.6;
}

.skitch-spec-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
}

.skitch-spec-pill {
    border: 1px solid var(--skitch-line);
    border-radius: 4px;
    padding: 0.55rem 0.65rem;
    background: #fafafa;
    color: var(--skitch-muted);
    font-size: 0.75rem;
}

.skitch-spec-pill strong {
    display: block;
    color: var(--skitch-ink);
    font-size: 0.82rem;
}

.skitch-download-meta {
    color: #7a808a;
    font-size: 0.78rem;
}

.products-section .carousel-indicators-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.8rem, 7vw, 3rem);
    margin-top: 1.5rem;
}

.products-section .carousel-control-mobile {
    position: static;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 50%;
    background: var(--skitch-ink);
    opacity: 1;
    box-shadow: 0 12px 26px rgba(16, 17, 20, 0.16);
}

.products-section .carousel-control-mobile:hover {
    background: var(--skitch-red);
}

.products-section .carousel-control-mobile .carousel-control-prev-icon,
.products-section .carousel-control-mobile .carousel-control-next-icon {
    width: 15px;
    height: 15px;
}

.products-section .carousel-indicators {
    position: static;
    display: flex;
    align-items: center;
    gap: 0.42rem;
    width: fit-content;
    margin: 0;
    padding: 0.5rem 0.7rem;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 34px rgba(16, 17, 20, 0.12);
    backdrop-filter: blur(12px);
}

.products-section .carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 17, 20, 0.22);
    opacity: 1;
    transition: width 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.products-section .carousel-indicators .active {
    width: 24px;
    background: var(--skitch-red);
    transform: scaleY(1.15);
}

@keyframes skitchCarouselCardIn {
    from {
        opacity: 0.72;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-download,
.btn-order,
.btn-distributor,
.btn-submit {
    border-radius: 4px !important;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.btn-order,
.btn-submit,
.btn-call {
    background: var(--skitch-red) !important;
    box-shadow: none !important;
}

.btn-order:hover,
.btn-submit:hover,
.btn-call:hover {
    background: var(--skitch-red-dark) !important;
}

.skitch-comparison-section {
    position: relative;
    padding: 5.5rem 0;
    background:
        linear-gradient(90deg, rgba(16, 17, 20, 0.92), rgba(16, 17, 20, 0.76)),
        url("assets/film-layer-abstract.webp") center / cover no-repeat;
    color: #fff;
    overflow: hidden;
}

.skitch-comparison-section .section-title-main,
.skitch-comparison-section .section-subtitle-main {
    color: #fff;
}

.skitch-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
    -webkit-overflow-scrolling: touch;
}

.skitch-table-note {
    display: none;
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.8rem;
}

.skitch-product-table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    margin: 0;
}

.skitch-product-table th,
.skitch-product-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.84rem;
    vertical-align: top;
}

.skitch-product-table th {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.skitch-product-table td:first-child {
    color: #fff;
    font-weight: 800;
}

.skitch-product-table tr:last-child td {
    border-bottom: 0;
}

.skitch-process-section {
    padding: 6rem 0;
    background: #fff;
}

.skitch-process-media {
    min-height: 420px;
    border-radius: 6px;
    background: url("assets/installation-detail.webp") center / cover no-repeat;
    box-shadow: var(--skitch-shadow-md);
}

.skitch-process-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.skitch-process-tile {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--skitch-line);
    border-radius: 6px;
    padding: 1rem;
    background: linear-gradient(180deg, #fff, #f8f9fa);
    box-shadow: 0 10px 26px rgba(16, 17, 20, 0.05);
}

.skitch-process-tile::before,
.skitch-benefit-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 3px;
    background: var(--skitch-red);
}

.skitch-process-tile i {
    display: inline-grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 50%;
    background: rgba(211, 20, 27, 0.1);
    color: var(--skitch-red);
    font-size: 1.25rem;
}

.skitch-process-tile:nth-child(2) i,
.skitch-benefits-section .row > div:nth-child(2) .skitch-benefit-card i {
    background: rgba(20, 108, 148, 0.11);
    color: #146c94;
}

.skitch-process-tile:nth-child(3) i,
.skitch-benefits-section .row > div:nth-child(3) .skitch-benefit-card i {
    background: rgba(16, 17, 20, 0.08);
    color: var(--skitch-ink);
}

.skitch-process-tile:nth-child(4) i,
.skitch-benefits-section .row > div:nth-child(4) .skitch-benefit-card i {
    background: rgba(159, 116, 31, 0.13);
    color: #9f741f;
}

.skitch-process-tile:nth-child(2)::before,
.skitch-benefits-section .row > div:nth-child(2) .skitch-benefit-card::before {
    background: #146c94;
}

.skitch-process-tile:nth-child(3)::before,
.skitch-benefits-section .row > div:nth-child(3) .skitch-benefit-card::before {
    background: var(--skitch-ink);
}

.skitch-process-tile:nth-child(4)::before,
.skitch-benefits-section .row > div:nth-child(4) .skitch-benefit-card::before {
    background: #9f741f;
}

.skitch-process-tile h3 {
    margin: 0.65rem 0 0.3rem;
    color: var(--skitch-ink);
    font-size: 0.98rem;
    font-weight: 800;
}

.skitch-process-tile p {
    margin: 0;
    color: var(--skitch-muted);
    font-size: 0.86rem;
    line-height: 1.6;
}

.skitch-benefits-section {
    position: relative;
    padding: 5.75rem 0;
    background:
        linear-gradient(180deg, rgba(246, 247, 248, 0.96), rgba(255, 255, 255, 0.98)),
        url("assets/ppf-film-texture.webp") center / cover no-repeat;
}

.skitch-benefit-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid var(--skitch-line);
    border-radius: 6px;
    padding: 1.35rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.96));
    box-shadow: 0 8px 22px rgba(16, 17, 20, 0.05);
}

.skitch-benefit-card i {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: rgba(211, 20, 27, 0.1);
    color: var(--skitch-red);
    font-size: 1.4rem;
}

.skitch-benefit-card h3 {
    margin: 0.8rem 0 0.4rem;
    color: var(--skitch-ink);
    font-size: 1rem;
    font-weight: 850;
}

.skitch-benefit-card p {
    margin: 0;
    color: var(--skitch-muted);
    font-size: 0.88rem;
    line-height: 1.65;
}

.skitch-proof-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
    margin-top: 2rem;
}

.skitch-proof-item {
    position: relative;
    overflow: hidden;
    min-height: 112px;
    padding: 1rem;
    border: 1px solid var(--skitch-line);
    border-radius: 6px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 249, 250, 0.96));
    box-shadow: 0 10px 26px rgba(16, 17, 20, 0.05);
}

.skitch-proof-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--skitch-red);
}

.skitch-proof-item:nth-child(2)::before {
    background: #146c94;
}

.skitch-proof-item:nth-child(3)::before {
    background: var(--skitch-ink);
}

.skitch-proof-item:nth-child(4)::before {
    background: #9f741f;
}

.skitch-proof-item strong {
    display: block;
    color: var(--skitch-ink);
    font-size: 1.35rem;
    line-height: 1.2;
}

.skitch-proof-item span {
    display: block;
    margin-top: 0.25rem;
    color: var(--skitch-muted);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.distributors-section {
    padding: 6.5rem 0;
    background:
        linear-gradient(180deg, rgba(246, 247, 248, 0.96), rgba(255, 255, 255, 0.98)),
        url("assets/film-layer-abstract.webp") center / cover no-repeat;
}

.distributor-card {
    position: relative;
    display: flex;
    width: 100%;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--skitch-line);
    border-radius: 6px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--skitch-shadow-sm);
}

.distributor-card::before {
    display: none;
}

.distributor-card-topline {
    height: 3px;
    background: linear-gradient(90deg, var(--skitch-red), var(--skitch-red-dark));
}

.distributor-card:hover {
    transform: translateY(-3px);
    border-color: rgba(211, 20, 27, 0.24);
    box-shadow: var(--skitch-shadow-md);
}

.distributor-header {
    padding: 1.15rem 1.15rem 0;
}

.distributor-badge {
    border-radius: 999px;
    background: rgba(16, 17, 20, 0.92);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.distributor-title {
    min-height: 2.8em;
    padding: 0 1.15rem;
    margin-top: 1rem;
    letter-spacing: 0;
    font-size: clamp(1.05rem, 1.4vw, 1.35rem);
    line-height: 1.35;
}

.distributor-brand {
    padding: 0 1.15rem;
    margin-top: 1.1rem;
    gap: 0.75rem;
}

.distributor-brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 6px;
}

.distributor-brand-name {
    font-size: 1.05rem;
    line-height: 1.25;
}

.distributor-body {
    flex: 1;
    padding: 1.15rem;
    gap: 1rem;
}

.distributor-info-grid .info-item {
    border-radius: 4px;
    padding: 0.8rem;
}

.distributor-actions {
    gap: 0.65rem;
}

.btn-distributor {
    min-height: 44px;
    padding: 0.75rem 0.85rem;
    font-size: 0.8rem;
}

.distributor-card.has-arabic,
.distributor-card:has(.distributor-title-arabic) {
    background: linear-gradient(180deg, rgba(16, 17, 20, 0.98), rgba(25, 27, 32, 0.98));
}

.distributor-title-arabic,
.distributor-badge-arabic,
.distributor-card.has-arabic .distributor-brand-name,
:lang(ar) {
    font-family: "IBM Plex Sans Arabic", Inter, system-ui, sans-serif;
}

.distributor-title-arabic,
.distributor-badge-arabic {
    direction: rtl;
    text-align: right;
    letter-spacing: 0;
}

.distributor-card.has-arabic .distributor-card-topline,
.distributor-card:has(.distributor-title-arabic) .distributor-card-topline {
    background: linear-gradient(90deg, var(--skitch-red), #fff, var(--skitch-red));
}

.distributor-grid-desktop > [class*="col-"] {
    display: flex;
}

.distributor-mobile-carousel {
    padding: 0 0 3.2rem;
}

.distributor-mobile-carousel .carousel-inner {
    overflow: visible;
}

.distributor-mobile-carousel .carousel-item {
    padding: 0 0.4rem;
    transition: transform 0.68s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.68s ease;
}

.distributor-mobile-carousel .distributor-card {
    min-height: 430px;
}

.distributor-mobile-carousel .carousel-item.active .distributor-card {
    animation: skitchDistributorCardIn 0.68s ease both;
}

.distributor-carousel-dots {
    position: absolute;
    right: 0;
    bottom: 0.35rem;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.38rem;
    width: fit-content;
    margin: 0 auto;
    padding: 0.45rem 0.65rem;
    border: 1px solid rgba(16, 17, 20, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(16, 17, 20, 0.12);
    backdrop-filter: blur(12px);
}

.distributor-carousel-dots [data-bs-target] {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 17, 20, 0.22);
    opacity: 1;
    margin: 0;
    transition: width 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.distributor-carousel-dots .active {
    width: 22px;
    background: var(--skitch-red);
    transform: scaleY(1.15);
}

.distributor-carousel-control {
    top: auto;
    bottom: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--skitch-ink);
    opacity: 1;
}

.distributor-carousel-control.carousel-control-prev {
    left: 1.1rem;
}

.distributor-carousel-control.carousel-control-next {
    right: 1.1rem;
}

.distributor-carousel-control .carousel-control-prev-icon,
.distributor-carousel-control .carousel-control-next-icon {
    width: 14px;
    height: 14px;
}

@keyframes skitchDistributorCardIn {
    from {
        opacity: 0.76;
        transform: translateY(8px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.skitch-footer {
    background: #08090b;
}

.skitch-footer-main {
    padding: 3.2rem 0 2.4rem;
}

.skitch-footer-heading {
    letter-spacing: 0.08em;
}

.contact-hero,
.about-hero,
.policies-hero {
    background:
        linear-gradient(90deg, rgba(16, 17, 20, 0.92), rgba(16, 17, 20, 0.72)),
        url("assets/film-layer-abstract.webp") center / cover no-repeat !important;
}

.contact-hero-content h1,
.about-hero-content h1,
.policies-hero-content h1 {
    letter-spacing: 0;
    text-transform: none;
}

.contact-info-card,
.contact-form-card,
.about-content-card,
.feature-card,
.product-series-card,
.policy-card,
.warranty-card,
.location-card,
.verify-card,
.result-card,
.portal-login-card {
    border-radius: 6px !important;
    border: 1px solid var(--skitch-line) !important;
    box-shadow: var(--skitch-shadow-sm) !important;
}

.contact-form-card input,
.contact-form-card textarea,
#skitchppf-order-form input,
#skitchppf-order-form textarea,
.verify-input,
.form-control {
    border-radius: 4px !important;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus,
#skitchppf-order-form input:focus,
#skitchppf-order-form textarea:focus,
.verify-input:focus,
.form-control:focus {
    border-color: rgba(211, 20, 27, 0.65) !important;
    box-shadow: 0 0 0 4px rgba(211, 20, 27, 0.1) !important;
}

.verify-section {
    background:
        linear-gradient(180deg, rgba(246, 247, 248, 0.96), rgba(255, 255, 255, 0.98)),
        url("assets/ppf-film-texture.webp") center / cover no-repeat !important;
}

.portal-section {
    background:
        linear-gradient(135deg, rgba(8, 9, 11, 0.96), rgba(25, 27, 32, 0.94)),
        url("assets/film-layer-abstract.webp") center / cover no-repeat !important;
}

@media (min-width: 992px) {
    .product-card {
        max-width: 1080px;
    }

    .product-image-wrapper {
        flex-basis: 42%;
        max-width: 42%;
    }

    .product-body {
        padding: 2.6rem 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: 760px;
    }

    .hero-background {
        background-position: center right !important;
        transform: none !important;
    }

    .hero-content {
        padding-top: 6rem;
    }

    .skitch-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .skitch-process-media {
        min-height: 320px;
        margin-bottom: 2rem;
    }

    .skitch-proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .distributors-section {
        padding: 4.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        min-height: 700px;
    }

    .hero-title {
        font-size: 2.35rem !important;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        width: 100%;
        max-width: 360px;
        gap: 0.55rem;
    }

    .btn-hero {
        flex: 1 1 0;
        min-width: 0;
        padding: 0.8rem 0.6rem;
        font-size: 0.72rem;
        letter-spacing: 0.04em;
    }

    .products-section,
    .skitch-process-section,
    .skitch-comparison-section,
    .skitch-benefits-section {
        padding: 3.5rem 0;
    }

    .skitch-spec-strip {
        grid-template-columns: 1fr;
    }

    .skitch-process-grid {
        gap: 0.65rem;
    }

    .skitch-process-tile {
        padding: 0.85rem;
    }

    .skitch-process-tile i {
        width: 34px;
        height: 34px;
        font-size: 1.05rem;
    }

    .skitch-process-tile h3,
    .skitch-benefit-card h3 {
        font-size: 0.86rem;
        line-height: 1.25;
    }

    .skitch-process-tile p,
    .skitch-benefit-card p {
        font-size: 0.74rem;
        line-height: 1.5;
    }

    .skitch-benefits-section .row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
        margin-right: 0;
        margin-left: 0;
    }

    .skitch-benefits-section .row > [class*="col-"] {
        width: auto;
        max-width: none;
        padding-right: 0;
        padding-left: 0;
    }

    .skitch-benefit-card {
        padding: 0.9rem;
    }

    .skitch-benefit-card i {
        width: 36px;
        height: 36px;
        font-size: 1.08rem;
    }

    .skitch-table-note {
        display: block;
    }

    .skitch-proof-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.7rem;
        margin-top: 1.4rem;
    }

    .skitch-proof-item {
        min-height: 104px;
        padding: 0.95rem 0.85rem;
    }

    .skitch-proof-item strong {
        font-size: 1.15rem;
    }

    .skitch-proof-item span {
        font-size: 0.66rem;
        line-height: 1.35;
    }

    .distributors-section {
        padding: 3.5rem 0;
    }

    .distributor-title {
        min-height: auto;
    }

    .distributor-mobile-carousel .distributor-card {
        min-height: 400px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-background,
    .product-card,
    #productsCarousel .carousel-item.active .product-card,
    .distributor-card,
    .distributor-mobile-carousel .carousel-item.active .distributor-card,
    .btn-hero,
    .btn-order,
    .btn-download {
        transition: none !important;
        transform: none !important;
        animation: none !important;
    }
}
