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

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

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

.canvas {
    width: 300px;
    height: 250px;
    background: #FFD700;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.dt-logo {
    position: absolute;
    top: -7px;
    right: 0px;
    z-index: 10;
}

.dt-logo:hover {
    opacity: 1;
}

.image-section {
    flex: 1;
    overflow: hidden;
}

.bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.info-section {
    background: rgba(0, 0, 0, 0);
    top: 178px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    position: absolute;
    z-index: 10;
    width: 300px;
    display: flex;
    flex-direction: column;
}

.tap-hint {
    background: rgba(0, 0, 0, 0);
    color: #fff;
    font-size: 11px;
    padding: 6px 0;
    margin-top: 4px;
    font-weight: 500;
}

.store-info {
    margin-bottom: 2px;
}

.store-intro {
    color: #fff;
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 0px;
}

.store-name {
    color: #FFD700;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: -3px;
}

.store-distance-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.distance-dot {
    position: absolute;
    top: 228px;
    left: 65%;
    width: 13px;
    height: 13px;
    background: #ffffff;
    border-radius: 50%;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: livePulse 2s infinite ease-in-out;
}

.distance-dot::after {
    content: '𖦏';
    color: #000000;
    font-size: 11px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
}

@keyframes livePulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 5px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.store-distance {
    color: #FFD700;
    font-size: 9px;
    font-weight: 400;
}

.locations-page {
    background: #ffffff;
    min-height: auto;
    padding: 0;
}

.locations-canvas {
    width: 300px;
    height: 250px;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

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

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

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

.locations-main {
    padding: 12px;
}

.location-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 10px 10px;
    text-align: center;
}

.status-icon {
    font-size: 24px;
    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: 12px;
}

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

.store-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 8px 10px;
    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: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateX(3px);
}

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

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

.store-card-name {
    color: #FFD700;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 2px;
}

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

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

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