/*
Theme Name: 033
Author: Максим Вагизов
URL: https://vk.com/maxmassa
Version: 1.0
*/


/* === ONEST === */
@font-face {
    font-family: 'Onest';
    src: url('/wp-content/themes/033/assets/fonts/onest-v9-cyrillic_latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('/wp-content/themes/033/assets/fonts/onest-v9-cyrillic_latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Onest';
    src: url('/wp-content/themes/033/assets/fonts/onest-v9-cyrillic_latin-900.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}


/* === INTER === */
@font-face {
    font-family: 'Inter';
    src: url('/wp-content/themes/033/assets/fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/wp-content/themes/033/assets/fonts/inter-v20-latin-italic.woff2') format('woff2');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/wp-content/themes/033/assets/fonts/inter-v20-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('/wp-content/themes/033/assets/fonts/inter-v20-latin-700italic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}


/* === BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Inter', sans-serif;
    color: #fff;
    background: #161616;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}


/* === TYPO === */
h1, h2, h3, h4 {
    font-family: 'Onest', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.home-page {flex: 1;
    display: flex;
	overflow: hidden;}

/* === SPLIT SCREEN === */
.split {
    display: flex;
    width: 100%;
    flex: 1;
    overflow: hidden;
}

.block {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    overflow: hidden;
    transition: transform 0.6s ease;
    will-change: transform;
}

.block:hover {
    transform: scale(1.02);
}

.block + .block {
    border-left: 1px solid rgba(255,255,255,0.05);
}


/* === BACKGROUNDS === */
.left {
    background: url('/wp-content/themes/033/assets/img/karaoke.webp') center/cover no-repeat;
}

.right {
    background: url('/wp-content/themes/033/assets/img/billiard.webp') center/cover no-repeat;
}


/* === OVERLAY === */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    transition: 0.4s;
}

.block:hover .overlay {
    background: rgba(0,0,0,0.35);
}


/* === LIGHT EFFECT === */
.block::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.12), transparent 60%);
    opacity: 0;
    transition: 0.5s;
    z-index: 1;
}

.block:hover::after {
    opacity: 1;
}


/* === CONTENT === */
.content {
    position: relative;
    z-index: 2;
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 6px;

    max-width: 90%;
}

.content h2 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
	margin: 0;
    margin-bottom: 10px;
    text-shadow: 0 0 10px rgba(255,255,255,0.15);
}

.left .content h2 {
    text-shadow:
        0 0 10px rgba(255, 0, 120, 0.3),
        0 0 20px rgba(255, 0, 120, 0.2);
}

.right .content h2 {
    text-shadow:
        0 0 10px rgba(0, 180, 255, 0.3),
        0 0 20px rgba(0, 180, 255, 0.2);
}

.content p {
	margin: 0;
    margin-bottom: 20px;
}

.content span:not(.phone, .status-inline) {
    display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(255,255,255,0.3);
    letter-spacing: 1px;
    transition: 0.3s;
}
.content span:not(.phone, .status-inline):hover {
    border-color: #fff;
    background: rgba(255,255,255,0.08);
    box-shadow:
        0 0 12px rgba(255,255,255,0.5),
        0 0 30px rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.block:hover span:not(.phone, .status-inline) {
    border-color: #fff;
    box-shadow:
        0 0 10px rgba(255,255,255,0.3),
        0 0 20px rgba(255,255,255,0.1);
}


.logo-center {
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    z-index: 10;
    pointer-events: auto;
}

.logo-wrap {
    position: relative;
    width: 220px;
    height: 220px;
}
.logo-wrap img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.logo-frame {
    animation: rotateLogo 20s linear infinite;
    transform-origin: center;
    transition: transform 0.6s ease;
}

.logo-wrap:hover .logo-frame {
    animation-play-state: paused;
}

@keyframes rotateLogo {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.logo-text {
    animation: softPulse 2.5s ease-in-out infinite;
}

@keyframes softPulse {
    0% {
        opacity: 1;
        filter: brightness(1.2) drop-shadow(0 0 10px rgba(255,255,255,0.8));
    }

    50% {
        opacity: 0.65;
        filter: brightness(0.7) drop-shadow(0 0 2px rgba(255,255,255,0.2));
    }

    100% {
        opacity: 1;
        filter: brightness(1.2) drop-shadow(0 0 10px rgba(255,255,255,0.8));
    }
}
.logo-core {
    z-index: 2;
}
main {
    position: relative;
}
.work-time {
	display: block;
    font-size: 13px;
    opacity: 0.65;
    margin-top: 6px;
}

.phone {
    margin-top: 6px;
    font-size: 14px;
    color: #fff;
    opacity: 0.9;
    cursor: pointer;
    border: none;
    background: none;
    box-shadow: none;
    transition: opacity 0.2s ease;
}

.phone:hover {
    opacity: 0.6;
}
.status {
    font-size: 12px;
    margin-top: 4px;
    letter-spacing: 1px;
}

.status.open {
    color: #4cff9a;
}

.status.closed {
    color: #ff5c5c;
}
.status-inline {
	display:block;
    margin-bottom: 16px;
    opacity: 0.7;
    font-size: 12px;
}

.phone {
    margin-top: 4px;
    font-size: 28px;
    opacity: 0.9;
    cursor: pointer;
	font-weight: 700;
	text-decoration: none;
	
}
.btn {text-decoration:none;color:inherit;display: inline-block;
    padding: 12px 28px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    letter-spacing: 1px;
    transition: 0.3s;}
	.btn:hover {
    border-color: rgba(255, 255, 255, 0.8);
    box-shadow: 
        0 0 8px rgba(255, 255, 255, 0.4),
        0 0 20px rgba(255, 255, 255, 0.2),
        0 0 40px rgba(255, 255, 255, 0.1);
}
@media (max-width: 1024px) {

    .content h2 {
        font-size: 36px;
    }

    .phone {
        font-size: 22px;
    }

    .logo-wrap {
        width: 160px;
        height: 160px;
    }

    .logo-center {
        bottom: 20px;
    }
}
@media (max-width: 768px) {

    .split {
        flex-direction: column;
        height: auto;
    }

    .block {
        min-height: 50vh;
    }

    .block + .block {
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .content {
        gap: 4px;
    }

    .content h2 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .content p {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .content span:not(.phone, .status-inline) {
        padding: 10px 20px;
        font-size: 13px;
    }

    .phone {
        font-size: 20px;
    }

    .work-time {
        font-size: 12px;
    }

    .status-inline {
        font-size: 11px;
        margin-bottom: 10px;
    }
}
@media (max-width: 480px) {

    .block {
        min-height: 45vh;
    }

    .content h2 {
        font-size: 22px;
    }

    .content p {
        font-size: 13px;
    }

    .phone {
        font-size: 18px;
    }

    .content span:not(.phone, .status-inline) {
        padding: 8px 16px;
        font-size: 12px;
    }

    .logo-wrap {
        width: 120px;
        height: 120px;
    }

    .logo-center {
        bottom: 10px;
    }
}
@media (max-width: 768px) {

    main {
        position: relative;
    }

    .split {
        position: relative;
    }

    .logo-center {
        position: absolute;
        top: 62%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 20;
        pointer-events: auto;
    }

    .logo-wrap {
        width: 110px;
        height: 110px;
    }

    /* оставляем анимации, но можно слегка замедлить */
    .logo-frame {
        animation: rotateLogo 25s linear infinite;
    }

    .logo-text {
        animation: softPulse 3s ease-in-out infinite;
    }
}
@media (max-width: 480px) {
    .logo-center {
        top: 63%;
    }
    .logo-wrap {
        width: 90px;
        height: 90px;
    }
}
@media (max-width: 375px) {.logo-center {
        top: 61.5%;
    }}
.toast {
    position: fixed;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%) translateY(20px);
    
    background: rgba(0,0,0,0.85);
    color: #fff;
    
    padding: 12px 18px;
    border-radius: 10px;
    
    font-size: 14px;
    letter-spacing: 0.5px;
    
    opacity: 0;
    pointer-events: none;
    
    transition: all 0.3s ease;
    z-index: 9999;
    
    box-shadow:
        0 10px 30px rgba(0,0,0,0.4),
        0 0 10px rgba(255,255,255,0.05);
}

.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
/* =========================
   CONTAINER
========================= */

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0;
}


/* =========================
   HEADER BASE
========================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255,255,255,0.05);
}


/* =========================
   HEADER LAYOUT
========================= */

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    height: 72px;
    gap: 20px;
}


/* =========================
   LOGO
========================= */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 168px;
    height: 48px;
    object-fit: contain;
}


/* =========================
   NAV (CENTER)
========================= */

.header-nav {
    display: flex;
    align-items: center;
    justify-self: center;
    gap: 22px;

    overflow: hidden;
}


/* ссылки */

.header-nav a {
    font-size: 14px;
    font-weight: 500;

    color: rgba(255,255,255,0.7);
    text-decoration: none;

    position: relative;
    transition: all 0.25s ease;

    white-space: nowrap;
}


/* underline эффект */

.header-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;
    background: #fff;

    transition: width 0.25s ease;
}


