.php-site-header {
    align-items: center;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 24px;
    height: 84px;
    justify-content: space-between;
    margin: 20px auto 0;
    max-width: 1280px;
    overflow: visible;
    padding: 0 20px;
}

.php-site-header .wdt-logo-container {
    align-self: flex-start;
    position: relative;
    transform: translate(10px, 8px);
    z-index: 2;
}

.php-site-header .wdt-logo-container img {
    display: block;
    height: 108px;
    width: auto;
}

.php-main-menu,
.php-sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.php-main-menu {
    align-items: center;
    display: flex;
    gap: 18px;
}

.php-main-nav {
    align-items: center;
    display: flex;
}

.php-menu-toggle,
.php-submenu-toggle {
    display: none;
}

.php-menu-toggle[hidden],
.php-submenu-toggle[hidden] {
    display: none !important;
}

.php-main-link-group {
    align-items: center;
    display: flex;
    gap: 4px;
}

.php-main-item {
    align-items: center;
    display: flex;
    padding-bottom: 0;
    position: relative;
}

.php-main-item > a,
.php-main-link-group > a {
    align-items: center;
    color: #152233;
    display: inline-flex;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    min-height: 38px;
    padding: 8px 10px;
    text-decoration: none;
    transition: color .2s ease;
    white-space: nowrap;
}

.php-main-item > a:hover,
.php-main-item.is-active > a,
.php-main-link-group > a:hover,
.php-main-item.is-active .php-main-link-group > a {
    color: #FFA028;
}

.php-main-item-has-submenu:hover .php-sub-menu,
.php-main-item-has-submenu:focus-within .php-sub-menu {
    display: block;
}

.php-sub-menu {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    display: none;
    left: 0;
    min-width: 280px;
    padding: 8px;
    position: absolute;
    top: 100%;
    z-index: 30;
}

.php-sub-item a {
    color: #152233;
    display: block;
    font-size: 14px;
    padding: 8px 10px;
    text-decoration: none;
}

.php-sub-item {
    padding-bottom: 0;
}

.php-sub-item a:hover,
.php-sub-item.is-active a {
    color: #ef633d;
}

