/* PP PHONE Home — wireframe hero */

.home-hero {
    padding: 2rem 1.25rem 2.5rem;
    max-width: 36rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.home-logo-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    border-radius: 2rem;
    border: 1px solid rgba(229, 184, 66, 0.35);
    background: linear-gradient(180deg, rgba(34, 37, 46, 0.9) 0%, rgba(24, 26, 32, 0.95) 100%);
    box-shadow: 0 0 40px -10px rgba(229, 184, 66, 0.15);
}

.home-logo-wrap img {
    width: auto;
    height: 10rem;
    max-width: 100%;
    object-fit: contain;
}

@media (min-width: 640px) {
    .home-hero {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
        gap: 1.5rem;
    }

    .home-logo-wrap {
        padding: 2.5rem 2rem;
        border-radius: 2.5rem;
    }

    .home-logo-wrap img {
        height: 13.75rem;
    }
}

.home-benefits-capsule {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    border: 1px solid #2E323E;
    background: rgba(34, 37, 46, 0.8);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.home-benefits-capsule::-webkit-scrollbar {
    display: none;
}

.home-benefit-item {
    flex-shrink: 0;
    font-size: 0.6875rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    letter-spacing: 0.02em;
}

@media (min-width: 640px) {
    .home-benefit-item {
        font-size: 0.75rem;
    }
}

.home-benefit-divider {
    flex-shrink: 0;
    margin: 0 0.5rem;
    color: rgba(229, 184, 66, 0.5);
    font-weight: 300;
    user-select: none;
}

@media (min-width: 640px) {
    .home-benefit-divider {
        margin: 0 0.75rem;
    }
}

.home-branches {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

@media (min-width: 640px) {
    .home-branches {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

.home-branch-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 5.5rem;
    padding: 1.25rem 1rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(229, 184, 66, 0.35);
    background: linear-gradient(135deg, rgba(243, 210, 121, 0.12) 0%, rgba(229, 184, 66, 0.06) 100%);
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.home-branch-btn:hover {
    transform: translateY(-2px);
    border-color: rgba(229, 184, 66, 0.6);
    box-shadow: 0 12px 32px -8px rgba(229, 184, 66, 0.25);
}

.home-branch-btn-title {
    font-family: 'Noto Serif Lao', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #E5B842;
}

@media (min-width: 640px) {
    .home-branch-btn-title {
        font-size: 1.25rem;
    }
}

.home-branch-btn-sub {
    margin-top: 0.25rem;
    font-size: 0.6875rem;
    color: #9EA4B0;
}

.home-store {
    width: 100%;
    padding-top: 0.5rem;
}

.home-store-heading {
    font-family: 'Noto Serif Lao', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 1rem;
}

.home-store-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.875rem;
}

@media (min-width: 640px) {
    .home-store-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
}

.home-store-card {
    padding: 1.25rem;
    border-radius: 1rem;
    border: 1px solid #2E323E;
    background: rgba(34, 37, 46, 0.6);
}

.home-store-card-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #E5B842;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #2E323E;
}

.home-store-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.home-store-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #9EA4B0;
    line-height: 1.5;
}

.home-store-list li::before {
    content: '';
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    margin-top: 0.45rem;
    border-radius: 50%;
    background: #E5B842;
}

.home-store-list li strong {
    color: #fff;
    font-weight: 600;
}
