/**
 * 算命聊天前端样式
 */

/* --- 新增：颜色变量 --- */
:root {
    --astrwoo-primary-color: #c0392b; /* 柔和的中国红 */
    --astrwoo-primary-color-dark: #a93226;
    --astrwoo-primary-color-darker: #922b21;
    --astrwoo-accent-gold: #c8a86a; /* 金色点缀 */
    --astrwoo-bg-light: #fefcf7;  /* 更浅的米白背景 */
    --astrwoo-bg-medium: #fbf8f0; /* 稍深的米白 */
    --astrwoo-border-color: #eae4d9; /* 更柔和的边框 */
    --astrwoo-text-color: #5c5c5c;
    --astrwoo-text-light: #888;
    --astrwoo-master-bubble-bg: #ffffff;
    --astrwoo-master-bubble-text: #3a3a3a;
    --astrwoo-user-bubble-bg: #f1f1f1; /* 柔和灰 */
    --astrwoo-user-bubble-text: #4a4a4a;
    --astrwoo-user-bubble-border: #e0e0e0;
    --astrwoo-input-area-height: 60px; /* 输入区大致高度 */
    --astrwoo-footer-extra-height: 65px; /* 建议(35px) + 次数(30px) 大致高度 */
    --astrwoo-total-footer-height: calc(var(--astrwoo-input-area-height) + var(--astrwoo-footer-extra-height));
    --astrwoo-modal-bg: #fff; /* 默认白色背景 */
    --astrwoo-modal-border-radius: 8px; /* 默认圆角 */
    --astrwoo-button-secondary-bg: #f0f0f0;
    --astrwoo-button-secondary-text: #555;
    --astrwoo-button-secondary-bg-hover: #e0e0e0;
    --astrwoo-button-secondary-bg-active: #d0d0d0;
    --astrwoo-button-disabled-bg: #ccc;
    --astrwoo-button-disabled-text: #888;
}

/* 通用隐藏类 */
.astrwoo-element-hidden {
    display: none !important;
}

/* 隐藏副标题的类 */
.subtitle-hidden {
    display: none !important;
}

/* 主容器 */
.astrwoo-fortune-chat-block {
    max-width: 100%;
    margin: 2.5em auto;
    font-family: "PingFang SC", "Microsoft YaHei", "Source Han Serif SC", serif;
    background-color: var(--astrwoo-bg-light); /* 使用变量 */
    border-radius: 10px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid var(--astrwoo-border-color); /* 使用变量 */
    color: var(--astrwoo-text-color); /* 使用变量 */
}

/* 头部 */
.astrwoo-header {
    background-color: var(--astrwoo-bg-medium); /* 使用变量 */
    color: var(--astrwoo-primary-color); /* 使用变量 */
    padding: 25px 30px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid var(--astrwoo-border-color); /* 使用变量 */
}

.astrwoo-logo {
    margin-bottom: 15px;
}

.astrwoo-logo img {
    height: 60px;
    width: auto;
}

.astrwoo-title {
    font-size: 24px;
    margin: 0 0 8px 0;
    font-weight: 500;
    letter-spacing: 1px;
    font-family: "Source Han Serif SC", serif;
    color: var(--astrwoo-primary-color); /* 使用变量 - 确保标题颜色一致 */
}

/* 子标题 */
.astrwoo-subtitle {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
    font-weight: normal;
}

.astrwoo-description {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    color: var(--astrwoo-text-light); /* 使用变量 */
}

/* 大师选择区域 */
.astrwoo-masters-selection {
    padding: 40px 30px 50px; /* 增加上下内边距 */
    background-color: var(--astrwoo-bg-light); /* 使用变量 */
    text-align: center;
    flex: 1;
    border-bottom: 1px solid var(--astrwoo-border-color); /* 使用变量 */
}

/* 大师选择区域 - 控制容器 */
.astrwoo-controls {
    display: flex;
    align-items: center;
    margin-bottom: 40px; /* 增加标题下方间距 */
    position: relative; /* --- 添加 relative 定位 --- */
}

.astrwoo-masters-selection h4 {
    margin-bottom: 0; /* 移除原有下方间距，由父容器控制 */
    margin-top: 0;
    font-size: 20px; /* 增大标题字号 */
    color: var(--astrwoo-primary-color); /* 使用变量 */
    font-weight: 500;
    letter-spacing: 1px;
    /* --- 修改：使用 margin auto 居中 --- */
    margin-left: auto;
    margin-right: auto;
    /* 移除 padding-right，因为语言选择器绝对定位了 */
}

.astrwoo-masters-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 35px 30px; /* 调整行列间距 */
    margin-top: 0; /* 恢复默认 */
    padding: 0 30px; /* 保留左右内边距 */
}

.astrwoo-master-card {
    width: 190px; /* 稍微调整宽度 */
    text-align: center;
    cursor: pointer;
    padding: 25px 20px; /* 调整内边距 */
    border-radius: 12px; /* 增加圆角 */
    transition: all 0.3s ease;
    background-color: var(--astrwoo-master-bubble-bg); /* 改为更亮的背景 */
    border: 1px solid var(--astrwoo-border-color); /* 统一边框 */
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.04); /* 添加柔和阴影 */
}

.astrwoo-master-card:hover {
    background-color: var(--astrwoo-bg-medium); /* 使用变量 */
    transform: translateY(-3px); /* 稍微增大悬浮效果 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.07); /* 悬浮时阴影更明显 */
    border-color: var(--astrwoo-accent-gold); /* 使用变量 */
}

.astrwoo-master-card.active {
    background-color: var(--astrwoo-bg-medium); /* 使用变量 */
    border: 1px solid var(--astrwoo-primary-color); /* 使用变量 */
    transform: translateY(-3px); /* 与 hover 保持一致 */
    box-shadow: 0 5px 15px rgba(192, 57, 43, 0.08); /* 调整选中阴影颜色和透明度 */
}

.astrwoo-master-card img {
    width: 90px;  /* 统一图片尺寸 */
    height: 90px; /* 统一图片尺寸 */
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff; /* 添加白色边框，更有层次 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* 调整阴影 */
    margin-bottom: 20px; /* 增加图片下方间距 */
    transition: transform 0.3s ease;
}

.astrwoo-master-card:hover img {
    transform: scale(1.05); /* 保持缩放效果 */
}

.astrwoo-master-card.active img {
    box-shadow: 0 4px 12px rgba(200, 168, 106, 0.2); /* 保持选中阴影 */
    border-color: var(--astrwoo-accent-gold); /* 选中时边框变色 */
}

.astrwoo-master-card p.astrwoo-master-name {
    margin: 0 0 8px 0; /* 为描述留出空间 */
    font-weight: 600; /* 加粗名字 */
    font-size: 17px; /* 调整名字字号 */
    color: var(--astrwoo-master-bubble-text); /* 调整名字颜色 */
    transition: color 0.3s ease;
    line-height: 1.3;
}

.astrwoo-master-card.active p.astrwoo-master-name {
    color: var(--astrwoo-primary-color); /* 使用变量 */
}

/* 聊天容器 */
.astrwoo-chat-container {
    display: flex; /* Use flexbox */
    flex-direction: column; /* Stack children vertically */
    /* --- 让容器占满父元素可用空间 --- */
    height: 100%; /* 或者使用其他方式确保高度，取决于父元素 */
    width: 100%;
    margin: 0;
    background-color: #fff;
    /* --- 移除圆角和阴影 --- */
    border-radius: 0;
    box-shadow: none;
    overflow: hidden; /* 保持 */
    box-sizing: border-box; 
}

