/* PrintMadeEasy-inspired theme for US Box Printing */

:root {
    --pms-navy: #0c2d5e;
    --pms-navy-dark: #071e3f;
    --pms-blue: #1a5fb4;
    --pms-link: #1877f2;
    --pms-nav-blue: #0056b3;
    --pms-mega-heading: #c42d6d;
    --pms-orange: #DB3545;
    --pms-gray-bg: #f4f5f7;
    --pms-gray-light: #eef0f3;
    --pms-text: #333;
    --pms-text-muted: #666;
    --pms-border: #e2e5ea;
    --pms-white: #fff;
    --pms-radius: 4px;
    --pms-container: 1200px;
}

/* ---- Header ---- */
.pms-header {
    background: var(--pms-white);
    box-shadow: 0 1px 4px rgba(0,0,0,.06);
}

.pms-topbar {
    background: var(--pms-navy);
    color: var(--pms-white);
    font-size: 12px;
    padding: 6px 0;
}

.pms-topbar a {
    color: var(--pms-white);
    text-decoration: none;
    margin-left: 18px;
    opacity: .9;
}

.pms-topbar a:hover { opacity: 1; }

.pms-header-main {
    padding: 14px 0;
}

.pms-header-main .container {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.pms-logo img {
    max-height: 48px;
    width: auto;
}

.pms-search {
    flex: 1;
    min-width: 200px;
    max-width: 520px;
}

.pms-search form {
    display: flex;
    border: 1px solid var(--pms-border);
    border-radius: var(--pms-radius);
    overflow: hidden;
    background: var(--pms-white);
}

.pms-search select {
    border: none;
    border-right: 1px solid var(--pms-border);
    padding: 10px 12px;
    font-size: 13px;
    color: var(--pms-text-muted);
    background: var(--pms-gray-light);
    max-width: 140px;
}

.pms-search input[type="text"] {
    flex: 1;
    border: none;
    padding: 10px 14px;
    font-size: 14px;
    outline: none;
}

.pms-search button {
    background: var(--pms-navy);
    color: var(--pms-white);
    border: none;
    padding: 0 18px;
    cursor: pointer;
    font-size: 15px;
}

.pms-header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.pms-action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--pms-text);
    font-size: 11px;
    text-align: center;
    min-width: 60px;
}

.pms-action-item i {
    font-size: 22px;
    color: var(--pms-navy);
    margin-bottom: 4px;
}

.pms-action-item:hover { color: var(--pms-link); }
.pms-action-item:hover i { color: var(--pms-link); }

/* ---- Navigation & mega menu ---- */
.pms-nav-wrapper {
    position: relative;
    background: #f5f6f8;
    border-top: 1px solid var(--pms-border);
    border-bottom: 1px solid #dde1e7;
    z-index: 1000;
}

.pms-nav {
    background: transparent;
    border: none;
}

.pms-nav .container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: static;
}

.pms-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0;
}

.pms-nav-list > li > a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    color: var(--pms-nav-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    position: relative;
    transition: color .2s;
    height: 100%;
}

.pms-nav-list > li > a:hover,
.pms-nav-list > li.active > a,
.pms-nav-list > li.has-megamenu:hover > a {
    color: var(--pms-nav-blue);
}

.pms-nav-list > li.has-megamenu > a::after,
.pms-nav-list > li.active > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    background: var(--pms-nav-blue);
    opacity: 0;
    transition: opacity .2s;
}

.pms-nav-list > li.has-megamenu:hover > a::after,
.pms-nav-list > li.active > a::after {
    opacity: 1;
}

.pms-nav-chevron {
    font-size: 10px;
    margin-top: 1px;
    transition: transform .2s;
}

.pms-nav-list > li.has-megamenu:hover .pms-nav-chevron {
    transform: rotate(180deg);
}

.pms-nav-list > li.has-megamenu {
    position: static;
}

/* Mega menu dropdown */
.pms-megamenu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--pms-white);
    border-top: 3px solid var(--pms-nav-blue);
    box-shadow: 0 8px 28px rgba(0, 0, 0, .12);
    z-index: 1001;
}

.pms-nav-list > li.has-megamenu:hover .pms-megamenu {
    display: block;
}

.pms-megamenu-body {
    background: #f8f9fb;
    padding: 28px 0 20px;
}

.pms-megamenu-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.pms-megamenu-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px 16px;
}

.pms-megamenu-col {
    min-width: 0;
}

.pms-megamenu-section + .pms-megamenu-section {
    margin-top: 24px;
}

.pms-megamenu-heading {
    margin: 0 0 10px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .3px;
    line-height: 1.3;
}

.pms-megamenu-heading a {
    color: var(--pms-mega-heading);
    text-decoration: none;
    transition: color .15s;
}

.pms-megamenu-heading a:hover {
    color: #a02358;
}

.pms-megamenu-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pms-megamenu-links li {
    border-bottom: 1px solid #e4e7ec;
}

.pms-megamenu-links li a {
    display: block;
    padding: 7px 0;
    font-size: 13px;
    color: #3d3d3d;
    text-decoration: none;
    line-height: 1.35;
    transition: color .15s, padding-left .15s;
}

.pms-megamenu-links li a:hover {
    color: var(--pms-nav-blue);
    padding-left: 4px;
}

.pms-megamenu-links li.pms-megamenu-viewall a {
    font-weight: 700;
    color: var(--pms-nav-blue);
    padding-top: 10px;
}

.pms-megamenu-promo {
    flex: 0 0 280px;
    max-width: 280px;
    background: var(--pms-nav-blue);
    border-radius: 10px;
    overflow: hidden;
    color: var(--pms-white);
    box-shadow: 0 8px 24px rgba(0, 86, 179, .18);
}

.pms-megamenu-promo-media {
    background: var(--pms-white);
    margin: 14px 14px 0;
    padding: 10px;
    border-radius: 8px;
}

.pms-megamenu-promo-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 6px;
    object-fit: cover;
}

.pms-megamenu-promo-body {
    padding: 16px 18px 20px;
    text-align: center;
}

.pms-megamenu-promo-eyebrow {
    margin: 0 0 4px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: rgba(255, 255, 255, .92);
    font-family: Georgia, "Times New Roman", serif;
}

.pms-megamenu-promo-title {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.15;
    color: var(--pms-white);
    font-family: Georgia, "Times New Roman", serif;
}

.pms-megamenu-promo-desc {
    margin: 0 0 14px;
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255, 255, 255, .88);
}

.pms-megamenu-promo-phone {
    margin: 0 0 16px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    font-family: Georgia, "Times New Roman", serif;
}

.pms-megamenu-promo-phone a {
    color: var(--pms-white);
    text-decoration: none;
}

.pms-megamenu-promo-phone a:hover {
    text-decoration: underline;
}

.pms-megamenu-promo-btn {
    display: inline-block;
    min-width: 150px;
    padding: 11px 24px;
    border-radius: 6px;
    background: var(--pms-orange);
    color: var(--pms-white);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s ease, transform .15s ease;
}

.pms-megamenu-promo-btn:hover {
    background: #c42d3d;
    color: var(--pms-white);
    transform: translateY(-1px);
}

.pms-megamenu-footer {
    background: var(--pms-white);
    border-top: 1px solid #e4e7ec;
    padding: 10px 0;
}

.pms-megamenu-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--pms-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 6px 0;
    transition: color .15s;
}

.pms-megamenu-footer-link:hover {
    color: var(--pms-nav-blue);
}

.pms-megamenu-footer-link .fa-folder-open {
    color: var(--pms-nav-blue);
    font-size: 16px;
}

.pms-megamenu-footer-link .fa-chevron-right {
    font-size: 11px;
    color: #999;
}

.pms-nav-cta {
    display: inline-flex;
    align-items: center;
    align-self: center;
    background: var(--pms-orange);
    color: var(--pms-white) !important;
    padding: 10px 22px !important;
    border-radius: var(--pms-radius);
    font-weight: 700 !important;
    font-size: 14px !important;
    text-decoration: none;
    white-space: nowrap;
    margin: 8px 0;
    transition: background .2s;
}

.pms-nav-cta:hover {
    background: #b82c3a !important;
    color: var(--pms-white) !important;
}

/* Legacy nav selectors (kept for compatibility) */
.pms-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pms-nav .pms-nav-link {
    display: block;
    padding: 12px 16px;
    color: var(--pms-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.pms-mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--pms-navy);
    cursor: pointer;
    padding: 8px;
}

/* ---- Section headings ---- */
.pms-section-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--pms-text);
    margin-bottom: 28px;
    position: relative;
    padding-bottom: 12px;
}

.pms-section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--pms-navy);
    margin: 10px auto 0;
}

/* ---- Hero / Banner ---- */
.pms-hero {
    overflow: hidden;
    background: #f0f2f5;
    line-height: 0;
}

.pms-hero .pms-hero-slider,
.pms-hero .owl-stage-outer,
.pms-hero .owl-stage,
.pms-hero .owl-item {
    height: 100%;
}

.pms-hero .pms-banner-slide {
    height: 420px;
    overflow: hidden;
    background: #f0f2f5;
}

.pms-hero .pms-banner-link {
    display: block;
    width: 100%;
    height: 100%;
}

.pms-hero .pms-banner-slide img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: unset !important;
    max-height: none !important;
    object-fit: cover;
    object-position: center center;
}

.pms-hero .pms-banner-slide > img {
    width: 100%;
    height: 100%;
}

/* Override Riode intro-slider min-height on our hero */
.pms-hero.intro-section .intro-slider figure img,
.pms-hero .intro-slider figure img {
    min-height: unset !important;
    height: 100% !important;
}

@media (max-width: 991px) {
    .pms-hero .pms-banner-slide {
        height: 280px;
    }
}

@media (max-width: 575px) {
    .pms-hero .pms-banner-slide {
        height: 200px;
    }
}

/* ---- Category showcase (sidebar + grid) ---- */
.pms-category-showcase {
    padding: 40px 0;
    background: var(--pms-white);
}

.pms-category-showcase .row { align-items: flex-start; }

.pms-sidebar {
    background: var(--pms-gray-bg);
    border: 1px solid var(--pms-border);
    border-radius: var(--pms-radius);
    padding: 0;
    overflow: hidden;
}

.pms-sidebar-title {
    background: var(--pms-navy);
    color: var(--pms-white);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 16px;
    margin: 0;
}

.pms-sidebar ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.pms-sidebar ul li a {
    display: block;
    padding: 9px 16px;
    color: var(--pms-text);
    text-decoration: none;
    font-size: 13px;
    border-bottom: 1px solid var(--pms-border);
    transition: background .15s, color .15s;
}

.pms-sidebar ul li:last-child a { border-bottom: none; }

.pms-sidebar ul li a:hover {
    background: var(--pms-white);
    color: var(--pms-link);
}

/* ---- Product / category cards ---- */
.pms-card {
    background: var(--pms-white);
    border: 1px solid var(--pms-border);
    border-radius: var(--pms-radius);
    overflow: hidden;
    height: 100%;
    transition: box-shadow .2s;
}

.pms-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
}

.pms-card-img {
    background: var(--pms-gray-bg);
    padding: 16px;
    text-align: center;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pms-card-img img {
    max-width: 100%;
    max-height: 160px;
    object-fit: contain;
}

.pms-card-body {
    padding: 14px 16px 18px;
}

.pms-card-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
}

.pms-card-title a {
    color: var(--pms-text);
    text-decoration: none;
}

.pms-card-title a:hover { color: var(--pms-link); }

