/**
 * Custom Shop 商城样式补充
 * 主样式见 style.css
 *
 * @package Custom_Shop
 * @since 1.0.0
 */

/* ===== 动画效果 ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card,
.order-card {
    animation: fadeIn 0.3s ease-out;
}

/* ===== 加载状态 ===== */
.btn:disabled,
button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ===== 表单焦点样式 ===== */
input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #ff4757;
    box-shadow: 0 0 0 3px rgba(255, 71, 87, 0.1);
}

/* ===== 滚动条美化 ===== */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* ===== 响应式补充 ===== */
@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 28px !important;
    }

    .hero-banner p {
        font-size: 15px !important;
    }

    .order-detail-grid {
        grid-template-columns: 1fr !important;
    }

    .account-page > .container > div {
        grid-template-columns: 1fr !important;
    }
}