.astrwoo-chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    background: #fff;
    z-index: 10;
    flex-shrink: 0;
    /* --- 新增：限制头部内容宽度并居中 --- */
    max-width: 700px; /* 与消息区一致 */
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box; /* 包含 padding */
}

.astrwoo-master-info {
    display: flex;
    align-items: center;
}

.astrwoo-master-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-size: cover;
    margin-right: 12px;
    border: 1px solid var(--astrwoo-border-color); /* 使用变量 */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.astrwoo-master-avatar.master-avatar {
    background-color: #f0f4ff;
}

.astrwoo-master-avatar.user-avatar {
    background-color: #f5f7fb;
}

.astrwoo-master-name {
    font-weight: 500;
    font-size: 16px;
    color: var(--astrwoo-primary-color); /* 使用变量 */
}

.astrwoo-back-button {
    /* 修改样式使其更像按钮 */
    background-color: transparent; /* 改为透明背景 */
    color: var(--astrwoo-primary-color); /* 使用变量 */
    border: 1px solid var(--astrwoo-border-color); /* 使用变量 */
    padding: 6px 14px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none; /* 移除下划线 */
    transition: all 0.3s ease;
}

.astrwoo-back-button:hover {
    background-color: var(--astrwoo-bg-medium); /* 使用变量 */
    color: var(--astrwoo-primary-color-dark); /* 使用变量 */
    border-color: var(--astrwoo-border-color); /* 使用变量 */
    text-decoration: none; /* 确保悬停时也没有下划线 */
}

/* 聊天信息区 */
.astrwoo-chat-messages {
    padding: 15px 15px; 
    flex: 1; 
    overflow-y: auto; 
    background-color: var(--astrwoo-bg-light);
    background-image: none;
    /* --- 恢复之前的 padding-bottom 计算 --- */
    /* 页脚固定后，这里只需要少量底部间距，但具体值可能需要根据页脚实际高度动态计算或预留足够空间 */
    padding-bottom: calc(var(--astrwoo-total-footer-height) + 20px); /* 重新计算预留空间 */
    box-sizing: border-box; 
    /* --- 新增：限制聊天区域内的最大宽度，使其居中 --- */
    max-width: 700px; /* 消息内容最大宽度 */
    width: 100%; /* 在小屏幕上占满 */
    margin: 0 auto; /* 居中 */
}

.astrwoo-message {
    margin-bottom: 20px;
    /* --- 恢复消息本身的最大宽度 --- */
    /* max-width: 85%; /* 由父容器 .astrwoo-chat-messages 控制 */
    animation: fadeIn 0.3s ease;
    display: flex;
    align-items: flex-start;
}

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

.astrwoo-message-user {
    margin-left: auto;
    flex-direction: row-reverse;
}

.astrwoo-message-content {
    display: flex;
    flex-direction: column;
}

.astrwoo-message-bubble {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    line-height: 1.7;
    word-break: break-word;
    font-size: 14.5px;
    border: 1px solid transparent;
}

.astrwoo-message-master .astrwoo-message-bubble {
    background-color: var(--astrwoo-master-bubble-bg); /* 使用变量 */
    border-top-left-radius: 4px;
    color: var(--astrwoo-master-bubble-text); /* 使用变量 */
    font-weight: 400;
    border-color: var(--astrwoo-border-color); /* 使用变量 */
}

.astrwoo-message-user .astrwoo-message-bubble {
    background: var(--astrwoo-user-bubble-bg); /* 使用变量 */
    color: var(--astrwoo-user-bubble-text); /* 使用变量 */
    border-top-right-radius: 4px;
    font-weight: 400;
    border-color: var(--astrwoo-user-bubble-border); /* 使用变量 */
}

.astrwoo-message-time {
    font-size: 12px;
    margin-top: 5px;
    opacity: 0.6;
}

.astrwoo-typing .astrwoo-message-bubble {
    padding-right: 25px;
}

.astrwoo-dots {
    display: inline-block;
    position: relative;
    animation: dots 1.5s infinite;
}

@keyframes dots {
    0%, 20% { color: rgba(0,0,0,0.1); }
    50% { color: rgba(0,0,0,0.6); }
    80%, 100% { color: rgba(0,0,0,0.1); }
}

/* 输入框 */
.astrwoo-chat-input {
    padding: 0;
    background: none;
    border: none;
    flex: 1; /* 占据可用空间 */
    display: flex;
    align-items: center;
    margin-right: 0; /* --- 移除：恢复按钮的 margin-left --- */
}

.astrwoo-chat-input textarea {
    flex: 1;
    border: 1px solid #dcd6cb; /* 保留稍深的边框以区分 */
    border-radius: 6px;
    padding: 10px 15px;
    resize: none;
    height: 48px;
    line-height: 1.6;
    font-size: 14.5px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: none;
    background-color: #fff;
    color: var(--astrwoo-master-bubble-text); /* 使用变量 */
}

.astrwoo-chat-input textarea:focus {
    outline: none;
    border-color: var(--astrwoo-accent-gold); /* 使用金色阴影 */
}

.astrwoo-send-button {
    /* --- 恢复之前的样式 --- */
    background-color: var(--astrwoo-primary-color); /* 使用变量 */
    color: #ffffff;
    border: none;
    border-radius: 6px; /* 恢复圆角矩形 */
    padding: 0 18px; /* 恢复内边距 */
    height: 44px; /* 恢复高度 */
    cursor: pointer;
    transition: background-color 0.3s ease; /* 恢复 transition */
    font-size: 15px; /* 恢复字体大小 */
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px; /* 恢复最小宽度 */
    text-align: center;
    margin-left: 12px; /* 恢复左边距 */
    flex-shrink: 0; /* 保留 flex-shrink */
}

.astrwoo-send-button:hover {
    background-color: var(--astrwoo-primary-color-dark);
}

.astrwoo-send-button:active {
    background-color: var(--astrwoo-primary-color-darker);
    transform: translateY(1px); /* 恢复点击效果 */
}

/* 大师推荐消息样式 */
.astrwoo-message-master-recommendation {
    max-width: 90%;
}

.astrwoo-message-master-recommendation .astrwoo-message-bubble {
    background-color: #fdf7e9;
    border-left: 3px solid var(--astrwoo-accent-gold); /* 使用金色边框 */
    border-radius: 12px;
    color: #7d6134;
}

/* 为产品推荐添加外层包装 */
.astrwoo-product-recommendations-wrapper {
    padding: 10px 25px 15px; /* 上下左右边距 */
    clear: both; /* 确保独立一行 */
}

/* 产品推荐样式优化 */
.astrwoo-product-recommendations {
    border-radius: 8px; /* 调整圆角 */
    background-color: var(--astrwoo-bg-medium); /* 使用变量 */
    padding: 18px 20px; /* 调整内边距 */
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
    margin-top: 0;
    border: 1px solid var(--astrwoo-border-color); /* 使用变量 */
    max-width: 100%;
    width: 100%;
}

.astrwoo-product-recommendations h4 {
    font-size: 14px; /* 调整字号 */
    color: var(--astrwoo-primary-color); /* 使用变量 */
    margin: 0 0 15px 0; /* 调整底部间距 */
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px; /* 调整字间距 */
    padding-bottom: 8px; /* 添加下边距 */
    border-bottom: 1px solid var(--astrwoo-border-color); /* 使用变量 */
    display: inline-block; /* 让下划线适应文字宽度 */
}