.pms-card-desc {
    font-size: 13px;
    color: var(--pms-text-muted);
    line-height: 1.5;
    margin: 0 0 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pms-card-link {
    color: var(--pms-link);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.pms-card-link:hover { text-decoration: underline; }

/* ---- Product list section ---- */
.pms-products-section {
    padding: 52px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 50%, #f8fafc 100%);
}

.pms-products-header {
    margin-bottom: 32px;
}

.pms-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pms-product-card {
    background: var(--pms-white);
    border: 1px solid #e8edf3;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.pms-product-card:hover {
    border-color: #b8cfe8;
    box-shadow: 0 12px 32px rgba(12, 45, 94, .1);
    transform: translateY(-4px);
}

.pms-product-media {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 1;
    padding: 24px;
    background: linear-gradient(160deg, #f3f6fa 0%, #e9eef4 100%);
    overflow: hidden;
    text-decoration: none;
    position: relative;
}

.pms-product-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(12, 45, 94, .03) 100%);
    pointer-events: none;
}

.pms-product-media img {
    width: 100%;
    height: 100%;
    max-height: 200px;
    object-fit: contain;
    transition: transform .35s ease;
}

.pms-product-card:hover .pms-product-media img {
    transform: scale(1.07);
}

.pms-product-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 18px 18px 16px;
}

.pms-product-cat {
    display: inline-block;
    align-self: flex-start;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--pms-nav-blue);
    background: #e8f1fb;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.pms-product-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.35;
}

.pms-product-title a {
    color: var(--pms-navy);
    text-decoration: none;
    transition: color .15s;
}

.pms-product-title a:hover {
    color: var(--pms-nav-blue);
}

.pms-product-desc {
    font-size: 13px;
    color: var(--pms-text-muted);
    line-height: 1.6;
    margin: 0 0 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pms-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #eef2f6;
    font-size: 13px;
    font-weight: 700;
    color: var(--pms-nav-blue);
    text-decoration: none;
    transition: gap .2s ease, color .15s;
}

.pms-product-btn i {
    font-size: 11px;
    transition: transform .2s ease;
}

.pms-product-btn:hover {
    color: var(--pms-navy);
    gap: 12px;
}

.pms-product-btn:hover i {
    transform: translateX(3px);
}

@media (max-width: 1199px) {
    .pms-product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

@media (max-width: 991px) {
    .pms-products-section {
        padding: 40px 0;
    }

    .pms-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pms-product-media {
        padding: 18px;
    }

    .pms-product-body {
        padding: 14px;
    }
}

@media (max-width: 575px) {
    .pms-products-section {
        padding: 32px 0;
    }

    .pms-product-grid {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 400px;
        margin: 0 auto;
    }

    .pms-product-media {
        aspect-ratio: 4 / 3;
    }

    .pms-product-title {
        font-size: 15px;
    }
}

/* ---- Services / value props bar ---- */
.pms-services-bar {
    padding: 36px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-top: 1px solid var(--pms-border);
    border-bottom: 1px solid var(--pms-border);
}

.pms-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pms-service-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 22px 20px;
    background: var(--pms-white);
    border: 1px solid #e8edf3;
    border-radius: 10px;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pms-service-card:hover {
    border-color: #b8cfe8;
    box-shadow: 0 8px 24px rgba(12, 45, 94, .08);
    transform: translateY(-2px);
}

.pms-service-icon {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pms-white);
    border: 2px solid #d6e4f5;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(12, 45, 94, .08);
    transition: border-color .2s, transform .2s;
}

.pms-service-card:hover .pms-service-icon {
    border-color: var(--pms-nav-blue);
    transform: translateY(-2px);
}

.pms-service-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.pms-service-content {
    flex: 1;
    min-width: 0;
    padding-top: 4px;
}

.pms-service-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--pms-navy);
    margin: 0 0 6px;
    line-height: 1.35;
}

.pms-service-desc {
    font-size: 13px;
    color: var(--pms-text-muted);
    margin: 0;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991px) {
    .pms-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .pms-service-card {
        padding: 16px;
    }
}

@media (max-width: 575px) {
    .pms-services-bar {
        padding: 24px 0;
    }

    .pms-services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .pms-service-card {
        flex-direction: row;
        align-items: center;
        padding: 14px 16px;
    }

    .pms-service-icon {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
    }

    .pms-service-icon img {
        width: 26px;
        height: 26px;
    }

    .pms-service-content {
        padding-top: 0;
    }

    .pms-service-title {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .pms-service-desc {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
}

/* ---- Wholesale simple grid ---- */
.pms-wholesale-grid .pms-wholesale-item {
    text-align: center;
    padding: 12px;
}

.pms-wholesale-item .pms-card-img {
    aspect-ratio: 1;
    border-radius: var(--pms-radius);
    margin-bottom: 10px;
}

.pms-wholesale-item h5 {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.pms-wholesale-item h5 a {
    color: var(--pms-text);
    text-decoration: none;
}

.pms-wholesale-item h5 a:hover { color: var(--pms-link); }

/* ---- Promo banners ---- */
.pms-promo-banner {
    padding: 48px 0;
    margin: 48px 0;
    position: relative;
}

.pms-promo-banner-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #071e3f 0%, var(--pms-navy) 45%, #1a4a8a 100%);
    color: var(--pms-white);
    padding: 40px 36px;
    box-shadow: 0 20px 50px rgba(12, 45, 94, .25);
}

.pms-promo-banner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pms-orange), #e85563, var(--pms-nav-blue));
}

.pms-promo-banner-card::after {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(219, 53, 69, .15) 0%, transparent 70%);
    top: -80px;
    right: -60px;
    pointer-events: none;
}

.pms-promo-banner-content {
    position: relative;
    z-index: 1;
}

.pms-promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--pms-navy);
    background: linear-gradient(135deg, #ec6b78, var(--pms-orange));
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(219, 53, 69, .35);
}

.pms-promo-banner h3,
.pms-promo-banner .pms-promo-heading {
    color: #fff !important;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pms-promo-banner h3 .pms-orange-text,
.pms-promo-banner h3 .pms-highlight {
    color: var(--pms-orange);
    font-weight: 800;
}

.pms-promo-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px !important;
    max-width: 520px;
}

.pms-promo-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.pms-promo-perks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .95);
    margin: 0;
}

.pms-promo-perks i {
    color: #5ddea8;
    font-size: 14px;
}

.pms-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, var(--pms-orange) 0%, #e85563 100%);
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 8px 24px rgba(219, 53, 69, .4);
}

.pms-promo-btn:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(219, 53, 69, .5);
}

.pms-promo-visual {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
    backdrop-filter: blur(6px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
}

.pms-promo-visual::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 14px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .25), rgba(219, 53, 69, .4));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pms-promo-visual-img {
    max-height: 240px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .25));
}

.pms-promo-visual-fallback {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 200px;
    color: rgba(255, 255, 255, .5);
}

.pms-promo-visual-fallback i {
    font-size: 80px;
}

.pms-promo-visual-fallback span {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .pms-promo-banner-card {
        padding: 32px 24px;
    }

    .pms-promo-perks {
        flex-direction: column;
        gap: 8px;
    }

    .pms-promo-visual {
        max-width: 360px;
        margin: 0 auto;
    }
}

.pms-sample-cta {
    padding: 48px 0;
    margin: 48px 0;
}

.pms-sample-cta-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 40%, #3d2817 100%);
    color: var(--pms-white);
    padding: 40px 36px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.pms-sample-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--pms-orange), #993300, #e85563);
}

.pms-sample-cta-card::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(219, 53, 69, .18) 0%, transparent 70%);
    bottom: -100px;
    left: -80px;
    pointer-events: none;
}

.pms-sample-cta-content {
    position: relative;
    z-index: 1;
}

.pms-sample-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: #1a1a1a;
    background: linear-gradient(135deg, #993300, var(--pms-orange));
    padding: 7px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    box-shadow: 0 4px 14px rgba(219, 53, 69, .35);
}

.pms-sample-cta h3,
.pms-sample-cta .pms-sample-heading {
    color: #fff !important;
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pms-sample-cta .pms-orange-text {
    color: var(--pms-orange);
    font-weight: 800;
}

.pms-sample-desc {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px !important;
    max-width: 520px;
}

.pms-sample-perks {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.pms-sample-perks li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .95);
    margin: 0;
}

.pms-sample-perks i {
    color: #993300;
    font-size: 14px;
}

.pms-sample-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #993300 0%, var(--pms-orange) 100%);
    color: #1a1a1a !important;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 8px 24px rgba(153, 51, 0, .35);
}

.pms-sample-btn:hover {
    color: #1a1a1a !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(153, 51, 0, .45);
}

.pms-sample-visual {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    backdrop-filter: blur(6px);
}

.pms-sample-visual-img {
    max-height: 220px;
    width: auto;
    object-fit: contain;
    border-radius: 10px;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .35));
}

.pms-sample-visual-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--pms-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 6px 12px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(219, 53, 69, .4);
}

@media (max-width: 991px) {
    .pms-sample-cta-card {
        padding: 32px 24px;
    }

    .pms-sample-perks {
        flex-direction: column;
        gap: 8px;
    }

    .pms-sample-visual {
        max-width: 360px;
        margin: 0 auto;
    }
}

/* ---- Process / success circles ---- */
.pms-process-section {
    padding: 48px 0;
    background: var(--pms-white);
}

.pms-process-header {
    margin-bottom: 32px;
}

.pms-process-subtitle {
    text-align: center;
    color: var(--pms-text-muted);
    font-size: 14px;
    margin: -8px auto 0;
    max-width: 560px;
    line-height: 1.6;
}

.pms-process-section--product {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    padding: 44px 0;
    border-top: 1px solid var(--pms-border);
}

.pms-process-section--product .pms-process-grid {
    position: relative;
}

.pms-process-section--product .pms-process-circle {
    background: #fff;
    border: 1px solid var(--pms-border);
    border-radius: 12px;
    padding: 28px 18px 22px;
    height: 100%;
    position: relative;
    transition: border-color .2s, box-shadow .2s;
}

.pms-process-section--product .pms-process-circle:hover {
    border-color: #b8cfe8;
    box-shadow: 0 8px 24px rgba(12, 45, 94, .08);
}

.pms-process-step-num {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 26px;
    height: 26px;
    background: linear-gradient(135deg, var(--pms-orange), #e85563);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(219, 53, 69, .35);
}

.pms-process-circle {
    text-align: center;
    padding: 12px;
}

.pms-process-circle img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 3px solid var(--pms-gray-light);
}

.pms-process-circle h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--pms-navy);
    margin: 0 0 8px;
}

.pms-process-desc {
    font-size: 13px;
    line-height: 1.55;
    color: var(--pms-text-muted);
    margin: 0 !important;
    max-width: 260px;
    margin-left: auto !important;
    margin-right: auto !important;
}

.pms-process-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eef3fa 0%, #dce8f5 100%);
    border: 3px solid var(--pms-gray-light);
}

.pms-process-icon i {
    font-size: 36px;
    color: var(--pms-navy);
}

/* ---- Shop by category ---- */
.pms-shop-category {
    padding: 52px 0;
    background: var(--pms-white);
    border-top: 1px solid var(--pms-border);
}

.pms-shop-header {
    margin-bottom: 32px;
}

.pms-shop-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--pms-text-muted);
    margin: -16px auto 0;
    max-width: 520px;
    line-height: 1.6;
}

.pms-shop-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.pms-shop-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    padding: 16px 10px 14px;
    background: #f8fafc;
    border: 1px solid #e8edf3;
    border-radius: 12px;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background .25s ease;
}

.pms-shop-item:hover {
    background: var(--pms-white);
    border-color: #b8cfe8;
    box-shadow: 0 8px 24px rgba(12, 45, 94, .09);
    transform: translateY(-3px);
}

.pms-shop-thumb {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pms-white);
    border-radius: 10px;
    border: 1px solid #eef2f6;
    margin-bottom: 12px;
    overflow: hidden;
    transition: border-color .25s ease;
}

.pms-shop-item:hover .pms-shop-thumb {
    border-color: #c5d8ef;
}

.pms-shop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 6px;
    transition: transform .3s ease;
}

.pms-shop-thumb img.pms-shop-img-fallback {
    padding: 14px;
    opacity: .85;
    filter: saturate(.9);
}

.pms-shop-item:hover .pms-shop-thumb img {
    transform: scale(1.08);
}

.pms-shop-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--pms-navy);
    text-align: center;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color .15s;
}

.pms-shop-item:hover .pms-shop-label {
    color: var(--pms-nav-blue);
}