/* hover */

.header-nav a:hover {
    color: #fff;
}

.header-nav a:hover::after {
    width: 100%;
}


/* =========================
   PHONE (RIGHT)
========================= */

.header-phone {
    justify-self: end;

    font-size: 15px;
    font-weight: 600;

    color: #fff;
    text-decoration: none;

    white-space: nowrap;

    transition: 0.25s ease;
}

.header-phone:hover {
    opacity: 0.7;
}


/* =========================
   MOBILE (НА БУДУЩЕЕ)
========================= */

@media (max-width: 900px) {

    .header-inner {
        grid-template-columns: auto auto;
    }

    .header-nav {
        display: none; /* потом заменим на бургер */
    }

}
.footer {
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255,255,255,0.08);
	background: #121212;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
	padding-top: 120px;
	padding-bottom: 120px;
}

.footer-cta .footer-title {
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-btn {
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
	display:flex;
}

.footer-menu {
    display: flex;
    gap: 60px;
}

.footer-col-title {
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 6px;
}

.footer-col a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
}

.footer-col a:hover {
    color: #fff;
}

.footer-contact-title {
    font-weight: 700;
    margin-bottom: 6px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
}

.footer-policy {
    text-decoration: none;
    color: rgba(255,255,255,0.6);
}

.footer-policy:hover {
    color: #fff;
}

