/* ══════════════════════════════════════
   TOAST
══════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
    background: var(--brown);
    color: var(--cream);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 0.82rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-lg);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100vw - 48px);
}
.toast.show {
    transform: translateY(0);
    opacity: 1;
}
.toast.error {
    background: var(--red);
}
.toast svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ══════════════════════════════════════
   CROP MODAL
══════════════════════════════════════ */
.crop-overlay {
    position: fixed;
    inset: 0;
    z-index: 300;
    background: rgba(30, 20, 12, 0.7);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.crop-overlay.open {
    opacity: 1;
}
.crop-modal {
    background: #fff;
    border-radius: calc(var(--radius) * 1.5);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    overflow: hidden;
    transform: translateY(16px);
    transition: transform 0.3s ease;
}
.crop-overlay.open .crop-modal {
    transform: translateY(0);
}
.crop-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    border-bottom: 1px solid var(--cream-d);
}
.crop-header h3 {
    font-family: "Cormorant Garamond", serif;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--txt);
}
.crop-ratio-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--terra);
    background: var(--terra-bg);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}
.crop-container {
    max-height: 60vh;
    overflow: hidden;
    background: var(--cream-d);
}
.crop-container img {
    display: block;
    max-width: 100%;
}
.crop-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 16px 24px;
    border-top: 1px solid var(--cream-d);
}
.crop-cancel {
    background: transparent !important;
    color: var(--txt-l) !important;
    border: 1px solid var(--cream-d) !important;
}
.crop-cancel:hover {
    background: var(--cream-d) !important;
}
.crop-confirm {
    background: var(--terra) !important;
    color: #fff !important;
    border: none !important;
}
.crop-confirm:hover {
    background: var(--terra-l) !important;
}

