/* WRAPPER */
.wrap {
    width: 100%;
    max-width: 560px;
    margin: auto;
}

/* HERO */
/* ======== FIX HERO ======== */

.hero {
    display: flex !important;
    align-items: center;
    gap: 14px;
    margin: 12px 0 24px;
}

.badge {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand .name {
    font-size: 28px;
    font-family: 'Great Vibes', cursive;
    color: var(--accent);
    white-space: nowrap;
    /* FIX không cho xuống dòng */
}

.brand .tag {
    font-size: 13px;
    margin-top: 4px;
    color: var(--muted);
    white-space: nowrap;
    /* FIX */
}

/* CARD TITLE */
.title {
    font-size: 18px;
    color: #8a6f66;
    margin-bottom: 10px;
}

/* INFO ROWS */
.info {
    margin-top: 10px;
    display: grid;
    gap: 10px;
}

.row {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    border: 1px solid #dcccbc;
}

/* PHONE INPUT */
#phoneInput {
    width: 80%;
    max-width: 300px;
    padding: 14px;
    font-size: 18px;
    border-radius: 12px;
    border: 1px solid #cbb8a4;
}

/* TICK BUTTON */
#tickBtn {
    margin-top: 16px;
}

/* FADE IN */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media(max-width:600px) {
    .brand .name {
        font-size: 28px;
    }
}