@media (max-width: 1199px) {
    .pms-shop-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 991px) {
    .pms-shop-category {
        padding: 40px 0;
    }

    .pms-shop-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .pms-shop-thumb {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 767px) {
    .pms-shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pms-shop-item {
        padding: 12px 8px;
    }
}

@media (max-width: 575px) {
    .pms-shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .pms-shop-thumb {
        width: 56px;
        height: 56px;
        margin-bottom: 8px;
    }

    .pms-shop-label {
        font-size: 11px;
    }
}

/* ---- Testimonials ---- */
.pms-testimonials {
    padding: 52px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    border-top: 1px solid var(--pms-border);
}

.pms-testimonials-header {
    margin-bottom: 32px;
}

.pms-testimonials-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--pms-text-muted);
    margin: -16px auto 0;
    max-width: 480px;
    line-height: 1.6;
}

.pms-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pms-testimonial-card {
    background: var(--pms-white);
    border: 1px solid #e8edf3;
    border-radius: 14px;
    padding: 24px 22px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(12, 45, 94, .05);
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.pms-testimonial-card:hover {
    border-color: #b8cfe8;
    box-shadow: 0 12px 32px rgba(12, 45, 94, .1);
    transform: translateY(-3px);
}

.pms-testimonial-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.pms-testimonial-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #e8f1fb;
    border-radius: 50%;
    color: var(--pms-nav-blue);
    font-size: 14px;
}

.pms-testimonial-stars {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 2px;
}

.pms-testimonial-text {
    margin: 0 0 20px;
    flex: 1;
}

.pms-testimonial-text p {
    font-size: 14px;
    font-style: italic;
    color: var(--pms-text-muted);
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pms-testimonial-footer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #eef2f6;
    margin-top: auto;
}

.pms-testimonial-avatar {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e8f1fb;
    background: #f0f4f9;
}

.pms-testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pms-testimonial-initials {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: 700;
    color: var(--pms-nav-blue);
}

.pms-testimonial-meta {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pms-testimonial-name {
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    color: var(--pms-navy);
    line-height: 1.3;
}

.pms-testimonial-role,
.pms-testimonial-date {
    font-size: 12px;
    color: var(--pms-text-muted);
    line-height: 1.3;
}

.pms-testimonial-verified {
    flex: 0 0 auto;
    color: var(--pms-nav-blue);
    font-size: 18px;
    opacity: .85;
}

@media (max-width: 1199px) {
    .pms-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .pms-testimonials {
        padding: 40px 0;
    }

    .pms-testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 480px;
        margin: 0 auto;
    }

    .pms-testimonial-card {
        padding: 20px 18px;
    }

    .pms-testimonial-text p {
        -webkit-line-clamp: 8;
    }
}

/* ---- Company / SEO scrollable content ---- */
.pms-company-content {
    padding: 48px 0;
    background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.pms-content-card {
    position: relative;
    background: var(--pms-white);
    border: 1px solid #e8edf3;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(12, 45, 94, .07);
    overflow: hidden;
}

.pms-content-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 12px;
    height: 56px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .95) 70%, #fff 100%);
    pointer-events: none;
    z-index: 1;
}

.pms-content-scroll {
    max-height: 400px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 32px 36px 40px;
    scrollbar-width: thin;
    scrollbar-color: #a8c4e8 #eef3f9;
}

.pms-content-scroll::-webkit-scrollbar {
    width: 7px;
}

.pms-content-scroll::-webkit-scrollbar-track {
    background: #eef3f9;
    border-radius: 4px;
    margin: 8px 0;
}

.pms-content-scroll::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #7eb0e8, #4a8fd4);
    border-radius: 4px;
}

.pms-content-scroll::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #5a9de0, #3a7fc4);
}

.pms-content-body {
    color: var(--pms-text-muted);
    font-size: 14px;
    line-height: 1.75;
}

.pms-content-body h1,
.pms-content-body h2,
.pms-content-body h3,
.pms-content-body h4 {
    color: var(--pms-navy);
    font-weight: 700;
    line-height: 1.35;
    margin: 0 0 14px;
}

.pms-content-body h2 {
    font-size: 22px;
}

.pms-content-body h3 {
    font-size: 18px;
}

.pms-content-body h4 {
    font-size: 16px;
}

.pms-content-body p {
    margin: 0 0 14px;
}

.pms-content-body ul,
.pms-content-body ol {
    margin: 0 0 16px;
    padding-left: 22px;
}

.pms-content-body li {
    margin-bottom: 6px;
}

.pms-content-body a {
    color: var(--pms-nav-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pms-content-body a:hover {
    color: var(--pms-navy);
}

.pms-content-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 12px 0;
}

.pms-content-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 16px;
    font-size: 13px;
}

.pms-content-body th,
.pms-content-body td {
    border: 1px solid #e8edf3;
    padding: 8px 12px;
    text-align: left;
}

.pms-content-body th {
    background: #f4f7fb;
    color: var(--pms-navy);
    font-weight: 600;
}

@media (max-width: 767px) {
    .pms-company-content {
        padding: 32px 0;
    }

    .pms-content-scroll {
        padding: 22px 20px 32px;
        max-height: 400px;
    }

    .pms-content-body h2 {
        font-size: 19px;
    }
}

/* ---- SEO content block (legacy) ---- */
.pms-seo-block {
    padding: 40px 0;
    background: var(--pms-white);
}

.pms-seo-block h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--pms-navy);
}

.pms-seo-block p,
.pms-seo-block li {
    font-size: 14px;
    color: var(--pms-text-muted);
    line-height: 1.7;
}

/* ---- Bottom promo grid ---- */
.pms-bottom-promos {
    padding: 0 0 40px;
}

.pms-promo-box {
    padding: 28px 20px;
    text-align: center;
    border-radius: var(--pms-radius);
    height: 100%;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pms-promo-box.blue { background: #d6e8f7; }
.pms-promo-box.gray { background: var(--pms-gray-bg); }
.pms-promo-box.white { background: var(--pms-white); border: 1px solid var(--pms-border); }

.pms-promo-box h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--pms-navy);
    margin: 10px 0 6px;
    letter-spacing: .5px;
}

.pms-promo-box a {
    color: var(--pms-link);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.pms-promo-box i {
    font-size: 36px;
    color: var(--pms-navy);
}

/* ---- Footer ---- */
.pms-footer {
    background: linear-gradient(180deg, #0a264f 0%, var(--pms-navy) 40%, #0c2d5e 100%);
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    position: relative;
    overflow: hidden;
}

.pms-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pms-orange), #e85563, var(--pms-nav-blue));
}

.pms-footer-top {
    padding: 52px 0 40px;
}

.pms-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
    gap: 32px 24px;
}

.pms-footer-col {
    min-width: 0;
}

.pms-footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.pms-footer-logo img {
    max-height: 48px;
    width: auto;
    transition: opacity .2s;
}

.pms-footer-logo:hover img {
    opacity: 1;
}

.pms-footer-about {
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .72);
    margin: 0 0 20px;
    max-width: 280px;
}

.pms-footer-heading {
    color: var(--pms-white);
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: .6px;
    position: relative;
    padding-bottom: 10px;
}

.pms-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--pms-orange);
    border-radius: 2px;
}

.pms-footer-heading--spaced {
    margin-top: 24px;
}

.pms-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pms-footer-links li {
    margin-bottom: 10px;
}

.pms-footer-links a {
    color: rgba(255, 255, 255, .72);
    text-decoration: none;
    font-size: 13px;
    display: inline-block;
    transition: color .15s ease, transform .15s ease, padding-left .15s ease;
    line-height: 1.4;
}

.pms-footer-links a:hover {
    color: var(--pms-white);
    padding-left: 6px;
}

.pms-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pms-footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pms-white);
    text-decoration: none;
    font-size: 15px;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.pms-footer-social a:hover {
    background: var(--pms-orange);
    border-color: var(--pms-orange);
    transform: translateY(-2px);
}

.pms-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pms-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, .75);
}

.pms-footer-contact li i {
    flex: 0 0 16px;
    color: var(--pms-orange);
    font-size: 14px;
    margin-top: 2px;
}

.pms-footer-contact a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    word-break: break-word;
    transition: color .15s;
}

.pms-footer-contact a:hover {
    color: var(--pms-white);
}

.pms-footer-newsletter-text {
    font-size: 12px;
    color: rgba(255, 255, 255, .6);
    margin: -8px 0 12px;
    line-height: 1.5;
}

.pms-newsletter {
    display: flex;
    margin-top: 0;
    max-width: 100%;
}

.pms-newsletter input {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    color: var(--pms-white);
    padding: 11px 14px;
    border-radius: 8px 0 0 8px;
    font-size: 13px;
    flex: 1;
    min-width: 0;
    transition: border-color .2s, background .2s;
}

.pms-newsletter input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, .35);
    background: rgba(255, 255, 255, .12);
}

.pms-newsletter input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.pms-newsletter button {
    background: var(--pms-orange);
    color: var(--pms-white);
    border: none;
    padding: 0 16px;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: background .2s, transform .15s;
    flex-shrink: 0;
}

.pms-newsletter button:hover {
    background: #b82c3a;
}

.pms-footer-payment {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.pms-footer-payment img {
    opacity: .85;
    max-width: 100%;
    height: auto;
    filter: brightness(1.1);
}

.pms-footer-bottom {
    padding: 16px 0;
    background: rgba(0, 0, 0, .22);
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.pms-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.pms-footer-bottom p {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
}

.pms-footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
}

.pms-footer-bottom-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: color .15s;
}

.pms-footer-bottom-links a:hover {
    color: var(--pms-white);
}

@media (max-width: 1199px) {
    .pms-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pms-footer-brand {
        grid-column: 1 / -1;
        max-width: 480px;
    }

    .pms-footer-contact-col {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .pms-footer-top {
        padding: 40px 0 32px;
    }

    .pms-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }

    .pms-footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .pms-footer-about {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }

    .pms-footer-social {
        justify-content: center;
    }

    .pms-footer-contact-col {
        grid-column: 1 / -1;
    }

    .pms-footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .pms-footer-bottom-links {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .pms-footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pms-footer-brand {
        text-align: left;
    }

    .pms-footer-social {
        justify-content: flex-start;
    }
}

/* Legacy footer selectors */
.pms-footer .widget-title {
    color: var(--pms-white);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.pms-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ---- Quote form section (above footer) ---- */
.pms-quote-section {
    padding: 56px 0;
    background: linear-gradient(180deg, #f0f4f9 0%, #e8eef6 100%);
}

.pms-quote-wrapper {
    display: grid;
    grid-template-columns: 1fr 380px;
    background: var(--pms-white);
    border: 1px solid #dde5ef;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(12, 45, 94, .1);
}

.pms-quote-form-panel {
    padding: 36px 40px 32px;
}

.pms-quote-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--pms-orange);
    background: #fdf0f1;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.pms-quote-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--pms-navy);
    margin: 0 0 10px;
    line-height: 1.25;
}

.pms-quote-lead {
    font-size: 14px;
    color: var(--pms-text-muted);
    line-height: 1.65;
    margin: 0 0 24px;
    max-width: 560px;
}

.pms-quote-fields {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 20px;
}

.pms-quote-form input,
.pms-quote-form select {
    width: 100%;
    padding: 12px 14px;
    font-size: 14px;
    color: var(--pms-text);
    background: #f8fafc;
    border: 1px solid #dde3eb;
    border-radius: 8px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
    appearance: none;
}

.pms-quote-form select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.pms-quote-form input::placeholder {
    color: #9aa5b4;
}

.pms-quote-form input:focus,
.pms-quote-form select:focus {
    outline: none;
    border-color: var(--pms-nav-blue);
    background: var(--pms-white);
    box-shadow: 0 0 0 3px rgba(24, 119, 242, .12);
}

.pms-quote-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.pms-quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    color: var(--pms-white);
    background: linear-gradient(135deg, var(--pms-navy) 0%, #1a4a8a 100%);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, gap .2s ease;
    box-shadow: 0 4px 14px rgba(12, 45, 94, .25);
}

.pms-quote-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(12, 45, 94, .32);
    gap: 14px;
}

