*, *::before, *::after {
    box-sizing: border-box;
}

/* General Styles */
body {
    font-family: 'Montserrat', 'system-ui', sans-serif;
    background-color: #fff;
    color: #333;
    margin: 0;
    overflow-x: hidden;
}

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

/* Override Bootstrap Container Padding */
.container {
    max-width: 1200px;
}

/* Header */
.site-header {
    background-color: #fff;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header__main {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 40px;
}

.site-header__right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

.logo img {
    height: 60px;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #ff8c00;
    transform-origin: bottom left;
    transition: transform 0.3s ease-out;
}

.main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}
.lang-switcher {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    background-color: #f5f5f5;
    border-radius: 16px;
    padding: 4px 10px;
    font-size: 0.75rem;
    text-transform: uppercase;
}
.lang-switcher__link {
    color: #555;
    text-decoration: none;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.lang-switcher__link:hover {
    background-color: rgba(255, 140, 0, 0.15);
    color: #ff8c00;
}
.lang-switcher__link--active {
    background-color: #ff8c00;
    color: #fff;
}
.account-menu {
    position: relative;
}
.account-menu__toggle {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-width: 170px;
    list-style: none;
    position: relative;
}
.account-menu__toggle::marker,
.account-menu__toggle::-webkit-details-marker {
    display: none;
}
.account-menu__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #666;
}
.account-menu__user {
    font-size: 0.95rem;
    color: #333;
    font-weight: 600;
}

.account-menu__action-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #ff8c00;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 4px 10px rgba(17, 24, 39, 0.3);
}
.account-menu__link-badge {
    margin-right: 8px;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    padding: 0 6px;
    background-color: #ff8c00;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.account-menu__list {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    margin: 0;
    padding: 12px 0;
    list-style: none;
    min-width: 220px;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
}
.account-menu[open] .account-menu__list {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.account-menu__list-item {
    padding: 0;
}
.account-menu__list-item--muted {
    padding: 0 20px 12px 20px;
    font-size: 0.85rem;
    color: #666;
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 10px;
}
.account-menu__link {
    display: block;
    padding: 10px 20px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.account-menu__link:hover {
    background-color: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
}

.btn {
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #ff8c00;
    color: #fff;
}

.btn-primary:hover {
    background-color: #fff;
    color: #ff8c00;
    border-color: #ff8c00;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Login Form */
.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 0;
}

.login-form {
    width: 640px;
    max-width: 100%;
    text-align: center;
}

.login-form h1 {
    color: #ff8c00;
    margin-bottom: 30px;
}

.error-message {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.info-message {
    background-color: #e6f4ff;
    color: #0b5394;
    border: 1px solid #a7cdf2;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: left;
    line-height: 1.4;
}
.info-followup {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}
.info-followup a {
    color: #ff8c00;
    text-decoration: none;
}
.account-menu__link--chat {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.account-menu__badge {
    min-width: 24px;
    padding: 2px 8px;
    border-radius: 999px;
    background-color: #ff5a5f;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}
.info-followup a:hover {
    text-decoration: underline;
}
.success-message {
    background-color: #d1f0d1;
    color: #205723;
    border: 1px solid #9ad59d;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 24px;
    text-align: left;
    line-height: 1.4;
}
.error-list {
    margin: 0;
    padding-left: 20px;
    text-align: left;
    list-style: disc;
}
.form-description {
    margin: 0 0 24px;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
    width: 100%;
}
.form-grid__item--full {
    grid-column: 1 / -1;
}
@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .form-grid__item--full {
        grid-column: auto;
    }
}
.password-strength {
    margin-top: 20px;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
}
.password-strength__bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff4d4d 0%, #ff4d4d 0%, #e0e0e0 0%, #e0e0e0 100%);
    transition: background 0.25s ease;
}
.password-strength__label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #666;
}
.password-match-message {
    min-height: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #d9534f;
    margin-top: -10px;
    opacity: 0;
    transition: opacity 0.2s ease;
}
.password-match-message.is-visible {
    opacity: 1;
}

.coming-soon {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

.coming-soon__card {
    max-width: 560px;
    width: 100%;
    padding: 48px;
    text-align: center;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 24px 40px rgba(17, 34, 68, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.coming-soon__badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.coming-soon__card h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: #212121;
}

.coming-soon__card p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 28px;
    line-height: 1.6;
}

.footer-host-link {
    color: #ff8c00;
    font-weight: 600;
    text-decoration: none;
}

.footer-host-link:hover {
    text-decoration: underline;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input {
    width: 100%;
    padding: 15px 45px;
    border: 1px solid #ccc;
    border-radius: 25px;
    text-align: center;
}

.form-group .icon-user, .form-group .icon-lock {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 5px;
}

.forgot-password {
    color: #ff8c00;
    text-decoration: none;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.form-actions .btn {
    flex: 1;
}

.btn-secondary {
    background-color: #fff;
    color: #ff8c00;
    border-color: #ff8c00;
}

.btn-secondary:hover {
    background-color: #ff8c00;
    color: #fff;
}

.btn-light {
    background-color: transparent;
    color: #ff8c00;
    border-color: rgba(255, 140, 0, 0.45);
}

.btn-light:hover {
    background-color: #ff8c00;
    color: #fff;
    border-color: #ff8c00;
}

.register-link {
    font-size: 14px;
}

.register-link a {
    color: #ff8c00;
    text-decoration: none;
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* Animated Underline Link */
.link-underline {
    position: relative;
    text-decoration: none;
}

.link-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #333;
    transform-origin: bottom left;
    transition: transform 0.3s ease-out;
}

.link-underline:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.highlight {
    color: #ff8c00;
}

/* Homepage Layout */
.home-hero {
    padding: 80px 0 60px;
}

.home-hero__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: start;
}

.home-hero__content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.home-search {
    background-color: #fff;
    border-radius: 20px;
    padding: 18px 22px;
    box-shadow: 0 24px 50px rgba(17, 24, 39, 0.08);
}

.home-search__row {
    display: grid;
    gap: 12px;
    align-items: center;
}

.home-search__row--location {
    grid-template-columns: 1fr;
    margin-bottom: 12px;
}

.home-search__row--dates {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
}

.home-search__row--dates > *:last-child {
    justify-self: start;
}

.home-search__row--filters {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
    align-items: flex-start;
    padding-top: 10px;
}

.search-filter-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #4b5563;
}

.search-filter-group__label {
    font-weight: 600;
}

.search-filter-group__choices {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.search-filter-group__choices--wrap {
    gap: 6px;
}

.search-filter-chip {
    position: relative;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background-color: #fff;
    padding: 2px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    cursor: pointer;
}

.search-filter-chip:hover {
    border-color: #ff8c00;
}

.search-filter-chip span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    font-size: 0.75rem;
    text-transform: none;
    letter-spacing: 0.1em;
    color: #111;
}

.search-filter-chip input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.search-filter-chip input:checked + span {
    background-color: #ff8c00;
    color: #fff;
    border-radius: 999px;
}

.home-search__field {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #f8f8f8;
    border-radius: 15px;
    padding: 12px 16px;
    border: 1px solid transparent;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.home-search__field:focus-within {
    border-color: #ff8c00;
    background-color: #fff;
}

.home-search__field input {
    width: 100%;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #333;
    cursor: pointer;
}

.home-search__field input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    position: relative;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.95rem;
}

.home-search__field input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    display: none;
}

.home-search__field input[type="date"]::-webkit-clear-button,
.home-search__field input[type="date"]::-webkit-inner-spin-button {
    display: none;
}

.home-search__input--with-icon {
    padding-left: 6px;
}

.home-search__field input::placeholder {
    color: #999;
}

.home-search__field--select {
    padding: 0;
    border: none;
    background: transparent;
}

.home-search__field--select:focus-within {
    border: none;
    background: transparent;
}

.home-search__icon::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: #ff8c00;
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;
    cursor: pointer;
}

.icon-location::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 2a7 7 0 0 0-7 7c0 5.25 7 13 7 13s7-7.75 7-13a7 7 0 0 0-7-7zm0 9.5a2.5 2.5 0 1 1 0-5 2.5 2.5 0 0 1 0 5z'/%3E%3C/svg%3E");
}