@media (max-width: 992px) {
    .php-site-header {
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 12px;
        height: 76px;
        padding: 0 20px;
    }

    .php-site-header .wdt-logo-container {
        transform: translate(6px, 6px);
    }

    .php-site-header .wdt-logo-container img {
        height: 88px;
    }

    .php-main-nav {
        align-items: flex-end;
        display: flex;
        flex: 0 0 auto;
        flex-direction: column;
        gap: 12px;
        margin-left: auto;
        position: relative;
        width: auto;
    }

    .php-menu-toggle {
        align-items: center;
        background: #ffffff;
        border: 1px solid rgba(21, 34, 51, 0.18);
        border-radius: 999px;
        color: #152233;
        cursor: pointer;
        display: inline-flex;
        font-family: inherit;
        font-size: 15px;
        font-weight: 700;
        gap: 10px;
        justify-content: center;
        margin-left: auto;
        min-height: 46px;
        padding: 0 18px;
        white-space: nowrap;
    }

    .php-menu-toggle-label {
        align-items: center;
        display: inline-flex;
    }

    .php-menu-toggle-icon,
    .php-menu-toggle-icon::before,
    .php-menu-toggle-icon::after {
        background: currentColor;
        border-radius: 999px;
        content: '';
        display: block;
        height: 2px;
        transition: transform .2s ease, opacity .2s ease;
        width: 18px;
    }

    .php-menu-toggle-icon {
        display: inline-block;
        flex: 0 0 auto;
        position: relative;
        vertical-align: middle;
    }

    .php-menu-toggle-icon::before,
    .php-menu-toggle-icon::after {
        position: absolute;
        right: 0;
    }

    .php-menu-toggle-icon::before {
        top: -6px;
    }

    .php-menu-toggle-icon::after {
        top: 6px;
    }

    .php-main-nav--ready .php-main-menu {
        display: none;
    }

    .php-main-nav--ready.is-open .php-main-menu {
        display: flex;
    }

    .php-main-nav.is-open .php-menu-toggle-icon {
        background: transparent;
    }

    .php-main-nav.is-open .php-menu-toggle-icon::before {
        top: 0;
        transform: rotate(45deg);
    }

    .php-main-nav.is-open .php-menu-toggle-icon::after {
        top: 0;
        transform: rotate(-45deg);
    }

    .php-main-menu {
        align-items: stretch;
        background: #ffffff;
        border: 1px solid rgba(21, 34, 51, 0.12);
        border-radius: 16px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
        flex-direction: column;
        gap: 4px;
        min-width: min(320px, calc(100vw - 32px));
        padding: 12px;
        position: absolute;
        right: 0;
        top: calc(100% + 12px);
        width: max-content;
        z-index: 40;
    }

    .php-main-item {
        align-items: stretch;
        flex-direction: column;
        width: 100%;
    }

    .php-main-link-group {
        align-items: stretch;
        background: #ffffff;
        border: 1px solid rgba(21, 34, 51, 0.18);
        border-radius: 12px;
        gap: 0;
        justify-content: space-between;
        overflow: hidden;
        width: 100%;
    }

    .php-main-item > a,
    .php-main-link-group > a {
        min-height: 44px;
        width: 100%;
    }

    .php-main-link-group > a {
        border-radius: 12px 0 0 12px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .php-submenu-toggle {
        -webkit-appearance: none;
        align-items: center;
        align-self: stretch;
        appearance: none;
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        border: 0;
        border-left: 1px solid rgba(21, 34, 51, 0.18);
        border-radius: 0 12px 12px 0;
        box-shadow: none !important;
        color: #152233;
        cursor: pointer;
        display: inline-flex;
        flex: 0 0 48px;
        justify-content: center;
        min-height: 100%;
        min-width: 48px;
        padding: 0 12px;
        position: relative;
    }

    .php-submenu-toggle:hover,
    .php-submenu-toggle:focus,
    .php-submenu-toggle:active {
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        box-shadow: none !important;
        color: #152233;
        outline: none;
    }

    .php-submenu-toggle::before,
    .php-submenu-toggle::after {
        background: currentColor;
        border-radius: 999px;
        content: '';
        display: block;
        height: 2px;
        position: absolute;
        transition: transform .2s ease, opacity .2s ease;
        width: 14px;
    }

    .php-submenu-toggle::after {
        transform: rotate(90deg);
    }

    .php-main-item-has-submenu.is-open .php-submenu-toggle::after {
        opacity: 0;
    }

    .php-sub-menu {
        box-sizing: border-box;
        box-shadow: none;
        max-width: 100%;
        min-width: 0;
        padding: 0 0 0 12px;
        position: static;
        width: 100%;
    }

    .php-main-nav--ready .php-main-item-has-submenu .php-sub-menu {
        display: none;
    }

    .php-main-nav--ready .php-main-item-has-submenu.is-open .php-sub-menu {
        display: block;
    }
}

/* PHPSITE: about page */

.php-about-section,
.php-about-principles {
    padding: 56px 0;
}

.php-about-principles {
    padding-top: 0;
}

.php-about-shell {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 20px;
}

.php-about-section .php-about-shell {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
}

.php-about-copy {
    color: #152233;
}

.php-about-kicker {
    color: #5f7388;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.php-about-title,
.php-about-principles-title,
.php-about-card-title {
    color: #152233;
}

.php-about-title {
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.08;
    margin: 0 0 22px;
}

.php-about-text,
.php-about-principles-text,
.php-about-card-text {
    color: #5b6775;
    font-size: 17px;
    line-height: 1.75;
    margin: 0;
}

.php-about-text + .php-about-text {
    margin-top: 16px;
}

.php-about-actions {
    margin-top: 28px;
}

.php-about-button {
    align-items: center;
    background: #5f7388;
    border-radius: 999px;
    color: #ffffff;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

.php-about-button:hover,
.php-about-button:focus {
    background: #4f6274;
    color: #ffffff;
    transform: translateY(-1px);
}

.php-about-visual {
    min-height: 620px;
    position: relative;
}

.php-about-photo {
    margin: 0;
    overflow: hidden;
}

.php-about-photo img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.php-about-photo--main {
    border-radius: 32px;
    box-shadow: 0 28px 60px rgba(21, 34, 51, 0.18);
    max-width: 520px;
}

.php-about-photo--secondary {
    background: #ffffff;
    border: 10px solid #ffffff;
    border-radius: 24px;
    bottom: 28px;
    box-shadow: 0 18px 40px rgba(21, 34, 51, 0.12);
    position: absolute;
    right: 0;
    width: min(48%, 240px);
}

.php-about-badge {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 40px rgba(21, 34, 51, 0.12);
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    left: 24px;
    min-width: 220px;
    padding: 18px 22px;
    position: absolute;
    top: 28px;
}

.php-about-badge strong {
    color: #152233;
    font-size: 18px;
    line-height: 1.2;
}

.php-about-badge span {
    color: #5b6775;
    font-size: 14px;
    line-height: 1.5;
}

.php-about-principles-head {
    margin-bottom: 28px;
    max-width: 760px;
}

.php-about-principles-title {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.15;
    margin: 0 0 12px;
}

.php-about-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.php-about-card {
    background: #ffffff;
    border: 1px solid rgba(21, 34, 51, 0.08);
    border-radius: 24px;
    box-shadow: 0 16px 32px rgba(21, 34, 51, 0.06);
    padding: 28px;
}

.php-about-card-title {
    font-size: 22px;
    line-height: 1.25;
    margin: 0 0 12px;
}

@media (max-width: 1024px) {
    .php-about-section .php-about-shell {
        gap: 36px;
        grid-template-columns: 1fr;
    }

    .php-about-visual {
        margin: 0 auto;
        max-width: 560px;
        min-height: 0;
        width: 100%;
    }

    .php-about-photo--main {
        max-width: none;
        width: min(100%, 520px);
    }

    .php-about-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .php-about-section,
    .php-about-principles {
        padding: 40px 0;
    }

    .php-about-shell {
        padding: 0 16px;
    }

    .php-about-title {
        margin-bottom: 18px;
    }

    .php-about-text,
    .php-about-principles-text,
    .php-about-card-text {
        font-size: 16px;
        line-height: 1.7;
    }

    .php-about-visual {
        padding-bottom: 150px;
    }

    .php-about-photo--secondary {
        bottom: 0;
        right: 12px;
        width: 44%;
    }

    .php-about-badge {
        left: 0;
        min-width: 0;
        top: 16px;
        width: calc(100% - 84px);
    }

    .php-about-card {
        border-radius: 20px;
        padding: 24px;
    }
}

/* PHPSITE: contacts page */

.php-contacts-info-grid {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    margin: 28px 0 36px;
}

.php-contacts-info-grid__schedule {
    min-width: 0;
}

.php-contacts-info-grid__schedule .elementor-element:last-child {
    margin-bottom: 0;
}

.php-contacts-requisites {
    background: #ffffff;
    border: 1px solid rgba(21, 34, 51, 0.12);
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(21, 34, 51, 0.08);
    padding: 24px 26px;
}

.php-contacts-requisites__eyebrow,
.php-contacts-requisites__label {
    color: #FFA028;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.php-contacts-requisites__eyebrow {
    margin: 0 0 10px;
}

.php-contacts-requisites__title {
    color: #152233;
    font-family: var(--wdtFontTypo_Alt, 'Cuprum', sans-serif);
    font-size: clamp(24px, 2vw, 32px);
    line-height: 1.1;
    margin: 0 0 12px;
}

.php-contacts-requisites__intro {
    color: #5b6775;
    font-size: 15px;
    line-height: 1.65;
    margin: 0 0 18px;
}

.php-contacts-requisites__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.php-contacts-requisites__item {
    border-bottom: 1px solid rgba(21, 34, 51, 0.12);
    display: grid;
    gap: 8px;
    padding: 14px 0;
}

.php-contacts-requisites__item:first-child {
    padding-top: 0;
}

.php-contacts-requisites__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.php-contacts-requisites__value {
    color: #152233;
    font-size: 16px;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .php-contacts-info-grid {
        gap: 20px;
        grid-template-columns: 1fr;
        margin-bottom: 28px;
    }
}

@media (max-width: 700px) {
    .php-contacts-requisites {
        border-radius: 20px;
        padding: 20px 18px;
    }

    .php-contacts-requisites__title {
        font-size: 24px;
    }

    .php-contacts-requisites__value {
        font-size: 15px;
    }
}

/* PHPSITE: footer */

#footer .php-site-footer {
    background: #152233;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 64px;
    padding: 64px 0 28px;
}

#footer .php-footer-shell {
    box-sizing: border-box;
    margin: 0 auto;
    max-width: 1280px;
    padding: 0 20px;
}

#footer .php-footer-shell--top {
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
}