.astrwoo-products-list {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 5px 0 5px; 
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    gap: 15px; /* 调整卡片间距 */
}

.astrwoo-products-list::-webkit-scrollbar {
    display: none;
}

/* 卡片链接样式 */
.astrwoo-product-image-link,
.astrwoo-product-title a {
    text-decoration: none;
    color: inherit; /* 继承父元素颜色 */
}

.astrwoo-product-title a:hover {
    color: #a05e45; /* 标题悬停颜色 */
}

.astrwoo-product-card {
    min-width: 170px;
    max-width: 190px;
    background: var(--astrwoo-bg-light); /* 使用变量 */
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--astrwoo-border-color); /* 使用变量 */
    height: auto;
    display: flex;
    flex-direction: column;
}

.astrwoo-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #dcd6cb;
}

.astrwoo-product-image {
    height: 110px;
    overflow: hidden;
    background: var(--astrwoo-bg-medium); /* 使用变量 */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid var(--astrwoo-border-color); /* 使用变量 */
}

.astrwoo-product-image::after {
    content: none;
}

.astrwoo-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
    transition: transform 0.4s ease;
}

.astrwoo-product-card:hover .astrwoo-product-image img {
    transform: scale(1.03);
}

.astrwoo-product-info {
    padding: 12px 12px 15px; /* 增加底部内边距 */
    display: flex;
    flex-direction: column;
    flex: 1;
}

.astrwoo-product-title {
    margin: 0 0 5px 0;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--astrwoo-text-color); /* 使用变量 */
    height: 36px;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.astrwoo-product-price {
    color: var(--astrwoo-primary-color); /* 价格使用主色 */
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 15px;
}

.astrwoo-product-desc {
    font-size: 14px;
    color: #666;
    margin: 5px 0 15px;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.astrwoo-product-button {
    display: block;
    width: 100%;
    background: transparent;
    color: var(--astrwoo-primary-color); /* 使用变量 */
    padding: 6px 8px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.2s ease;
    margin-top: auto;
    border: 1px solid #dcd6cb; /* 保留稍深边框 */
    box-sizing: border-box;
}

.astrwoo-product-button:hover {
    background: var(--astrwoo-bg-medium); /* 使用变量 */
    color: var(--astrwoo-primary-color-dark); /* 使用变量 */
    text-decoration: none;
    border-color: var(--astrwoo-accent-gold); /* 使用变量 */
    box-shadow: none;
}

/* 加载和错误状态 */
.astrwoo-loading,
.astrwoo-error {
    padding: 30px;
    text-align: center;
    background-color: white;
}

.astrwoo-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-left-color: #2575fc;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.astrwoo-error-message {
    color: #e53935;
    font-weight: bold;
}

/* 错误消息样式 */
.astrwoo-message-error .astrwoo-message-bubble {
    background-color: #ffeded;
    border-left: 3px solid #ff7b7b;
    color: #a53636;
    border-radius: 12px;
    margin: 0 auto;
}

/* 大师描述文字 */
.astrwoo-master-description {
    display: block;
    font-size: 13px; /* 调整描述字号 */
    color: var(--astrwoo-text-light); /* 使用变量 */
    margin-top: 0; /* 移除原有上方间距 */
    font-weight: normal;
    line-height: 1.5; /* 调整行高 */
    height: 39px; /* 限制高度，约显示两行 */
    overflow: hidden; /* 隐藏超出部分 */
    text-overflow: ellipsis; /* 显示省略号 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* 发送按钮禁用状态 */
.astrwoo-send-button.disabled {
    background-color: #cccccc;
    cursor: not-allowed;
}

.astrwoo-send-button.disabled:hover {
    background-color: #cccccc;
    /* 移除悬停效果 */
}

.astrwoo-message-user .astrwoo-message-content {
    align-items: flex-end;
}

.astrwoo-message-user .astrwoo-message-bubble {
    background: var(--astrwoo-user-bubble-bg); /* 使用变量 */
    color: var(--astrwoo-user-bubble-text); /* 使用变量 */
    border-top-right-radius: 4px;
    font-weight: 400;
    border-color: var(--astrwoo-user-bubble-border); /* 使用变量 */
}

/* 重新添加消息头像样式 */
.astrwoo-message-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 10px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); /* 稍微调整阴影 */
    border: 2px solid var(--astrwoo-bg-light); /* 使用变量 */
    /* 确保背景图片可见 */
    background-color: #f5f7fb;
    overflow: hidden;
}

.astrwoo-message-avatar.master-avatar {
    background-color: #f0f4ff;
}

.astrwoo-message-avatar.user-avatar {
    background-color: #f5f7fb;
}

