/* Custom tweaks for localized PHP pages */

.contact-info-list .info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 18px;
}

.contact-info-list .icon {
    color: #2ab3a3;
    font-size: 20px;
    line-height: 1.2;
}

.contact-info-list .label {
    font-weight: 600;
    color: #2c241b;
}

.policy-card {
    background: #fff;
    border: 1px solid #f0edea;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.policy-card .title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 18px;
}

.policy-card p {
    margin-bottom: 14px;
}

.policy-actions {
    margin-top: 18px;
}

.order-section {
    position: relative;
    background: linear-gradient(135deg, #e9f7f4 0%, #e6f1ff 55%, #ffffff 100%);
    overflow: hidden;
}

.order-section::after {
    content: "";
    position: absolute;
    inset: 10% auto -30% -10%;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(42, 179, 163, 0.12) 0%, rgba(255, 255, 255, 0) 60%);
    filter: blur(6px);
    pointer-events: none;
}

.order-copy .lead {
    font-size: 18px;
    color: #3a2f25;
    line-height: 1.6;
    margin: 10px 0 18px;
}

.order-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: #d9f6f1;
    color: #0f6b63;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 12px;
    margin-bottom: 10px;
}

.order-points {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
}

.order-points li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #3b3128;
    font-weight: 500;
}

.order-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 1px;
    color: #0f9d58;
    font-weight: 700;
}

.order-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.order-visual {
    position: relative;
    margin-bottom: 16px;
}

.order-visual img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.order-visual__tag {
    position: absolute;
    left: 12px;
    top: 12px;
    background: linear-gradient(135deg, #2fd2c1, #1f8c83);
    color: #fff;
    padding: 6px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 10px 25px rgba(42, 179, 163, 0.28);
}

.order-pill {
    background: #fff;
    border: 1px solid #dfeeee;
    border-radius: 30px;
    padding: 10px 14px;
    color: #2c241b;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.order-card {
    background: #fff;
    border: 1px solid #dfece9;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.order-card::before {
    content: "";
    position: absolute;
    inset: auto -30% -40% auto;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(42, 179, 163, 0.12) 0%, rgba(255, 255, 255, 0) 65%);
    transform: rotate(-12deg);
}

.order-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #f1e7dd;
}

.order-card__header h3 {
    margin: 6px 0 0;
    font-size: 26px;
}

.order-price {
    background: #e5f8f4;
    border: 1px solid #b5efe4;
    padding: 10px 14px;
    border-radius: 12px;
    text-align: right;
    min-width: 120px;
}

.order-price__label {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0f6b63;
    font-weight: 700;
}

.order-price__value {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #2c241b;
    line-height: 1.1;
}

.order-form .form-label {
    font-weight: 700;
    color: #2d241b;
    font-size: 14px;
}

.order-form .form-control {
    background: #f4f9f8;
    border: 1px solid #d9ebe7;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 15px;
    box-shadow: none;
}

.order-form .form-control:focus {
    border-color: #2ab3a3;
    box-shadow: 0 0 0 3px rgba(42, 179, 163, 0.2);
}

.order-form__checks {
    margin: 18px 0 8px;
    display: grid;
    gap: 10px;
}

.order-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
    color: #3f342a;
}

.order-check input {
    margin-top: 3px;
}

.order-check a {
    color: #2d87c8;
    text-decoration: underline;
}

.order-check--optional {
    opacity: 0.9;
}

.order-recaptcha {
    font-size: 12px;
    color: #5b4e42;
    margin: 4px 0 14px;
}

.order-note {
    text-align: center;
    font-weight: 700;
    color: #2e261d;
    margin-top: 12px;
}

@media (max-width: 991px) {
    .order-card__header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .order-card {
        padding: 22px;
    }

    .order-card__header h3 {
        font-size: 22px;
    }
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: #0e2c2d;
    color: #e8f7f4;
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.16);
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    transform: translateY(150%);
    opacity: 0;
    transition: all 0.35s ease;
    z-index: 9999;
    flex-wrap: wrap;
}

.cookie-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
}

.cookie-banner__text h4 {
    margin: 0 0 6px;
    color: #ffffff;
}

.cookie-banner__text p {
    margin: 0;
    color: #c9e8e3;
    font-size: 14px;
}

.cookie-link {
    color: #bde7dd;
    text-decoration: underline;
    font-weight: 700;
}

.cookie-link:hover {
    color: #ffffff;
}

.cookie-banner__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    border: none;
    border-radius: 10px;
    padding: 10px 14px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-size: 14px;
}

.cookie-btn.primary {
    background: #2ab3a3;
    color: #0b1f1f;
    box-shadow: 0 10px 30px rgba(42, 179, 163, 0.35);
}

.cookie-btn.light {
    background: #e8f7f4;
    color: #0e2c2d;
    border: 1px solid #bde7dd;
}

.cookie-btn.ghost {
    background: transparent;
    color: #c9e8e3;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-preferences {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
    z-index: 10000;
    padding: 20px;
}

.cookie-preferences.is-visible {
    opacity: 1;
    pointer-events: all;
}

.cookie-preferences__card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
    position: relative;
}

.cookie-preferences__header {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}

.cookie-pill {
    display: inline-block;
    padding: 6px 10px;
    background: #e8f7f4;
    color: #0e2c2d;
    border-radius: 999px;
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 6px;
}

.cookie-sub {
    margin: 4px 0 0;
    color: #4a433c;
    font-size: 14px;
}

.cookie-close {
    border: none;
    background: #f2f4f5;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 20px;
    cursor: pointer;
}

.cookie-preferences__list {
    margin: 18px 0;
    display: grid;
    gap: 12px;
}

.cookie-toggle {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #e8ebed;
    border-radius: 12px;
    background: #f9fbfa;
}

.cookie-toggle__title {
    display: block;
    font-weight: 700;
    color: #1a1410;
}

.cookie-toggle__desc {
    display: block;
    color: #4a433c;
    font-size: 13px;
}

.cookie-toggle input {
    display: none;
}

.cookie-toggle__slider {
    width: 48px;
    height: 26px;
    border-radius: 999px;
    background: #d4dadd;
    position: relative;
    transition: background 0.2s ease;
}

.cookie-toggle__slider::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.cookie-toggle input:checked + .cookie-toggle__slider {
    background: #2ab3a3;
}

.cookie-toggle input:checked + .cookie-toggle__slider::after {
    transform: translateX(22px);
}

.cookie-preferences__footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.cookie-reopen {
    position: fixed;
    bottom: 16px;
    left: 16px;
    padding: 10px 14px;
    background: #0e2c2d;
    color: #e8f7f4;
    border: 1px solid rgba(232, 247, 244, 0.35);
    border-radius: 12px;
    cursor: pointer;
    z-index: 9998;
    opacity: 0;
    transform: translateY(120%);
    transition: all 0.25s ease;
}

.cookie-reopen.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 767px) {
    .cookie-banner {
        bottom: 12px;
        left: 12px;
        right: 12px;
        padding: 16px;
    }
    .cookie-banner__actions {
        width: 100%;
    }
    .cookie-banner__text {
        width: 100%;
    }
    .cookie-preferences__card {
        padding: 18px;
    }
}
