/**
 * JFL主题下载区块样式 - 借鉴xb-theme风格
 * 基于RIPRO V5和子比主题设计
 */

/* ===== 下载区块容器 ===== */
.jfl-postdown {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 30px 0;
    overflow: hidden;
}

.jfl-postdown-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== 左侧图片区域 ===== */
.jfl-postdown-left {
    float: left;
    width: 400px;
    padding: 20px;
}

.jfl-postdown-img {
    position: relative;
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.jfl-postdown-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.jfl-postdown-img:hover img {
    transform: scale(1.05);
}

/* ===== 右侧信息区域 ===== */
.jfl-postdown-right {
    float: right;
    width: calc(100% - 440px);
    padding: 20px 0;
}

/* 标题 */
.jfl-postdown-title {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #eee;
}

.jfl-postdown-title h1 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px;
    line-height: 1.4;
}

.jfl-postdown-title .jfl-category-tag {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #ff4d4f 0%, #ff7875 100%);
    color: #fff;
    font-size: 12px;
    border-radius: 20px;
}

/* 描述信息 */
.jfl-postdown-desc {
    margin-bottom: 15px;
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.jfl-postdown-desc .jfl-desc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.jfl-postdown-desc .jfl-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #f0f2f5;
    border-radius: 4px;
    font-size: 12px;
    color: #666;
}

.jfl-postdown-desc .jfl-meta-item i {
    font-size: 12px;
}

/* 价格区域 */
.jfl-postdown-price {
    position: relative;
    padding: 15px 0;
    border-bottom: 1px dashed #eee;
    margin-bottom: 15px;
}

.jfl-postdown-price-main {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.jfl-postdown-price-label {
    font-size: 14px;
    color: #999;
}

.jfl-postdown-price-value {
    font-size: 36px;
    font-weight: 700;
    color: #ff4d4f;
}

.jfl-postdown-price-value small {
    font-size: 16px;
}

.jfl-postdown-price-note {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    font-size: 16px;
    color: #ccc;
    cursor: help;
}

.jfl-postdown-price-note:hover .jfl-price-tip {
    display: block;
}

.jfl-price-tip {
    display: none;
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 15px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    white-space: nowrap;
    z-index: 100;
    font-size: 12px;
    color: #333;
}

.jfl-price-tip::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top-color: #fff;
}

/* VIP价格列表 */
.jfl-postdown-price-list {
    margin-top: 10px;
}

.jfl-postdown-vip-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.jfl-postdown-vip-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border: 1px solid;
    border-radius: 4px;
    font-size: 12px;
}

.jfl-postdown-vip-item.vip-normal {
    border-color: #1890ff;
    color: #1890ff;
}

.jfl-postdown-vip-item.vip-svip {
    border-color: #fa8c16;
    color: #fa8c16;
}

.jfl-postdown-vip-item span {
    font-weight: 600;
}

