:root {
    --bg-canvas: #ffffff;
    --surface-input: #f5f5f5;
    --text-primary: #000000;
    --text-secondary: #8e8e93;
    --action-primary: #000000;
    --action-text: #ffffff;
    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--font-stack);
    letter-spacing: -0.2px;
}

body {
    background-color: var(--bg-canvas);
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 24px;
    overflow-x: hidden;
}

.app-window {
    width: 100%;
    max-width: 360px;
    position: relative;
}

.app-branding {
    text-align: center;
    font-size: 38px;
    font-weight: 900;
    font-style: italic;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    margin-bottom: 60px;
}

.view-header {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin-bottom: 20px;
}

.margin-top-24 { margin-top: 24px; }
.margin-top-12 { margin-top: 12px; }

.input-wrapper {
    position: relative;
    width: 100%;
}

.input-wrapper input {
    width: 100%;
    height: 56px;
    background-color: var(--surface-input);
    border: none;
    outline: none;
    padding: 0 20px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
}

.input-wrapper input::placeholder {
    color: var(--text-secondary);
}

.password-toggle {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    cursor: pointer;
}

/* --- Toggle Button Setup --- */
.location-toggle-container {
    display: flex;
    background-color: var(--surface-input);
    padding: 4px;
    border-radius: 14px;
    width: 100%;
    gap: 4px;
}

.location-toggle-option {
    flex: 1;
    cursor: pointer;
}

.location-toggle-option input {
    display: none;
}

.toggle-custom-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 44px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all 0.2s ease;
}

.location-toggle-option input:checked + .toggle-custom-button {
    background-color: #000000;
    color: #ffffff;
}

/* --- Clean Premium Wave Announcement Badge Layout --- */
.marquee-announcement-bar {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-align: center;
    animation: premiumWaveSequence 15s ease-in-out infinite;
}

.marquee-announcement-bar i {
    margin-right: 6px;
}

@keyframes premiumWaveSequence {
    0% { 
        opacity: 0; 
        transform: translateY(8px); 
    }
    3.3% { 
        opacity: 1; 
        transform: translateY(0); 
    }
    36.6% { 
        opacity: 1; 
        transform: translateY(0); 
    }
    40% { 
        opacity: 0; 
        transform: translateY(-4px); 
    }
    100% { 
        opacity: 0; 
        transform: translateY(0);
    }
}

/* --- Specific Location Storefront Badge Layout --- */
.specific-location-announcement {
    width: 100%;
    background-color: #f5f5f5;
    color: #000000;
    border-bottom: 1px solid #ededed;
    padding: 12px 16px;
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.specific-location-announcement i {
    color: #ff3b30;
}

/* --- Avatar Configuration Components --- */
.profile-avatar-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.avatar-interactive-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
    cursor: pointer;
}

.avatar-interactive-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000000;
}

.avatar-fallback {
    width: 100%;
    height: 100%;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 38px;
    font-weight: 700;
}

.avatar-plus-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background-color: #000000;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-action {
    position: relative;
    width: 100%;
    height: 56px;
    background-color: var(--action-primary);
    color: var(--action-text);
    border: none;
    border-radius: 28px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.view-switcher-link {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 24px;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* --- Fixed Top Left Navigation Layer --- */
.dashboard-top-bar-left {
    position: fixed;
    top: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 1000;
}

.user-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    background-color: var(--surface-input);
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
}

.mini-avatar-container {
    width: 28px;
    height: 28px;
    position: relative;
}

.mini-avatar-container img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.mini-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #000000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.profile-dropdown {
    margin-top: 8px;
    background: #ffffff;
    border: 1px solid #ededed;
    border-radius: 12px;
    width: 120px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    overflow: hidden;
}

.dropdown-item {
    padding: 12px;
    font-size: 13px;
    font-weight: 600;
    color: #ff3b30;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* --- Fixed Top Center Title Area --- */
.dashboard-top-center-header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    max-width: 280px;
    z-index: 900;
}

.section-center-title {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.4px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.empty-products-notice {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-secondary);
}

/* --- Dashboard Scrollable Matrix Deck Area --- */
.dashboard-scrollable-workspace-deck {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 40px;
    gap: 20px;
}

.create-product-card-dark {
    width: 100%;
    max-width: 320px;
    background-color: #000000;
    border: 2px solid #000000;
    border-radius: 24px;
    padding: 34px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    cursor: pointer;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.2s;
}

.create-product-card-dark:hover {
    background-color: #1c1c1e;
    border-color: #1c1c1e;
    transform: translateY(-4px) scale(1.01);
}