/* socials */
.footer-socials {
    display: flex;
    gap: 10px;
}

.social {
    padding: 6px 10px;
    border: 1px solid #fff;
    text-decoration: none;
    color: #fff;
}

.social:hover {
    box-shadow:
        0 0 10px rgba(255,255,255,0.5),
        0 0 20px rgba(255,255,255,0.2);
}

.footer-old {
    padding: 20px;
    text-align: center;
}
.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials .social {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border: 1px solid #fff;
    color: #fff;

    transition: 0.3s ease;
}

.footer-socials .social:hover {
    box-shadow:
        0 0 10px rgba(255,255,255,0.6),
        0 0 25px rgba(255,255,255,0.3);
}

.footer-old-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials .social {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 36px;
    height: 36px;

    border: 1px solid #fff;

    transition: 0.3s ease;
}

.footer-socials .social img {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-socials .social:hover {
    box-shadow:
        0 0 10px rgba(255,255,255,0.6),
        0 0 25px rgba(255,255,255,0.3);
}
.footer-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-col-title {
    font-weight: 700;
    margin-bottom: 6px;
}
.footer-col a {
    text-decoration: none;
    color: rgba(255,255,255,0.7);
    transition: 0.3s ease;
}

.footer-col a:hover {
    color: #fff;
}
.footer-bottom a {
    color: #fff;
    text-decoration: none;
    opacity: 0.5;
    transition: 0.3s ease;
}
.footer-bottom a:hover {
    opacity: 1;

    text-shadow:
        0 0 6px rgba(255,255,255,0.6),
        0 0 12px rgba(255,255,255,0.3);
}

.copyright {opacity: 0.5;}
.footer-cta {
    max-width: 620px;
}
.footer-suptitle {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 10px;
}

.footer-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
	text-transform: uppercase;
	line-height: 100%;
}

.footer-desc {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 30px;
	line-height: 161%;
}
.footer-btn .btn-text {
    padding: 10px 18px;
    display: flex;
    align-items: center;
	margin-right: 6px;
	border: 1px solid #ffff;
	transition: 0.3s ease;
}
.footer-btn .btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
	border: 1px solid;
	transition: 0.3s ease;
}
.footer-btn:hover .btn-text,
.footer-btn:hover .btn-icon {
    box-shadow:
        0 0 12px rgba(255,255,255,0.6),
        0 0 30px rgba(255,255,255,0.3);
}
.btn-icon img {width:14px;height:14px;}

