:root {
    --orange-primary: #f97316;
    --orange-deep: #ea580c;
    --orange-light: #fb923c;
    --orange-pale: #fed7aa;
    --orange-bg: #fff7ed;
    --white: #ffffff;
    --text-dark: #431407;
    --text-medium: #7c2d12;
    --text-light: #9a3412;
    --shadow-sm: 0 1px 2px rgba(249, 115, 22, 0.08);
    --shadow-md: 0 8px 24px rgba(249, 115, 22, 0.15);
    --shadow-lg: 0 16px 48px rgba(249, 115, 22, 0.22);
    --shadow-xl: 0 24px 64px rgba(249, 115, 22, 0.18);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: linear-gradient(160deg, #fff7ed 0%, #ffedd5 25%, #fed7aa 50%, #ffedd5 75%, #fff7ed 100%);
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 15% 20%, #f97316 2px, transparent 2px),
        radial-gradient(circle at 10% 25%, #f97316 1.5px, transparent 1.5px),
        radial-gradient(circle at 12% 22%, #f97316 1.8px, transparent 1.8px),
        radial-gradient(ellipse at 20% 23%, #f97316 3px 2px, transparent 3px),
        radial-gradient(circle at 78% 70%, #f97316 2.2px, transparent 2.2px),
        radial-gradient(circle at 73% 75%, #f97316 1.6px, transparent 1.6px),
        radial-gradient(circle at 75% 72%, #f97316 1.9px, transparent 1.9px),
        radial-gradient(ellipse at 83% 73%, #f97316 3.2px 2.2px, transparent 3.2px),
        radial-gradient(circle at 40% 85%, #f97316 1.8px, transparent 1.8px),
        radial-gradient(circle at 35% 90%, #f97316 1.4px, transparent 1.4px),
        radial-gradient(circle at 37% 87%, #f97316 1.6px, transparent 1.6px),
        radial-gradient(ellipse at 45% 88%, #f97316 2.8px 1.8px, transparent 2.8px),
        radial-gradient(circle at 60% 15%, #f97316 2px, transparent 2px),
        radial-gradient(circle at 55% 20%, #f97316 1.5px, transparent 1.5px),
        radial-gradient(circle at 57% 17%, #f97316 1.7px, transparent 1.7px),
        radial-gradient(ellipse at 65% 18%, #f97316 3px 2px, transparent 3px);
    background-size: 200px 200px, 200px 200px, 200px 200px, 200px 200px;
}

.bg-decoration {
    position: fixed;
    pointer-events: none;
    z-index: 0;
    border-radius: 50%;
    opacity: 0.06;
    background: #f97316;
    animation: floatAround 20s ease-in-out infinite;
}
.bg-decoration.circle-1 { width: 280px; height: 280px; top: -100px; right: -80px; animation-delay: 0s; animation-duration: 22s; }
.bg-decoration.circle-2 { width: 180px; height: 180px; bottom: -60px; left: -50px; animation-delay: -5s; animation-duration: 18s; opacity: 0.04; }
.bg-decoration.circle-3 { width: 120px; height: 120px; top: 40%; left: 5%; animation-delay: -11s; animation-duration: 25s; opacity: 0.05; }
.bg-decoration.circle-4 { width: 200px; height: 200px; bottom: 15%; right: 10%; animation-delay: -8s; animation-duration: 20s; opacity: 0.03; }

@keyframes floatAround {
    0%,100% { transform: translate(0, 0) scale(1); }
    15% { transform: translate(30px, -25px) scale(1.05); }
    30% { transform: translate(-20px, 15px) scale(0.96); }
    45% { transform: translate(25px, 30px) scale(1.04); }
    60% { transform: translate(-30px, -20px) scale(0.97); }
    75% { transform: translate(15px, -30px) scale(1.03); }
    90% { transform: translate(-25px, 10px) scale(0.98); }
}

.main-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 650px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 36px 36px;
    box-shadow: var(--shadow-xl), var(--shadow-lg);
    text-align: center;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(249, 115, 22, 0.08);
    animation: fadeInUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

.main-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px rgba(249, 115, 22, 0.24), 0 18px 40px rgba(249, 115, 22, 0.16);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.top-accent {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, #fb923c, #f97316, #ea580c);
    border-radius: 0 0 8px 8px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 18px;
    transition: color var(--transition);
}
.back-link:hover {
    color: var(--orange-deep);
}
.back-link svg {
    width: 18px;
    height: 18px;
}

.logo-icon {
    display: inline-block;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 8px rgba(249, 115, 22, 0.2));
}
.logo-icon svg {
    width: 60px;
    height: 60px;
}

.title {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
}
.title .accent {
    color: #f97316;
    position: relative;
}
.title .accent::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #fed7aa;
    border-radius: 3px;
    z-index: -1;
    opacity: 0.7;
}

.subtitle {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 24px;
    font-weight: 500;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #fb923c, #f97316, #fb923c, transparent);
    margin: 0 auto 24px;
    border-radius: 2px;
    opacity: 0.7;
}

.address-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    text-align: left;
    margin-bottom: 10px;
}

.address-card {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    border: 1px solid rgba(249, 115, 22, 0.18);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
}

.address-card:hover {
    background: #fff7ed;
    border-color: #fb923c;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.address-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(145deg, #fb923c, #f97316);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.35);
}
.address-icon svg {
    width: 22px;
    height: 22px;
}

.address-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.store-name {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}
.store-address {
    font-size: 0.88rem;
    color: var(--text-medium);
    line-height: 1.4;
}

.map-hint {
    font-size: 0.7rem;
    color: var(--text-light);
    opacity: 0.7;
    margin-top: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.footer-note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Адаптивность */
@media (max-width: 600px) {
    .main-container {
        padding: 28px 18px 24px;
        border-radius: var(--radius-lg);
    }
    .title {
        font-size: 1.5rem;
    }
    .address-card {
        padding: 14px 12px;
        gap: 12px;
    }
    .address-icon {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    .address-icon svg {
        width: 18px;
        height: 18px;
    }
    .store-name {
        font-size: 0.9rem;
    }
    .store-address {
        font-size: 0.82rem;
    }
    .logo-icon svg {
        width: 50px;
        height: 50px;
    }
    .back-link {
        font-size: 0.82rem;
    }
}

@media (max-width: 380px) {
    .main-container {
        padding: 22px 12px 18px;
        border-radius: var(--radius-md);
    }
    .title {
        font-size: 1.3rem;
    }
    .address-card {
        padding: 12px 10px;
        gap: 10px;
    }
    .address-icon {
        width: 32px;
        height: 32px;
    }
    .address-icon svg {
        width: 16px;
        height: 16px;
    }
    .store-name {
        font-size: 0.82rem;
    }
    .store-address {
        font-size: 0.75rem;
    }
}