.pms-quote-btn i {
    font-size: 12px;
}

.pms-quote-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--pms-text-muted);
    margin: 0;
    line-height: 1.4;
}

.pms-quote-note i {
    color: var(--pms-nav-blue);
    font-size: 14px;
}

.pms-quote-perks {
    list-style: none;
    margin: 0;
    padding: 16px 0 0;
    border-top: 1px solid #eef2f6;
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
}

.pms-quote-perks li {
    font-size: 12px;
    font-weight: 600;
    color: var(--pms-navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pms-quote-perks i {
    color: #2ecc71;
    font-size: 11px;
}

.pms-quote-visual {
    background: linear-gradient(160deg, #0c2d5e 0%, #1a5fb4 55%, #2580d4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
}

.pms-quote-visual::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .06);
    top: -60px;
    right: -40px;
}

.pms-quote-visual::after {
    content: '';
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    bottom: -30px;
    left: -20px;
}

.pms-quote-visual-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 100%;
}

.pms-quote-visual-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--pms-navy);
    background: var(--pms-orange);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.pms-quote-visual img {
    max-width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, .2));
    margin-bottom: 16px;
}

.pms-quote-visual-caption {
    font-size: 13px;
    color: rgba(255, 255, 255, .9);
    margin: 0;
    line-height: 1.5;
    font-weight: 500;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 991px) {
    .pms-quote-section {
        padding: 40px 0;
    }

    .pms-quote-wrapper {
        grid-template-columns: 1fr;
    }

    .pms-quote-visual {
        order: -1;
        padding: 28px 24px;
    }

    .pms-quote-visual img {
        max-height: 160px;
    }

    .pms-quote-form-panel {
        padding: 28px 24px;
    }

    .pms-quote-title {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .pms-quote-section {
        padding: 32px 0;
    }

    .pms-quote-wrapper {
        border-radius: 12px;
    }

    .pms-quote-fields {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pms-quote-form-panel {
        padding: 24px 18px;
    }

    .pms-quote-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .pms-quote-btn {
        justify-content: center;
        width: 100%;
    }

    .pms-quote-note {
        justify-content: center;
        text-align: center;
    }

    .pms-quote-perks {
        flex-direction: column;
        gap: 10px;
    }
}

/* ---- Override old header when pms theme active ---- */
body.pms-theme .header:not(.pms-header) { display: none; }
body.pms-theme .footer:not(.pms-footer) { display: none; }

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .pms-mobile-toggle { display: block; }

    .pms-header-actions .pms-action-item span { display: none; }

    .pms-nav-wrapper { display: none !important; }

    .pms-search { order: 3; flex: 1 1 100%; max-width: 100%; }
}

@media (max-width: 1199px) {
    .pms-megamenu-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pms-megamenu-promo {
        display: none;
    }
}

@media (max-width: 991px) {
    .pms-megamenu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .pms-section-title { font-size: 18px; }
}

/* ---- Category page ---- */
.pms-category-hero {
    background: linear-gradient(135deg, #071e3f 0%, var(--pms-navy) 55%, #1a4a8a 100%);
    padding: 28px 0 36px;
    position: relative;
    overflow: hidden;
}

.pms-category-hero::before {
    content: '';
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(219, 53, 69, .1) 0%, transparent 70%);
    top: -100px;
    right: -60px;
    pointer-events: none;
}

.pms-category-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.pms-category-hero-text {
    min-width: 0;
}

.pms-category-hero .pms-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 20px;
}

.pms-category-hero .pms-breadcrumb a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: color .2s;
}

.pms-category-hero .pms-breadcrumb a:hover {
    color: #fff;
}

.pms-category-hero .pms-breadcrumb span:last-child {
    color: var(--pms-orange);
    font-weight: 600;
}

.pms-category-hero .pms-breadcrumb span[aria-hidden="true"] {
    color: rgba(255, 255, 255, .4);
}

.pms-category-hero-title {
    color: #fff !important;
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.pms-category-hero-lead {
    color: rgba(255, 255, 255, .9) !important;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 0;
    max-width: 540px;
}

.pms-category-hero-lead p,
.pms-category-hero-lead span,
.pms-category-hero-lead li,
.pms-category-hero-lead strong,
.pms-category-hero-lead em {
    color: rgba(255, 255, 255, .9) !important;
}

.pms-category-hero-lead p {
    margin-bottom: .5rem;
}

.pms-category-hero-lead p:last-child {
    margin-bottom: 0;
}

.pms-category-hero-lead a {
    color: var(--pms-orange) !important;
    text-decoration: underline;
}

.pms-category-hero-media {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 12px;
    padding: 20px;
    min-height: 200px;
    max-height: 260px;
}

.pms-category-hero-media img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, .2));
}

.pms-category-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pms-navy);
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s ease;
}

.pms-category-hero-btn:hover {
    background: var(--pms-orange);
    color: #fff !important;
}

@media (max-width: 991px) {
    .pms-category-hero {
        padding: 20px 0 28px;
    }

    .pms-category-hero-grid {
        gap: 28px;
    }

    .pms-category-hero-media {
        min-height: 160px;
        max-height: 200px;
        padding: 16px;
    }

    .pms-category-hero-media img {
        max-height: 168px;
    }
}

@media (max-width: 767px) {
    .pms-category-hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pms-category-hero-media {
        order: -1;
        min-height: 140px;
        max-height: 180px;
    }

    .pms-breadcrumb {
        margin-bottom: 16px;
    }
}

.pms-category-products {
    padding-top: 32px;
    padding-bottom: 48px;
}

.pms-category-products-sub {
    text-align: center;
    color: var(--pms-text-muted);
    font-size: 14px;
    margin: -12px auto 32px;
    max-width: 560px;
}

.pms-category-empty {
    text-align: center;
    padding: 60px 24px;
    background: var(--pms-gray-bg);
    border: 1px dashed var(--pms-border);
    border-radius: 12px;
}

.pms-category-empty i {
    font-size: 48px;
    color: var(--pms-navy);
    opacity: .35;
    margin-bottom: 16px;
}

.pms-category-empty h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--pms-navy);
    margin-bottom: 8px;
}

.pms-category-empty p {
    color: var(--pms-text-muted);
    margin-bottom: 20px;
}

.pms-category-content {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.pms-category-services {
    padding-bottom: 56px;
}

.pms-category-services-intro {
    text-align: center;
    margin-bottom: 8px;
}

.pms-category-services-intro p {
    color: var(--pms-text-muted);
    font-size: 14px;
    margin: -8px auto 28px;
    max-width: 520px;
}

/* ---- Product page ---- */
.pms-product-hero {
    background: linear-gradient(135deg, #071e3f 0%, var(--pms-navy) 55%, #1a4a8a 100%);
    padding: 16px 0;
}

.pms-product-hero .pms-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    margin-bottom: 0;
}

.pms-product-hero .pms-breadcrumb a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
}

.pms-product-hero .pms-breadcrumb a:hover {
    color: #fff;
}

.pms-product-hero .pms-breadcrumb span:last-child {
    color: var(--pms-orange);
    font-weight: 600;
}

.pms-product-hero .pms-breadcrumb span[aria-hidden="true"] {
    color: rgba(255, 255, 255, .4);
}

.pms-product-page {
    padding: 36px 0 48px;
    background: #fff;
}

.pms-product-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 48px;
}

.pms-product-gallery-card {
    background: var(--pms-gray-bg);
    border: 1px solid var(--pms-border);
    border-radius: 12px;
    padding: 16px;
    overflow: hidden;
}

/* PMS product gallery */
.pms-gallery-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    max-height: 480px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid var(--pms-border);
    padding: 16px;
    margin-bottom: 14px;
}

.pms-gallery-main-img {
    display: block;
    max-width: 100%;
    max-height: 440px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: opacity .2s ease;
}

.pms-gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: none;
    border-radius: 50%;
    background: rgba(12, 45, 94, .85);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background .2s;
    font-size: 14px;
}

.pms-gallery-nav:hover {
    background: var(--pms-orange);
}

.pms-gallery-prev { left: 10px; }
.pms-gallery-next { right: 10px; }

.pms-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.pms-gallery-thumb {
    flex: 0 0 calc(25% - 8px);
    max-width: calc(25% - 8px);
    aspect-ratio: 1;
    padding: 4px;
    border: 2px solid var(--pms-border);
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.pms-gallery-thumb:hover {
    border-color: var(--pms-navy);
}

.pms-gallery-thumb.is-active {
    border-color: var(--pms-orange);
    box-shadow: 0 0 0 2px rgba(219, 53, 69, .25);
}

.pms-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.pms-product-payment {
    margin-top: 16px;
    text-align: center;
}

.pms-product-payment img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.pms-product-info-col .pms-product-cat {
    margin-bottom: 8px;
}

.pms-product-page-title {
    color: var(--pms-navy) !important;
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pms-product-short-desc {
    color: var(--pms-text-muted);
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
}

.pms-product-short-desc p {
    margin-bottom: .5rem;
}

.pms-product-quote-card {
    background: #fff;
    border: 1px solid var(--pms-border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(12, 45, 94, .08);
}

.pms-product-quote-header {
    background: linear-gradient(135deg, var(--pms-navy) 0%, #1a4a8a 100%);
    color: #fff;
    padding: 20px 24px;
}

.pms-product-quote-header h2 {
    color: #fff !important;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.pms-product-quote-header p {
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    margin: 0;
}

.pms-product-quote-form {
    padding: 24px;
}

.pms-quote-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 20px;
}

.pms-quote-fieldset legend {
    font-size: 13px;
    font-weight: 700;
    color: var(--pms-navy);
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 12px;
    padding: 0;
    width: 100%;
}

.pms-quote-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.pms-quote-field--full {
    grid-column: 1 / -1;
}

.pms-quote-field input,
.pms-quote-field select,
.pms-quote-field textarea {
    width: 100%;
    padding: 11px 14px;
    font-size: 14px;
    border: 1px solid var(--pms-border);
    border-radius: 6px;
    background: var(--pms-gray-bg);
    color: var(--pms-text);
    transition: border-color .2s, box-shadow .2s;
}

.pms-quote-field input:focus,
.pms-quote-field select:focus,
.pms-quote-field textarea:focus {
    outline: none;
    border-color: var(--pms-navy);
    box-shadow: 0 0 0 3px rgba(12, 45, 94, .1);
    background: #fff;
}

.pms-quote-field textarea {
    resize: vertical;
    min-height: 80px;
}

.pms-product-quote-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--pms-orange) 0%, #e85563 100%);
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 20px rgba(219, 53, 69, .35);
}

.pms-product-quote-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(219, 53, 69, .45);
}

.pms-product-tabs {
    margin-top: 16px;
}

.pms-product-tab-nav {
    border-bottom: 2px solid var(--pms-border) !important;
    gap: 4px;
}

.pms-product-tab-nav .nav-link {
    color: var(--pms-text-muted) !important;
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px !important;
    border: none !important;
    border-radius: 8px 8px 0 0 !important;
    background: transparent !important;
    margin-bottom: -2px;
}

.pms-product-tab-nav .nav-link.active {
    color: var(--pms-navy) !important;
    background: var(--pms-gray-bg) !important;
    border-bottom: 2px solid var(--pms-navy) !important;
}

.pms-product-tab-content {
    background: var(--pms-gray-bg);
    border: 1px solid var(--pms-border);
    border-top: none;
    border-radius: 0 0 12px 12px;
    padding: 28px;
}

.pms-product-tab-body {
    font-size: 14px;
    line-height: 1.7;
    color: var(--pms-text);
}

.pms-product-tab-body table {
    width: 100%;
    border-collapse: collapse;
}

.pms-product-tab-body th,
.pms-product-tab-body td {
    padding: 10px 14px;
    border: 1px solid var(--pms-border);
}

.pms-product-tab-body th {
    background: #fff;
    color: var(--pms-navy);
    font-weight: 600;
}