.footer-contact {
    text-decoration: none;
    color: inherit;
}
.footer-grid {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 16px;
    row-gap: 6px;
}
.footer-grid .title {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}
.footer-grid .title,
.footer-grid .phone {
    display: flex;
    align-items: center;
}
.footer-grid .address {
    font-size: 14px;
    opacity: 0.6;
}
.footer-grid .time {
    font-size: 13px;
    opacity: 0.85;
}
.footer-contact .header-phone-box {
    min-width: 140px;
}

.footer-contact:hover .header-phone-box {
    box-shadow:
        0 0 12px rgba(255,255,255,0.6),
        0 0 30px rgba(255,255,255,0.3);
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-end;
	margin:0
}

.footer-contact-block {
    width: 100%;
    max-width: 420px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-grid .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-grid .left {
    display: flex;
    align-items: center;
}

.footer-grid .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-grid .title {
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
	font-size:20px;
}

.footer-grid .title:hover {
    text-shadow:
        0 0 8px rgba(255,255,255,0.6),
        0 0 16px rgba(255,255,255,0.4),
        0 0 30px rgba(255,255,255,0.2);
}

.footer-grid .address {
    font-size: 14px;
    opacity: 0.6;
}

.footer-grid .time {
    font-size: 13px;
    opacity: 0.85;
}

.footer-grid .header-phone-box {
    min-width: 140px;
}

.footer-contact-block:hover .header-phone-box {
    box-shadow:
        0 0 12px rgba(255,255,255,0.6),
        0 0 30px rgba(255,255,255,0.3);
}

.footer-contact-block {
    width: 100%;
    max-width: 420px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
}

.footer-grid .row {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.footer-grid .left {
    text-align: left;
}

.footer-grid .right {
    text-align: right;
}
@media (max-width: 900px) {

    .footer {
        padding: 30px 20px 15px;
    }
    .footer-top {
        flex-direction: column;
        gap: 40px;
        padding-top: 60px;
        padding-bottom: 40px;
    }
    .footer-cta {
        max-width: 100%;
    }

    .footer-title {
        font-size: 28px;
        line-height: 1.2;
    }

    .footer-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .footer-btn {
        width: fit-content;
    }
    .footer-menu {
        flex-wrap: wrap;
        gap: 30px;
    }

    .footer-col {
        min-width: 140px;
    }
    .footer-contacts {
        align-items: flex-start;
        gap: 20px;
    }

    .footer-contact-block {
        max-width: 100%;
    }
    .footer-grid {
        align-items: flex-start;
    }

    .footer-grid .row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .footer-grid .right {
        justify-content: flex-start;
        text-align: left;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    .footer-socials {
        justify-content: flex-start;
    }
}
.page-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 80px 20px;
}

.page-title {
    font-size: 42px;
    margin-bottom: 30px;
}

/* текст */
.page-content {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

/* абзацы */
.page-content p {
    margin-bottom: 16px;
}

/* списки */
.page-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 8px;
}

/* подзаголовки */
.page-content h2 {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 16px;
}

.page-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
}

/* ссылки */
.page-content a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

.page-content a:hover {
    border-color: #fff;
}

/* жирный текст */
.page-content strong {
    color: #fff;
}

/* блоки */
.page-content blockquote {
    border-left: 2px solid rgba(255,255,255,0.3);
    padding-left: 16px;
    opacity: 0.8;
}

.popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}

.popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
}

.popup-body {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
    margin: 20px;
    animation: popupFade 0.25s ease;
}