#footer .php-footer-intro {
    max-width: 420px;
}

#footer .php-footer-logo {
    display: inline-flex;
    margin-bottom: 20px;
}

#footer .php-footer-logo img {
    display: block;
    height: 108px;
    width: auto;
}

#footer .php-footer-kicker {
    color: #FFA028;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    text-transform: uppercase;
}

#footer .php-footer-title,
#footer .php-footer-heading,
#footer .php-footer-contact-title {
    color: #ffffff;
}

#footer .php-footer-title {
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.1;
    margin: 0 0 18px;
}

#footer .php-footer-description,
#footer .php-footer-copy,
#footer .php-footer-note,
#footer .php-footer-links a,
#footer .php-footer-contact-lines,
#footer .php-footer-contact-lines a,
#footer .php-footer-contact-lines span {
    color: rgba(255, 255, 255, 0.78);
}

#footer .php-footer-description {
    font-size: 16px;
    line-height: 1.75;
    margin: 0;
}

#footer .php-footer-description--compact {
    margin-top: 10px;
}

#footer .php-footer-actions {
    margin-top: 24px;
}

#footer .php-footer-button {
    align-items: center;
    background: #FFA028;
    border-radius: 999px;
    color: #152233 !important;
    display: inline-flex;
    font-size: 15px;
    font-weight: 700;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    text-decoration: none;
    transition: background-color .2s ease, transform .2s ease;
}

