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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
    background: #e51682;
}

.locations-page {
    background: #e51682;
    min-height: 100vh;
    padding: 0;
}

.locations-canvas {
    width: 100%;
    min-height: 100vh;
    background: #e51682;
    position: relative;
    display: flex;
    flex-direction: column;
}

.locations-header {
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
}

.header-content {
    width: 100%;
    max-width: 800px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.back-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: background 0.2s;
}

.back-button:hover {
    background: rgba(255, 255, 255, 0.2);
}

.locations-header h1 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.locations-main {
    flex: 1;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 24px 20px;
}

.location-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 40px 20px;
    text-align: center;
}

.status-icon {
    font-size: 48px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.status-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
}

.stores-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.store-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #000000;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: slideIn 0.4s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes slideIn {
    to { opacity: 1; transform: translateY(0); }
}

.store-card:hover {
    background: #111111;
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.store-card:active {
    transform: scale(0.98);
}

.store-card-content {
    flex: 1;
}

.store-card-name {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.store-card-distance {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.store-card-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    transition: transform 0.2s, color 0.2s;
}

.store-card:hover .store-card-arrow {
    color: #ffffff;
    transform: translateX(4px);
}

@media (max-width: 480px) {
    .store-card-name {
        font-size: 14px;
    }
    .store-card-distance {
        font-size: 12px;
    }
    .locations-header h1 {
        font-size: 16px;
    }
    .store-card {
        padding: 16px 20px;
    }
}