.card-circle-plus-white {
    width: 44px;
    height: 44px;
    background-color: #ffffff;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.card-action-text-white {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* --- Dynamically Generated Creator Feed Product Cards --- */
.creator-products-rendered-list-stack {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.rendered-product-card-node {
    width: 100%;
    max-width: 320px;
    background-color: #ffffff;
    border: 1px solid #e5e5ea;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.03);
    animation: scaleUpCard 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-thumbnail-square {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    background-color: var(--surface-input);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
}

.product-card-thumbnail-square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-meta-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4px;
}

.title-and-edit-badge-group {
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 70%;
}

.product-card-meta-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-card-inline-edit-trigger {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 13px;
    padding: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s;
}

.btn-card-inline-edit-trigger:hover {
    color: var(--text-primary);
}

.product-card-meta-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    white-space: nowrap;
}

.product-card-actions-row {
    display: flex;
    gap: 10px;
    width: 100%;
}

.btn-customer-view-action {
    flex: 1;
    height: 44px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 22px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: background-color 0.2s;
}

.btn-customer-view-action:hover {
    background-color: #1c1c1e;
}

/* --- Share Trigger Button Sub-spec --- */
.btn-card-share-trigger {
    width: 44px;
    height: 44px;
    background-color: #f5f5f5;
    color: #000000;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s;
}

.btn-card-share-trigger:hover {
    background-color: #e5e5ea;
}

.btn-card-delete-trigger {
    width: 44px;
    height: 44px;
    background-color: #f5f5f5;
    color: #ff3b30;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color 0.2s;
}

.btn-card-delete-trigger:hover {
    background-color: #ffeef0;
}

/* --- Inline Title Editor Elements --- */
.inline-editable-title-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
}

#editable-product-title-input {
    font-size: 20px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text-primary);
    border: none;
    background: transparent;
    outline: none;
    width: 100%;
    max-width: 190px;
    padding: 2px 0;
}

#editable-product-title-input:not(:disabled) {
    border-bottom: 2px solid var(--text-primary);
}

.btn-title-pencil-edit {
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    font-size: 15px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

/* --- Product Domain Workspace Layout Subsystem --- */
.domain-setup-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: -4px;
}

.btn-quick-copy-badge {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.custom-domain-row-input-group {
    display: flex;
    align-items: center;
    background-color: var(--surface-input);
    border-radius: 14px;
    height: 56px;
    padding: 0 16px;
    width: 100%;
}

.domain-prefix-protocol-badge,
.domain-suffix-root-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    white-space: nowrap;
}

.domain-core-box {
    flex: 1;
    padding: 0 4px;
}

.domain-core-box input {
    height: 100% !important;
    padding: 0 !important;
    background: transparent !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-align: center;
}

/* --- Core Photo Box Grid Alignment Specs --- */
#product-create-view {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    animation: slideUpView 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.creator-header-navigation {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    margin-bottom: 24px;
}

.btn-icon-back {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--surface-input);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.creator-scroll-body { width: 100%; display: flex; flex-direction: column; }

.product-square-photo-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--surface-input);
    border: 2px dashed #d1d1d6;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-square-photo-box img { width: 100%; height: 100%; object-fit: cover; }
.photo-box-placeholder { display: flex; flex-direction: column; align-items: center; gap: 10px; color: var(--text-secondary); font-size: 13px; font-weight: 600; }
.placeholder-icon { font-size: 28px; color: var(--text-primary); }

.input-field-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-secondary); margin-left: 4px; margin-top: 6px; }
.price-input-row-group { display: flex; gap: 12px; width: 100%; margin-bottom: 4px; }
.currency-dropdown-selector { width: 90px; height: 56px; background-color: var(--surface-input); border: none; outline: none; border-radius: 14px; padding: 0 12px; font-size: 13px; font-weight: 700; color: var(--text-primary); cursor: pointer; -webkit-appearance: none; }
.decimal-input-box { flex: 1; }

.guided-textarea-field { width: 100%; min-height: 110px; background-color: var(--surface-input); border: none; outline: none; padding: 18px 20px; border-radius: 16px; font-size: 14px; font-weight: 500; line-height: 1.5; color: var(--text-primary); resize: none; }
.guided-textarea-field.placeholder-mode { color: var(--text-secondary); font-weight: 400; }