/* 语言切换器 */
.astrwoo-language-switcher-wrapper {
    /* position: relative; */ /* --- 移除原来的 relative --- */
    /* --- 新增：绝对定位到右侧 --- */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.astrwoo-lang-switcher {
    padding: 5px 8px;
    border-radius: 4px;
    border: 1px solid #dcd6cb;
    background-color: #fff;
    font-size: 13px;
    color: var(--astrwoo-text-color); /* 使用变量 */
    cursor: pointer;
    -webkit-appearance: none; /* 移除默认箭头 */
    -moz-appearance: none;
    appearance: none;
    padding-right: 25px; /* 为自定义箭头留出空间 */
    background-image: url('data:image/svg+xml;utf8,<svg fill="%235c5c5c" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 5px center;
    background-size: 18px;
}

.astrwoo-lang-switcher:focus {
    outline: none;
    border-color: var(--astrwoo-accent-gold); /* 使用变量 */
    box-shadow: 0 0 0 2px rgba(200, 168, 106, 0.15);
}

/* 修改：使用次数信息样式 */
.astrwoo-usage-info {
    padding: 8px 15px; /* 调整内边距 */
    text-align: center;
    font-size: 13px; /* 调整字号 */
    color: var(--astrwoo-text-light); /* 调整颜色 */
    flex-shrink: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    order: 1; /* 使用次数在中间 */
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    border-top: 1px solid var(--astrwoo-border-color); /* 保留顶部细线分隔 */
}

/* 单独调整次数文本样式 */
.astrwoo-remaining-uses {
    font-weight: 500;
    color: var(--astrwoo-text-color); /* 稍微加深颜色 */
}

/* 确保分享链接样式 */
.astrwoo-usage-info .astrwoo-share-button {
    font-size: 1em; /* 调整字号与剩余次数一致 */
    color: var(--astrwoo-primary-color);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}
.astrwoo-usage-info .astrwoo-share-button:hover {
    color: var(--astrwoo-primary-color-dark);
    text-decoration: underline;
}

/* 建议问题容器 */
.astrwoo-suggestions {
    padding: 10px 15px; /* 调整内边距 */
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 8px;
    justify-content: center;
    order: 0; /* 建议问题在最上面 */
    flex-shrink: 0;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    /* border-bottom: 1px solid var(--astrwoo-border-color); */ /* 可选：如果想分隔建议和次数 */
}

/* 建议问题按钮 */
.astrwoo-suggestion-btn {
    background-color: #fff;
    border: 1px solid var(--astrwoo-primary-color);
    color: var(--astrwoo-primary-color);
    padding: 4px 10px; /* 减小按钮内边距 */
    border-radius: 12px; /* 圆角 */
    font-size: 0.8em; /* 进一步减小字号 */
    cursor: pointer;
    transition: all 0.2s ease;
}

.astrwoo-suggestion-btn:hover {
    background-color: var(--astrwoo-primary-color); /* 悬停时反转颜色 */
    color: #fff;
}

/* 移动端响应式调整 */
@media (max-width: 768px) { 
    .astrwoo-usage-info {
        display: flex;         /* 保持 flex 布局 */
        flex-direction: row;    /* 确保水平排列 */
        justify-content: space-between; /* 两端对齐 */
        align-items: center;    /* 垂直居中 */
        padding: 10px 15px;    /* 调整内边距 */
        gap: 10px;             /* 如果空间足够，元素间保留间距 */
    }

    /* 移除之前对 .astrwoo-usage-count 的错误选择器 */

    /* 调整剩余次数文本样式 */
    .astrwoo-usage-info .astrwoo-remaining-uses { /* 使用正确的类名 */
        font-size: 0.9em;      /* 稍微减小字体 */
        margin-right: 0;       /* 移除可能存在的右边距 */
        flex-shrink: 0;        /* 防止被压缩 */
    }

    /* 调整分享按钮样式 */
    .astrwoo-usage-info .astrwoo-share-button {
        white-space: normal;   /* 允许换行 */
        width: auto;           /* 自适应宽度 */
        max-width: 55%;        /* 限制最大宽度 */
        padding: 4px 8px;      /* 调整内边距 */
        font-size: 0.9em;      /* 减小字体 */
        text-align: center;    /* 文本居中 */
        flex-shrink: 1;        /* 允许被轻微压缩 */
        line-height: 1.3;      /* 调整行高以适应可能换行 */
    }
} /* 结束 @media 查询 */

/* --- 新增：对话流中产品推荐的样式 --- */

/* 产品消息的气泡特殊处理 */
.astrwoo-message-master-products .astrwoo-message-bubble.astrwoo-message-bubble-products {
    background-color: var(--astrwoo-master-bubble-bg); /* 使用变量 */
    border: 1px solid var(--astrwoo-border-color); /* 使用变量 */
    padding: 15px; /* 增加内边距 */
    box-shadow: 0 1px 3px rgba(0,0,0,0.04); /* 添加轻微阴影 */
    max-width: 100%; /* 允许气泡占满宽度以便内部滚动 */
}

/* 产品列表容器在气泡内的样式 */
.astrwoo-message-bubble-products .astrwoo-products-list {
    display: flex; /* 默认横向排列 */
    flex-wrap: nowrap; /* 不换行 */
    overflow-x: auto; /* 允许水平滚动 */
    gap: 12px; /* 卡片间距 */
    padding: 5px 0; /* 上下轻微内边距 */
    margin: 0; /* 移除默认外边距 */
    max-width: 100%; /* 确保列表不超过气泡 */
    -webkit-overflow-scrolling: touch; /* iOS 滚动优化 */
    scrollbar-width: thin; /* 滚动条样式 (Firefox) */
    scrollbar-color: #c8a86a #f8f5ed; /* 滚动条颜色 (Firefox) */
}

/* 滚动条样式 (Webkit) */
.astrwoo-message-bubble-products .astrwoo-products-list::-webkit-scrollbar {
    height: 6px;
}
.astrwoo-message-bubble-products .astrwoo-products-list::-webkit-scrollbar-track {
    background: var(--astrwoo-bg-medium); /* 使用变量 */
    border-radius: 3px;
}
.astrwoo-message-bubble-products .astrwoo-products-list::-webkit-scrollbar-thumb {
    background-color: #dcd6cb;
    border-radius: 3px;
}
.astrwoo-message-bubble-products .astrwoo-products-list::-webkit-scrollbar-thumb:hover {
    background-color: var(--astrwoo-accent-gold); /* 使用变量 */
}


/* 产品卡片在气泡内的样式微调 */
.astrwoo-message-bubble-products .astrwoo-product-card {
    min-width: 150px; /* 可以调整最小宽度 */
    max-width: 170px; /* 可以调整最大宽度 */
    flex-shrink: 0; /* 防止卡片被压缩 */
    box-shadow: 0 1px 4px rgba(0,0,0,0.05); /* 调整阴影 */
    border: 1px solid #eee4d4; /* 调整边框 */
    background-color: var(--astrwoo-bg-light); /* 统一卡片背景 */
}

.astrwoo-message-bubble-products .astrwoo-product-image {
    height: 90px; /* 调整图片高度 */
    background-color: var(--astrwoo-bg-medium); /* 统一图片背景 */
    border-bottom-color: var(--astrwoo-border-color); /* 统一边框颜色 */
}

.astrwoo-message-bubble-products .astrwoo-product-info {
    padding: 10px; /* 调整信息区域内边距 */
}

.astrwoo-message-bubble-products .astrwoo-product-title {
    font-size: 13px; /* 调整标题字号 */
    height: 34px; /* 调整标题高度 */
    margin-bottom: 4px;
}

.astrwoo-message-bubble-products .astrwoo-product-price {
    font-size: 14px; /* 调整价格字号 */
    margin-bottom: 6px;
    color: var(--astrwoo-primary-color); /* 价格用主色 */
}

.astrwoo-message-bubble-products .astrwoo-product-button {
    font-size: 11px; /* 调整按钮字号 */
    padding: 5px 8px; /* 调整按钮内边距 */
    color: var(--astrwoo-primary-color); /* 按钮文字用主色 */
    border-color: var(--astrwoo-border-color); /* 按钮边框 */
} 
.astrwoo-message-bubble-products .astrwoo-product-button:hover {
     background-color: var(--astrwoo-bg-medium); /* 悬停背景 */
     color: var(--astrwoo-primary-color-dark); /* 悬停文字 */
     border-color: var(--astrwoo-accent-gold); /* 悬停边框 */
} 

/* --- 新增：大师错误消息样式 --- */
.astrwoo-message-master-error .astrwoo-message-bubble {
    background-color: #fff2f2; /* 淡红色背景 */
    border: 1px solid #ffcccc;  /* 红色边框 */
    color: #c0392b; /* 使用主红色调 */
    border-left: 3px solid #c0392b; /* 左侧强调线 */
    border-top-left-radius: 4px; /* 保持和其他大师消息一致 */
    border-bottom-left-radius: 4px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
}

/* --- 新增：发送按钮加载状态样式 --- */
.astrwoo-send-button.loading {
    cursor: wait;
    opacity: 0.8;
}

.astrwoo-spinner-light {
    display: inline-block; /* 恢复默认显示 */
    width: 18px; /* 恢复大小 */
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-left-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* --- 新增：模拟销售通知弹窗样式 --- */
.astrwoo-sales-notifier {
    position: fixed;
    bottom: 25px; /* 稍微上移 */
    left: 25px;   /* 稍微右移 */
    background-color: #fff;
    border-radius: 10px; /* 增加圆角 */
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18); /* 加深阴影 */
    display: flex;
    align-items: center;
    padding: 15px 20px; /* 增加内边距 */
    z-index: 1000;
    max-width: 360px; /* 增加最大宽度 */
    border: 1px solid #e5e5e5; /* 稍微加深边框 */
    opacity: 0;
    transform: translateY(15px); /* 调整初始位置 */
    animation: notifierFadeIn 0.6s ease forwards; /* 调整动画 */
}

@keyframes notifierFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.astrwoo-sales-notifier.fade-out {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.notifier-image {
    width: 65px;   /* 增加图片宽度 */
    height: 65px;  /* 增加图片高度 */
    object-fit: cover;
    border-radius: 8px; /* 增加图片圆角 */
    margin-right: 15px; /* 增加图片右边距 */
    flex-shrink: 0;
    border: 1px solid #ebebeb;
}

.notifier-content {
    flex-grow: 1;
    font-size: 14px; /* 增大基础字号 */
    line-height: 1.6;
}

.notifier-content p {
    margin: 0 0 4px 0; /* 稍微增加段落间距 */
    color: #555; /* 加深文字颜色 */
}

.notifier-content .notifier-product {
    font-weight: 500;
    color: #222; /* 加深产品名称颜色 */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.notifier-content .notifier-time {
    font-size: 12px; /* 增大时间字号 */
    color: #888;
    margin-top: 5px;
}

.notifier-close {
    position: absolute;
    top: 8px;    /* 调整关闭按钮位置 */
    right: 10px; /* 调整关闭按钮位置 */
    background: none;
    border: none;
    font-size: 20px; /* 增大关闭按钮字号 */
    color: #aaa;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.notifier-close:hover {
    opacity: 1;
    color: #555;
}

/* --- 新增：通知弹窗内链接样式 --- */
.astrwoo-sales-notifier .notifier-link {
    text-decoration: none; /* 移除下划线 */
    color: inherit; /* 继承父元素颜色 */
}
.astrwoo-sales-notifier .notifier-product-link:hover {
    color: var(--astrwoo-primary-color); /* 鼠标悬停时使用主色 */
}

/* --- 新增：销售通知弹窗移动端适配 --- */
@media (max-width: 600px) {
    .astrwoo-sales-notifier {
        left: 10px;        /* 调整左边距 */
        right: 10px;       /* 新增右边距，使其适应屏幕宽度 */
        bottom: 10px;      /* 调整下边距 */
        max-width: none;   /* 移除最大宽度限制 */
        width: auto;       /* 宽度自适应 */
        padding: 10px 15px;/* 稍微减小内边距 */
    }

    .notifier-image {
        width: 50px;       /* 减小图片尺寸 */
        height: 50px;
        margin-right: 10px;
    }

    .notifier-content {
        font-size: 13px;   /* 减小字体大小 */
    }

     .notifier-content .notifier-product {
         /* 可以考虑允许产品名称换行，如果空间不足 */
         /* white-space: normal; */
     }

    .notifier-content .notifier-time {
        font-size: 11px;
    }

    .notifier-close {
        font-size: 18px;   /* 减小关闭按钮大小 */
        top: 6px;
        right: 8px;
    }
} 

/* --- 新增：打字动画样式 --- */
.astrwoo-typing-indicator {
    display: flex;
    align-items: center;
    padding: 10px 15px;
}

.astrwoo-typing-indicator span {
    height: 8px;
    width: 8px;
    background-color: #aaa; /* 点的颜色 */
    border-radius: 50%;
    display: inline-block;
    margin: 0 2px;
    animation: astrwoo-typing-bounce 1.4s infinite ease-in-out both;
}

/* 定义动画延迟，让点依次跳动 */
.astrwoo-typing-indicator span:nth-child(1) {
    animation-delay: -0.32s;
}

.astrwoo-typing-indicator span:nth-child(2) {
    animation-delay: -0.16s;
}

/* 定义跳动动画 */
@keyframes astrwoo-typing-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.0);
    }
} 

