/* ============================================
   商品详情页样式 - 与商品列表页完全一致
   ============================================ */

/* ---------- 强制重置 ---------- */
body.product-detail .main-content {
    padding: 16px 0 60px !important;
    min-height: 500px !important;
    background: #f8f9fa !important;
}

body.product-detail .product-layout {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

.container {
    max-width: 1190px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   面包屑导航 - 与商品列表页完全一致
   ============================================ */
body.product-detail .breadcrumb {
    padding: 10px 0 20px !important;
    font-size: 14px !important;
    color: #999 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
}

body.product-detail .breadcrumb a {
    color: #666 !important;
    text-decoration: none !important;
    transition: color 0.3s !important;
    padding: 4px 6px !important;
    border-radius: 4px !important;
}

body.product-detail .breadcrumb a:hover {
    color: #DD302D !important;
    background: rgba(221, 48, 45, 0.06) !important;
}

body.product-detail .breadcrumb .separator {
    margin: 0 6px !important;
    color: #ccc !important;
}

body.product-detail .breadcrumb .current {
    color: #333 !important;
    font-weight: 600 !important;
}

/* ========== 商品主区域 ========== */
.product-layout {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.product-left {
    flex: 1;
    min-width: 0;
}

.product-right {
    flex: 1;
    min-width: 0;
}

/* ========== 图片区 ========== */
.product-gallery {
    margin-bottom: 20px;
}

.main-image {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.main-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #DD302D;
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(221, 48, 45, 0.3);
}

/* ========== 信任标识 ========== */
.trust-badges {
    display: flex;
    gap: 15px;
}

.trust-badge-item {
    flex: 1;
    text-align: center;
    padding: 14px 8px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.2s ease;
}

.trust-badge-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.trust-badge-icon {
    font-size: 26px;
    display: block;
    margin-bottom: 6px;
}

.trust-badge-text strong {
    font-size: 13px;
    color: #333;
    display: block;
}

.trust-badge-text span {
    font-size: 11px;
    color: #999;
}

/* ========== 右侧商品信息 ========== */
.product-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.3;
    margin: 0 0 10px 0;
}

.product-sku {
    font-size: 14px;
    color: #999;
    margin-bottom: 15px;
}

.sku-label {
    color: #aaa;
}

.sku-value {
    color: #333;
    font-weight: 500;
}

.product-price {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.price-currency {
    font-size: 24px;
    font-weight: 600;
    color: #DD302D;
    vertical-align: top;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #DD302D;
}

.product-section {
    margin-bottom: 20px;
}

.product-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    border-left: 3px solid #DD302D;
    padding-left: 12px;
}

.product-content {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.flower-language {
    color: #888;
    font-style: italic;
    font-size: 15px;
    padding-left: 12px;
    border-left: 3px solid #ddd;
}

/* ========== 配送信息卡片 ========== */
.delivery-info-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 20px 0;
    border: 1px solid #eee;
}

.delivery-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.delivery-row:last-child {
    margin-bottom: 0;
}

.delivery-icon {
    font-size: 16px;
    min-width: 24px;
}

.delivery-label {
    font-weight: 600;
    color: #333;
    min-width: 80px;
    flex-shrink: 0;
}

.delivery-value {
    color: #555;
    flex: 1;
}

/* ========== 购买按钮 ========== */
.product-actions {
    margin: 20px 0;
}

.btn-add-to-cart {
    width: 100%;
    max-width: 280px;
    height: 52px;
    background: #DD302D;
    color: #fff;
    border: none;
    border-radius: 26px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-add-to-cart:hover {
    background: #b02623;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(221, 48, 45, 0.35);
}

.btn-add-to-cart svg {
    stroke: currentColor;
}

/* ========== 信任声明 ========== */
.trust-notice {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 12px 16px;
    margin-top: 10px;
    border: 1px solid #eee;
}

.trust-item {
    font-size: 13px;
    color: #555;
    padding: 4px 0;
}

/* ========== 商品详情区 ========== */
.product-detail-section {
    background: #fff;
    border-radius: 16px;
    padding: 30px 35px;
    margin-top: 30px;
    border: 1px solid #eee;
}

.product-detail-section h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #DD302D;
    display: inline-block;
}

.product-detail-section h3 {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin: 25px 0 12px 0;
}

.detail-content {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.detail-content p {
    margin-bottom: 12px;
}

.detail-content.special-tip {
    background: #fef9f0;
    padding: 16px 20px;
    border-radius: 10px;
    border-left: 4px solid #f5a623;
    margin: 20px 0;
}

.detail-content.special-tip h3 {
    margin-top: 0;
    color: #b87a1a;
}

.delivery-policy p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.delivery-links {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.delivery-links a {
    color: #DD302D;
    text-decoration: none;
    font-size: 14px;
    margin-right: 15px;
}

.delivery-links a:hover {
    text-decoration: underline;
}

/* ========== 用户评价 ========== */
.comments-section {
    background: #fff;
    border-radius: 16px;
    padding: 30px 35px;
    margin-top: 30px;
    border: 1px solid #eee;
}

.comments-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #DD302D;
    display: inline-block;
}

.comment-item {
    padding: 16px 0;
    border-bottom: 1px solid #f0f0f0;
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-user {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.comment-content {
    font-size: 14px;
    line-height: 1.7;
    color: #444;
    margin: 6px 0 4px;
}

.comment-meta {
    font-size: 12px;
    color: #aaa;
}

.no-comments {
    text-align: center;
    color: #999;
    padding: 30px 0;
    font-size: 14px;
}

/* ========== 分页 ========== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    background: #fff;
}

.page-link:hover:not(.disabled):not(.current) {
    border-color: #DD302D;
    color: #DD302D;
    background: #fdf6f5;
}

.page-link.current {
    background: #DD302D;
    border-color: #DD302D;
    color: #fff;
    font-weight: 600;
}

.page-link.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f8f9fa;
}

.ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    color: #999;
    font-size: 14px;
}

/* ========== 相关推荐 ========== */
.related-products {
    margin-top: 30px;
}

.related-products h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #DD302D;
    display: inline-block;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.related-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.related-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.related-item a {
    text-decoration: none;
    display: block;
}

.related-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #fafafa;
    display: block;
}

.related-info {
    padding: 12px 12px 14px;
    text-align: center;
}

.related-info h3 {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin: 0 0 4px;
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.related-price {
    font-size: 16px;
    font-weight: 700;
    color: #DD302D;
}

/* ============================================
   响应式 - 平板 (≤992px)
   ============================================ */
@media (max-width: 992px) {
    .product-layout {
        flex-direction: column;
        gap: 30px;
    }

    .product-left {
        width: 100%;
    }

    .product-right {
        width: 100%;
    }

    .trust-badges {
        justify-content: space-between;
    }

    .related-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

/* ============================================
   响应式 - 手机 (≤768px)
   ============================================ */
@media (max-width: 768px) {
    .container {
        padding: 0 12px;
    }

    /* ===== main-content 与列表页一致 ===== */
    body.product-detail .main-content {
        padding: 10px 0 40px !important;
        min-height: 500px !important;
        margin-top: 0 !important;
    }

    /* ===== 强制重置 product-layout ===== */
    body.product-detail .product-layout {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* ===== 面包屑 - 与列表页一致，加顶部padding避开header ===== */
    body.product-detail .breadcrumb {
        font-size: 12px !important;
        padding: 6px 0 14px !important;
        padding-top: 52px !important;  /* 关键：避开固定header */
        margin-top: 0 !important;
    }

    body.product-detail .breadcrumb a {
        padding: 2px 4px !important;
        font-size: 12px !important;
    }

    body.product-detail .breadcrumb .separator {
        margin: 0 4px !important;
        font-size: 12px !important;
    }

    body.product-detail .breadcrumb .current {
        font-size: 12px !important;
    }

    .product-title {
        font-size: 22px;
    }

    .price-amount {
        font-size: 28px;
    }

    .price-currency {
        font-size: 20px;
    }

    .trust-badges {
        gap: 8px;
    }

    .trust-badge-item {
        padding: 10px 6px;
    }

    .trust-badge-icon {
        font-size: 20px;
    }

    .trust-badge-text strong {
        font-size: 10px;
    }

    .trust-badge-text span {
        font-size: 9px;
    }

    .delivery-info-card {
        padding: 14px 16px;
    }

    .delivery-row {
        flex-direction: column;
        gap: 2px;
        margin-bottom: 8px;
    }

    .delivery-label {
        min-width: auto;
    }

    .btn-add-to-cart {
        max-width: 100%;
        width: 100%;
        height: 48px;
        font-size: 16px;
    }

    .product-detail-section {
        padding: 20px;
        margin-top: 20px;
    }

    .product-detail-section h2 {
        font-size: 18px;
    }

    .comments-section {
        padding: 20px;
        margin-top: 20px;
    }

    .comments-section h2 {
        font-size: 18px;
    }

    .related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .related-item img {
        height: 150px;
    }

    .related-info h3 {
        font-size: 12px;
    }

    .related-price {
        font-size: 14px;
    }
}

/* ============================================
   响应式 - 小屏手机 (≤480px)
   ============================================ */
@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }

    /* ===== main-content 与列表页一致 ===== */
    body.product-detail .main-content {
        padding: 6px 0 30px !important;
        min-height: 500px !important;
        margin-top: 0 !important;
    }

    /* ===== 强制重置 product-layout ===== */
    body.product-detail .product-layout {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* ===== 面包屑 - 与列表页一致，加顶部padding避开header ===== */
    body.product-detail .breadcrumb {
        font-size: 11px !important;
        padding: 4px 0 10px !important;
        padding-top: 48px !important;  /* 关键：避开固定header */
        margin-top: 0 !important;
    }

    body.product-detail .breadcrumb a {
        font-size: 11px !important;
        padding: 2px 3px !important;
    }

    body.product-detail .breadcrumb .separator {
        font-size: 11px !important;
        margin: 0 3px !important;
    }

    body.product-detail .breadcrumb .current {
        font-size: 11px !important;
    }

    .product-title {
        font-size: 18px;
    }

    .price-amount {
        font-size: 24px;
    }

    .price-currency {
        font-size: 18px;
    }

    .product-section h3 {
        font-size: 14px;
    }

    .product-content {
        font-size: 13px;
    }

    .trust-badge-icon {
        font-size: 18px;
    }

    .trust-badge-text strong {
        font-size: 9px;
    }

    .trust-badge-text span {
        font-size: 8px;
    }

    .trust-badge-item {
        padding: 8px 4px;
    }

    .trust-badges {
        gap: 6px;
    }

    .delivery-info-card {
        padding: 12px 14px;
    }

    .delivery-row {
        font-size: 12px;
    }

    .delivery-icon {
        font-size: 14px;
    }

    .btn-add-to-cart {
        height: 44px;
        font-size: 15px;
    }

    .trust-item {
        font-size: 12px;
    }

    .product-detail-section {
        padding: 16px;
    }

    .product-detail-section h2 {
        font-size: 16px;
    }

    .product-detail-section h3 {
        font-size: 15px;
    }

    .detail-content {
        font-size: 13px;
    }

    .delivery-policy p {
        font-size: 13px;
    }

    .comments-section {
        padding: 16px;
    }

    .comments-section h2 {
        font-size: 16px;
    }

    .comment-user {
        font-size: 13px;
    }

    .comment-content {
        font-size: 13px;
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .related-item img {
        height: 120px;
    }

    .related-info {
        padding: 8px 8px 10px;
    }

    .related-info h3 {
        font-size: 11px;
        white-space: normal;
        height: 30px;
        overflow: hidden;
    }

    .related-price {
        font-size: 13px;
    }

    .delivery-links a {
        font-size: 11px;
        margin-right: 8px;
        display: inline-block;
        margin-bottom: 4px;
    }

    .page-link:first-child,
    .page-link:last-child {
        display: none;
    }

    .page-link {
        min-width: 30px;
        height: 30px;
        font-size: 12px;
        padding: 0 8px;
        border-radius: 6px;
    }

    .ellipsis {
        min-width: 30px;
        height: 30px;
        font-size: 12px;
    }
}
/* ============================================
   新增：左侧热卖鲜花侧边栏 + 移动端热卖模块
   ============================================ */
/* ============================================
   新增：左侧热卖鲜花侧边栏 + 移动端热卖模块 + 购买按钮前置
   ============================================ */

/* ---------- 主布局：左侧边栏 + 右侧商品 ---------- */
.product-main-wrapper {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* ========== 左侧边栏：热卖鲜花（PC端） ========== */
.product-sidebar {
    flex: 0 0 240px;
    width: 240px;
    position: sticky;
    top: 90px;
    align-self: flex-start;
}

.hot-products-widget {
    background: #fff;
    border-radius: 16px;
    padding: 20px 16px;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hot-products-widget h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #DD302D;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hot-products-widget h3::before {
    content: "🔥";
    font-size: 20px;
}

.hot-products-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hot-product-item {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.hot-product-item:last-child {
    border-bottom: none;
}

.hot-product-item:hover {
    padding-left: 4px;
}

.hot-product-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.hot-product-rank {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #ccc;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

.hot-product-item:nth-child(1) .hot-product-rank {
    background: #e74c3c;
}
.hot-product-item:nth-child(2) .hot-product-rank {
    background: #f39c12;
}
.hot-product-item:nth-child(3) .hot-product-rank {
    background: #f1c40f;
}
.hot-product-item:nth-child(4) .hot-product-rank,
.hot-product-item:nth-child(5) .hot-product-rank {
    background: #95a5a6;
}

.hot-product-img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 8px;
    background: #f8f9fa;
    flex-shrink: 0;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s ease;
}

.hot-product-link:hover .hot-product-img {
    transform: scale(1.05);
}

.hot-product-info {
    flex: 1;
    min-width: 0;
}

.hot-product-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin: 0 0 4px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
}

.hot-product-price {
    font-size: 15px;
    font-weight: 700;
    color: #DD302D;
}

.hot-product-price::before {
    content: "¥";
    font-size: 12px;
}

/* ========== 右侧商品区域 ========== */
.product-right-wrapper {
    flex: 1;
    min-width: 0;
}

/* ========== 移动端购买按钮前置 ========== */
.mobile-sticky-actions {
    display: none;
}

.desktop-actions {
    display: block;
    margin: 20px 0;
}

/* ========== 移动端热卖鲜花（手机端显示） ========== */
.mobile-hot-products {
    display: none;
    margin-top: 30px;
    padding: 0;
}

.mobile-hot-products h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #DD302D;
    display: inline-block;
}

.mobile-hot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.mobile-hot-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mobile-hot-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.mobile-hot-item a {
    text-decoration: none;
    display: block;
    padding: 0 0 12px 0;
    text-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.mobile-hot-image-wrap {
    position: relative;
    display: block;
    overflow: hidden;
}

.mobile-hot-image-wrap img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    background: #fafafa;
    display: block;
}

/* 排名标签 - 左上角 */
.mobile-hot-rank {
    position: absolute;
    top: 6px;
    left: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #ccc;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

/* 前3名特殊颜色 */
.mobile-hot-item:nth-child(1) .mobile-hot-rank {
    background: #e74c3c;
}
.mobile-hot-item:nth-child(2) .mobile-hot-rank {
    background: #f39c12;
}
.mobile-hot-item:nth-child(3) .mobile-hot-rank {
    background: #f1c40f;
}
.mobile-hot-item:nth-child(4) .mobile-hot-rank,
.mobile-hot-item:nth-child(5) .mobile-hot-rank {
    background: #95a5a6;
}

.mobile-hot-name {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    margin: 8px 8px 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-hot-price {
    font-size: 16px;
    font-weight: 700;
    color: #DD302D;
    display: block;
    padding: 0 8px;
}

.mobile-hot-price::before {
    content: "¥";
    font-size: 13px;
}

/* ============================================
   响应式 - 平板 (≤992px)
   ============================================ */
@media (max-width: 992px) {
    .product-main-wrapper {
        flex-direction: column;
    }

    .product-sidebar {
        display: none;
    }

    .mobile-hot-products {
        display: block;
    }

    .mobile-hot-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }
}

/* ============================================
   响应式 - 手机 (≤768px)
   ============================================ */
@media (max-width: 768px) {
    /* 显示移动端按钮（在价格下方） */
    .mobile-sticky-actions {
        display: block;
        margin: 12px 0 18px 0;
    }
    
    /* 隐藏PC端按钮（在底部） */
    .desktop-actions {
        display: none;
    }
    
    /* 移动端按钮全宽，更大点击区域 */
    .mobile-sticky-actions .btn-add-to-cart {
        width: 100%;
        max-width: 100%;
        height: 52px;
        font-size: 17px;
        border-radius: 12px;
        box-shadow: 0 4px 16px rgba(221, 48, 45, 0.3);
    }
    
    /* 价格区域稍微紧凑 */
    .product-price {
        margin-bottom: 4px;
        padding-bottom: 4px;
    }
    
    .mobile-hot-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .mobile-hot-image-wrap img {
        height: 120px;
    }

    .mobile-hot-rank {
        width: 22px;
        height: 22px;
        font-size: 10px;
        top: 5px;
        left: 5px;
    }

    .mobile-hot-name {
        font-size: 12px;
    }

    .mobile-hot-price {
        font-size: 14px;
    }

    .mobile-hot-products h3 {
        font-size: 18px;
    }
}

/* ============================================
   响应式 - 小屏手机 (≤480px)
   ============================================ */
@media (max-width: 480px) {
    .mobile-sticky-actions .btn-add-to-cart {
        height: 48px;
        font-size: 16px;
        border-radius: 10px;
        box-shadow: 0 4px 12px rgba(221, 48, 45, 0.25);
    }
    
    .mobile-sticky-actions {
        margin: 8px 0 14px 0;
    }
    
    .mobile-hot-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .mobile-hot-image-wrap img {
        height: 100px;
    }

    .mobile-hot-rank {
        width: 20px;
        height: 20px;
        font-size: 9px;
        top: 4px;
        left: 4px;
    }

    .mobile-hot-item a {
        padding: 0 0 8px 0;
    }

    .mobile-hot-name {
        font-size: 11px;
        margin: 4px 4px 2px;
    }

    .mobile-hot-price {
        font-size: 13px;
        padding: 0 4px;
    }

    .mobile-hot-products {
        margin-top: 20px;
    }

    .mobile-hot-products h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
}
/* ============================================
   温馨提示 - 可指定日期
   ============================================ */
   .delivery-tip {
    background: #f0f8ff;
    border-radius: 8px;
    padding: 10px 16px;
    margin: 0 0 16px 0;
    font-size: 13px;
    color: #1890ff;
    border: 1px solid #d6e8ff;
    line-height: 1.5;
}

.delivery-tip span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   手机端响应式调整
   ============================================ */
@media (max-width: 768px) {
    .delivery-tip {
        font-size: 12px;
        padding: 8px 12px;
        margin: 0 0 12px 0;
    }
}

@media (max-width: 480px) {
    .delivery-tip {
        font-size: 11px;
        padding: 6px 10px;
        margin: 0 0 10px 0;
    }
}