/* 购买按钮区域 */
.jfl-postdown-buy {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.jfl-postdown-buy-main {
    flex: 1;
    min-width: 200px;
}

.jfl-postdown-buy .jfl-btn-buy {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #ff4d4f 0%, #ff7875 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.jfl-postdown-buy .jfl-btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,77,79,0.4);
}

.jfl-postdown-buy .jfl-btn-login {
    background: linear-gradient(135deg, #1890ff 0%, #69c0ff 100%);
}

.jfl-postdown-buy .jfl-btn-login:hover {
    box-shadow: 0 6px 20px rgba(24,144,255,0.4);
}

.jfl-postdown-buy .jfl-btn-demo {
    background: #f0f2f5;
    color: #666;
}

.jfl-postdown-buy .jfl-btn-demo:hover {
    background: #e5e7eb;
    box-shadow: none;
}

/* 辅助按钮 */
.jfl-postdown-buy-extra {
    display: flex;
    gap: 10px;
}

.jfl-postdown-buy-extra .jfl-btn-extra {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    height: 44px;
    border: 1px solid #d9d9d9;
    border-radius: 8px;
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: all 0.2s;
}

.jfl-postdown-buy-extra .jfl-btn-extra:hover {
    border-color: #ff4d4f;
    color: #ff4d4f;
}

/* 密码复制 */
.jfl-postdown-pwd {
    margin-top: 10px;
}

.jfl-postdown-pwd .jfl-pwd-label {
    font-size: 12px;
    color: #999;
    margin-right: 8px;
}

.jfl-postdown-pwd .jfl-pwd-value {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #fff7e6;
    border: 1px dashed #ffa940;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    color: #fa8c16;
    cursor: pointer;
}

.jfl-postdown-pwd .jfl-pwd-value:hover {
    background: #ffd591;
}

/* 特别声明 */
.jfl-postdown-notice {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f0f4ff;
    border-radius: 8px;
    font-size: 12px;
    color: #666;
}

.jfl-postdown-notice .jfl-notice-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    background: linear-gradient(90deg, #ffc53d, #ff7875, #ffadad, #ffc53d);
    background-size: 300% 100%;
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 12px;
    animation: jfl-gradient-flow 4s ease infinite;
}

@keyframes jfl-gradient-flow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ===== 已购买下载区 ===== */
.jfl-download-box {
    background: linear-gradient(135deg, #52c41a 0%, #73d13d 100%);
    border-radius: 12px;
    padding: 25px;
    color: #fff;
    margin: 30px 0;
}

.jfl-download-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.jfl-download-box-header i {
    font-size: 28px;
}

.jfl-download-box-header span {
    font-size: 18px;
    font-weight: 600;
}

.jfl-download-box-info {
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
}

.jfl-download-box-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,0.3);
}

.jfl-download-box-item:last-child {
    border-bottom: none;
}

.jfl-download-box-item .jfl-dl-label {
    font-size: 13px;
    opacity: 0.9;
}

.jfl-download-box-item .jfl-dl-value {
    font-size: 14px;
    font-weight: 600;
}

.jfl-download-box-actions {
    display: flex;
    gap: 15px;
}

.jfl-download-box-actions .jfl-btn-dl {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: #fff;
    color: #52c41a;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
}

.jfl-download-box-actions .jfl-btn-dl:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.jfl-download-box-actions .jfl-btn-copy {
    background: rgba(255,255,255,0.2);
    color: #fff;
}

.jfl-download-box-actions .jfl-btn-copy:hover {
    background: rgba(255,255,255,0.3);
}

/* ===== 付费卡片（悬浮） ===== */
.jfl-pay-card-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.jfl-pay-card-fixed.active {
    transform: translateY(0);
}

.jfl-pay-card-fixed-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.jfl-pay-card-fixed-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.jfl-pay-card-fixed-price {
    font-size: 24px;
    font-weight: 700;
    color: #ff4d4f;
}

.jfl-pay-card-fixed-title {
    font-size: 14px;
    color: #666;
}

/* ===== 独立付费卡片 ===== */
.jfl-pay-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 30px 0;
    overflow: hidden;
}

.jfl-pay-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.jfl-pay-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.jfl-pay-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.jfl-pay-card-desc {
    font-size: 13px;
    opacity: 0.9;
}

.jfl-pay-card-body {
    padding: 20px;
}

/* 价格展示 */
.jfl-pay-price-box {
    margin-bottom: 20px;
}

.jfl-pay-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed #eee;
}

.jfl-pay-price-row:last-child {
    border-bottom: none;
}

.jfl-pay-price-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #666;
}

.jfl-pay-price-original {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
}

.jfl-pay-price-vip {
    font-size: 24px;
    font-weight: 700;
    color: #ff4d4f;
}

.jfl-pay-price-points {
    font-size: 18px;
    font-weight: 600;
    color: #fa8c16;
}

/* VIP提示 */
.jfl-vip-tip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: linear-gradient(135deg, #ffc53d 0%, #ff7875 100%);
    color: #fff;
    font-size: 12px;
    border-radius: 20px;
    margin-top: 8px;
}

/* 购买操作区 */
.jfl-pay-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.jfl-pay-actions .jfl-btn {
    flex: 1;
    min-width: 120px;
}

