:root {
    --wp--preset--color--background: #0b0d13;
    --wp--preset--color--surface: #141824;
    --wp--preset--color--surface-light: #1d2332;
    --wp--preset--color--foreground: #f5f7fb;
    --wp--preset--color--muted: #aab1c2;
    --wp--preset--color--primary: #8b5cf6;
    --wp--preset--color--secondary: #2ee6c5;
    --wp--preset--color--accent: #ff5c8a;
    --wp--preset--gradient--brand: linear-gradient(135deg, #8b5cf6 0%, #2ee6c5 100%);
    --wp--preset--font-family--body: "Poppins", sans-serif;
    --wp--preset--font-family--heading: "Rajdhani", sans-serif;
    --wp--style--global--content-size: 760px;
    --wp--style--global--wide-size: 1180px;
    --site-header-height: 76px;
    --site-radius: 14px;
    --site-shadow: 0 18px 45px rgba(0, 0, 0, 0.24);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--site-header-height) + 18px);
}

body {
    margin: 0;
    background: var(--wp--preset--color--background);
    color: var(--wp--preset--color--foreground);
    font-family: var(--wp--preset--font-family--body);
    font-size: 16px;
    line-height: 1.7;
    text-rendering: optimizeLegibility;
}

body.admin-bar .site-header {
    top: 32px;
}

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

a {
    color: var(--wp--preset--color--secondary);
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

a:hover {
    color: #72f7df;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 0.65em;
    font-family: var(--wp--preset--font-family--heading);
    line-height: 1.1;
    letter-spacing: 0.01em;
}

p {
    margin: 0 0 1.15em;
}

address {
    font-style: normal;
}

.site {
    min-height: 100vh;
    overflow: clip;
}

.alignwide {
    width: min(calc(100% - 40px), var(--wp--style--global--wide-size));
    margin-right: auto;
    margin-left: auto;
}

.content-narrow {
    width: min(calc(100% - 40px), var(--wp--style--global--content-size));
    margin-right: auto;
    margin-left: auto;
}

.alignfull {
    width: 100%;
}

.has-text-align-center {
    text-align: center;
}

.has-small-font-size {
    font-size: 0.84rem;
}

.has-text-muted-color {
    color: var(--wp--preset--color--muted);
}

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

.screen-reader-text:focus,
.skip-link:focus {
    top: 10px;
    left: 10px;
    z-index: 10000;
    width: auto;
    height: auto;
    padding: 10px 16px;
    margin: 0;
    clip: auto;
    background: #fff;
    color: #111;
    border-radius: 6px;
}

:focus-visible {
    outline: 3px solid var(--wp--preset--color--secondary);
    outline-offset: 3px;
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    min-height: var(--site-header-height);
    background: rgba(11, 13, 19, 0.78);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    transition: background-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
    background: rgba(11, 13, 19, 0.96);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.28);
}