.pms-related-products {
    padding-top: 0;
}

.pms-product-slider-wrap {
    position: relative;
    padding: 0 4px;
}

.pms-product-slider .pms-product-slide {
    height: 100%;
}

.pms-product-slider .pms-product-card {
    height: 100%;
    margin: 0;
}

.pms-product-slider.owl-carousel .owl-stage-outer {
    padding: 8px 0 16px;
}

.pms-product-slider.owl-carousel .owl-nav {
    margin: 0;
}

.pms-product-slider.owl-carousel .owl-nav button {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50% !important;
    background: var(--pms-navy) !important;
    color: #fff !important;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 1;
    transition: background .2s, transform .2s;
    box-shadow: 0 4px 14px rgba(12, 45, 94, .2);
}

.pms-product-slider.owl-carousel .owl-nav button:hover {
    background: var(--pms-orange) !important;
    transform: translateY(-50%) scale(1.05);
}

.pms-product-slider.owl-carousel .owl-nav .owl-prev {
    left: -12px;
}

.pms-product-slider.owl-carousel .owl-nav .owl-next {
    right: -12px;
}

.pms-product-slider.owl-carousel .owl-dots {
    margin-top: 8px;
}

.pms-product-slider.owl-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 4px;
    background: #c5d0de;
    transition: background .2s, transform .2s;
}

.pms-product-slider.owl-carousel .owl-dot.active span,
.pms-product-slider.owl-carousel .owl-dot:hover span {
    background: var(--pms-orange);
    transform: scale(1.2);
}

@media (max-width: 991px) {
    .pms-product-slider.owl-carousel .owl-nav .owl-prev {
        left: 0;
    }

    .pms-product-slider.owl-carousel .owl-nav .owl-next {
        right: 0;
    }
}

.pms-product-hero .pms-quote-page-lead {
    color: rgba(255, 255, 255, .88);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 560px;
}

/* ---- Custom quote page ---- */
.pms-quote-page {
    padding: 40px 0 56px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.pms-quote-page-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 32px;
    align-items: start;
    margin-bottom: 56px;
}

.pms-quote-page-main .pms-product-quote-form {
    padding: 24px;
}

.pms-custom-quote-form .pms-product-quote-submit {
    margin-top: 8px;
}

.pms-quote-page-aside {
    position: sticky;
    top: 24px;
}

.pms-quote-aside-card {
    background: #fff;
    border: 1px solid var(--pms-border);
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 24px rgba(12, 45, 94, .06);
    margin-bottom: 20px;
}

.pms-quote-aside-card img {
    width: 100%;
    max-height: 200px;
    object-fit: contain;
    padding: 16px;
    background: var(--pms-gray-bg);
}

.pms-quote-aside-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--pms-navy);
    margin: 0;
    padding: 16px 16px 6px;
}

.pms-quote-aside-card p {
    font-size: 13px;
    color: var(--pms-text-muted);
    line-height: 1.55;
    margin: 0;
    padding: 0 16px 18px;
}

.pms-quote-aside-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border: 1px solid var(--pms-border);
    border-radius: 12px;
    padding: 16px 18px;
}

.pms-quote-aside-perks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pms-text);
    padding: 8px 0;
    border-bottom: 1px solid var(--pms-border);
    margin: 0;
}

.pms-quote-aside-perks li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pms-quote-aside-perks i {
    color: var(--pms-orange);
    margin-top: 2px;
}

.pms-quote-faq {
    padding-top: 8px;
}

.pms-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.pms-faq-item {
    background: #fff;
    border: 1px solid var(--pms-border);
    border-radius: 10px;
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s;
}

.pms-faq-item[open] {
    border-color: #b8cfe8;
    box-shadow: 0 4px 16px rgba(12, 45, 94, .06);
}

.pms-faq-item summary {
    padding: 16px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--pms-navy);
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.pms-faq-item summary::-webkit-details-marker {
    display: none;
}

.pms-faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 400;
    color: var(--pms-orange);
    flex-shrink: 0;
    line-height: 1;
}

.pms-faq-item[open] summary::after {
    content: '−';
}

.pms-faq-answer {
    padding: 0 20px 16px;
}

.pms-faq-answer p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--pms-text-muted);
}

/* ---- FAQ page ---- */
.pms-faq-page {
    padding: 44px 0 56px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.pms-faq-page-grid {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    align-items: start;
}

.pms-faq-page-visual {
    position: sticky;
    top: 24px;
}

.pms-faq-visual-card {
    background: #fff;
    border: 1px solid var(--pms-border);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(12, 45, 94, .06);
}

.pms-faq-visual-card img {
    width: 100%;
    max-height: 280px;
    object-fit: contain;
    padding: 20px;
    background: var(--pms-gray-bg);
    display: block;
}

.pms-faq-help-card {
    background: linear-gradient(135deg, var(--pms-navy) 0%, #1a4a8a 100%);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    color: #fff;
}

.pms-faq-help-card i {
    font-size: 36px;
    color: var(--pms-orange);
    margin-bottom: 14px;
}

.pms-faq-help-card h3 {
    color: #fff !important;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pms-faq-help-card p {
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.pms-faq-help-card .pms-category-hero-btn {
    font-size: 13px;
    padding: 12px 22px;
}

.pms-faq-list--page {
    max-width: none;
    margin: 0;
}

@media (max-width: 991px) {
    .pms-faq-page-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .pms-faq-page-visual {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: stretch;
    }

    .pms-faq-visual-card {
        margin-bottom: 0;
    }

    .pms-faq-visual-card img {
        max-height: 200px;
    }
}

@media (max-width: 575px) {
    .pms-faq-page {
        padding: 28px 0 40px;
    }

    .pms-faq-page-visual {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .pms-quote-page-grid {
        grid-template-columns: 1fr;
    }

    .pms-quote-page-aside {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 16px;
        align-items: start;
    }
}

@media (max-width: 575px) {
    .pms-quote-page {
        padding: 28px 0 40px;
    }

    .pms-quote-page-aside {
        grid-template-columns: 1fr;
    }
}

.pms-product-services {
    padding: 40px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

@media (max-width: 991px) {
    .pms-product-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .pms-quote-form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .pms-product-page {
        padding: 24px 0 36px;
    }

    .pms-gallery-main {
        min-height: 240px;
        padding: 12px;
    }

    .pms-gallery-main-img {
        max-height: 280px;
    }

    .pms-gallery-thumb {
        flex: 0 0 calc(50% - 6px);
        max-width: calc(50% - 6px);
    }

    .pms-product-quote-form {
        padding: 16px;
    }

    .pms-product-tab-nav .nav-link {
        padding: 10px 16px !important;
        font-size: 13px;
    }
}

/* ---- Contact page ---- */
.pms-contact-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ecfdf3;
    border: 1px solid #a7f3d0;
    color: #065f46;
    border-radius: 10px;
    padding: 14px 18px;
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 600;
}

.pms-contact-alert i {
    color: #10b981;
    font-size: 20px;
    flex-shrink: 0;
}

.pms-contact-form .pms-product-quote-submit {
    margin-top: 4px;
}

.pms-contact-extra {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pms-contact-extra-card {
    background: #fff;
    border: 1px solid var(--pms-border);
    border-radius: 12px;
    padding: 24px 26px;
    box-shadow: 0 8px 24px rgba(12, 45, 94, .06);
}

.pms-contact-extra-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--pms-navy);
    margin: 0 0 18px;
}

.pms-contact-steps {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pms-contact-steps li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--pms-border);
    margin: 0;
}

.pms-contact-steps li:first-child {
    padding-top: 0;
}

.pms-contact-steps li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pms-contact-step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pms-orange) 0%, #e85563 100%);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.pms-contact-steps strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--pms-navy);
    margin-bottom: 4px;
}

.pms-contact-steps p {
    font-size: 13px;
    color: var(--pms-text-muted);
    line-height: 1.55;
    margin: 0;
}

.pms-contact-trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pms-contact-trust-item {
    background: #fff;
    border: 1px solid var(--pms-border);
    border-radius: 10px;
    padding: 18px 16px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(12, 45, 94, .04);
}

.pms-contact-trust-item i {
    font-size: 22px;
    color: var(--pms-orange);
    margin-bottom: 10px;
}

.pms-contact-trust-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--pms-navy);
    margin-bottom: 4px;
}

.pms-contact-trust-item span {
    display: block;
    font-size: 12px;
    color: var(--pms-text-muted);
    line-height: 1.45;
}

@media (max-width: 575px) {
    .pms-contact-trust-grid {
        grid-template-columns: 1fr;
    }
}

.pms-field-error {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: #dc2626;
    font-weight: 600;
}

.pms-contact-info-card {
    background: #fff;
    border: 1px solid var(--pms-border);
    border-radius: 12px;
    padding: 24px 22px;
    margin-bottom: 20px;
    box-shadow: 0 8px 24px rgba(12, 45, 94, .06);
}

.pms-contact-info-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--pms-navy);
    margin: 0 0 18px;
}

.pms-contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pms-contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--pms-border);
    margin: 0;
}

.pms-contact-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.pms-contact-info-list li:first-child {
    padding-top: 0;
}

.pms-contact-info-list a,
.pms-contact-info-list li > div span {
    font-size: 14px;
    font-weight: 600;
    color: var(--pms-navy);
    line-height: 1.5;
    text-decoration: none;
}

.pms-contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--pms-navy) 0%, #1a4a8a 100%);
    color: #fff !important;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 400;
}

.pms-contact-info-icon i {
    color: inherit;
}

.pms-contact-info-list a:hover {
    color: var(--pms-orange);
}

.pms-contact-info-list strong {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--pms-text-muted);
    margin-bottom: 4px;
}

.pms-contact-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid var(--pms-border);
}

.pms-contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: var(--pms-gray-bg);
    color: var(--pms-navy);
    font-size: 15px;
    transition: background .2s, color .2s, transform .2s;
}

.pms-contact-social a:hover {
    background: var(--pms-navy);
    color: #fff;
    transform: translateY(-2px);
}

.pms-contact-cta {
    margin-top: 20px;
    text-align: center;
}

.pms-contact-cta .pms-category-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    font-size: 14px;
    padding: 14px 22px;
}

/* ---- Blog listing page ---- */
.pms-blog-hero {
    padding: 20px 0 28px;
}

.pms-blog-page {
    padding: 40px 0 56px;
    background: var(--pms-gray-bg);
}

.pms-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pms-blog-card {
    background: var(--pms-white);
    border: 1px solid #e8edf3;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

.pms-blog-card:hover {
    border-color: #b8cfe8;
    box-shadow: 0 14px 36px rgba(12, 45, 94, .1);
    transform: translateY(-4px);
}

.pms-blog-card-media {
    display: block;
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(160deg, #f3f6fa 0%, #e9eef4 100%);
    text-decoration: none;
}

.pms-blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.pms-blog-card:hover .pms-blog-card-media img {
    transform: scale(1.06);
}

.pms-blog-date-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    padding: 8px 10px;
    border-radius: 10px;
    background: var(--pms-white);
    box-shadow: 0 4px 14px rgba(12, 45, 94, .15);
    line-height: 1.1;
}

.pms-blog-date-day {
    font-size: 20px;
    font-weight: 800;
    color: var(--pms-navy);
}

.pms-blog-date-month {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .4px;
    color: var(--pms-orange);
    text-transform: uppercase;
}

.pms-blog-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 20px 20px 18px;
}

.pms-blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--pms-text-muted);
    margin-bottom: 10px;
}

.pms-blog-meta time {
    font-weight: 600;
}

.pms-blog-meta-sep {
    opacity: .5;
}

.pms-blog-card-title {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0 0 10px;
    letter-spacing: -0.01em;
}

.pms-blog-card-title a {
    color: var(--pms-navy);
    text-decoration: none;
    transition: color .2s;
}

.pms-blog-card-title a:hover {
    color: var(--pms-orange);
}

.pms-blog-excerpt {
    font-size: 14px;
    line-height: 1.65;
    color: var(--pms-text-muted);
    margin: 0 0 16px;
    flex: 1;
}