#footer .php-footer-button:hover,
#footer .php-footer-button:focus {
    background: #ffb64d;
    color: #152233 !important;
    transform: translateY(-1px);
}

#footer .php-footer-column {
    min-width: 0;
}

#footer .php-footer-heading {
    font-size: 20px;
    line-height: 1.25;
    margin: 10px 0 18px;
}

#footer .php-footer-links,
#footer .php-footer-contact-lines {
    list-style: none;
    margin: 0;
    padding: 0;
}

#footer .php-footer-links li + li,
#footer .php-footer-contact-lines li + li {
    margin-top: 10px;
}

#footer .php-footer-links a,
#footer .php-footer-contact-lines a {
    text-decoration: none;
    transition: color .2s ease;
}

#footer .php-footer-links a:hover,
#footer .php-footer-contact-lines a:hover {
    color: #FFA028;
}

#footer .php-footer-contact + .php-footer-contact {
    margin-top: 20px;
}

#footer .php-footer-contact-title {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px;
}

#footer .php-footer-contact-lines {
    font-size: 15px;
    line-height: 1.6;
}

#footer .php-footer-shell--bottom {
    align-items: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    gap: 20px 32px;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
}

#footer .php-footer-copy,
#footer .php-footer-note {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

#footer .php-footer-copy {
    white-space: nowrap;
}

#footer .php-footer-note {
    max-width: 760px;
    text-align: right;
}

@media (max-width: 1100px) {
    #footer .php-footer-shell--top {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    #footer .php-footer-intro {
        max-width: none;
    }

    #footer .php-footer-shell--bottom {
        flex-direction: column;
    }

    #footer .php-footer-note {
        max-width: none;
        text-align: left;
    }
}

@media (max-width: 700px) {
    #footer .php-site-footer {
        margin-top: 48px;
        padding: 48px 0 24px;
    }

    #footer .php-footer-logo img {
        height: 88px;
    }

    #footer .php-footer-shell {
        padding: 0 16px;
    }

    #footer .php-footer-shell--top {
        grid-template-columns: 1fr;
    }

    #footer .php-footer-heading {
        margin-top: 0;
    }

    #footer .php-footer-copy {
        white-space: normal;
    }
}

/* PHPSITE: products showcase */