.icon-calendar::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M7 2a1 1 0 0 0-1 1v1H5a3 3 0 0 0-3 3v12a3 3 0 0 0 3 3h14a3 3 0 0 0 3-3V7a3 3 0 0 0-3-3h-1V3a1 1 0 1 0-2 0v1H8V3a1 1 0 0 0-1-1zm12 7v10a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1V9h15z'/%3E%3C/svg%3E");
}

.icon-search::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M10 2a8 8 0 0 1 6.32 12.906l4.387 4.387-1.414 1.414-4.387-4.387A8 8 0 1 1 10 2zm0 2a6 6 0 1 0 0 12 6 6 0 0 0 0-12z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
}

.home-search__submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ff8c00;
    color: #fff;
    border: none;
    border-radius: 15px;
    padding: 14px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 18px 35px rgba(255, 140, 0, 0.25);
}

.home-search__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 40px rgba(255, 140, 0, 0.35);
}

.home-hero__heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
    margin: 0;
}

.home-hero__heading-line {
    color: #111;
}

.home-hero__heading-line--highlight {
    color: #ff8c00;
}

.home-hero__tagline {
    max-width: 420px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

.home-hero__media {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}

.home-placeholder {
    width: 100%;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffe2ba, #ffd29a);
    aspect-ratio: 4 / 3;
    position: relative;
    overflow: hidden;
}

.home-placeholder--hero {
    max-width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 32px;
    background: transparent;
}

.home-hero__slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s ease-in-out;
}

