/**
 * 大建云仓 WordPress插件 - 前端样式
 * 现代化 SaaS 风格
 */

/* ============================================
   1. 产品云仓信息卡片
   ============================================ */

.djy-product-info .djy-label {
    color: #6b7280;
    font-weight: 500;
}

.djy-product-info .djy-value {
    font-weight: 600;
    color: #059669;
}

/* ============================================
   2. 短代码样式
   ============================================ */
.djy-shortcode-stock {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    border-radius: 10px;
    margin: 12px 0;
    font-size: 14px;
}

.djy-shortcode-stock strong {
    color: #166534;
    font-weight: 600;
}

/* ============================================
   3. 物流跟踪信息
   ============================================ */
.djy-tracking-info {
    margin: 24px 0;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.djy-tracking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    border-bottom: 1px solid #f3f4f6;
    margin-bottom: 20px;
}

.djy-tracking-carrier {
    font-weight: 600;
    color: #1f2937;
    font-size: 15px;
}

.djy-tracking-number {
    font-family: var(--djy-font-mono, 'SF Mono', Monaco, monospace);
    color: #6b7280;
    font-size: 13px;
    background: #f3f4f6;
    padding: 4px 10px;
    border-radius: 6px;
}

.djy-tracking-traces {
    list-style: none;
    padding: 0;
    margin: 0;
}

.djy-tracking-trace {
    position: relative;
    padding-left: 36px;
    padding-bottom: 28px;
}

.djy-tracking-trace::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 24px;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
}

.djy-tracking-trace:last-child::before {
    display: none;
}

.djy-tracking-trace::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 6px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 3px solid #d1d5db;
}

.djy-tracking-trace:first-child::after {
    background: #10b981;
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.djy-tracking-time {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 4px;
}

.djy-tracking-location {
    font-weight: 600;
    color: #1f2937;
    font-size: 14px;
    margin-bottom: 4px;
}

.djy-tracking-remark {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* ============================================
   4. 加载状态
   ============================================ */
.djy-loading-inline {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #e5e7eb;
    border-top: 2px solid #3b82f6;
    border-radius: 50%;
    animation: djy-spin 0.8s linear infinite;
}

@keyframes djy-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ============================================
   5. 库存状态徽章
   ============================================ */
.djy-stock-badge-frontend {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
}

.djy-stock-available {
    background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
    color: #166534;
}

.djy-stock-low {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    color: #92400e;
}

.djy-stock-out {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
}

.djy-stock-unknown {
    background: #f3f4f6;
    color: #6b7280;
}

/* ============================================
   6. 价格显示
   ============================================ */
.djy-price-display {
    font-weight: 700;
    color: #059669;
    font-size: 16px;
}

.djy-price-original {
    text-decoration: line-through;
    color: #9ca3af;
    font-weight: 400;
    font-size: 13px;
    margin-left: 8px;
}

.djy-price-discount {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    color: #991b1b;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 8px;
}

/* ============================================
   7. 响应式
   ============================================ */
@media (max-width: 600px) {
    .djy-product-info {
        font-size: 13px;
        padding: 16px;
    }

    .djy-tracking-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .djy-tracking-trace {
        padding-left: 32px;
    }

    .djy-tracking-trace::before {
        left: 9px;
    }

    .djy-tracking-trace::after {
        left: 2px;
        width: 14px;
        height: 14px;
    }
}