.php-products-showcase {
    --php-product-card-border: rgba(21, 34, 51, 0.08);
    --php-product-card-shadow: 0 18px 40px rgba(21, 34, 51, 0.08);
    --php-product-card-shadow-hover: 0 24px 46px rgba(21, 34, 51, 0.12);
    --php-product-card-surface: #ffffff;
    --php-product-card-muted: #5b6775;
    --php-product-card-strong: #152233;
    --php-product-card-accent: #FFA028;
    --php-product-card-media: #f5f7fa;
}

.php-products-showcase .products {
    align-items: stretch;
    gap: 24px;
}

.php-products-showcase .php-catalog-product,
.php-products-showcase .php-catalog-product .wdt-col {
    height: 100%;
}

.php-products-showcase .php-catalog-product,
.php-products-showcase .php-catalog-product .wdt-col {
    display: flex;
}

.php-products-showcase .php-product-card {
    background: var(--php-product-card-surface);
    border: 1px solid var(--php-product-card-border);
    border-radius: 28px;
    box-shadow: var(--php-product-card-shadow);
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.php-products-showcase .php-catalog-product:hover .php-product-card,
.php-products-showcase .php-catalog-product:focus-within .php-product-card {
    border-color: rgba(255, 160, 40, 0.38);
    box-shadow: var(--php-product-card-shadow-hover);
    transform: translateY(-4px);
}

.php-products-showcase .php-catalog-product.is-highlighted .php-product-card {
    border-color: rgba(255, 160, 40, 0.55);
    box-shadow: 0 24px 48px rgba(255, 160, 40, 0.18);
}

.php-products-showcase .php-product-media {
    box-shadow: none !important;
    display: block !important;
    margin-bottom: 0 !important;
    overflow: visible;
    padding: 14px 14px 0;
}

.php-products-showcase .php-product-media::before,
.php-products-showcase .php-product-media::after {
    content: none !important;
    display: none !important;
}

.php-products-showcase .php-product-media > a.image {
    align-items: center;
    background: var(--php-product-card-media);
    display: flex;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
    padding: 14px;
    position: relative !important;
    width: 100%;
}

.php-products-showcase .php-product-media > a.image,
.php-products-showcase .php-product-media > a.image .product-thumb-overlay,
.php-products-showcase .php-product-media > a.image .primary-image,
.php-products-showcase .php-product-media > a.image .primary-image img {
    border-radius: 22px !important;
}

.php-products-showcase .php-product-media > a.image .product-thumb-overlay {
    display: none;
}

.php-products-showcase .php-product-media > a.image .primary-image {
    align-items: center;
    bottom: auto !important;
    display: flex;
    height: auto;
    justify-content: center;
    left: auto !important;
    max-height: 190px;
    position: relative !important;
    right: auto !important;
    top: auto !important;
    width: 100%;
}

.php-products-showcase .php-product-media > a.image .primary-image img {
    display: block;
    height: auto !important;
    margin: 0 auto;
    max-height: 190px;
    max-width: 100%;
    object-fit: contain;
    width: auto;
}

.php-products-showcase .php-product-placeholder {
    align-items: center;
    color: #6b7c8f;
    display: flex;
    font-size: 14px;
    font-weight: 700;
    height: 100%;
    justify-content: center;
    padding: 24px;
    text-align: center;
    width: 100%;
}

.php-products-showcase .php-product-content {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 14px;
    min-height: 100%;
    padding: 22px 22px 24px;
    text-align: left;
}

.php-products-showcase .php-product-content > div {
    display: block;
    float: none;
    margin: 0;
    width: 100%;
}

.php-products-showcase .php-product-title h5 {
    color: var(--php-product-card-strong);
    font-size: clamp(20px, 1.2vw + 14px, 24px);
    line-height: 1.2;
    margin: 0;
    text-transform: none;
}

.php-products-showcase .php-product-title h5 a {
    color: inherit !important;
    text-decoration: none;
}

.php-products-showcase .php-product-title h5 a:hover,
.php-products-showcase .php-product-title h5 a:focus {
    color: var(--php-product-card-accent) !important;
}

.php-products-showcase .php-product-summary {
    color: var(--php-product-card-muted);
    display: block;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-height: 3.2em;
    min-height: 3.2em;
    overflow: hidden;
    width: 100%;
}

.php-products-showcase .php-product-footer {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: auto;
    padding-top: 8px;
}

.php-products-showcase .php-product-state,
.php-products-showcase .php-product-action {
    clear: none;
    display: flex;
    width: auto;
}

.php-products-showcase .php-product-state {
    margin-right: auto;
}

.php-products-showcase .php-product-action {
    justify-content: flex-end;
    margin-left: auto;
}

.php-products-showcase .php-soon-pill {
    background: rgba(255, 160, 40, 0.15);
    border-radius: 999px;
    color: #b96c08;
    display: inline-flex;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1;
    padding: 8px 12px;
    text-transform: uppercase;
}

.php-products-showcase .php-product-action-link {
    align-items: center;
    background: #f3f5f7;
    border: 1px solid rgba(21, 34, 51, 0.10);
    border-radius: 999px;
    color: var(--php-product-card-strong) !important;
    display: inline-flex;
    font-size: 13px;
    font-weight: 700;
    justify-content: center;
    min-height: 34px;
    padding: 0 14px;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
    white-space: nowrap;
}

.php-products-showcase .php-product-action-link:hover,
.php-products-showcase .php-product-action-link:focus {
    background: #eceff3;
    border-color: rgba(21, 34, 51, 0.16);
    color: var(--php-product-card-strong) !important;
    transform: translateY(-1px);
}

.php-products-showcase .php-product-action-link--soon {
    background: #f7f8fa;
    border-color: rgba(21, 34, 51, 0.12);
    color: var(--php-product-card-muted) !important;
}

.php-products-showcase .php-product-action-link--soon:hover,
.php-products-showcase .php-product-action-link--soon:focus {
    background: rgba(21, 34, 51, 0.06);
    border-color: rgba(21, 34, 51, 0.2);
    color: var(--php-product-card-strong) !important;
}

@media (max-width: 1024px) {
    .php-products-showcase .products {
        gap: 20px;
    }

    .php-products-showcase .php-product-content {
        padding: 20px;
    }
}

@media (max-width: 640px) {
    .php-products-showcase .php-product-media {
        padding: 12px 12px 0;
    }

    .php-products-showcase .php-product-media > a.image {
        padding: 12px;
    }

    .php-products-showcase .php-product-media > a.image .primary-image,
    .php-products-showcase .php-product-media > a.image .primary-image img {
        max-height: 160px;
    }

    .php-products-showcase .php-product-content {
        padding: 16px 16px 18px;
    }

    .php-products-showcase .php-product-footer {
        align-items: flex-end;
        flex-direction: column;
    }

    .php-products-showcase .php-product-state {
        margin-right: auto;
    }

    .php-products-showcase .php-product-action {
        margin-left: auto;
        width: auto;
    }

    .php-products-showcase .php-product-action-link {
        width: auto;
    }
}

/* PHPSITE: contact form */
.php-contact-form-shell {
    width: 100%;
}

.php-contact-form-honeypot {
    height: 0;
    left: -9999px;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    width: 0;
}

.php-contact-form-alert,
.php-contact-form-inline-error {
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 18px;
    padding: 14px 16px;
}

.php-contact-form-alert--success {
    background: rgba(31, 173, 109, 0.12);
    border: 1px solid rgba(31, 173, 109, 0.25);
    color: #136c45;
}

.php-contact-form-alert--error,
.php-contact-form-inline-error {
    background: rgba(214, 63, 63, 0.10);
    border: 1px solid rgba(214, 63, 63, 0.22);
    color: #9e1c1c;
}

.php-contact-form-field-error {
    color: #9e1c1c;
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-top: 8px;
}

.php-contact-form-control--invalid {
    border-color: rgba(214, 63, 63, 0.75) !important;
    box-shadow: 0 0 0 3px rgba(214, 63, 63, 0.12);
}

.php-contact-form-captcha-wrap {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0 0 22px;
}

.php-contact-form-captcha-title {
    color: #152233;
    display: block;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}

.php-contact-form .cf-turnstile {
    min-height: 65px;
}

@media (max-width: 640px) {
    .php-contact-form-alert,
    .php-contact-form-inline-error {
        font-size: 13px;
        margin-bottom: 16px;
        padding: 12px 14px;
    }

    .php-contact-form-captcha-wrap {
        margin-bottom: 18px;
    }
}