/* --- 新增：固定输入框样式 --- */
.astrwoo-chat-input-area {
    display: flex;
    justify-content: center; /* 水平居中内部的 inner-wrapper */
    align-items: center; /* 垂直居中 */
    background-color: var(--astrwoo-bg-medium); /* 与页脚背景一致 */
    box-sizing: border-box;
    width: 100%;
    order: 2; /* 输入区域在最下面 */
    border-top: 1px solid var(--astrwoo-border-color); /* 保留顶部细线分隔 */
    padding: 10px 0; /* 调整输入区域本身的上下内边距 */
}

/* 内部包装器 */
.astrwoo-chat-input-area-inner-wrapper {
    display: flex;
    align-items: center; /* 从 flex-end 改为 center */
    width: 100%;
    /* --- 修改：设置最大宽度并居中 --- */
    max-width: 700px; /* 与消息区域宽度一致 */
    margin: 0 auto; /* 水平居中 */
    padding: 0 15px; /* 保留左右内边距 */
    box-sizing: border-box;
}

.astrwoo-chat-input {
    padding: 0;
    background: none;
    border: none;
    flex: 1; /* 占据可用空间 */
    display: flex;
    align-items: center;
    margin-right: 0; /* --- 移除：恢复按钮的 margin-left --- */
}

.astrwoo-chat-input textarea {
    flex: 1;
    border: 1px solid #dcd6cb;
    border-radius: 20px; /* 圆角 */
    padding: 10px 18px; /* 调整内边距 */
    resize: none;
    min-height: 42px; /* 最小高度 */
    max-height: 100px; /* 最大高度 */
    height: auto; /* 高度自适应 */
    line-height: 1.5; /* 调整行高 */
    font-size: 14.5px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, height 0.1s ease;
    box-shadow: none;
    background-color: #fff;
    color: var(--astrwoo-master-bubble-text);
    overflow-y: auto; /* 超出最大高度时显示滚动条 */
    box-sizing: border-box;
}

.astrwoo-chat-input textarea:focus {
    outline: none;
    border-color: var(--astrwoo-accent-gold);
    box-shadow: 0 0 0 2px rgba(200, 168, 106, 0.15);
}

.astrwoo-send-button {
    /* --- 恢复之前的样式 --- */
    background-color: var(--astrwoo-primary-color); /* 使用变量 */
    color: #ffffff;
    border: none;
    border-radius: 6px; /* 恢复圆角矩形 */
    padding: 0 18px; /* 恢复内边距 */
    height: 44px; /* 恢复高度 */
    cursor: pointer;
    transition: background-color 0.3s ease; /* 恢复 transition */
    font-size: 15px; /* 恢复字体大小 */
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 80px; /* 恢复最小宽度 */
    text-align: center;
    margin-left: 12px; /* 恢复左边距 */
    flex-shrink: 0; /* 保留 flex-shrink */
}

/* 发送按钮加载状态样式 */
.astrwoo-send-button.loading {
    cursor: wait;
    opacity: 0.8;
}

/* --- 恢复：Spinner 样式 --- */
.astrwoo-spinner-light {
    display: inline-block; /* 恢复默认显示 */
    width: 18px; /* 恢复大小 */
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-left-color: #ffffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* --- 移除：加载时显示 Spinner 的特定规则 --- */

/* --- 新增：推荐产品区域样式 --- */
.astrwoo-message-master-products {
    /* 移除 flex 布局，让子元素按块级排列 */
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* gap: 15px; */
    /* justify-content: center; */ 
    padding: 0; /* 移除容器的内边距，交给卡片处理 */
}

/* 单个产品卡片 */
.astrwoo-product-card {
    display: flex; /* 卡片内部使用 flex */
    align-items: center;
    background-color: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 15px;
    /* --- 修改：移除宽度限制，添加底部边距 --- */
    /* width: calc(50% - 10px); */ /* 不再需要 */
    /* max-width: 250px; */       /* 不再需要 */
    margin-bottom: 15px; /* 添加卡片之间的垂直间距 */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    /* --- 新增：确保宽度适应容器 --- */
    width: 100%; 
    box-sizing: border-box; /* 确保 padding 不增加宽度 */
}

/* 最后一个卡片不需要底部边距 */
.astrwoo-product-card:last-child {
    margin-bottom: 0;
}

/* --- 新增：固定页脚容器样式 --- */
.astrwoo-fixed-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--astrwoo-bg-medium); /* 使用略深的背景 */
    box-shadow: 0 -2px 8px rgba(0,0,0,0.07); /* 调整阴影 */
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid var(--astrwoo-border-color);
}