/* 余额信息 */
.jfl-user-account-info {
    display: flex;
    gap: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.jfl-account-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.jfl-account-label {
    font-size: 12px;
    color: #999;
}

.jfl-account-value {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

/* 购买须知 */
.jfl-pay-notice {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px dashed #eee;
}

.jfl-notice-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
}

.jfl-notice-item i {
    color: #52c41a;
}

/* 登录提示 */
.jfl-login-box {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 20px;
}

.jfl-login-box p {
    margin-bottom: 20px;
    color: #666;
}

.jfl-login-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

/* ===== 小工具样式 ===== */

/* 资源购买小工具 - 支持多种class形式 */
[id*="jfl_widget_pay"],
.widget-pay,
.widget_jfl_widget_pay {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

[id*="jfl_widget_pay"] .pay--rateinfo,
.widget-pay .pay--rateinfo {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #ff4d4f 0%, #ff7875 100%);
    color: #fff;
}

[id*="jfl_widget_pay"] .pay--rateinfo .price,
.widget-pay .pay--rateinfo .price {
    font-size: 32px;
    font-weight: 700;
}

[id*="jfl_widget_pay"] .pricing-options,
.widget-pay .pricing-options {
    list-style: none;
    padding: 15px 20px;
    margin: 0;
    background: #fff;
}

[id*="jfl_widget_pay"] .pricing-options li,
.widget-pay .pricing-options li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 13px;
    color: #666;
    border-bottom: 1px dashed #eee;
}

[id*="jfl_widget_pay"] .pricing-options li:last-child,
.widget-pay .pricing-options li:last-child {
    border-bottom: none;
}

[id*="jfl_widget_pay"] .pricing-options .pricing__opt,
.widget-pay .pricing-options .pricing__opt {
    font-weight: 600;
    color: #333;
}

[id*="jfl_widget_pay"] .pricing-options li:first-child .pricing__opt,
.widget-pay .pricing-options li:first-child .pricing__opt {
    color: #ff4d4f;
}

[id*="jfl_widget_pay"] .pay-box,
.widget-pay .pay-box {
    padding: 15px 20px;
}

[id*="jfl_widget_pay"] .pay-box .btn,
.widget-pay .pay-box .btn {
    display: block;
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

[id*="jfl_widget_pay"] .pay-box .btn--primary,
.widget-pay .pay-box .btn--primary {
    background: linear-gradient(135deg, #ff4d4f 0%, #ff7875 100%);
    color: #fff;
}

[id*="jfl_widget_pay"] .pay-box .btn--primary:hover,
.widget-pay .pay-box .btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255,77,79,0.4);
}

[id*="jfl_widget_pay"] .pay-box .btn--block,
.widget-pay .pay-box .btn--block {
    margin-bottom: 10px;
}

[id*="jfl_widget_pay"] .list-paybody,
.widget-pay .list-paybody {
    list-style: none;
    padding: 15px 20px;
    margin: 0;
    background: #fafafa;
}

[id*="jfl_widget_pay"] .list-paybody li,
.widget-pay .list-paybody li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
    border-bottom: 1px dashed #eee;
}

[id*="jfl_widget_pay"] .list-paybody li:last-child,
.widget-pay .list-paybody li:last-child {
    border-bottom: none;
}

[id*="jfl_widget_pay"] .list-paybody li span:first-child,
.widget-pay .list-paybody li span:first-child {
    color: #999;
}

[id*="jfl_widget_pay"] .ac_qqhao,
.widget-pay .ac_qqhao {
    padding: 15px 20px;
    text-align: center;
}

[id*="jfl_widget_pay"] .ac_qqhao a,
.widget-pay .ac_qqhao a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f0f2f5;
    border-radius: 20px;
    color: #333;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s;
}

[id*="jfl_widget_pay"] .ac_qqhao a:hover,
.widget-pay .ac_qqhao a:hover {
    background: #e5e7eb;
}

/* 用户信息小工具 */
[id*="jfl_widget_userinfo"] .author-card_content,
.widget-userinfo .author-card_content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 20px;
    color: #fff;
}

[id*="jfl_widget_userinfo"] .author_avatar,
.widget-userinfo .author_avatar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

[id*="jfl_widget_userinfo"] .author_avatar img,
.widget-userinfo .author_avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255,255,255,0.3);
}

[id*="jfl_widget_userinfo"] .author_avatar small,
.widget-userinfo .author_avatar small {
    display: block;
    font-size: 12px;
    opacity: 0.9;
}

[id*="jfl_widget_userinfo"] .author_avatar small span,
.widget-userinfo .author_avatar small span {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    margin-left: 8px;
    font-size: 11px;
}

[id*="jfl_widget_userinfo"] .author-fields,
.widget-userinfo .author-fields {
    background: rgba(255,255,255,0.15);
    border-radius: 8px;
    padding: 15px;
}

[id*="jfl_widget_userinfo"] .author-fields .row,
.widget-userinfo .author-fields .row {
    display: flex;
}

[id*="jfl_widget_userinfo"] .author-fields .col-6,
.widget-userinfo .author-fields .col-6 {
    flex: 1;
    text-align: center;
}