.pms-blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    font-size: 13px;
    font-weight: 700;
    color: var(--pms-nav-blue);
    text-decoration: none;
    transition: gap .2s ease, color .2s;
}

.pms-blog-read-more:hover {
    color: var(--pms-orange);
    gap: 12px;
}

.pms-blog-empty {
    text-align: center;
    padding: 64px 24px;
    background: var(--pms-white);
    border: 1px solid var(--pms-border);
    border-radius: 14px;
}

.pms-blog-empty i {
    font-size: 40px;
    color: var(--pms-nav-blue);
    margin-bottom: 16px;
}

.pms-blog-empty h2 {
    font-size: 22px;
    color: var(--pms-navy);
    margin-bottom: 8px;
}

.pms-blog-empty p {
    color: var(--pms-text-muted);
    margin-bottom: 20px;
}

.pms-blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.pms-blog-pagination .pagination {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pms-blog-pagination .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--pms-border);
    border-radius: 8px;
    background: var(--pms-white);
    color: var(--pms-navy);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s, border-color .2s, color .2s;
}

.pms-blog-pagination .page-item.active .page-link,
.pms-blog-pagination .page-item .page-link:hover {
    background: var(--pms-navy);
    border-color: var(--pms-navy);
    color: #fff;
}

.pms-blog-pagination .page-item.disabled .page-link {
    opacity: .45;
    pointer-events: none;
}

@media (max-width: 991px) {
    .pms-blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .pms-blog-page {
        padding: 28px 0 40px;
    }

    .pms-blog-grid {
        grid-template-columns: 1fr;
    }

    .pms-blog-card-title {
        font-size: 16px;
    }
}

/* ---- Homepage featured blog carousel ---- */
.blog-post-wrapper .owl-stage {
    display: flex;
}

.blog-post-wrapper .owl-item {
    display: flex;
}

.blog-post-wrapper .blog-post {
    display: flex;
    width: 100%;
    margin-bottom: 0 !important;
}

.blog-post-wrapper .post-frame {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.blog-post-wrapper .post-media {
    flex-shrink: 0;
    aspect-ratio: 340 / 206;
    margin-bottom: 0;
    background: linear-gradient(160deg, #f3f6fa 0%, #e9eef4 100%);
}

.blog-post-wrapper .post-media > a {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-post-wrapper .post-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.blog-post-wrapper .post-details {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-post-wrapper .post-content {
    flex: 1;
}

/* ---- Blog single post ---- */
.pms-blog-hero--single {
    padding: 18px 0 22px;
}

.pms-blog-page--single {
    padding-top: 32px;
}

.pms-blog-single-layout {
    max-width: 860px;
    margin: 0 auto;
}

.pms-blog-single {
    background: var(--pms-white);
    border: 1px solid #e8edf3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(12, 45, 94, .06);
}

.pms-blog-single-header {
    padding: 32px 36px 0;
}

.pms-blog-single-meta {
    margin-bottom: 14px;
}

.pms-blog-single-meta i {
    margin-right: 5px;
    opacity: .75;
}

.pms-blog-single-title {
    font-size: clamp(24px, 3.2vw, 34px);
    font-weight: 800;
    line-height: 1.25;
    color: var(--pms-navy);
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.pms-blog-single-lead {
    font-size: 17px;
    line-height: 1.65;
    color: var(--pms-text-muted);
    margin: 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--pms-border);
}

.pms-blog-single-media {
    margin: 0;
    aspect-ratio: 16 / 8;
    overflow: hidden;
    background: linear-gradient(160deg, #f3f6fa 0%, #e9eef4 100%);
}

.pms-blog-single-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pms-blog-single-body {
    padding: 32px 36px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--pms-text);
}

.pms-blog-single-body > :first-child {
    margin-top: 0;
}

.pms-blog-single-body > :last-child {
    margin-bottom: 0;
}

.pms-blog-single-body h2,
.pms-blog-single-body h3,
.pms-blog-single-body h4 {
    color: var(--pms-navy);
    font-weight: 700;
    line-height: 1.35;
    margin: 1.6em 0 .6em;
}

.pms-blog-single-body h2 { font-size: 24px; }
.pms-blog-single-body h3 { font-size: 20px; }
.pms-blog-single-body h4 { font-size: 17px; }

.pms-blog-single-body p {
    margin: 0 0 1.1em;
}

.pms-blog-single-body a {
    color: var(--pms-nav-blue);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pms-blog-single-body a:hover {
    color: var(--pms-orange);
}

.pms-blog-single-body ul,
.pms-blog-single-body ol {
    margin: 0 0 1.2em;
    padding-left: 1.4em;
}

.pms-blog-single-body li {
    margin-bottom: .4em;
}

.pms-blog-single-body img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1.2em 0;
}

.pms-blog-single-body blockquote {
    margin: 1.4em 0;
    padding: 16px 20px;
    border-left: 4px solid var(--pms-orange);
    background: var(--pms-gray-bg);
    border-radius: 0 10px 10px 0;
    color: var(--pms-navy);
    font-style: italic;
}

.pms-blog-single-footer {
    padding: 0 36px 32px;
}

.pms-blog-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--pms-nav-blue);
    text-decoration: none;
    transition: color .2s, gap .2s;
}

.pms-blog-back-link:hover {
    color: var(--pms-orange);
    gap: 12px;
}

.pms-blog-post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 28px;
}

.pms-blog-post-nav-link {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 22px;
    background: var(--pms-white);
    border: 1px solid #e8edf3;
    border-radius: 12px;
    text-decoration: none;
    transition: border-color .2s, box-shadow .2s, transform .2s;
}

.pms-blog-post-nav-link:not(.is-disabled):hover {
    border-color: #b8cfe8;
    box-shadow: 0 8px 24px rgba(12, 45, 94, .08);
    transform: translateY(-2px);
}

.pms-blog-post-nav-link--next {
    text-align: right;
}

.pms-blog-post-nav-link.is-disabled {
    opacity: .55;
    cursor: default;
}

.pms-blog-post-nav-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--pms-orange);
}

.pms-blog-post-nav-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.45;
    color: var(--pms-navy);
}

.pms-blog-related {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--pms-border);
}

.pms-blog-related .pms-section-title {
    margin-bottom: 28px;
}

