/* ============================
   SHARED COMPONENTS
   ============================ */

/* Section tag label (uppercase small heading) */
.section-tag {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 5%;
    text-transform: uppercase;
    color: #4B698C;
    margin: 0 0 8px;
}

/* Section main title */
.section-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 44px;
    color: var(--color-text);
    margin: 0;
}

/* Vertical divider */
.divider-vertical {
    width: 0;
    height: 100%;
    border: none;
    border-left: 1px solid #D2D2D2;
    margin: 0;
}

/* Card white with shadow */
.card-shadow {
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0px 8px 100px 0px #00000012;
}

/* Form input base */
.input-base {
    width: 100%;
    height: 52px;
    padding: 14px 21px;
    border: 1px solid #E3E3E3;
    border-radius: 14px;
    background: #F9FAFB;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text);
    outline: none;
    transition: border-color var(--transition-fast);
}

.input-base:focus {
    border-color: var(--color-active);
}

.input-base::placeholder {
    color: #BBBBBB;
}

.textarea-base {
    width: 100%;
    min-height: 120px;
    padding: 14px 21px;
    border: 1px solid #E3E3E3;
    border-radius: 14px;
    background: #F9FAFB;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: var(--color-text);
    outline: none;
    resize: vertical;
    transition: border-color var(--transition-fast);
}

.textarea-base:focus {
    border-color: var(--color-active);
}

/* Button primary (red) */
.btn-primary-red {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    min-width: 64px;
    padding: 0 24px;
    border: none;
    border-radius: 100px;
    background: #C30608;
    color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    cursor: pointer;
    text-decoration: none;
    transition: opacity var(--transition-fast);
    margin-top: 10px;
}

.btn-primary-red:hover {
    opacity: 0.9;
}

.btn-primary-red img {
    width: 24px;
    height: 24px;
    display: block;
    flex-shrink: 0;
}

/* ============================
   TOAST NOTIFICATION STYLES
   ============================ */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
    max-width: 420px;
    width: calc(100% - 48px);
}

.toast-item {
    pointer-events: auto;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    border-radius: 16px;
    background: #FFFFFF;
    box-shadow: 0 12px 36px -4px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transform: translateX(120%);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-item.toast-show {
    transform: translateX(0);
    opacity: 1;
}

.toast-item.toast-hide {
    transform: translateX(120%);
    opacity: 0;
}

.toast-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.toast-item--success .toast-icon {
    background: #ECFDF5;
    color: #10B981;
}

.toast-item--error .toast-icon {
    background: #FEF2F2;
    color: #EF4444;
}

.toast-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-title {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: #1E293B;
    margin: 0;
}

.toast-message {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #64748B;
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    padding: 4px;
    color: #94A3B8;
    cursor: pointer;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, background 0.2s ease;
}

.toast-close:hover {
    color: #1E293B;
    background: #F1F5F9;
}