[id*="jfl_widget_userinfo"] .author-fields .num,
.widget-userinfo .author-fields .num {
    font-size: 20px;
    font-weight: 700;
}

[id*="jfl_widget_userinfo"] .author-fields .d-block,
.widget-userinfo .author-fields .d-block {
    font-size: 12px;
    opacity: 0.9;
}

/* 广告小工具 */
[id*="jfl_widget_ads"] .adsbg a,
.widget-adss .adsbg a {
    display: block;
    padding: 25px 20px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    text-align: center;
}

[id*="jfl_widget_ads"] .adsbg h4,
.widget-adss .adsbg h4 {
    margin: 0 0 8px;
    font-size: 18px;
}

[id*="jfl_widget_ads"] .adsbg h5,
.widget-adss .adsbg h5 {
    margin: 0 0 15px;
    font-size: 13px;
    font-weight: normal;
    opacity: 0.9;
}

[id*="jfl_widget_ads"] .adsbg .btn,
.widget-adss .adsbg .btn {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 13px;
}

/* 排行榜小工具 */
[id*="jfl_widget_userstop"] .members-list,
.widget-userstop .members-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

[id*="jfl_widget_userstop"] .members-list li,
.widget-userstop .members-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

[id*="jfl_widget_userstop"] .members-list li:last-child,
.widget-userstop .members-list li:last-child {
    border-bottom: none;
}

[id*="jfl_widget_userstop"] .members-list .avatar img,
.widget-userstop .members-list .avatar img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
}

[id*="jfl_widget_userstop"] .members-list .name,
.widget-userstop .members-list .name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

[id*="jfl_widget_userstop"] .members-list .credits,
.widget-userstop .members-list .credits {
    font-size: 12px;
    color: #999;
}

[id*="jfl_widget_userstop"] .members-list .rank-badge,
.widget-userstop .members-list .rank-badge {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f2f5;
    border-radius: 50%;
    font-size: 12px;
    color: #666;
}

[id*="jfl_widget_userstop"] .members-list .rank-badge.gold,
.widget-userstop .members-list .rank-badge.gold {
    background: linear-gradient(135deg, #ffd700 0%, #ffb700 100%);
    color: #fff;
}

[id*="jfl_widget_userstop"] .members-list .rank-badge.silver,
.widget-userstop .members-list .rank-badge.silver {
    background: linear-gradient(135deg, #c0c0c0 0%, #a0a0a0 100%);
    color: #fff;
}

[id*="jfl_widget_userstop"] .members-list .rank-badge.bronze,
.widget-userstop .members-list .rank-badge.bronze {
    background: linear-gradient(135deg, #cd7f32 0%, #b8722d 100%);
    color: #fff;
}

/* 评论小工具 */
[id*="jfl_widget_comments"] ul,
.widget-comments ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

[id*="jfl_widget_comments"] li,
.widget-comments li {
    padding: 12px 0;
    border-bottom: 1px dashed #eee;
}

[id*="jfl_widget_comments"] li:last-child,
.widget-comments li:last-child {
    border-bottom: none;
}

[id*="jfl_widget_comments"] li a,
.widget-comments li a {
    display: flex;
    gap: 10px;
    text-decoration: none;
}

[id*="jfl_widget_comments"] .inner,
.widget-comments .inner {
    flex: 1;
}

[id*="jfl_widget_comments"] .inner img,
.widget-comments .inner img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    float: left;
    margin-right: 10px;
}

[id*="jfl_widget_comments"] .inner time,
.widget-comments .inner time {
    display: block;
    font-size: 11px;
    color: #999;
}

[id*="jfl_widget_comments"] .inner small,
.widget-comments .inner small {
    display: block;
    font-size: 12px;
    color: #666;
    margin-top: 4px;
}

/* 响应式 */
@media (max-width: 768px) {
    .jfl-postdown-left {
        float: none;
        width: 100%;
    }
    
    .jfl-postdown-right {
        float: none;
        width: 100%;
    }
    
    .jfl-postdown-price-value {
        font-size: 28px;
    }
    
    .jfl-postdown-buy {
        flex-direction: column;
    }
    
    .jfl-postdown-buy-extra {
        flex-wrap: wrap;
    }
    
    .jfl-pay-card-fixed-inner {
        flex-direction: column;
        gap: 10px;
    }
    
    .jfl-pay-card-fixed-actions {
        width: 100%;
    }
    
    .jfl-pay-card-fixed-actions .jfl-btn {
        width: 100%;
    }
}