.pms-blog-grid--related {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 991px) {
    .pms-blog-grid--related {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .pms-blog-single-header,
    .pms-blog-single-body,
    .pms-blog-single-footer {
        padding-left: 22px;
        padding-right: 22px;
    }

    .pms-blog-single-header {
        padding-top: 24px;
    }

    .pms-blog-single-body {
        padding-top: 24px;
        padding-bottom: 24px;
        font-size: 15px;
    }

    .pms-blog-post-nav {
        grid-template-columns: 1fr;
    }

    .pms-blog-post-nav-link--next {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .pms-blog-grid--related {
        grid-template-columns: 1fr;
    }
}

/* ---- 404 page ---- */
.pms-error-hero {
    padding: 24px 0 32px;
}

.pms-error-page {
    padding: 40px 0 64px;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.pms-error-card {
    background: var(--pms-white);
    border: 1px solid #e8edf3;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(12, 45, 94, .08);
}

.pms-error-layout {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.1fr);
    gap: 40px;
    align-items: center;
    padding: 40px 40px 32px;
}

.pms-error-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    background: linear-gradient(160deg, #f3f6fa 0%, #e9eef4 100%);
    border-radius: 14px;
    min-height: 260px;
}

.pms-error-illustration {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
}

.pms-error-digit {
    font-size: 112px;
    font-weight: 800;
    fill: var(--pms-orange);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.pms-error-content h2 {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 700;
    color: var(--pms-navy);
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.pms-error-content p {
    color: var(--pms-text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 24px;
    max-width: 520px;
}

.pms-error-badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(219, 53, 69, .1);
    color: var(--pms-orange);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.pms-error-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.pms-error-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1.5px solid var(--pms-border);
    border-radius: 6px;
    background: var(--pms-white);
    color: var(--pms-navy) !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.pms-error-btn-outline:hover {
    border-color: var(--pms-navy);
    background: var(--pms-gray-bg);
    color: var(--pms-navy) !important;
}

.pms-error-quick-links {
    padding-top: 24px;
    border-top: 1px solid var(--pms-border);
}

.pms-error-quick-label {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .35px;
    text-transform: uppercase;
    color: var(--pms-text-muted);
}

.pms-error-quick-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.pms-error-quick-links a {
    color: var(--pms-nav-blue);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.pms-error-quick-links a:hover {
    color: var(--pms-orange);
}

.pms-error-help {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 24px 32px;
    background: linear-gradient(135deg, var(--pms-navy) 0%, #1a4a8a 100%);
    color: #fff;
}

.pms-error-help-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .1);
    flex-shrink: 0;
}

.pms-error-help-icon i {
    font-size: 22px;
    color: var(--pms-orange);
}

.pms-error-help-text {
    flex: 1;
    min-width: 220px;
}

.pms-error-help-text h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: #fff !important;
}

.pms-error-help-text p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, .85);
}

.pms-error-help .pms-category-hero-btn {
    margin-left: auto;
    background: var(--pms-orange);
}

.pms-error-help .pms-category-hero-btn:hover {
    background: #fff;
    color: var(--pms-navy) !important;
}

@media (max-width: 991px) {
    .pms-error-layout {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 28px 24px 24px;
    }

    .pms-error-visual {
        min-height: 220px;
    }

    .pms-error-help {
        padding: 24px;
    }

    .pms-error-help .pms-category-hero-btn {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .pms-error-page {
        padding: 28px 0 48px;
    }

    .pms-error-actions {
        flex-direction: column;
    }

    .pms-error-actions .pms-category-hero-btn,
    .pms-error-actions .pms-error-btn-outline {
        width: 100%;
        justify-content: center;
    }

    .pms-error-digit {
        font-size: 88px;
    }
}

/* ---- Scroll reveal animations ---- */
.pms-scroll-animate {
    opacity: 0;
    transform: translate3d(0, 32px, 0);
    transition:
        opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--pms-animate-delay, 0ms);
    will-change: opacity, transform;
}

.pms-scroll-animate[data-pms-animate="fade-down"] {
    transform: translate3d(0, -32px, 0);
}

.pms-scroll-animate[data-pms-animate="fade-left"] {
    transform: translate3d(32px, 0, 0);
}

.pms-scroll-animate[data-pms-animate="fade-right"] {
    transform: translate3d(-32px, 0, 0);
}

.pms-scroll-animate[data-pms-animate="fade"] {
    transform: none;
}

.pms-scroll-animate[data-pms-animate="zoom"] {
    transform: scale(0.94);
}

.pms-scroll-animate.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .pms-scroll-animate {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

.pms-product-pricing-card {
    margin: 22px 0 18px;
    padding: 16px 18px;
    border: 1px solid #eceff3;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(16, 99, 171, 0.06);
}

.pms-pricing-header {
    margin-bottom: 8px;
}

.pms-pricing-header h3 {
    margin-bottom: 2px;
    font-size: 20px;
    font-weight: 700;
    color: #1f2b3a;
}

.pms-pricing-header p {
    margin: 0;
    font-size: 13px;
    color: #6c7a89;
}

.pms-pricing-table {
    width: 100%;
    margin-bottom: 4px;
    border-collapse: separate;
    border-spacing: 0 8px;
}

.pms-pricing-table th,
.pms-pricing-table td {
    padding: 10px 12px;
    border-bottom: 0;
    vertical-align: middle;
}

.pms-pricing-table thead th {
    font-size: 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8291a3;
    font-weight: 600;
}

.pms-pricing-table tbody tr {
    background: #f9fbfd;
}

.pms-pricing-table tbody tr td:first-child {
    border-radius: 8px 0 0 8px;
}

.pms-pricing-table tbody tr td:last-child {
    border-radius: 0 8px 8px 0;
}

.pms-qty-chip {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #d7e3f0;
    background: #fff;
    color: #3a4a5f;
    font-size: 13px;
    font-weight: 600;
}

.pms-price-value {
    font-size: 20px;
    font-weight: 700;
    color: #1063ab;
}

.pms-pricing-action-form {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.pms-inline-qty {
    width: 64px;
    height: 36px;
    padding: 6px 8px;
    border: 1px solid #d8e0e8;
    border-radius: 6px;
    font-size: 13px;
}

.pms-pricing-form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.pms-pricing-form-actions input {
    width: 85px;
    margin-left: 6px;
}

.pms-add-cart-btn {
    border: 0;
    background: #1063ab;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    line-height: 1.1;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.pms-add-cart-btn:hover {
    background: #0c4f89;
    transform: translateY(-1px);
}

.pms-cart-page {
    background: #f7f9fc;
}

.pms-cart-header {
    margin-bottom: 16px;
}

.pms-cart-header h1 {
    margin-bottom: 4px;
    font-size: 36px;
    line-height: 1.1;
    color: #1e2a39;
}

.pms-cart-header p {
    margin: 0;
    color: #6f7d8d;
    font-size: 15px;
}

.pms-cart-notice {
    border-radius: 10px;
    padding: 12px 14px;
    margin-bottom: 15px;
    font-weight: 500;
}

.pms-cart-notice-success {
    background: #edf9f1;
    border: 1px solid #b6e4c5;
    color: #196f35;
}

.pms-cart-notice-empty {
    background: #eef5ff;
    border: 1px solid #cadcf8;
    color: #1f4e89;
}

.pms-cart-card {
    background: #fff;
    border: 1px solid #dde6f0;
    border-radius: 14px;
    padding: 10px 12px;
    box-shadow: 0 8px 22px rgba(13, 80, 137, 0.06);
}

.pms-cart-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.pms-cart-table th,
.pms-cart-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #e8edf4;
    vertical-align: middle;
}

.pms-cart-table th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #677688;
    font-weight: 700;
}

.pms-cart-table tbody tr:last-child td {
    border-bottom: 0;
}

.pms-cart-table tbody tr:hover {
    background: #f8fbff;
}

.pms-cart-check-wrap {
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-block;
}

.pms-cart-check {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.pms-cart-check-ui {
    position: absolute;
    inset: 0;
    border: 2px solid #98a8bc;
    border-radius: 5px;
    background: #fff;
    transition: all .2s ease;
}

.pms-cart-check:checked + .pms-cart-check-ui {
    background: #1063ab;
    border-color: #1063ab;
}

.pms-cart-check:checked + .pms-cart-check-ui::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pms-cart-product-image {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #e7edf4;
}

.pms-cart-product-name {
    font-weight: 600;
    color: #223244;
}

.pms-cart-chip {
    display: inline-block;
    padding: 5px 11px;
    border-radius: 999px;
    border: 1px solid #d5dfeb;
    background: #f8fbff;
    color: #354a60;
    font-size: 13px;
    font-weight: 600;
}

.pms-cart-price {
    color: #1f3f6e;
    font-weight: 600;
}

.pms-cart-subtotal {
    color: #0f5ea5;
}

.pms-cart-remove-btn {
    border: 1px solid #f2c8c8;
    background: #fff5f5;
    color: #b63d3d;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
}

.pms-cart-footer {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.pms-cart-footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.pms-cart-footer .pms-legal-notices {
    padding-top: 14px;
    border-top: 1px solid #e8edf4;
}

.pms-cart-total {
    font-size: 22px;
    color: #1d2f43;
}

.pms-cart-checkout-btn {
    border: 0;
    background: linear-gradient(135deg, #1063ab, #0c4f89);
    color: #fff;
    border-radius: 9px;
    padding: 11px 18px;
    font-weight: 600;
    box-shadow: 0 8px 16px rgba(16, 99, 171, 0.25);
}

@media (max-width: 991px) {
    .pms-cart-header h1 {
        font-size: 30px;
    }

    .pms-cart-footer-main {
        flex-direction: column;
        align-items: stretch;
    }

    .pms-cart-checkout-btn {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .pms-cart-card {
        padding: 0;
        border: 0;
        background: transparent;
        box-shadow: none;
    }

    .pms-cart-table thead {
        display: none;
    }

    .pms-cart-table,
    .pms-cart-table tbody,
    .pms-cart-table tr,
    .pms-cart-table td {
        display: block;
        width: 100%;
    }

    .pms-cart-table tbody tr {
        margin-bottom: 14px;
        background: #fff;
        border: 1px solid #dde6f0;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 8px 22px rgba(13, 80, 137, 0.06);
    }

    .pms-cart-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px;
        padding: 12px 14px;
        border-bottom: 1px solid #e8edf4;
        text-align: right;
    }

    .pms-cart-table td::before {
        content: attr(data-label);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: #677688;
        font-weight: 700;
        text-align: left;
        flex: 0 0 auto;
    }

    .pms-cart-table td:last-child {
        border-bottom: 0;
    }

    .pms-cart-product-image {
        width: 56px;
        height: 56px;
    }
}

.pms-checkout-page {
    background: #f4f7fb;
}

.pms-checkout-header {
    margin-bottom: 14px;
}

.pms-checkout-header h1 {
    margin-bottom: 4px;
    color: #1e2a39;
}

.pms-checkout-header p {
    color: #6f7d8d;
    margin: 0;
}

.pms-checkout-logged-in {
    margin-top: 8px;
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #e6f0ff;
    color: #0f4f8c;
    font-size: 13px;
}

.pms-checkout-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pms-checkout-steps li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #e9eef5;
    color: #5e6f83;
    font-size: 13px;
    font-weight: 600;
}

.pms-checkout-steps li span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c6d3e3;
    color: #27496f;
    font-size: 12px;
}

.pms-checkout-steps li.is-active {
    background: #e6f0ff;
    color: #0f4f8c;
}

.pms-checkout-steps li.is-active span {
    background: #1063ab;
    color: #fff;
}

.pms-checkout-steps li.is-done {
    background: #edf9f1;
    color: #1d6f3a;
}

.pms-checkout-steps li.is-done span {
    background: #25a35a;
    color: #fff;
}

.pms-checkout-step-card {
    background: #fff;
    border: 1px solid #e1e9f2;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}

.pms-checkout-step-card.is-open {
    border-color: #b8d0eb;
    box-shadow: 0 8px 20px rgba(16, 99, 171, 0.08);
}

.pms-step-head {
    width: 100%;
    text-align: left;
    border: 0;
    background: #fff;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #203247;
}

.pms-step-number {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #dfeaf6;
    color: #24527f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.pms-checkout-step-card.is-open .pms-step-number {
    background: #1063ab;
    color: #fff;
}

.pms-step-body {
    padding: 0 16px 16px;
}

.pms-checkout-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pms-checkout-field label {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #4b5f77;
}

.pms-checkout-field .form-control {
    height: 44px;
    border: 1px solid #d7e1ec;
    border-radius: 9px;
    background: #fbfdff;
    color: #233549;
    font-size: 14px;
    padding: 10px 12px;
}

.pms-checkout-field .form-control:focus {
    border-color: #6aa5da;
    box-shadow: 0 0 0 3px rgba(16, 99, 171, 0.12);
    background: #fff;
}

.pms-step-actions {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.pms-payment-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pms-payment-option {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid #d9e2ec;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
}

.pms-payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    inset: 0;
    cursor: pointer;
}

.pms-payment-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #98a8bc;
    background: #fff;
    display: inline-block;
    position: relative;
}

.pms-payment-option input[type="radio"]:checked + .pms-payment-dot {
    border-color: #1063ab;
}

.pms-payment-option input[type="radio"]:checked + .pms-payment-dot::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1063ab;
    position: absolute;
    left: 3px;
    top: 3px;
}

.pms-payment-label {
    font-weight: 600;
    color: #223244;
}

.pms-payment-icon {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    opacity: 0.9;
}

.pms-review-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pms-review-block {
    border: 1px solid #e1e9f2;
    border-radius: 10px;
    padding: 14px 16px;
    background: #fbfdff;
}

.pms-review-block h5 {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: 700;
    color: #1f3f6e;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pms-review-content p {
    margin: 0 0 4px;
    color: #33485f;
    font-size: 14px;
    line-height: 1.45;
}

.pms-review-content p:last-child {
    margin-bottom: 0;
}

.pms-review-note {
    margin-bottom: 8px !important;
    font-size: 12px !important;
    font-weight: 600;
    color: #1063ab !important;
}

.pms-order-success-page {
    background: #f4f7fb;
}

.pms-order-success-banner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 18px;
    align-items: center;
    background: #fff;
    border: 1px solid #e1e9f2;
    border-radius: 14px;
    padding: 22px 24px;
    margin-bottom: 20px;
    box-shadow: 0 8px 22px rgba(13, 80, 137, 0.06);
    border-top: 4px solid #25a35a;
}

.pms-order-success-icon {
    flex-shrink: 0;
}

.pms-order-success-banner-text h1 {
    margin: 0 0 6px;
    font-size: 28px;
    color: #1e2a39;
}

.pms-order-success-banner-text p {
    margin: 0 0 10px;
    color: #6f7d8d;
    font-size: 14px;
    line-height: 1.5;
}

.pms-order-success-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: #edf9f1;
    border: 1px solid #b6e4c5;
    color: #1d6f3a;
    font-size: 13px;
}

.pms-order-success-badge--link {
    background: #e6f0ff;
    border-color: #b8d4f5;
}

.pms-order-success-badge--link a {
    color: #0f5ea5;
    font-weight: 600;
    text-decoration: none;
}

.pms-order-success-badge--link a:hover {
    text-decoration: underline;
}

.pms-guest-order-note {
    margin: 8px 0 0;
    color: #6f7d8d;
    font-size: 14px;
}

.pms-guest-order-page .pms-account-card {
    max-width: 960px;
    margin: 0 auto;
}

.pms-order-success-banner-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 170px;
}

.pms-order-success-card {
    background: #fff;
    border: 1px solid #e1e9f2;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(13, 80, 137, 0.06);
}

.pms-order-success-card h3 {
    margin: 0 0 14px;
    font-size: 18px;
    color: #1f3f6e;
}

.pms-order-success-table {
    width: 100%;
    border-collapse: collapse;
}

.pms-order-success-table th,
.pms-order-success-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #eef2f7;
    font-size: 14px;
    vertical-align: middle;
}

.pms-order-success-table th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7a8796;
}

.pms-order-product-name {
    font-weight: 600;
    color: #223244;
}

.pms-order-qty-chip {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid #d5dfeb;
    background: #f8fbff;
    font-size: 12px;
    font-weight: 600;
    color: #354a60;
}

.pms-order-line-total {
    font-weight: 700;
    color: #0f5ea5;
}

.pms-order-success-total {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid #e8edf4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    color: #1d2f43;
}

