.not-tailwind * {
    all: unset;
    box-sizing: border-box;
}

.content-for-layout .page-width {
    max-width: 120rem !important;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media screen and (min-width: 750px) {
    .content-for-layout .page-width {
        padding: 0 5rem;
    }
}

.content-for-layout .main-page-title {
    display: flex;
    justify-content: center;
    width: calc(100% - 4rem / 1);
}

@media screen and (min-width: 750px) {
    .content-for-layout .main-page-title {
        width: 100%;
    }
}

.content-for-layout h1, .content-for-layout .h1 {
    font-size: calc(1.1 * 3rem);
}

@media only screen and (min-width: 750px) {
    .content-for-layout h1, .content-for-layout .h1 {
        font-size: calc(1.1 * 4rem);
    }
}

.content-for-layout .shopify-section {
    padding-top: 21px;
    padding-bottom: 9px;
}

@media screen and (min-width: 750px) {
    .content-for-layout .shopify-section {
        padding-top: 28px;
        padding-bottom: 12px;
    }
}

.recaptcha-required-message {
    color: red;
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.recaptcha-required-message.visible {
    display: block;
}

.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    min-width: 250px;
    max-width: 320px;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 9999;
}

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

.toast-exit {
    opacity: 0;
    transform: translateY(-20px);
}

.toast-success {
    background-color: #65a266;
}

.toast-warning {
    background-color: #d5b277;
}

.toast-error {
    background-color: #da7575;
}

#form-spinner {
    display: none;
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#form-spinner.show {
    display: flex;
}

.spinner-circle {
    width: 48px;
    height: 48px;
    border: 4px solid white;
    border-top: 4px solid #3b82f6;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