@keyframes popupFade {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-body-dark {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
}

.popup-grid {
    display: flex;
    align-items: stretch;
}
.popup-left {
    flex: 1.1;
    padding: 40px;
}
.popup-title {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-size: 13px;
    color: #aaa;
    margin-bottom: 6px;
    display: block;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 14px;
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.form-group input:hover,
.form-group input:focus,
.form-group select:hover,
.form-group select:focus {
    border-color: rgba(120, 80, 255, 0.4);
    box-shadow:
        0 0 0 1px rgba(120, 80, 255, 0.3),
        0 0 20px rgba(120, 80, 255, 0.2),
        0 0 40px rgba(120, 80, 255, 0.1);
}

.form-group select[name="date"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    padding: 14px 44px 14px 14px;
    cursor: pointer;
}

.form-group:has(select[name="date"]) {
    position: relative;
}

.form-group:has(select[name="date"])::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 65%;
    transform: translateY(-50%) rotate(45deg);

    width: 10px;
    height: 10px;

    border-right: 2px solid #888;
    border-bottom: 2px solid #888;

    pointer-events: none;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.form-actions a,
.form-actions button {
    flex: 1;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
}
.popup .btn-main,
.btn-whatsapp {
    transition: all 0.25s ease;
}

.popup .btn-main {
	margin: 0;
    border: 1px solid white;
    border-radius: 0;
    background: #00000000;
	color: white;
}

.btn-whatsapp {
	color: #fff;
    text-decoration: none;
    border: 1px solid #25D366;
}

.popup .btn-main:hover {
    background: #fff;
	color: #000;
}

.btn-whatsapp:hover {
    background: #25D366;
}
.popup-right {
    flex: 0.9;
    display: flex;
}

.popup-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;

    width: 36px;
    height: 36px;
    border-radius: 50%;

    background: rgba(255,255,255,0.08);
    color: #fff;
    border: none;
    cursor: pointer;
	transition: transform 0.4s ease;
}
.popup-close:hover {
    transform: rotate(360deg);
}

/* =======================
   MOBILE
======================= */

@media (max-width: 768px) {
    .popup-grid {
        flex-direction: column;
    }
    .popup-right {
        display: none;
    }
    .popup-body {
        margin: 10px;
    }

    .popup-left {
        padding: 20px;
    }
    .popup-title {
        font-size: 20px;
        margin-bottom: 18px;
    }
    .form-group input,
    .form-group select {
        padding: 12px;
        font-size: 14px;
    }
    .form-actions {
        flex-direction: column;
        gap: 10px;
    }

    .form-actions a,
    .form-actions button {
        height: 48px;
        font-size: 14px;
    }
    .popup-close {
        top: 10px;
        right: 10px;
        width: 32px;
        height: 32px;
    }
}
.popup-status-body {
    max-width: 420px;
}

.popup-status-content {
    padding: 40px 30px;
    text-align: center;
}

.popup-status-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.popup-status-title.success {
    color: #4ade80;
}

.popup-status-title.error {
    color: #fff;
}

.popup-status-text {
    font-size: 14px;
    color: #aaa;
    margin-bottom: 25px;
}

.popup-status .btn-main {
    width: 100%;
	cursor: pointer;
}
.status-wa-link {
    color: #25D366;
    text-decoration: none;
    transition: all 0.25s ease;
}

.status-wa-link:hover {
    color: #04b349;
	text-decoration: underline;
}
.form-group input[type="date"] {
    cursor: auto;
}
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
input[type="number"] {
    -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
}
.number-wrap {
    position: relative;
}

.number-controls {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 4px;
}

.number-controls button {
    width: 24px;
    height: 24px;
    border: none;
    background: #2a2a2a;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: 0.2s;
}

.number-controls button:hover {
    background: #7850ff;
}
.form-group:has(input[type="date"]) {
    position: relative;
}

.form-group:has(input[type="date"])::after {
    content: "";
    position: absolute;
    right: 16px;
    top: 65%;
    transform: translateY(-50%);

    width: 18px;
    height: 18px;

    background: url("/wp-content/themes/033//assets/img/date.svg") no-repeat center;
    background-size: contain;

    pointer-events: none;
}
@media (max-width: 480px) {

    .popup-left {
        padding: 18px 15px;
    }

    .popup-title {
        font-size: 18px;
    }

    .form-group label {
        font-size: 12px;
    }

    .form-group input,
    .form-group select {
        font-size: 13px;
        padding: 10px;
    }

    .form-actions a,
    .form-actions button {
        width: 100%;
		min-height: 48px;
    }
}
.logo {
    display: inline-block;
    transition: transform .35s ease, filter .35s ease;
}

.logo img {
    display: block;
    transition: filter .35s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo:hover img {
    filter: brightness(1.15) drop-shadow(0 0 12px rgba(255, 255, 255, 0.25));
}
@media (max-width: 900px) {
    .header-old .header-inner {
        padding: 0 20px;
    }
}