.pms-order-details-card {
    background: linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.pms-order-detail-block {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef2f7;
}

.pms-order-detail-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.pms-order-detail-block h4 {
    margin: 0 0 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7a8796;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pms-order-detail-block p {
    margin: 0 0 3px;
    color: #33485f;
    font-size: 13px;
    line-height: 1.45;
}

.pms-order-detail-name {
    font-weight: 600;
    color: #223244 !important;
}

.pms-order-same-note {
    color: #1063ab !important;
    font-weight: 600;
    font-size: 14px !important;
}

.pms-order-payment-pill {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    background: #e6f0ff;
    color: #0f4f8c;
    font-weight: 700;
    font-size: 14px;
}

.pms-order-success-btn {
    display: block;
    text-align: center;
    border-radius: 9px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    white-space: nowrap;
}

.pms-order-success-btn-primary {
    background: linear-gradient(135deg, #1063ab, #0c4f89);
    color: #fff;
}

.pms-order-success-btn-outline {
    border: 1px solid #d5dfeb;
    background: #fff;
    color: #2e4966;
}

@media (max-width: 991px) {
    .pms-order-success-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pms-order-success-banner-actions {
        flex-direction: row;
        justify-content: center;
        min-width: 0;
    }
}

.pms-billing-same-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pms-billing-check-wrap {
    position: relative;
    width: 20px;
    height: 20px;
    display: inline-block;
    margin: 0;
}

.pms-billing-check-input {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.pms-billing-check-ui {
    position: absolute;
    inset: 0;
    border: 2px solid #98a8bc;
    border-radius: 5px;
    background: #fff;
    transition: all .2s ease;
}

.pms-billing-check-input:checked + .pms-billing-check-ui {
    background: #1063ab;
    border-color: #1063ab;
}

.pms-billing-check-input:checked + .pms-billing-check-ui::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.pms-step-next,
.pms-checkout-confirm-btn {
    border: 0;
    background: linear-gradient(135deg, #1063ab, #0c4f89);
    color: #fff;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 13px;
}

.pms-step-back {
    border: 1px solid #d5dfeb;
    background: #fff;
    color: #2e4966;
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 600;
    font-size: 13px;
}

.pms-checkout-summary {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(7, 63, 117, 0.2);
    background: linear-gradient(165deg, #0f4f8c 0%, #0f63aa 50%, #1d78be 100%);
    color: #fff;
}

.pms-checkout-summary-head {
    padding: 16px 16px 8px;
}

.pms-checkout-summary-head p {
    margin: 0;
    opacity: 0.8;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.pms-checkout-summary-head h4 {
    margin: 4px 0 0;
    color: #fff;
}

.pms-checkout-summary-body {
    background: rgba(255, 255, 255, 0.08);
    margin: 0 12px 12px;
    border-radius: 10px;
    padding: 12px;
    backdrop-filter: blur(1px);
}

.pms-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
}

.pms-summary-item strong {
    color: #fff;
    white-space: nowrap;
}

.pms-summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: 12px;
    font-size: 15px;
    font-weight: 700;
}

.pms-checkout-summary-notices {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.pms-checkout-summary-notices .pms-legal-notices {
    gap: 10px;
}

.pms-checkout-summary-notices .pms-legal-notice {
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    line-height: 1.45;
}

.pms-checkout-summary-notices .pms-legal-notice a {
    color: #fff;
    text-decoration: underline;
}

.pms-legal-notices {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pms-legal-notice {
    margin: 0;
    font-size: 12px;
    line-height: 1.5;
    color: #6f7d8d;
}

.pms-legal-notice a {
    color: #1063ab;
    font-weight: 600;
    text-decoration: none;
}

.pms-legal-notice a:hover {
    text-decoration: underline;
}

.pms-legal-notice--price {
    color: #5a6b7d;
}

.pms-product-pricing-card .pms-legal-notices,
.pms-product-quote-card .pms-legal-notices,
.pms-checkout-step-card .pms-legal-notices {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #e8edf4;
}

/* User account pages */
.pms-account-page {
    background: #f4f7fb;
    min-height: 60vh;
}

.pms-account-card {
    background: #fff;
    border: 1px solid #e1e9f2;
    border-radius: 14px;
    padding: 22px;
    box-shadow: 0 8px 22px rgba(13, 80, 137, 0.06);
}

.pms-account-login-card {
    max-width: 100%;
}

.pms-account-card-head h1 {
    margin: 0 0 6px;
    font-size: 28px;
    color: #1e2a39;
}

.pms-account-card-head p {
    margin: 0 0 18px;
    color: #6f7d8d;
    font-size: 14px;
}

.pms-account-alert {
    margin-bottom: 16px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fdecec;
    border: 1px solid #f5c2c2;
    color: #9b2c2c;
    font-size: 14px;
}

.pms-account-alert-success {
    background: #edf9f1;
    border-color: #b6e4c5;
    color: #1d6f3a;
}

.pms-account-form .pms-checkout-field {
    margin-bottom: 14px;
}

.pms-account-form-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
}

.pms-account-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    color: #4a5d72;
    cursor: pointer;
}

.pms-account-remember input {
    width: 16px;
    height: 16px;
}

.pms-account-link {
    color: #1063ab;
    font-weight: 600;
    text-decoration: none;
}

.pms-account-link:hover {
    color: #0c4f89;
    text-decoration: underline;
}

.pms-account-btn-primary {
    display: inline-block;
    width: 100%;
    border: 0;
    border-radius: 9px;
    padding: 11px 16px;
    background: linear-gradient(135deg, #1063ab, #0c4f89);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
}

.pms-account-footer-note {
    margin: 16px 0 0;
    font-size: 13px;
    color: #6f7d8d;
    text-align: center;
}

.pms-account-sidebar {
    background: #fff;
    border: 1px solid #e1e9f2;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(13, 80, 137, 0.06);
    position: sticky;
    top: 20px;
}

.pms-account-user-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid #eef2f7;
}

.pms-account-user-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1063ab, #0c4f89);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.pms-account-user-card strong {
    display: block;
    color: #1e2a39;
    font-size: 14px;
}

.pms-account-user-card p {
    margin: 2px 0 0;
    font-size: 12px;
    color: #6f7d8d;
    word-break: break-word;
}

.pms-account-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pms-account-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #3a4f66;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.pms-account-nav a:hover,
.pms-account-nav a.is-active {
    background: #e6f0ff;
    color: #0f4f8c;
}

.pms-account-logout-form {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eef2f7;
}

.pms-account-logout-btn {
    width: 100%;
    border: 1px solid #e1e9f2;
    background: #fff;
    color: #9b2c2c;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.pms-account-logout-btn:hover {
    background: #fff5f5;
    border-color: #f0c2c2;
}

.pms-account-orders-table {
    width: 100%;
    border-collapse: collapse;
}

.pms-account-orders-table th,
.pms-account-orders-table td {
    padding: 12px 10px;
    border-bottom: 1px solid #eef2f7;
    font-size: 14px;
    vertical-align: middle;
}

.pms-account-orders-table th {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #7a8796;
}

.pms-account-order-no {
    color: #0f5ea5;
}

.pms-account-order-total {
    font-weight: 700;
    color: #1d2f43;
}

.pms-account-status {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
    background: #edf2f8;
    color: #4a5d72;
}

.pms-account-status-placed {
    background: #e6f0ff;
    color: #0f4f8c;
}

.pms-account-status-payment_received {
    background: #edf9f1;
    color: #1d6f3a;
}

.pms-account-status-completed,
.pms-account-status-delivered {
    background: #edf9f1;
    color: #1d6f3a;
}

.pms-account-status-cancelled {
    background: #fdecec;
    color: #9b2c2c;
}

.pms-account-view-btn {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 7px;
    border: 1px solid #d5dfeb;
    color: #2e4966;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.pms-account-view-btn:hover {
    background: #f4f8fc;
    color: #1063ab;
}

.pms-account-empty {
    text-align: center;
    padding: 28px 12px;
}

.pms-account-empty h3 {
    margin: 0 0 8px;
    color: #1e2a39;
}

.pms-account-empty p {
    margin: 0 0 16px;
    color: #6f7d8d;
}

.pms-account-empty .pms-account-btn-primary {
    width: auto;
    min-width: 180px;
}

.pms-account-pagination {
    margin-top: 16px;
}

.pms-account-order-detail-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef2f7;
}

.pms-account-back-link {
    display: inline-block;
    margin-bottom: 8px;
    color: #1063ab;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.pms-account-order-detail-meta {
    text-align: right;
}

.pms-account-order-detail-meta strong {
    display: block;
    margin-top: 8px;
    font-size: 22px;
    color: #1d2f43;
}

.pms-account-revised-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #fff4e5;
    border: 1px solid #f5d9a8;
    color: #9a6416;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pms-account-finalized-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    background: #edf9f1;
    border: 1px solid #b6e4c5;
    color: #1d6f3a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.pms-order-finalized-notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #edf9f1;
    border: 1px solid #b6e4c5;
}

.pms-order-finalized-notice strong {
    display: block;
    margin-bottom: 6px;
    color: #1d6f3a;
    font-size: 14px;
}

.pms-order-finalized-notice p {
    margin: 0;
    color: #3d6b4d;
    font-size: 13px;
    line-height: 1.5;
}

.pms-order-update-type-price_finalized {
    background: #edf9f1;
    color: #1d6f3a;
}

.pms-order-update-type-payment_received {
    background: #e6f0ff;
    color: #0f4f8c;
}

.pms-order-payment-card {
    background: #fff;
    border: 1px solid #e1e9f2;
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(13, 80, 137, 0.06);
}

.pms-order-payment-card h3 {
    margin: 0 0 12px;
    font-size: 18px;
    color: #1f3f6e;
}

.pms-order-payment-intro,
.pms-order-payment-pending {
    margin: 0 0 12px;
    color: #6f7d8d;
    font-size: 14px;
    line-height: 1.5;
}

.pms-order-payment-amount {
    margin-bottom: 16px;
    font-size: 15px;
    color: #33485f;
}

.pms-order-payment-amount strong {
    color: #0f5ea5;
    font-size: 20px;
}

.pms-order-payment-paid {
    padding: 14px 16px;
    border-radius: 10px;
    background: #edf9f1;
    border: 1px solid #b6e4c5;
}

.pms-order-payment-paid strong {
    display: block;
    color: #1d6f3a;
    margin-bottom: 6px;
}

.pms-order-payment-paid p {
    margin: 0;
    color: #3d6b4d;
    font-size: 13px;
}

.pms-order-payment-ref {
    margin-top: 6px !important;
    font-size: 12px !important;
    color: #5a7a66 !important;
}

.pms-paypal-buttons {
    max-width: 320px;
}

.pms-order-payment-error {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: #fdecec;
    border: 1px solid #f5c2c2;
    color: #9b2c2c;
    font-size: 13px;
}

.pms-order-revision-notice {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 10px;
    background: #fff8ed;
    border: 1px solid #f5ddb0;
}

.pms-order-revision-notice strong {
    display: block;
    margin-bottom: 6px;
    color: #8a5a12;
    font-size: 14px;
}

.pms-order-revision-notice p {
    margin: 0 0 10px;
    color: #6f5a3b;
    font-size: 13px;
    line-height: 1.5;
}

.pms-order-revision-totals {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.pms-order-revision-totals--compact {
    justify-content: flex-end;
    margin-top: 8px;
}

.pms-order-revision-old,
.pms-order-price-was {
    color: #8a96a3;
    text-decoration: line-through;
    font-size: 13px;
}

.pms-order-revision-arrow {
    color: #9a6416;
    font-weight: 700;
}

.pms-order-revision-new {
    color: #1d6f3a;
    font-weight: 700;
}

.pms-order-updates-card {
    margin-bottom: 18px;
    padding: 16px;
    border-radius: 12px;
    border: 1px solid #e1e9f2;
    background: #f8fbff;
}

.pms-order-updates-card h3 {
    margin: 0 0 4px;
    font-size: 18px;
    color: #1f3f6e;
}

.pms-order-updates-intro {
    margin: 0 0 14px;
    color: #6f7d8d;
    font-size: 13px;
}

.pms-order-updates-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pms-order-updates-list li {
    padding: 12px 0;
    border-top: 1px solid #e8edf4;
}

.pms-order-updates-list li:first-child {
    border-top: 0;
    padding-top: 0;
}

.pms-order-update-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 6px;
}

.pms-order-update-head time {
    color: #8a96a3;
    font-size: 12px;
    white-space: nowrap;
}

.pms-order-update-type {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    background: #e6f0ff;
    color: #0f4f8c;
}

.pms-order-update-type-price_updated,
.pms-order-update-type-order_total_updated {
    background: #fff4e5;
    color: #9a6416;
}

.pms-order-update-type-quantity_updated {
    background: #edf9f1;
    color: #1d6f3a;
}

.pms-order-updates-list p {
    margin: 0;
    color: #33485f;
    font-size: 13px;
    line-height: 1.45;
}

.pms-order-success-total-values {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pms-account-order-total {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

@media (max-width: 991px) {
    .pms-account-sidebar {
        position: static;
    }

    .pms-account-order-detail-head {
        flex-direction: column;
    }

    .pms-account-order-detail-meta {
        text-align: left;
    }
}
