/* متغیرهای رنگی برند */
:root {
    --c-primary: #BE7241;
    --c-gold: #C99E33;
    --c-dark-blue: #0A244F;
    --c-beige: #EAE3D3;
    --c-light: #FDF9EE;
}

/* تنظیمات کلی لفاف (Wrapper) */
.hc-auth-wrapper {
    font-family: Tahoma, Arial, sans-serif; /* فونت پیش‌فرض در صورت نبود فونت سایت */
    color: var(--c-dark-blue);
    line-height: 1.8;
    padding: 1rem;
    border-radius: 24px;
}

/* هدر صفحه ارسال */
.hc-auth-shipping-hero {
    display: flex;
    flex-direction: column-reverse;
    gap: 2rem;
    align-items: center;
    background-color: #ffffff;
    border-radius: 24px;
    padding: 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.hc-auth-hero-content {
    flex: 1;
}

.hc-auth-title {
    color: var(--c-primary);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hc-auth-text {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1rem;
}

.hc-auth-hero-image-wrapper {
    flex: 1;
    width: 100%;
}

.hc-auth-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* بخش فرآیند */
.hc-auth-process-section {
    padding: 2rem 0;
}

.hc-auth-section-title {
    text-align: center;
    color: var(--c-dark-blue);
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
}

/* تایم‌لاین (خط زمانی فرآیند) */
.hc-auth-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
}

/* خط عمودی رابط مراحل */
.hc-auth-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 28px; /* موقعیت خط در راست چین */
    width: 2px;
    background-color: var(--c-beige);
    z-index: 1;
}

/* کارت‌های هر مرحله */
.hc-auth-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    align-items: flex-start;
}

/* شماره‌گذاری مراحل */
.hc-auth-step-number {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    background-color: var(--c-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px; /* گردی 24 پیکسل حتی برای آیکون‌ها/شماره‌ها */
    font-size: 1.4rem;
    font-weight: bold;
    border: 4px solid var(--c-light);
    box-shadow: 0 4px 10px rgba(190, 114, 65, 0.3);
}

/* محتوای متنی مراحل */
.hc-auth-step-content {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    flex: 1;
    border: 1px solid var(--c-beige);
}

.hc-auth-step-title {
    color: var(--c-gold);
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

/* انیمیشن ظاهر شدن هنگام اسکرول */
.hc-auth-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.hc-auth-fade-up.hc-auth-visible {
    opacity: 1;
    transform: translateY(0);
}

/* واکنش‌گرایی برای مانیتورهای بزرگتر */
@media (min-width: 768px) {
    .hc-auth-shipping-hero {
        flex-direction: row;
        padding: 3rem;
    }
    
    .hc-auth-title {
        font-size: 2.2rem;
    }

    .hc-auth-step-content {
        padding: 2rem;
    }
}