.whatsapp-input-row-group { display: flex; gap: 12px; width: 100%; }
.whatsapp-brand-prefix { width: 100px; height: 56px; background-color: var(--surface-input); border-radius: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 15px; font-weight: 700; color: var(--text-primary); }
.whatsapp-field-icon { font-size: 18px; color: #25d366; }
.phone-input-box { flex: 1; }

/* --- CROPPING MODAL SPECIFIC STYLING --- */
.cropper-modal-card {
    max-width: 350px !important;
}
.cropper-container-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #ededed;
    overflow: hidden;
    border-radius: 14px;
    margin-top: 14px;
}
.cropper-container-frame img {
    max-width: 100%;
    display: block;
}

/* --- IMMERSIVE STOREFRONT PREVIEW SCREEN --- */
.storefront-page-view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-canvas);
    z-index: 5000;
    display: flex;
    flex-direction: column;
    animation: slideUpView 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.storefront-navigation-header {
    width: 100%;
    height: 64px;
    background-color: #ffffff;
    border-bottom: 1px solid #ededed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
}

.btn-exit-storefront {
    height: 38px;
    padding: 0 16px;
    border-radius: 19px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.storefront-header-title {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #000000;
}

.storefront-scroll-body {
    flex: 1;
    overflow-y: auto;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    background-color: #ffffff;
    padding-bottom: 84px;
}

.storefront-hero-image-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: var(--surface-input);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.storefront-hero-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stock-count-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #000000;
    color: #ffffff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    border-radius: 8px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 10;
}

.storefront-premium-details-card {
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
}

.promo-urgency-banner {
    background-color: #f5f5f5;
    color: #000000;
    border-left: 3px solid #000000;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 0 8px 8px 0;
    margin-bottom: 16px;
}

.storefront-premium-details-card h1 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: #000000;
    margin-bottom: 12px;
}

.storefront-pricing-flexbox {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.storefront-price-tag {
    font-size: 24px;
    font-weight: 900;
    color: #000000;
}

.storefront-old-price-tag {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: line-through;
}

.storefront-discount-badge {
    background-color: #ff3b30;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
}

.storefront-section-divider {
    border: none;
    border-top: 1px solid #ededed;
    margin: 20px 0;
}

.storefront-body-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.storefront-description-paragraph {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    color: #000000;
    white-space: pre-wrap;
    margin-bottom: 30px;
}

/* --- STICKY CALL-TO-ACTION CONTAINER SYSTEM --- */
.storefront-sticky-action-container {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 360px;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 16px 20px 16px;
    border-top: 1px solid rgba(237, 237, 237, 0.8);
    z-index: 5100;
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.04);
}

.btn-storefront-whatsapp-action {
    width: 100%;
    height: 54px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 27px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transition: background-color 0.2s;
}

.btn-storefront-whatsapp-action:hover {
    background-color: #1c1c1e;
}

/* --- CUSTOM UNIQUE MONOCHROME DIALOG OVERLAY --- */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.custom-modal-card {
    background-color: #ffffff;
    width: 100%;
    max-width: 320px;
    border-radius: 24px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    animation: scaleUpCard 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-alert-icon {
    width: 56px;
    height: 56px;
    background-color: #ffeef0;
    color: #ff3b30;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin: 0 auto 16px auto;
}

.custom-modal-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: #000000;
    margin-bottom: 8px;
}

.custom-modal-card p {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.modal-button-row {
    display: flex;
    gap: 12px;
    width: 100%;
}

.btn-modal-secondary {
    flex: 1;
    height: 48px;
    background-color: #f5f5f5;
    color: #000000;
    border: none;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.btn-modal-primary {
    flex: 1;
    height: 48px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.hidden { display: none !important; }

.animation-fade-in {
    animation: fadeInAnimation 0.2s ease-out forwards;
}

@keyframes fadeInAnimation {
    from { opacity: 0; transform: translateY(-4px); }
    to { opacity: 1; transform: translateY(0); }
}

.wave-loader { display: flex; gap: 6px; }
.wave-dot { width: 8px; height: 8px; background-color: var(--action-text); border-radius: 50%; animation: waveMovement 1.2s infinite ease-in-out; }
.wave-dot:nth-child(2) { animation-delay: 0.2s; }
.wave-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes waveMovement { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.toast-system { position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%); background-color: #000000; color: #ffffff; padding: 14px 24px; border-radius: 30px; font-size: 13px; font-weight: 600; z-index: 6000; opacity: 0; visibility: hidden; transition: all 0.3s ease; }
.toast-system.visible { opacity: 1; visibility: visible; }

@keyframes slideUpView {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes scaleUpCard {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}