.home-hero__slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-placeholder--step {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    background-color: transparent;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-placeholder--step-1 {
    background-image: url('../img/passo1.jpg');
}

.home-placeholder--step-2 {
    background-image: url('../img/passo2.jpg');
}

.home-placeholder--step-3 {
    background-image: url('../img/passo3.jpg');
}

.home-placeholder--size {
    aspect-ratio: 4 / 3;
    border-radius: 32px;
    background-color: transparent;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.home-placeholder--size-s {
    background-image: url('../img/Tamanho_S.png');
}

.home-placeholder--size-m {
    background-image: url('../img/Tamanho_M.png');
}

.home-placeholder--size-l {
    background-image: url('../img/Tamanho_L.png');
}

.home-placeholder--size-xl {
    background-image: url('../img/Tamanho_XL.png');
}

.home-placeholder--cta {
    position: absolute;
    inset: 0;
    background-color: transparent;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: inherit;
    opacity: 0.88;
}

.home-placeholder--cta-lease {
    background-image: url('../img/botao_aluga.jpg');
}

.home-steps {
    padding: 50px 0 30px;
}

.home-steps__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.home-step {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.home-step__label {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    color: #ff8c00;
}

.home-step__title {
    font-size: 1.4rem;
    margin: 0;
}

.home-step__copy {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.home-how {
    padding: 40px 0 20px;
}

.home-how__title {
    font-size: 2.4rem;
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.home-size {
    background-color: #ff8c00;
    padding: 70px 0;
    color: #fff;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.home-size__container {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 60px;
    align-items: center;
}

.home-size__media {
    max-width: 520px;
}

.home-size__title {
    font-size: 2.2rem;
    margin-bottom: 22px;
}

.home-size__card {
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 26px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.home-size__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-size__label {
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.home-size__dimension {
    font-size: 1.1rem;
    opacity: 0.85;
}

.home-size__button {
    align-self: flex-start;
}

.home-size__options {
    display: grid;
    gap: 12px;
}

.home-size__size-btn {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.home-size__size-btn--active,
.home-size__size-btn:hover {
    background-color: #fff;
    color: #ff8c00;
}

.home-cta-grid {
    padding: 70px 0 50px;
}

.home-cta-grid__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.home-cta-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    color: #fff;
    min-height: 260px;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: flex-end;
}

.home-cta-card__content {
    position: relative;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 1;
}

.home-cta-card__content h3 {
    font-size: 2rem;
    line-height: 1.4;
    margin: 0;
}

.home-cta-card--lease .home-cta-card__content,
.home-cta-card--container .home-cta-card__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 18px;
    padding: 30px 30px 50px;
}

.home-cta-card--lease .home-cta-card__content h3,
.home-cta-card--container .home-cta-card__content h3 {
    width: 100%;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-cta-card--lease .home-cta-card__content .btn,
.home-cta-card--container .home-cta-card__content .btn {
    margin-top: auto;
    align-self: center;
    transform: translateY(10px);
    border-radius: 10px;
    border: 1px solid #fff;
}

.home-placeholder--cta-container {
    background-image: url('../img/botao_contentor.jpg');
}

.home-banner {
    background-color: #ff8c00;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.home-banner__button {
    margin-top: 20px;
    border-radius: 30px;
    padding: 14px 28px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.home-banner .btn-light {
    background-color: #fff;
    color: #ff8c00;
    border-color: #fff;
}

.home-banner .btn-light:hover {
    background-color: rgba(255, 255, 255, 0.85);
    color: #ff7200;
    border-color: rgba(255, 255, 255, 0.85);
}

/* Search Page */
.search-page {
    padding-bottom: 60px;
}

.search-hero {
    padding: 30px 0 10px;
}

.search-alert {
    margin-top: 16px;
    padding: 12px 16px;
    border: 1px solid #ffb347;
    border-radius: 12px;
    background-color: #fff6e5;
    color: #8a5b1f;
    font-size: 0.9rem;
}

.search-alert p {
    margin: 0;
}

.search-alert p + p {
    margin-top: 6px;
}

.search-results {
    padding: 20px 0 60px;
}

.search-results__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.search-results__title {
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
    letter-spacing: 0.06em;
}

.search-results__toolbar {
    display: flex;
    gap: 12px;
}

.search-toolbar__action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 8px 16px;
    background: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #444;
    cursor: pointer;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.search-toolbar__action:hover {
    border-color: #ff8c00;
    color: #ff8c00;
}

.icon-sort::before,
.icon-filter::before {
    content: '';
    display: inline-block;
    width: 14px;
    height: 14px;
    background-color: currentColor;
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;
}

.icon-sort::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' fill='white'%3E%3Cpath d='M48 96h160a32 32 0 0 0 0-64H48a32 32 0 0 0 0 64zm0 160h224a32 32 0 0 0 0-64H48a32 32 0 0 0 0 64zm0 160h128a32 32 0 0 0 0-64H48a32 32 0 0 0 0 64z'/%3E%3C/svg%3E");
}

.icon-filter::before {
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' fill='white'%3E%3Cpath d='M487.7 0H24.3C2.7 0-8.1 26.1 7.5 41.6L192 224.2v198.5c0 8.5 4.6 16.4 12.1 20.7l96 53.3c15.9 8.8 35.9-2.9 35.9-20.7V224.2L504.5 41.6C520.1 26.1 509.3 0 487.7 0z'/%3E%3C/svg%3E");
}

.search-results__grid {
    display: grid;
    grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
    gap: 40px;
}

.search-results__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.search-card {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 20px;
    border: 1px solid #e5e5e5;
    border-radius: 20px;
    padding: 18px 22px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(17, 24, 39, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.search-card--active {
    border-color: #ff8c00;
    box-shadow: 0 22px 48px rgba(17, 24, 39, 0.16);
    transform: translateY(-4px);
}

.search-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-card-link + .search-card-link {
    margin-top: 24px;
}

.search-card__thumb {
    background: linear-gradient(180deg, #ebebeb 0%, #d4d4d4 100%);
    border-radius: 12px;
    background-size: cover;
    background-position: center center;
}

.storage-detail {
    padding-bottom: 80px;
}

.storage-top {
    padding: 48px 0 32px;
}

.storage-top__container {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.4fr);
    gap: 48px;
    align-items: start;
}

.storage-gallery {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #f3f4f6 0%, #e5e7eb 100%);
    box-shadow: 0 24px 48px rgba(17, 24, 39, 0.14);
}

.storage-gallery__viewport {
    overflow: hidden;
}

.storage-gallery__track {
    display: flex;
    transition: transform 0.4s ease;
    list-style: none;
    margin: 0;
    padding: 0;
}

.storage-gallery__slide {
    flex: 0 0 100%;
    list-style: none;
}

.storage-gallery__slide img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.storage-gallery__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(17, 24, 39, 0.7);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    cursor: pointer;
}

.storage-gallery__nav--prev {
    left: 16px;
}

.storage-gallery__nav--next {
    right: 16px;
}

.storage-gallery__indicator {
    position: absolute;
    bottom: 16px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.75);
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
}

.storage-top__note {
    margin: 0 0 12px;
    color: #6b7280;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.storage-top__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: #ff8c00;
}

.storage-top__address {
    margin: 0 0 16px;
    color: #374151;
}

.storage-top__type {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}
.storage-top__type-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    font-weight: 600;
    color: #111827;
    background: #fff;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.08);
}
.storage-top__type-badge--business {
    border-color: rgba(255, 140, 0, 0.4);
    color: #ff8c00;
}
.storage-top__type-badge--personal {
    border-color: rgba(17, 24, 39, 0.15);
}
.storage-top__type-value {
    font-weight: 700;
    color: #111827;
}
.storage-top__type-value--business {
    color: #1d4ed8;
}

.storage-top__operator {
    margin: 0;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.storage-top__description {
    margin: 0 0 20px;
    line-height: 1.6;
    color: #4b5563;
}

.storage-top__features h3,
.storage-top__dates h3 {
    margin: 0 0 10px;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #111827;
}

.storage-top__features ul {
    margin: 0 0 24px;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 16px;
    color: #ff8c00;
    font-weight: 600;
}

.storage-top__features li::before {
    content: '•';
    margin-right: 6px;
}

.storage-top__features li {
    display: flex;
    align-items: center;
}

.storage-top__policy {
    color: #ff8c00;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 6px;
}

.storage-top__dates {
    margin-top: 24px;
}

.storage-top__cta {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.storage-top__cta .btn {
    min-width: 220px;
}

.storage-top__date-fields {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.storage-top__date-field {
    flex: 1 1 150px;
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 14px;
    padding: 10px 14px;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(17, 24, 39, 0.05);
}

.storage-top__date-field .home-search__icon {
    margin-right: 12px;
    color: #ff8c00;
    font-size: 1.1rem;
}

.storage-top__date-field input[type="date"] {
    border: none;
    background: transparent;
    color: #111827;
    font-weight: 600;
    pointer-events: none;
    width: 100%;
    font-size: 0.95rem;
}

.storage-top__dates-na {
    color: #9ca3af;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.storage-options {
    padding: 32px 0;
}

.storage-options__header h2 {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ff8c00;
    margin-bottom: 24px;
    font-size: 1.1rem;
}

.storage-options__list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.storage-option {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr) 180px;
    gap: 24px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 20px;
    padding: 18px 24px;
    background: #fffdf9;
    align-items: center;
}

.storage-option__media img {
    width: 140px;
    height: 110px;
    object-fit: cover;
    border-radius: 16px;
}

.storage-option__heading {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.storage-option__heading h3 {
    margin: 0;
    font-size: 1rem;
    text-transform: uppercase;
    color: #ff8c00;
}

.storage-option__type {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 10px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.1);
    margin-left: 10px;
    color: #374151;
}
.storage-option__type--business {
    border-color: rgba(255, 140, 0, 0.4);
    color: #ff8c00;
}
.storage-option__type--personal {
    border-color: rgba(17, 24, 39, 0.15);
}

.storage-option__size {
    display: inline-block;
    margin-top: 4px;
    color: #6b7280;
    font-size: 0.85rem;
}

.storage-option__features {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #4b5563;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.storage-option__features li::before {
    content: '•';
    color: #ff8c00;
    margin-right: 6px;
}

.storage-option__features li {
    display: flex;
    align-items: center;
}

.storage-option__price {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.storage-option__price-value {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    color: #ff8c00;
}

.storage-option__price-hint {
    display: block;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 12px;
}

.storage-option__cta.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

.storage-options__visit {
    margin-top: 28px;
    text-align: center;
}

.storage-policy {
    padding: 48px 0;
    background: #f9fafb;
}

.storage-policy h2 {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.storage-policy__blocks {
    margin-top: 24px;
    display: grid;
    gap: 20px;
}

@media (min-width: 992px) {
    .storage-policy__blocks {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

.storage-policy__card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.storage-policy__card-header h3 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    color: #4b5563;
}

.storage-policy__text {
    font-size: 1rem;
    line-height: 1.6;
    color: #374151;
    max-height: calc(1.6rem * 3);
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.storage-policy__text p {
    margin: 0 0 0.75rem;
}

.storage-policy__card.is-expanded .storage-policy__text {
    max-height: none;
}

.storage-policy__toggle {
    align-self: flex-start;
    border: none;
    background: none;
    color: #ff8c00;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.storage-policy__toggle:focus-visible {
    outline: 2px solid #ff8c00;
    outline-offset: 2px;
}

.storage-faq {
    padding: 48px 0;
}

.storage-faq h2 {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.storage-faq__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.storage-faq__item {
    border: 1px solid rgba(17, 24, 39, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.storage-faq__question {
    width: 100%;
    padding: 14px 18px;
    background: #ff8c00;
    color: #fff;
    text-align: left;
    border: none;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.storage-faq__icon {
    margin-left: 12px;
    font-size: 1.2rem;
}

.storage-faq__answer {
    display: none;
    padding: 16px 18px;
    background: #fff;
    color: #374151;
}

.storage-faq__item.is-open .storage-faq__question {
    background: #d97706;
}


.storage-testimonials {
    background: #ff8c00;
    color: #fff;
    padding: 48px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.storage-testimonials__container h2 {
    text-align: center;
    margin: 0 0 24px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.storage-testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
}

.storage-testimonial {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px;
    text-align: center;
}

.storage-testimonial__stars {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.storage-testimonial h3 {
    margin: 0 0 10px;
    font-size: 1rem;
}

@media (max-width: 1024px) {
    .storage-top__container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .storage-gallery__slide img {
        height: 360px;
    }
    .storage-option {
        grid-template-columns: 1fr;
        text-align: left;
    }
    .storage-option__price {
        text-align: left;
    }
    .storage-top__features ul {
        grid-template-columns: 1fr;
    }
    .storage-top__cta {
        flex-direction: column;
    }
    .storage-top__cta .btn {
        width: 100%;
        min-width: 0;
    }
}

.search-card__title {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.search-card__address,
.search-card__availability {
    margin: 0;
    font-size: 0.9rem;
    color: #555;
}

.search-card__type {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.search-card__type-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border-radius: 999px;
    border: 1px solid rgba(17, 24, 39, 0.12);
    background: #fff;
    font-weight: 600;
}
.search-card__type-badge--business {
    border-color: rgba(255, 140, 0, 0.4);
    color: #ff8c00;
}
.search-card__type-badge--personal {
    border-color: rgba(17, 24, 39, 0.15);
    color: #374151;
}

.search-card__availability {
    margin-top: 8px;
    font-weight: 600;
    color: #111;
}

.search-card__sizes {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.search-card__size {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #555;
}

.search-card__size--active {
    background: #ff8c00;
    border-color: #ff8c00;
    color: #fff;
}

.search-results__map {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.search-map {
    width: 100%;
    padding-top: 66%;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    background: radial-gradient(circle at top, #f5f5f5, #e0e0e0);
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.14);
}

.search-map__canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.search-map__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    color: #777;
    text-transform: uppercase;
}

.search-map--ready .search-map__placeholder {
    opacity: 0;
    visibility: hidden;
}

.search-map__popup-link {
    color: inherit;
    text-decoration: none;
}

.search-map__popup-link:hover {
    text-decoration: underline;
}

.leaflet-popup.search-map-hover-popup {
    pointer-events: none;
}

.search-map-hover-popup .leaflet-popup-content-wrapper {
    padding: 14px 18px;
    background: #fff;
    color: #111;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.2);
    border: 1px solid rgba(17, 24, 39, 0.08);
}

.search-map-hover-popup .leaflet-popup-content {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
}

.search-map-hover-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Montserrat', 'system-ui', sans-serif;
}

.search-map-hover-title {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #111;
    text-transform: uppercase;
}

.search-map-hover-popup .leaflet-popup-tip {
    background: #fff;
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.12);
}

.search-map-click-popup .leaflet-popup-content-wrapper {
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(17, 24, 39, 0.25);
    padding: 14px 18px;
}

.search-map-click-popup .leaflet-popup-content {
    margin: 0;
}

.search-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 12px;
}

.search-pagination__arrow {
    border: none;
    background: none;
    color: #bbb;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
}

.search-pagination__arrow--next {
    color: #333;
}

.search-pagination ul {
    display: flex;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.search-pagination li button {
    border: none;
    background: none;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
}

.search-pagination li.is-active button {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #ff8c00;
    color: #fff;
    font-weight: 600;
}

.search-pagination__ellipsis {
    color: #bbb;
}

@media (max-width: 1024px) {
    .search-results__grid {
        grid-template-columns: 1fr;
    }

    .search-results__map {
        order: -1;
    }

    .search-map {
        padding-top: 56%;
    }
}

@media (max-width: 680px) {
    .search-results__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .search-results__toolbar {
        width: 100%;
    }

    .search-toolbar__action {
        flex: 1;
        justify-content: center;
    }

    .search-card {
        grid-template-columns: 1fr;
    }
}

.site-footer-links {
    padding: 70px 0;
}

.site-footer-links__title {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.site-footer-links__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.site-footer-links__column h4 {
    font-size: 1rem;
    letter-spacing: 0.14em;
    margin-bottom: 16px;
}

.site-footer-links__column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-footer-links__column a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
}

.site-footer-links__column a:hover {
    color: #ff8c00;
}

@media (max-width: 1024px) {
    .home-hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .home-hero__media {
        justify-content: center;
    }

    .home-search__row--dates {
        grid-template-columns: 1fr;
    }

    .home-search__row--dates > *:last-child {
        grid-column: auto;
    }

    .home-search__submit {
        width: 100%;
    }

    .home-size__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .home-size__card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .home-size__details {
        align-items: center;
    }

    .home-size__button {
        align-self: center;
    }

    .home-size__options {
        grid-auto-flow: column;
        justify-content: center;
    }
}

/* Static Pages */
.page-hero {
    padding: 80px 0 50px;
    background: linear-gradient(180deg, rgba(255, 140, 0, 0.08) 0%, rgba(255, 140, 0, 0) 100%);
}

.page-hero__content {
    max-width: 720px;
}

.page-hero__eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #ff8c00;
    margin-bottom: 14px;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero h2 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 18px;
}

.content-page__body {
    padding: 48px 0 80px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #374151;
}

.content-page__body h2,
.content-page__body h3,
.content-page__body h4 {
    margin-top: 2.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #111827;
}

.content-page__body p {
    margin-bottom: 1.4rem;
}

.content-page__body ul,
.content-page__body ol {
    margin: 1.4rem 0 1.4rem 1.6rem;
    padding: 0;
}

.content-page__body a {
    color: #2563eb;
    text-decoration: underline;
}

.content-page__body blockquote {
    border-left: 4px solid #2563eb;
    padding-left: 1rem;
    color: #1f2937;
    font-style: italic;
    margin: 1.6rem 0;
}

.content-page__empty {
    color: #6b7280;
    font-style: italic;
}

.page-hero__intro {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

.page-sections {
    padding: 40px 0 20px;
}

.page-section {
    max-width: 780px;
    margin: 0 auto 36px;
}

.page-section h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.page-section p {
    color: #555;
    line-height: 1.7;
}

.page-section ul {
    margin: 18px 0 0 20px;
    color: #444;
    line-height: 1.6;
}

.page-contacts {
    padding: 30px 0 10px;
}

.page-contacts__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.page-contact {
    background-color: #f8f8f8;
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.page-contact__label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #777;
}

.page-contact__value {
    font-size: 1.05rem;
    font-weight: 600;
    color: #111;
    text-decoration: none;
    word-break: break-word;
}

.page-contact__value:hover {
    color: #ff8c00;
}

.page-cta {
    padding: 60px 0;
}

.page-cta__container {
    background-color: #ff8c00;
    color: #fff;
    border-radius: 28px;
    padding: 36px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.page-cta__container p {
    font-size: 1.2rem;
    margin: 0;
}

/* Admin */
.admin-body {
    background: #f5f5f5;
    min-height: 100vh;
    font-family: 'Montserrat', 'system-ui', sans-serif;
    margin: 0;
}

.admin-shell__header,
.admin-shell__footer {
    width: 100%;
    box-sizing: border-box;
    padding: 20px 24px;
    display: flex;
    justify-content: center;
}

.admin-shell__header {
    background: rgba(17, 24, 39, 0.85);
    color: #fff;
}

.admin-shell__brand {
    max-width: 960px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    letter-spacing: 0.12em;
}

.admin-shell__logo {
    font-weight: 700;
}

.admin-shell__badge {
    font-size: 0.8rem;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.admin-shell__footer {
    background: transparent;
    color: #777;
    font-size: 0.85rem;
}

.admin-shell__footer p {
    margin: 0;
}

.admin-main {
    width: 100%;
    min-height: 100vh;
    padding: 40px 24px 80px;
    box-sizing: border-box;
}

.admin-main--auth {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 16px;
}

.admin-main--dashboard {
    display: block;
    padding: 50px 24px 80px;
}

.admin-auth {
    background: #fff;
    border-radius: 24px;
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(17, 24, 39, 0.12);
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: min(420px, 100%);
}

.admin-auth__title {
    font-size: 2rem;
    margin: 0;
}

.admin-auth__subtitle {
    margin: 0;
    color: #666;
}

.admin-auth__error {
    background-color: #fbeaea;
    color: #a12b2b;
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 0.95rem;
}

.admin-auth__form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.admin-auth__field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-auth__field label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #555;
}

.admin-auth__field input {
    border: 1px solid #ddd;
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 1rem;
}

.admin-auth__submit {
    width: 100%;
    padding: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
}

.admin-dashboard {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.admin-dashboard__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.admin-dashboard__logout {
    padding: 10px 16px;
}

.admin-dashboard__content {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
    gap: 20px;
    align-items: start;
}

.admin-dashboard__content > .admin-alert {
    grid-column: 1 / -1;
}

.admin-card {
    background: #fff;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 16px 40px rgba(17, 24, 39, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.admin-card--wide {
    grid-column: 1 / -1;
}

.admin-card--info {
    gap: 20px;
}

.admin-card__header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.admin-card__subtitle {
    margin: 6px 0 0;
    color: #6b7280;
    font-size: 0.95rem;
}

.admin-card h2 {
    margin: 0;
    font-size: 1.2rem;
}

.admin-card ul {
    margin: 0;
    padding-left: 18px;
    color: #555;
}

.admin-alert {
    padding: 14px 18px;
    border-radius: 14px;
    font-weight: 500;
    background-color: #f3f4f6;
    color: #374151;
}

.admin-alert--success {
    background-color: #ecfdf5;
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.admin-alert--error {
    background-color: #fef2f2;
    color: #b91c1c;
    border: 1px solid rgba(248, 113, 113, 0.5);
}

.admin-alert--info {
    background-color: #eef2ff;
    color: #4338ca;
    border: 1px solid rgba(99, 102, 241, 0.5);
}

.admin-table-wrapper {
    overflow-x: auto;
}

.admin-table-search {
    margin-top: 12px;
    margin-bottom: 16px;
    display: flex;
    justify-content: flex-end;
}

.admin-table-search label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 0.85rem;
    color: #374151;
}

.admin-table-search input {
    padding: 10px 14px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    background: #fff;
    font-size: 0.95rem;
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-table-search input:focus {
    outline: none;
    border-color: #ff8c00;
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.2);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 640px;
}

.admin-table th,
.admin-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.admin-table thead th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
    background: #f9fafb;
}

.admin-table tbody tr:hover {
    background: rgba(59, 130, 246, 0.04);
}

.admin-table__title {
    font-weight: 600;
    color: #111827;
}

.admin-table__code {
    background: #f3f4f6;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: #1f2937;
}

.admin-table__code--inline {
    display: inline-flex;
    align-items: center;
    margin-left: 8px;
}

.admin-table__meta {
    font-size: 0.9rem;
    color: #6b7280;
}

.admin-table__actions,
.admin-table__col-actions {
    text-align: right;
}

.admin-table__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
}

.admin-table__actions .admin-link {
    font-size: 0.9rem;
}

.admin-table__delete-form {
    margin: 0;
    padding: 0;
}

.admin-table__delete-form button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

.admin-empty {
    padding: 32px;
    text-align: center;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
    color: #6b7280;
}

.admin-summary {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.admin-summary li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #4b5563;
}

.admin-summary li strong {
    font-size: 1.15rem;
    color: #111827;
}

.admin-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.admin-status--active {
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
}

.admin-status--draft {
    background: rgba(234, 179, 8, 0.15);
    color: #92400e;
}

.admin-status--blocked {
    background: rgba(239, 68, 68, 0.12);
    color: #b91c1c;
}

.admin-locale-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.admin-locale-list li {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
}

.admin-locale-list li.is-active {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.admin-locale-list li.is-missing {
    background: rgba(229, 231, 235, 0.6);
    color: #6b7280;
}

.admin-link {
    color: #1d4ed8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.admin-link:hover {
    color: #1e40af;
    text-decoration: underline;
}

.admin-link--muted {
    color: #4b5563;
    font-weight: 500;
}

.admin-link--muted:hover {
    color: #1f2937;
}

.admin-link--danger {
    color: #b91c1c;
    font-weight: 600;
}

.admin-link--danger:hover {
    color: #7f1d1d;
    text-decoration: underline;
}

.admin-badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 8px;
    font-size: 0.7rem;
    border-radius: 999px;
    margin-left: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.admin-badge--primary {
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
}

.admin-content {
    max-width: 1040px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.admin-content__header {
    align-items: flex-start;
}

.admin-content__alert {
    max-width: 1040px;
    margin: 0 auto;
}

.admin-backlink {
    margin: 0 0 6px;
    font-size: 0.9rem;
}

.admin-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.admin-form__section {
    gap: 24px;
}

.admin-form__grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.admin-form__group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.admin-form__group label {
    font-weight: 600;
    color: #111827;
}

.admin-form__group input,
.admin-form__group textarea {
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.admin-form__group input:focus,
.admin-form__group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.admin-form__hint {
    font-size: 0.8rem;
    color: #6b7280;
}

.admin-form__error {
    margin: 0;
    color: #b91c1c;
    font-size: 0.85rem;
    font-weight: 500;
}

.admin-form__group.has-error input,
.admin-form__group.has-error textarea {
    border-color: #f87171;
}

.admin-form__group--checkbox {
    justify-content: center;
}

.admin-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: #111827;
}

.admin-checkbox input {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
}

.admin-tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.admin-tabs__nav {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.admin-tabs__trigger {
    border: 1px solid #d1d5db;
    background: #fff;
    color: #374151;
    padding: 10px 16px;
    border-radius: 999px;
    font-weight: 600;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all 0.2s ease;
}

.admin-tabs__trigger.is-active {
    background: rgba(59, 130, 246, 0.12);
    border-color: #2563eb;
    color: #1d4ed8;
}

.admin-tabs__pane {
    display: none;
    flex-direction: column;
    gap: 18px;
}

.admin-tabs__pane.is-active {
    display: flex;
}


.admin-form__footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding-bottom: 40px;
}

.admin-main--content {
    max-width: 1140px;
    margin: 0 auto;
    padding: 60px 24px;
}

.admin-main--content-form {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 24px 80px;
}

.tox-tinymce {
    border-radius: 16px !important;
}

.tox .tox-toolbar__primary {
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.tox .tox-statusbar {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
}
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0 40px;
    }

    .page-hero h1 {
        font-size: 2.4rem;
    }

    .page-section {
        margin-bottom: 28px;
    }

    .page-cta__container {
        text-align: center;
    }

    .page-cta__container .btn {
        width: 100%;
    }

    .admin-main--dashboard {
        padding: 40px 18px 60px;
    }

    .admin-dashboard__header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-dashboard__content {
        grid-template-columns: 1fr;
    }

    .admin-dashboard__logout {
        align-self: stretch;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .admin-auth {
        padding: 32px 24px;
    }

    .admin-dashboard__content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .home-hero {
        padding: 60px 0 40px;
    }

    .home-search__row {
        grid-template-columns: 1fr;
    }

    .home-search__submit {
        justify-content: center;
    }

    .home-hero__heading {
        font-size: 3rem;
    }

    .home-size__size-btn {
        width: 52px;
        height: 52px;
    }

    .home-cta-card {
        min-height: 220px;
    }

    .site-footer-links__title {
        font-size: 2rem;
    }
}

.home-search__dropdown-toggle {
    border: 1px solid transparent;
    background: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #333;
    padding: 12px 16px;
    border-radius: 15px;
    background-color: #f8f8f8;
    cursor: pointer;
}

.home-search__field--select:focus-within .home-search__dropdown-toggle {
    border: 1px solid #ff8c00;
    background-color: #fff;
}

.icon-caret::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: currentColor;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 320 512'%3E%3Cpath d='M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L160 306.7 54.6 201.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l128 128z'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    transition: transform 0.2s ease;
}

.home-search__dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
    padding: 12px 0;
    display: none;
    z-index: 20;
}

.home-search__dropdown-search {
    padding: 0 18px 10px;
}

.home-search__dropdown-search input {
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 0.9rem;
    text-transform: none;
    letter-spacing: normal;
    background-color: #f8f8f8;
    color: #111;
    box-sizing: border-box;
    transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.home-search__dropdown-search input:focus {
    outline: none;
    border-color: #ff8c00;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 140, 0, 0.2);
}

.home-search__empty--filter {
    text-transform: none;
    letter-spacing: normal;
    font-style: italic;
    color: #6b7280;
}

.home-search__select {
    position: relative;
}

.home-search__select--open .home-search__dropdown {
    display: block;
}

.home-search__select--open .home-search__dropdown-toggle {
    border: 1px solid #ff8c00;
    background-color: #fff;
}

.home-search__select--open .icon-caret::before {
    transform: rotate(180deg);
}

.home-search__dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.home-search__dropdown button {
    width: 100%;
    border: none;
    background: none;
    text-align: left;
    padding: 10px 18px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #333;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.home-search__dropdown button:hover {
    background-color: rgba(255, 140, 0, 0.1);
    color: #ff8c00;
}

.admin-table .dataTables_empty {
    padding: 24px;
}

.admin-table-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.admin-table-top .dataTables_filter {
    margin: 0;
}

.admin-table-top .dataTables_filter label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #6b7280;
}

.admin-table-top .dataTables_filter input {
    border: 1px solid #d1d5db;
    border-radius: 12px;
    padding: 8px 12px;
    font-size: 0.95rem;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.admin-table-top .dataTables_filter input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.admin-table-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 12px;
}

.admin-table-bottom .dataTables_info {
    color: #6b7280;
    font-size: 0.85rem;
    float: none !important;
    padding: 0;
}

.admin-table-bottom .dataTables_paginate {
    margin-left: auto;
}

.dataTables_wrapper .dataTables_paginate {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    float: none !important;
    width: auto;
    padding: 0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    border-radius: 999px !important;
    border: 1px solid transparent !important;
    padding: 6px 12px !important;
    color: #1f2937 !important;
    background: transparent !important;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 0.85rem;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: rgba(37, 99, 235, 0.12) !important;
    border-color: rgba(37, 99, 235, 0.4) !important;
    color: #1d4ed8 !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover {
    color: #9ca3af !important;
    border-color: transparent !important;
    background: transparent !important;
    cursor: default;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    margin: 0 !important;
}

@media (max-width: 640px) {
    .admin-table-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .dataTables_wrapper .dataTables_paginate {
        width: 100%;
        justify-content: space-between;
    }
}
