.phone-container {
    width: 375px;
    height: 812px;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Status Bar */
.status-bar {
    height: 44px;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    font-size: 17px;
    font-weight: 600;
}

.status-left {
    color: black;
}

.status-right {
    display: flex;
    align-items: center;
    gap: 6px;
}

.signal-bars {
    display: flex;
    gap: 2px;
    align-items: end;
}

.bar {
    width: 3px;
    background: black;
    border-radius: 1px;
}

.bar:nth-child(1) { height: 4px; }
.bar:nth-child(2) { height: 6px; }
.bar:nth-child(3) { height: 8px; }
.bar:nth-child(4) { height: 10px; }

.battery-icon {
    width: 24px;
    height: 12px;
    border: 1px solid black;
    border-radius: 2px;
    position: relative;
    background: white;
}

.battery-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 11px;
    width: 23px;
    background: black;
    border-radius: 1px;
}

.battery-icon::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 3px;
    width: 2px;
    height: 6px;
    background: black;
    border-radius: 0 1px 1px 0;
}

/* Header */
.header-phone {
    height: 60px;
    background: white;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 12px;
}

.back-arrow {
    width: 24px;
    height: 29px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #666;
}

.company-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
}

.company-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-info {
    flex: 1;
}

.company-name {
    font-size: 16px;
    font-weight: 600;
    color: black;
}

.header-actions {
    display: flex;
    gap: 16px;
}

.header-icon {
    width: 24px;
    height: 26px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-content-Rcs {
    height: calc(100% - 104px - 80px);
    background: linear-gradient(180deg, #f8f9ff, #e3f2fd);
    overflow-y: auto;
    position: relative;
}

.brand-section {
    background: transparent;
    padding: 40px 16px;
    text-align: center;
}

.brand-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 16px;
    position: relative;
}

.logo-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: white;
    margin: 0 auto;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.verification-badge {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 28px;
    height: 32px;
}

.verification-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-tagline {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    max-width: 280px;
    margin: 0 auto;
}

.message-time {
    margin: 20px 0;
    text-align: center;
    font-size: 12px;
    color: #999;
}

.message-bubble {
    background: white;
    border-radius: 16px 16px 0px 0px;
    padding: 16px;
    margin: 0 16px 0 16px;
    position: relative;
    z-index: 2;
    max-width: calc(100% - 32px);
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.chat-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    overflow-x: hidden;
}

.message-bubble-wrapper {
    width: 100%;
    display: block;
    max-width: 100%;
    overflow-x: hidden;
    word-wrap: break-word;
}

.empty-preview {
    width: 100%;
    text-align: center;
    padding: 2rem 1rem;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Bottom Bar */
.bottom-bar {
    background: white;
    border-top: 1px solid #e0e0e0;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 20px;
}

.input-container {
    flex: 1;
    display: flex;
    align-items: center;
    background: #f5f5f5;
    border-radius: 20px;
    padding: 8px 12px;
    gap: 8px;
}

.emoji {
    font-size: 18px;
}

.message-placeholder {
    color: #666;
    font-size: 14px;
    flex: 1;
}

.mic-button {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.home-indicator {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 134px;
    height: 5px;
    background: black;
    border-radius: 3px;
}

/* Global suggestions container - only for non-standalone components */
.global-suggestions-container {
    width: 100%;
    margin-top: 1rem;
    padding: 0 16px;
}

.suggestions-row-mobile {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
    justify-content: flex-end;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 4px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.suggestions-row-mobile::-webkit-scrollbar {
    display: none;
}

.suggestion-item-mobile {
    flex: none;
    flex-shrink: 0;
}

.suggestion-item-mobile .suggestion-button-mobile {
    background: white;
    color: #6b7280;
    padding: 0.5rem 1rem;
    border-radius: 18px;
    border: 1px solid #d1d5db;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    box-sizing: border-box;
    font-size: 0.875rem;
    white-space: nowrap;
    min-width: auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.suggestion-item-mobile .suggestion-button-mobile:hover {
    background: #f9fafb;
}