/* --- 新增：销售通知弹窗移动端适配 --- */
@media (max-width: 768px) {
    .astrwoo-sales-notifier {
        max-width: 280px; /* 减小最大宽度 */
        padding: 8px 10px; /* 减小内边距 */
        bottom: 80px; /* 稍微上移，避开固定输入框 (需要根据实际输入框高度调整) */
        left: 10px; /* 减小左边距 */
        right: auto; /* 确保左对齐 */
    }

    .astrwoo-sales-notifier .notifier-image {
        width: 40px; /* 减小图片宽度 */
        height: 40px; /* 减小图片高度 */
        margin-right: 8px; /* 减小图片右边距 */
    }

    .astrwoo-sales-notifier .notifier-text,
    .astrwoo-sales-notifier .notifier-product,
    .astrwoo-sales-notifier .notifier-time {
        font-size: 0.8em; /* 减小字体大小 */
        line-height: 1.3; /* 调整行高 */
    }

    .astrwoo-sales-notifier .notifier-product {
        font-weight: 500; /* 保持产品名称略粗 */
    }

    .astrwoo-sales-notifier .notifier-close {
        top: 5px; /* 调整关闭按钮位置 */
        right: 5px;
        font-size: 18px; /* 减小关闭按钮大小 */
    }
}

/* --- 新增：全屏聊天界面样式 --- */
body.astrwoo-chat-fullscreen .astrwoo-fortune-chat-block {
    max-width: none; /* 移除最大宽度限制 */
    width: 100%;     /* 占据全部可用宽度 */
    margin: 0;       /* 移除外边距 */
    border: none;    /* 移除边框 */
    box-shadow: none;/* 移除阴影 */
    border-radius: 0;/* 移除圆角 */
    height: 100vh;   /* 占据整个视口高度 */
    display: flex;   /* 使用 flex 布局 */
    flex-direction: column; /* 垂直排列 */
    overflow: hidden; /* 防止内部滚动影响 body */
}

/* --- 调整聊天容器在全屏模式下的样式 --- */
body.astrwoo-chat-fullscreen .astrwoo-chat-container {
    flex: 1; /* 占据剩余空间 */
    height: auto; /* 高度由 flex 控制 */
    border-radius: 0; /* 确保无圆角 */
    box-shadow: none; /* 确保无阴影 */
    margin: 0; /* 确保无外边距 */
    max-width: none; /* 确保无最大宽度 */
    width: 100%; /* 确保占满 */
}

/* --- 隐藏全屏模式下不需要的元素 --- */
body.astrwoo-chat-fullscreen .astrwoo-header,
body.astrwoo-chat-fullscreen .astrwoo-masters-selection {
    display: none; /* 隐藏原头部和大师选择 */
}

/* --- 调整固定页脚在全屏模式下的样式 --- */
body.astrwoo-chat-fullscreen .astrwoo-fixed-footer {
    position: fixed; /* 保持固定 */
    bottom: 20px; /* --- 修改：距离底部 20px --- */
    left: 50%;    /* --- 新增：居中定位 --- */
    transform: translateX(-50%); /* --- 新增：居中定位 --- */
    max-width: 750px; /* --- 新增：最大宽度 --- */
    width: calc(100% - 40px); /* --- 新增：宽度，左右留白 20px --- */
    border-radius: 12px; /* --- 新增：圆角 --- */
    overflow: hidden; /* --- 新增：确保子元素适应圆角 --- */
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); /* --- 新增：添加阴影 --- */
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid var(--astrwoo-border-color);
}

/* --- 确保消息区在全屏时也限制内容宽度并居中 --- */
body.astrwoo-chat-fullscreen .astrwoo-chat-messages {
    /* --- 移除：不再限制消息区域本身宽度 --- */
    /* max-width: 700px; */
    /* margin: 0 auto; */ 
    padding-bottom: calc(var(--astrwoo-total-footer-height) + 20px); /* 重新计算页脚空间 */
    background-color: #fff; /* --- 新增：背景改为白色，与容器一致 --- */
}

/* --- 确保头部内容区在全屏时也限制宽度并居中 --- */
body.astrwoo-chat-fullscreen .astrwoo-chat-header {
    max-width: 700px; /* 保持内容最大宽度 */
    margin: 0 auto; /* 保持内容居中 */
}

/* --- 新增：在全屏模式下限制单个消息气泡的宽度 --- */
body.astrwoo-chat-fullscreen .astrwoo-message {
    /* 让消息容器本身可以居中（如果需要），或靠边 */
    /* 例如，可以给消息容器也加 max-width 和 margin: auto */
     max-width: 700px; /* 限制整条消息（头像+气泡）的最大宽度 */
     margin-left: auto; /* 默认居中，下面针对用户/大师覆盖 */
     margin-right: auto;
     width: 100%; /* 在限制宽度内占满 */
}

/* 大师消息靠左 */
body.astrwoo-chat-fullscreen .astrwoo-message-master {
    margin-left: 0;
    margin-right: auto;
}

/* 用户消息靠右 */
body.astrwoo-chat-fullscreen .astrwoo-message-user {
    margin-left: auto;
    margin-right: 0;
}

/* 限制气泡本身的最大宽度，防止文字过长 */
body.astrwoo-chat-fullscreen .astrwoo-message-bubble {
     max-width: 85%; /* 气泡占消息容器的85% */
     /* 或者可以设置一个像素值 max-width: 650px; */
}

/* --- 新增：隐藏全屏聊天模式下的主题页脚 --- */

/* 尝试 targeting footer template part */
body.astrwoo-chat-fullscreen footer.wp-block-template-part {
    display: none !important; 
}

/* 备用规则：如果上面的规则无效，尝试 targeting footer 元素 */
body.astrwoo-chat-fullscreen footer {
    display: none !important;
}

/* 备用规则：如果上面两个都无效，尝试 targeting 你提供的 block group class */
/* 注意：:has() 可能在非常老的浏览器中不支持 */
body.astrwoo-chat-fullscreen .wp-block-group.alignwide.wp-block-group-is-layout-flow:has(p:contains("以 WordPress 设计")) {
     display: none !important;
}

/* --- 移除：内部包装器的宽度和居中限制，由父级控制 --- */
body.astrwoo-chat-fullscreen .astrwoo-chat-input-area-inner-wrapper {
    /* max-width: 700px; */ /* 移除 */
    /* margin: 0 auto; */ /* 移除 */
    /* 保留: display: flex, align-items: flex-end, width: 100%, padding: 0 15px, box-sizing: border-box */
}

/* --- 优化：减小全屏模式下固定页脚内元素的垂直间距 --- */
body.astrwoo-chat-fullscreen .astrwoo-suggestions {
    padding-top: 5px;    /* 减小上内边距 */
    padding-bottom: 5px; /* 减小下内边距 */
    gap: 4px 6px;      /* 稍微减小按钮间距 */
}

body.astrwoo-chat-fullscreen .astrwoo-usage-info {
    padding-top: 4px;    /* 减小上内边距 */
    padding-bottom: 4px; /* 减小下内边距 */
}

body.astrwoo-chat-fullscreen .astrwoo-chat-input-area {
    padding-top: 8px;    /* 调整上内边距 */
    padding-bottom: 8px; /* 调整下内边距 */
}

