/*
Theme Name: Astra Child theme of astra
Theme URI: 
Description: Child theme of astra theme for the Astra theme
Author: <a href="https://wpastra.com/about/?utm_source=theme_preview&#038;utm_medium=author_link&#038;utm_campaign=astra_theme">Brainstorm Force</a>
Author URI: 
Template: astra
Version: 4.11.11
*/

/* Generated by Orbisius Child Theme Creator (https://orbisius.com/products/wordpress-plugins/orbisius-child-theme-creator/) on Sat, 18 Oct 2025 05:33:18 +0000 */ 
/* The plugin now uses the recommended approach for loading the css files.*/

/* 找到PayPal按钮和付款方式列表的共同父容器，强制弹性布局 */
/* （根据HTML结构，两者是同级元素，父容器通常是产品页的支付区域） */
/* 购物车通知栏整体优化 */
/* 查看购物车按钮样式调整 */
/* 仅作用于购物通知内的"查看购物车"按钮 */
.woocommerce-message .button.wc-forward {
    width: 20% !important; /* 宽度为父容器的20% */
    text-align: center !important; /* 文字居中 */
    min-width: auto !important; /* 清除默认最小宽度 */
    padding: 8px 0 !important; /* 优化内边距 */
    margin: 0 0 0 auto !important; /* 靠右对齐（与产品名分开） */
}

/* 小屏幕适配（避免挤压） */
@media (max-width: 768px) {
    .woocommerce-message .button.wc-forward {
        width: 40% !important; /* 小屏幕加宽至40% */
    }
}

.single-product .product .summary.entry-summary {
    /* 针对产品页摘要区域（包含支付按钮的父容器）启用弹性布局 */
    display: flex;
    flex-direction: column;
}

/* 调整其他付款方式（fieldset）的顺序为1（靠前） */
.single-product .product .summary.entry-summary fieldset.ast-single-product-payments {
    order: 1; /* 排在前面 */
    margin-bottom: 15px; /* 与下方PayPal按钮保持间距 */
}

/* 调整PayPal按钮的顺序为2（靠后） */
.single-product .product .summary.entry-summary div.paypal-button {
    order: 2; /* 排在后面 */
}


/* ==============================================
   基础样式重置
============================================== */
body.page-template-page-login:not(.logged-in) {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* ==============================================
   主容器与背景
============================================== */
.login-container {
    position: relative;
    width: 100%;
    min-height: 100vh; /* 占满屏幕高度 */
    overflow: hidden;
    display: flex !important; /* 启用flex布局 */
    justify-content: center !important; /* 水平居中 */
    align-items: center !important; /* 垂直居中 */
    padding: 20px; /* 防止小屏幕溢出 */
    box-sizing: border-box !important;
}

/* 背景图：全屏覆盖 */
.login-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

/* 表单卡片：白色背景，独立居中（不依赖固定偏移） */
.login-card {
    position: relative;
    z-index: 2;
    max-width: 400px;
    width: 100%;
    padding: 40px 30px;
    background-color: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    /* 移除固定偏移，由父容器flex布局控制居中 */
}

/* ==============================================
   Logo区域
============================================== */
/* Logo区域 */
.login-logo {
    text-align: center;
    margin-bottom: 30px;
}
.login-logo img {
    max-width: 120px;
    height: auto;
    margin: 0 auto 15px;
}
.login-logo h1 {
    color: #269FB7;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

/* ==============================================
   通用表单样式
============================================== */
.login-form {
    width: 100%;
}

/* 表单字段容器 */
.form-group {
    margin-bottom: 20px;
}

/* 输入框样式 */
.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    font-size: 15px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

.form-input:focus {
    border-color: #269FB7; /* 聚焦时主题色边框 */
    outline: none;
    box-shadow: 0 0 0 3px rgba(38, 159, 183, 0.1); /* 主题色外发光 */
}

.form-input::placeholder {
    color: #b3b3b3;
}

/* ==============================================
   登录表单专属样式
============================================== */
/* 记住我选项 */
.form-check {
    margin-bottom: 25px;
    text-align: left;
}

.check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #333;
    font-size: 14px;
    cursor: pointer;
}

.check-label input {
    width: 16px;
    height: 16px;
    accent-color: #269FB7; /* 主题色复选框 */
}

/* 主按钮（主题色） */
.btn-primary {
    width: 100%;
    padding: 14px;
    background-color: #269FB7; /* 主题色背景 */
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1e8299; /* 主题色深色变体 */
}

/* ==============================================
   表单链接区域
============================================== */
.form-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
    font-size: 14px;
}

.link-login,
.link-lostpass,
.link-register {
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.link-login:hover,
.link-lostpass:hover,
.link-register:hover {
    color: #269FB7; /* 主题色hover效果 */
    text-decoration: underline;
}

.link-separator {
    color: #e0e0e0;
}

/* 返回商店链接（与按钮对齐） */
.link-back {
    display: inline-flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    margin-top: 15px;
    transition: color 0.3s;
}

.link-back:hover {
    color: #269FB7; /* 主题色hover效果 */
    text-decoration: underline;
}

.arrow-icon {
    margin-right: 6px;
}

/* ==============================================
   响应式适配（手机端）
============================================== */
/* 响应式适配 */
@media (max-width: 480px) {
    .login-card {
        padding: 30px 20px;
    }


    .login-logo img {
        max-width: 100px;
    }

    .form-links {
        flex-wrap: wrap;
        gap: 10px;
    }
}