/* Basic layout */
.hencut-body {
    background: #f5f5f5;
}

/* Hero */
.hero-section {
    padding: 3rem 0 2.5rem;
}
@media (min-width: 768px) {
    .hero-section {
        padding: 4rem 0;
    }
}
.hero-image-wrapper img {
    max-height: 320px;
    object-fit: cover;
}

/* Steps */
.step-card {
    background: #fff;
    border-radius: 1rem;
    padding: 1rem 1.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.03);
}
.step-number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #FF6A00;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

/* Map */
.hencut-map {
    width: 100%;
    height: 60vh;
    min-height: 360px;
    border-radius: 1rem;
    overflow: hidden;
}

/* Products */
.product-card {
    border-radius: 1rem;
    overflow: hidden;
}
.product-img {
    width: 100%;
    height: 160px;
    object-fit: contain;
    background: #fff;
}
.product-img-placeholder {
    width: 100%;
    height: 160px;
    background: #eee;
    font-size: 0.8rem;
}

/* Track order */
.stage-pill {
    display: inline-block;
    color: #fff;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
}
.stage-bar {
    display: flex;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.stage-step {
    flex: 1;
    text-align: center;
    font-size: 0.7rem;
    color: #bbb;
    position: relative;
}
.stage-step::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: #ddd;
    transform: translateX(-50%);
    z-index: 0;
}
.stage-step:first-child::before {
    left: 50%;
    width: 50%;
}
.stage-step:last-child::before {
    width: 50%;
}
.stage-dot {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    background: #ddd;
    margin: 0 auto 0.25rem;
    z-index: 1;
    position: relative;
}
.stage-step.active .stage-dot {
    background: #FF6A00;
}
.stage-step.active {
    color: #444;
}
.stage-label {
    white-space: nowrap;
}