.site-header__inner {
    display: flex;
    min-height: var(--site-header-height);
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.site-title {
    margin: 0;
    font-family: var(--wp--preset--font-family--heading);
    font-size: clamp(1.45rem, 2.8vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.035em;
    line-height: 1;
}

.site-title a {
    color: var(--wp--preset--color--foreground);
    text-decoration: none;
}

.site-title span {
    display: block;
    margin-top: 3px;
    color: var(--wp--preset--color--secondary);
    font-size: 0.54em;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.main-navigation .menu,
.widget_nav_menu .menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-navigation .menu {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-navigation a {
    position: relative;
    color: var(--wp--preset--color--foreground);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
}

.main-navigation a::after {
    position: absolute;
    right: 0;
    bottom: -7px;
    left: 0;
    height: 2px;
    content: "";
    background: var(--wp--preset--gradient--brand);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.2s ease;
}

.main-navigation a:hover::after,
.main-navigation .current-menu-item > a::after {
    transform: scaleX(1);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    color: var(--wp--preset--color--foreground);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    cursor: pointer;
}

.menu-toggle i {
    font-size: 1.25rem;
}

.site-main {
    display: block;
}

.entry-content > .wp-block-group:not(.site-hero) {
    padding: 94px 0;
}

.section-muted {
    background: var(--wp--preset--color--surface);
}

.section-title {
    position: relative;
    margin-bottom: 56px;
    font-size: clamp(2.15rem, 5vw, 3.25rem);
}

.section-title::after {
    display: block;
    width: 72px;
    height: 4px;
    margin: 16px auto 0;
    content: "";
    background: var(--wp--preset--gradient--brand);
    border-radius: 999px;
}

.section-title--left::after {
    margin-left: 0;
}

.section-intro {
    max-width: 720px;
    margin: -26px auto 46px;
    color: var(--wp--preset--color--muted);
    text-align: center;
}

.site-hero {
    position: relative;
    min-height: 690px;
    padding: calc(var(--site-header-height) + 70px) 0 70px;
    overflow: hidden;
    background:
        radial-gradient(circle at 16% 35%, rgba(139, 92, 246, 0.28), transparent 34%),
        radial-gradient(circle at 82% 60%, rgba(46, 230, 197, 0.16), transparent 30%),
        var(--wp--preset--color--background);
}

.site-hero::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    opacity: 0.16;
    background-image: linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, #000 0%, transparent 85%);
}

.wp-block-columns {
    display: flex;
    gap: 38px;
}

.wp-block-column {
    min-width: 0;
    flex: 1 1 0;
}

.site-hero__columns {
    position: relative;
    z-index: 1;
    min-height: 540px;
    align-items: center;
}

.site-hero__content {
    flex-basis: 52%;
}

.site-hero__media {
    flex-basis: 48%;
}

.eyebrow {
    margin-bottom: 12px;
    color: var(--wp--preset--color--secondary);
    font-family: var(--wp--preset--font-family--heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.site-hero h2 {
    max-width: 720px;
    margin-bottom: 20px;
    font-size: clamp(3rem, 7vw, 5.6rem);
    line-height: 0.93;
    text-transform: uppercase;
}

.site-hero__content > p:not(.eyebrow) {
    max-width: 620px;
    color: var(--wp--preset--color--muted);
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
}

.site-hero__media figure {
    position: relative;
    margin: 0;
}

.site-hero__media figure::before {
    position: absolute;
    inset: 9% -5% -5% 8%;
    z-index: -1;
    content: "";
    background: var(--wp--preset--gradient--brand);
    border-radius: 50%;
    filter: blur(55px);
    opacity: 0.26;
}

.site-hero__media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 28% 12% 24% 10%;
    box-shadow: var(--site-shadow);
}

.wp-block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.wp-block-button {
    display: inline-flex;
}

.wp-element-button,
.wp-block-button__link {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    background: var(--wp--preset--gradient--brand);
    color: #09100f;
    border: 0;
    border-radius: 9px;
    box-shadow: 0 10px 25px rgba(46, 230, 197, 0.12);
    cursor: pointer;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.wp-element-button:hover,
.wp-block-button__link:hover {
    color: #09100f;
    filter: brightness(1.07);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(46, 230, 197, 0.2);
}

.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent;
    color: var(--wp--preset--color--foreground);
    border: 1px solid var(--wp--preset--color--secondary);
    box-shadow: none;
}

.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: rgba(46, 230, 197, 0.09);
    color: var(--wp--preset--color--secondary);
}

.wp-element-button.is-secondary {
    background: var(--wp--preset--color--secondary);
}

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

.product-card {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    background: var(--wp--preset--color--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--site-radius);
    box-shadow: var(--site-shadow);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.product-card:hover {
    border-color: rgba(46, 230, 197, 0.34);
    transform: translateY(-7px);
}

.product-card__image {
    margin: 0;
    overflow: hidden;
    background: #eef1f6;
}

.product-card__image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.product-card:hover .product-card__image img {
    transform: scale(1.035);
}

.product-card__content {
    display: flex;
    height: 100%;
    flex-direction: column;
    padding: 22px;
}

.product-card h3 {
    font-size: 1.55rem;
}

.product-card p {
    color: var(--wp--preset--color--muted);
    font-size: 0.91rem;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin: auto 0 14px;
}

.product-meta strong {
    color: var(--wp--preset--color--secondary);
    font-size: 1.2rem;
}

.product-meta span {
    color: var(--wp--preset--color--muted);
    font-size: 0.86rem;
}

.taxonomy-post_tag {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 20px;
}

.tag {
    padding: 4px 9px;
    background: rgba(139, 92, 246, 0.14);
    color: #d8ccff;
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 999px;
    font-size: 0.71rem;
}

.product-card .wp-element-button {
    width: 100%;
}

.content-split {
    align-items: center;
}

.content-split > .wp-block-column:first-child {
    flex-basis: 54%;
}

.content-split > .wp-block-column:last-child {
    flex-basis: 46%;
}

.content-split h3 {
    color: var(--wp--preset--color--secondary);
    font-size: clamp(1.55rem, 3vw, 2.15rem);
}

.content-split p {
    color: var(--wp--preset--color--muted);
}

.content-split figure {
    margin: 0;
}

.content-split img {
    width: 100%;
    min-height: 390px;
    object-fit: cover;
    border-radius: var(--site-radius);
    box-shadow: var(--site-shadow);
}

.info-columns {
    align-items: stretch;
}

.info-panel {
    padding: 30px;
    background: var(--wp--preset--color--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--site-radius);
}

.info-panel h3 {
    color: var(--wp--preset--color--secondary);
    font-size: 1.65rem;
}

.info-panel h3 i {
    width: 30px;
    color: var(--wp--preset--color--primary);
}

.wp-block-table {
    margin: 0;
    overflow-x: auto;
}

.wp-block-table table {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    text-align: center;
}

.wp-block-table th,
.wp-block-table td {
    padding: 11px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wp-block-table th {
    background: rgba(139, 92, 246, 0.2);
    color: var(--wp--preset--color--foreground);
}

.wp-block-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.025);
}

.feature-list {
    padding: 0;
    margin: 0 0 26px;
    list-style: none;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: var(--wp--preset--color--muted);
}

.feature-list li::before {
    position: absolute;
    top: 0;
    left: 0;
    color: var(--wp--preset--color--secondary);
    content: "✓";
    font-weight: 700;
}

.feature-list--arrow li::before {
    content: "›";
    font-size: 1.35em;
}

.feature-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.feature-card {
    padding: 32px;
    background: var(--wp--preset--color--background);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--site-radius);
    text-align: center;
}

.feature-card > i {
    display: inline-grid;
    width: 66px;
    height: 66px;
    place-items: center;
    margin-bottom: 20px;
    background: rgba(139, 92, 246, 0.13);
    color: var(--wp--preset--color--secondary);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 50%;
    font-size: 1.65rem;
}

.feature-card h3 {
    font-size: 1.55rem;
}

.feature-card p {
    margin-bottom: 0;
    color: var(--wp--preset--color--muted);
}

.testimonial-card {
    padding: 30px;
    margin: 0;
    background: var(--wp--preset--color--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--wp--preset--color--primary);
    border-radius: 0 var(--site-radius) var(--site-radius) 0;
    box-shadow: var(--site-shadow);
}

.testimonial-card .rating {
    margin-bottom: 16px;
    color: #ffd166;
    letter-spacing: 0.12em;
}

.testimonial-card p {
    color: var(--wp--preset--color--muted);
    font-style: italic;
}

.testimonial-card cite {
    color: var(--wp--preset--color--secondary);
    font-style: normal;
    font-weight: 600;
}

.faq-accordion {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--site-radius);
}

.faq-item + .faq-item {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-question {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    background: var(--wp--preset--color--surface-light);
    color: var(--wp--preset--color--foreground);
    border: 0;
    cursor: pointer;
    font-family: var(--wp--preset--font-family--heading);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: left;
}

.faq-question::after {
    flex: 0 0 auto;
    color: var(--wp--preset--color--secondary);
    content: "+";
    font-family: var(--wp--preset--font-family--body);
    font-size: 1.5rem;
    transition: transform 0.25s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: var(--wp--preset--color--surface);
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 20px 22px;
    margin: 0;
    color: var(--wp--preset--color--muted);
}

.contact-layout {
    align-items: start;
}

.contact-details {
    padding-right: 20px;
}

.contact-details > p {
    color: var(--wp--preset--color--muted);
}

.contact-details address p {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 18px;
}

.contact-details address i {
    width: 20px;
    margin-top: 5px;
    color: var(--wp--preset--color--secondary);
    text-align: center;
}

.contact-details address a,
.contact-details address span {
    color: var(--wp--preset--color--foreground);
    text-decoration: none;
}

.contact-form {
    padding: 30px;
    background: var(--wp--preset--color--surface);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--site-radius);
    box-shadow: var(--site-shadow);
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.9rem;
    font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea,
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 13px;
    background: var(--wp--preset--color--background);
    color: var(--wp--preset--color--foreground);
    border: 1px solid #343a4b;
    border-radius: 8px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus,
.newsletter-form input:focus {
    outline: none;
    border-color: var(--wp--preset--color--secondary);
    box-shadow: 0 0 0 3px rgba(46, 230, 197, 0.12);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.form-consent {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    align-items: start;
}

.form-consent input {
    width: 17px;
    height: 17px;
    margin-top: 4px;
    accent-color: var(--wp--preset--color--primary);
}

.form-consent label {
    margin: 0;
    color: var(--wp--preset--color--muted);
    font-size: 0.82rem;
    font-weight: 400;
}

.form-status {
    min-height: 1.6em;
    margin: 14px 0 0;
    font-size: 0.9rem;
}

.form-status.success {
    color: var(--wp--preset--color--secondary);
}

.form-status.error {
    color: var(--wp--preset--color--accent);
}

.newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    max-width: 660px;
    margin: 28px auto 0;
}

.newsletter-consent,
.newsletter-form .form-status {
    grid-column: 1 / -1;
}

.newsletter-consent {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 9px;
    color: var(--wp--preset--color--muted);
    font-size: 0.8rem;
}

.newsletter-consent input {
    margin-top: 4px;
    accent-color: var(--wp--preset--color--primary);
}

.site-footer {
    padding: 68px 0 22px;
    background: #080a0f;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-widgets {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr;
    gap: 46px;
    padding-bottom: 40px;
}

.widget-title {
    margin-bottom: 18px;
    color: var(--wp--preset--color--secondary);
    font-size: 1.35rem;
}

.widget p,
.widget a {
    color: var(--wp--preset--color--muted);
}

.widget_nav_menu li {
    margin-bottom: 9px;
}

.widget_nav_menu a {
    text-decoration: none;
}

.widget_nav_menu a:hover,
.widget_nav_menu .current-menu-item > a {
    color: var(--wp--preset--color--secondary);
}

.site-info {
    width: min(calc(100% - 40px), var(--wp--style--global--wide-size));
    padding-top: 20px;
    margin: 0 auto;
    color: var(--wp--preset--color--muted);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    text-align: center;
}

.site-info p {
    margin: 0;
}

.toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2000;
    max-width: min(360px, calc(100% - 44px));
    padding: 14px 20px;
    background: var(--wp--preset--color--secondary);
    color: #07110f;
    border-radius: 9px;
    box-shadow: var(--site-shadow);
    font-weight: 700;
    opacity: 0;
    transform: translateY(140%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-notice {
    position: fixed;
    right: 22px;
    bottom: 22px;
    left: 22px;
    z-index: 1900;
    display: none;
    width: min(680px, calc(100% - 44px));
    align-items: center;
    gap: 18px;
    padding: 18px;
    margin: 0 auto;
    background: #f4f7fb;
    color: #171b24;
    border: 1px solid #d7dce6;
    border-radius: 12px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.cookie-notice.is-visible {
    display: flex;
}

.cookie-notice p {
    flex: 1;
    margin: 0;
    font-size: 0.86rem;
}

.cookie-notice a {
    color: #5132b6;
}

.cookie-notice .wp-element-button {
    min-height: 42px;
    flex: 0 0 auto;
    padding: 9px 16px;
}

.section-fade-in {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.legal-main {
    padding: calc(var(--site-header-height) + 72px) 0 90px;
}

.legal-header {
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.legal-header .entry-title {
    margin: 16px 0 0;
    font-size: clamp(2.6rem, 6vw, 4.6rem);
}

.yoast-breadcrumb {
    margin: 0;
    color: var(--wp--preset--color--muted);
    font-size: 0.84rem;
}

.yoast-breadcrumb a {
    color: var(--wp--preset--color--secondary);
}

.legal-content {
    max-width: 900px;
}

.legal-section {
    padding-top: 54px;
}

.legal-section + .legal-section {
    margin-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.legal-section h2 {
    margin-top: 34px;
    color: var(--wp--preset--color--foreground);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.legal-section h3 {
    margin-top: 28px;
    color: var(--wp--preset--color--secondary);
    font-size: 1.55rem;
}

.legal-section p,
.legal-section li,
.legal-section address {
    color: var(--wp--preset--color--muted);
}

.legal-section address {
    padding: 18px 20px;
    background: var(--wp--preset--color--surface);
    border-left: 3px solid var(--wp--preset--color--primary);
}

.legal-content .wp-block-buttons {
    margin-top: 56px;
}

@media (max-width: 1100px) {
    .main-navigation .menu {
        gap: 15px;
    }

    .main-navigation a {
        font-size: 0.82rem;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 860px) {
    :root {
        --site-header-height: 68px;
    }

    body.admin-bar .site-header {
        top: 46px;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .main-navigation .nav-menu {
        position: fixed;
        top: var(--site-header-height);
        right: 0;
        left: 0;
        display: flex;
        max-height: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow: hidden;
        background: rgba(11, 13, 19, 0.985);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: max-height 0.35s ease;
    }

    .main-navigation .nav-menu.active {
        max-height: calc(100vh - var(--site-header-height));
        overflow-y: auto;
    }

    .main-navigation .nav-menu li {
        width: min(calc(100% - 40px), var(--wp--style--global--wide-size));
        margin: 0 auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .main-navigation .nav-menu a {
        display: block;
        padding: 15px 0;
        font-size: 1rem;
    }

    .main-navigation .nav-menu a::after {
        display: none;
    }

    .wp-block-columns:not(.product-grid):not(.feature-grid):not(.testimonial-grid) {
        flex-direction: column;
    }

    .site-hero {
        padding-top: calc(var(--site-header-height) + 46px);
    }

    .site-hero__columns {
        text-align: center;
    }

    .site-hero__content > p,
    .site-hero h2 {
        margin-right: auto;
        margin-left: auto;
    }

    .site-hero .wp-block-buttons {
        justify-content: center;
    }

    .site-hero__media {
        width: min(560px, 100%);
        margin: 20px auto 0;
    }

    .section-title--left {
        text-align: center;
    }

    .section-title--left::after {
        margin-right: auto;
        margin-left: auto;
    }

    .feature-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .contact-details {
        padding-right: 0;
        text-align: center;
    }

    .contact-details address {
        display: inline-block;
        text-align: left;
    }

    .footer-widgets {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 620px) {
    .alignwide,
    .content-narrow,
    .site-info {
        width: min(calc(100% - 28px), var(--wp--style--global--wide-size));
    }

    .entry-content > .wp-block-group:not(.site-hero) {
        padding: 72px 0;
    }

    .site-title {
        font-size: 1.45rem;
    }

    .site-hero h2 {
        font-size: clamp(2.65rem, 14vw, 4.15rem);
    }

    .site-hero__media img {
        border-radius: 18px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .info-panel,
    .contact-form,
    .feature-card,
    .testimonial-card {
        padding: 22px;
    }

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

    .newsletter-consent,
    .newsletter-form .form-status {
        grid-column: auto;
    }

    .footer-widgets {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cookie-notice {
        align-items: stretch;
        flex-direction: column;
    }

    .cookie-notice .wp-element-button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }

    .section-fade-in {
        opacity: 1;
        transform: none;
    }
}