/* --- 新增：介绍和反馈区域样式 --- */
.astrwoo-introduction-section,
.astrwoo-testimonials-section {
    padding: 20px 30px;
    margin: 0 auto 20px; /* 添加底部外边距 */
    max-width: 800px; /* 限制最大宽度 */
    text-align: left;
    border-bottom: 1px solid var(--astrwoo-border-color); /* 添加分隔线 */
    background-color: var(--astrwoo-bg-medium); /* 添加淡背景色区分 */
    border-radius: 8px; /* 添加圆角 */
}

.astrwoo-introduction-section h4,
.astrwoo-testimonials-section h4 {
    font-size: 18px;
    color: var(--astrwoo-primary-color);
    margin-bottom: 15px;
    font-weight: 500;
    text-align: center; /* 标题居中 */
    padding-bottom: 10px;
    border-bottom: 1px solid var(--astrwoo-border-color);
    display: inline-block;
}

.astrwoo-introduction-section p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--astrwoo-text-color);
    text-align: justify; /* 段落两端对齐 */
}

.astrwoo-testimonial {
    margin-bottom: 20px; /* 增加反馈间距 */
    padding: 15px;
    border: 1px solid var(--astrwoo-border-color);
    background-color: #fff; /* 白色背景 */
    border-radius: 6px;
    position: relative;
}

/* 添加引号样式 */
.astrwoo-testimonial::before {
    content: '\"';
    font-family: Georgia, serif;
    font-size: 36px;
    color: var(--astrwoo-accent-gold);
    position: absolute;
    left: 10px;
    top: 0px;
    opacity: 0.6;
}

.astrwoo-testimonial p {
    margin: 0 0 8px 25px; /* 为引号留出空间 */
    font-style: normal; /* 移除斜体 */
    font-size: 14px;
    color: var(--astrwoo-text-color);
    line-height: 1.6;
}

.astrwoo-testimonial span {
    font-size: 13px;
    color: var(--astrwoo-text-light);
    display: block;
    text-align: right; /* 签名靠右 */
    margin-top: 5px;
}

.astrwoo-testimonials-section .astrwoo-testimonial:last-child {
    margin-bottom: 0;
}

/* 调整大师列表的上边距 */
.astrwoo-masters-list {
    margin-top: 40px; /* 增加与上方内容的间距 */
    padding: 0 30px; /* 增加左右内边距，使其与上方内容对齐 */
}

/* 为介绍区域添加上边距 */
.astrwoo-introduction-section {
     margin-top: 40px; /* 增加与上方内容的间距 */
}

/* 移动端产品推荐布局 */
@media (max-width: 767px) { /* 常用的手机断点 */
    .astrwoo-products-list {
        display: flex; /* 确保是 flex 容器 */
        flex-direction: column; /* 主要改动：将主轴改为垂直方向 */
        align-items: center; /* 可选：让项目在交叉轴居中 */
    }

    /* 如果每个产品项有固定宽度或 flex-basis，可能需要调整 */
    .astrwoo-products-list .astrwoo-product-item { /* 假设每个产品项是这个类 */
        width: 90%; /* 让每个产品几乎占满容器宽度 */
        margin-bottom: 15px; /* 在垂直堆叠时添加一些间距 */
        flex-basis: auto; /* 重置 flex-basis */
    }
}

/* --- 新增：用户信息弹窗样式 --- */

/* 遮罩层 */
.astrwoo-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65); /* 稍微加深遮罩 */
    /* z-index 在 JS 中设置 */
}

/* 弹窗容器 */
.astrwoo-modal.astrwoo-user-info-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--astrwoo-bg-light); /* 使用浅背景色 */
    border-radius: 10px; /* 统一圆角 */
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15); /* 统一阴影 */
    max-width: 90%;
    width: 420px; /* 调整宽度 */
    border: 1px solid var(--astrwoo-border-color); /* 统一边框 */
    /* z-index 在 JS 中设置 */
}

.astrwoo-modal-content {
    padding: 30px 35px; /* 调整内边距 */
    position: relative;
}

/* 关闭按钮 */
.astrwoo-modal-close {
    position: absolute;
    top: 12px; /* 调整位置 */
    right: 15px; /* 调整位置 */
    font-size: 28px;
    line-height: 1;
    color: var(--astrwoo-text-light); /* 使用浅色文本颜色 */
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
    transition: color 0.2s ease;
}
.astrwoo-modal-close:hover {
    color: var(--astrwoo-primary-color); /* 悬停时使用主色 */
}

/* 弹窗标题 */
.astrwoo-modal-title {
    margin-top: 0;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.4em; /* 调整字体大小 */
    color: var(--astrwoo-primary-color); /* 使用主色 */
    font-weight: 500;
    font-family: "Source Han Serif SC", serif; /* 匹配标题字体 */
}

/* 表单整体 */
.astrwoo-form {
    /* 表单本身不需要特殊样式 */
}

/* 表单项容器 */
.astrwoo-form-field {
    margin-bottom: 18px; 
}

/* 表单标签 */
.astrwoo-form-label {
    display: block;
    margin-bottom: 7px; /* 调整间距 */
    font-weight: 500; /* 稍微加粗 */
    font-size: 0.9em; /* 调整大小 */
    color: var(--astrwoo-text-color); /* 使用文本颜色 */
}

/* 输入框和下拉框通用样式 */
.astrwoo-input,
.astrwoo-select {
    width: 100%;
    padding: 10px 14px; /* 调整内边距 */
    border: 1px solid var(--astrwoo-border-color); /* 使用边框颜色 */
    border-radius: 6px; /* 统一圆角 */
    box-sizing: border-box;
    font-size: 0.95em;
    background-color: #fff; 
    color: var(--astrwoo-text-color);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* 下拉框特定样式 */
.astrwoo-select {
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%235c5c5c" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 18px;
    padding-right: 35px; /* 为箭头腾出空间 */
    cursor: pointer;
}

/* 焦点样式 */
.astrwoo-input:focus,
.astrwoo-select:focus {
    border-color: var(--astrwoo-primary-color); /* 焦点时使用主色 */
    outline: none;
    box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1); /* 使用主色调的阴影 */
}

/* 提交按钮样式 */
.astrwoo-button.astrwoo-button-primary.astrwoo-submit-button {
    background-color: var(--astrwoo-primary-color); /* 使用主色 */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px; /* 统一圆角 */
    cursor: pointer;
    width: 100%;
    font-size: 1.05em; /* 调整大小 */
    font-weight: 500; /* 调整字重 */
    text-align: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
    margin-top: 10px; /* 调整与上方间距 */
}

.astrwoo-button.astrwoo-button-primary.astrwoo-submit-button:hover {
    background-color: var(--astrwoo-primary-color-dark); /* 使用深色主色 */
}

.astrwoo-button.astrwoo-button-primary.astrwoo-submit-button:active {
    background-color: var(--astrwoo-primary-color-darker); /* 使用更深主色 */
    transform: translateY(1px);
}

/* --- 结束新增：用户信息弹窗样式 --- */

/* --- 新增：免责声明弹窗样式 --- */
.astrwoo-disclaimer-modal {
    /* 使用与用户信息弹窗类似的宽度 */
    width: 550px; 
    max-width: 95%;
    /* --- 新增：明确核心显示与定位样式 --- */
    position: fixed; /* 固定定位 */
    top: 50%; /* 垂直居中 */
    left: 50%; /* 水平居中 */
    transform: translate(-50%, -50%); /* 精确居中 */
    z-index: 1005; /* 提高 z-index */
    opacity: 1; /* 确保不透明 */
    visibility: visible; /* 确保可见 */
    /* 确保背景和边框，以防被覆盖 */
    background-color: var(--astrwoo-modal-bg, #fff);
    border: 1px solid var(--astrwoo-border-color, #ccc);
    border-radius: var(--astrwoo-modal-border-radius, 8px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    padding: 25px;
    /* --- 结束新增 --- */
}

.astrwoo-disclaimer-modal .astrwoo-modal-title {
    font-size: 1.3em; /* 标题可以稍小一点 */
    margin-bottom: 15px;
}

.astrwoo-disclaimer-text {
    max-height: 60vh; /* 限制最大高度，根据视口调整 */
    overflow-y: auto; 
    border: 1px solid var(--astrwoo-border-color, #eee); 
    padding: 15px;
    margin-bottom: 20px; 
    text-align: left; 
    font-size: 13px; 
    line-height: 1.6;
    background: #fff; /* 白色背景突出 */
    color: var(--astrwoo-text-color); /* 确保文本颜色 */
}

/* 免责声明内容中的标题 */
.astrwoo-disclaimer-text h5 {
    font-size: 1.1em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: var(--astrwoo-text-color);
    font-weight: 600;
}

/* 免责声明内容中的段落 */
.astrwoo-disclaimer-text p {
    margin-bottom: 0.8em;
}

/* 免责声明内容中的加粗 */
.astrwoo-disclaimer-text strong {
    color: var(--astrwoo-master-bubble-text); /* 可以用稍深的颜色强调 */
}

/* 同意按钮 */
.astrwoo-disclaimer-modal .astrwoo-agree-button {
    /* 使用与提交按钮类似的样式 */
    background-color: var(--astrwoo-primary-color); 
    color: white;
    padding: 10px 20px; /* 调整内边距 */
    border: none;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    font-size: 1em; 
    font-weight: 500; 
    text-align: center;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.astrwoo-disclaimer-modal .astrwoo-agree-button:hover {
    background-color: var(--astrwoo-primary-color-dark); 
}

.astrwoo-disclaimer-modal .astrwoo-agree-button:active {
    background-color: var(--astrwoo-primary-color-darker); 
    transform: translateY(1px);
}

/* --- 新增：不同意按钮（次要按钮）样式 --- */
.astrwoo-disagree-button.astrwoo-button-secondary {
    background-color: var(--astrwoo-button-secondary-bg, #f0f0f0);
    color: var(--astrwoo-button-secondary-text, #555);
    border: 1px solid var(--astrwoo-border-color, #ccc);
}

.astrwoo-disagree-button.astrwoo-button-secondary:hover {
    background-color: var(--astrwoo-button-secondary-bg-hover, #e0e0e0);
    border-color: #bbb;
}

.astrwoo-disagree-button.astrwoo-button-secondary:active {
    background-color: var(--astrwoo-button-secondary-bg-active, #d0d0d0);
    transform: translateY(1px);
}

/* --- 新增：禁用按钮样式 --- */
.astrwoo-button:disabled {
    background-color: var(--astrwoo-button-disabled-bg, #ccc) !important; /* Use !important to override primary/secondary potentially */
    color: var(--astrwoo-button-disabled-text, #888) !important;
    border-color: var(--astrwoo-button-disabled-bg, #ccc) !important;
    cursor: not-allowed;
    opacity: 0.7;
}

/* 确保禁用的主按钮也有正确样式 */
.astrwoo-button-primary:disabled {
    background-color: var(--astrwoo-button-disabled-bg, #ccc);
    border-color: var(--astrwoo-button-disabled-bg, #ccc);
}
/* --- 结束新增：免责声明弹窗样式 --- */

/* --- 结束新增：用户信息弹窗样式 --- */

/* --- 新增：免责声明弹窗样式 --- */
/* ... styles for .astrwoo-disclaimer-modal, title, text, actions, etc. ... */
.astrwoo-disclaimer-modal .astrwoo-modal-actions {
    display: flex; 
    justify-content: space-between; 
    gap: 10px;
}
/* --- 结束新增：免责声明弹窗样式 --- */

/* --- Base Button Styles (Moved Here for Clarity) --- */
/* Base Button Style */
.astrwoo-button {
    padding: 10px 15px;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.4;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.1s ease, border-color 0.2s ease;
    border: 1px solid transparent; /* For consistent sizing */
}

/* Primary Button */
.astrwoo-button-primary {
    background-color: var(--astrwoo-primary-color);
    color: white;
    border-color: var(--astrwoo-primary-color);
}
.astrwoo-button-primary:hover {
    background-color: var(--astrwoo-primary-color-dark);
    border-color: var(--astrwoo-primary-color-dark);
}
.astrwoo-button-primary:active {
    background-color: var(--astrwoo-primary-color-darker);
    border-color: var(--astrwoo-primary-color-darker);
    transform: translateY(1px);
}

/* Secondary Button */
.astrwoo-button-secondary {
    background-color: var(--astrwoo-button-secondary-bg, #f0f0f0);
    color: var(--astrwoo-button-secondary-text, #555);
    border: 1px solid var(--astrwoo-border-color, #ccc);
}
.astrwoo-button-secondary:hover {
    background-color: var(--astrwoo-button-secondary-bg-hover, #e0e0e0);
    border-color: #bbb;
}
.astrwoo-button-secondary:active {
    background-color: var(--astrwoo-button-secondary-bg-active, #d0d0d0);
    transform: translateY(1px);
}

/* Disabled State */
.astrwoo-button:disabled {
    background-color: var(--astrwoo-button-disabled-bg, #ccc) !important;
    color: var(--astrwoo-button-disabled-text, #888) !important;
    border-color: var(--astrwoo-button-disabled-bg, #ccc) !important;
    cursor: not-allowed;
    opacity: 0.7;
}
/* --- End Base Button Styles --- */

/* --- 新增：弹窗移动端优化 (Placed After Base Styles) --- */
@media (max-width: 600px) {
    /* 用户信息弹窗优化 */
    .astrwoo-modal.astrwoo-user-info-modal {
        width: 95%;
        max-width: 400px;
    }
    .astrwoo-user-info-modal .astrwoo-modal-content {
        padding: 20px 25px;
    }
    .astrwoo-user-info-modal .astrwoo-modal-title {
        font-size: 1.2em;
        margin-bottom: 20px;
    }
    .astrwoo-user-info-modal .astrwoo-form-field {
        margin-bottom: 15px;
    }
    .astrwoo-user-info-modal .astrwoo-form-label {
        font-size: 0.85em;
    }
    .astrwoo-user-info-modal .astrwoo-input,
    .astrwoo-user-info-modal .astrwoo-select {
        padding: 10px 12px;
        font-size: 0.9em;
    }
    .astrwoo-user-info-modal .astrwoo-submit-button {
        font-size: 1em;
        padding: 10px 15px;
    }

    /* 免责声明弹窗优化 */
    .astrwoo-disclaimer-modal {
        width: 95%;
        max-width: 450px;
        padding: 20px;
    }
    .astrwoo-disclaimer-modal .astrwoo-modal-title {
        font-size: 1.15em;
    }
    .astrwoo-disclaimer-modal .astrwoo-disclaimer-text {
        font-size: 12px;
        max-height: 55vh;
    }
    .astrwoo-disclaimer-modal .astrwoo-modal-actions {
        flex-direction: column;
        gap: 8px;
    }
    .astrwoo-disclaimer-modal .astrwoo-modal-actions .astrwoo-button {
        width: 100%;
        flex-grow: 0;
        padding: 10px 15px;
        font-size: 0.95em;
    }
} 
/* --- 结束新增：弹窗移动端优化 --- */