/**
 * User Center Page Styles
 * Created: 2026-01-01
 */

/* Member Dashboard */
.member-dashboard {
    padding: 20px 0;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

/* Stat Card Base */
.stat-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    color: #fff;
    text-decoration: none;
}

/* Stat Card Variants */
.stat-card:nth-child(2) {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.stat-card:nth-child(2):hover {
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.4);
}

.stat-card:nth-child(3) {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.stat-card:nth-child(3):hover {
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
}

.stat-card:nth-child(4) {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.stat-card:nth-child(4):hover {
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.4);
}

.stat-card .stat-value {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Section Title */
.section-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

/* Orders Table */
.orders-table {
    width: 100%;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.orders-table thead {
    background: #f8f9fa;
}

.orders-table th {
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    color: #666;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orders-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}

.orders-table tbody tr:last-child td {
    border-bottom: none;
}

/* Order Meta Row */
.order-meta {
    background: #fafafa;
}

.order-meta td {
    padding: 12px 20px;
}

.order-meta .order-info {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #666;
}

.order-meta .order-info span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.order-meta .order-status {
    font-weight: 600;
    color: #667eea;
}

/* Order Product */
.order-product {
    display: flex;
    align-items: center;
    gap: 15px;
}

.order-product img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

.order-product-info {
    flex: 1;
}

.order-product-name {
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.order-product-sku {
    font-size: 12px;
    color: #999;
}

/* Order Price */
.order-price {
    font-weight: 600;
    color: #333;
    font-size: 16px;
}

.order-total {
    font-weight: 700;
    color: #f5576c;
    font-size: 18px;
}

/* Order Actions */
.order-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    padding: 15px 20px;
    background: #fafafa;
}

/* Order Buttons */
.btn-order {
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-order-primary {
    background: #667eea;
    color: #fff;
}

.btn-order-primary:hover {
    background: #5a6fd6;
    color: #fff;
}

.btn-order-outline {
    background: transparent;
    border: 1px solid #ddd;
    color: #666;
}

.btn-order-outline:hover {
    border-color: #667eea;
    color: #667eea;
}

.btn-order-success {
    background: #43e97b;
    color: #fff;
}

.btn-order-success:hover {
    background: #38d96e;
}

/* View More Button */
.view-more-btn {
    display: block;
    text-align: center;
    padding: 15px 30px;
    background: #fff;
    border: 2px solid #667eea;
    color: #667eea;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.view-more-btn:hover {
    background: #667eea;
    color: #fff;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 8px;
}

.share-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: transform 0.2s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

/* Review Button */
.review-btn {
    padding: 6px 12px;
    background: #ffc107;
    color: #333;
    border: none;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.review-btn:hover {
    background: #ffb300;
}

/* Empty Orders */
.empty-orders {
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.empty-orders-icon {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-orders-text {
    color: #999;
    margin-bottom: 20px;
}

/* Window/Modal Hidden States */
.window-cover,
.window-con,
.aftersale-wrap,
.review-wrap {
    display: none !important;
}

.window-cover.show,
.window-con.show,
.aftersale-wrap.show,
.review-wrap.show {
    display: flex !important;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .member-dashboard {
        padding: 10px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .stat-card {
        padding: 16px 12px;
        border-radius: 10px;
    }
    
    .stat-card .stat-value {
        font-size: 24px;
        margin-bottom: 4px;
    }
    
    .stat-card .stat-label {
        font-size: 11px;
        letter-spacing: 0.5px;
    }
    
    .section-title {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    /* Mobile Orders Table */
    .orders-table {
        display: block;
        border: none;
        box-shadow: none;
        background: transparent;
    }
    
    .orders-table thead {
        display: none;
    }
    
    .orders-table tbody {
        display: block;
    }
    
    .orders-table tr {
        display: block;
        margin-bottom: 0;
        border: none;
    }
    
    .orders-table td {
        display: block;
        padding: 8px 0;
        border: none;
        text-align: left;
    }
    
    .orders-table .order-meta {
        background: #f8f9fa;
        border-radius: 10px 10px 0 0;
        padding: 12px;
        margin-top: 15px;
    }
    
    .orders-table .order-meta td {
        padding: 0;
    }
    
    .order-meta .order-info {
        flex-direction: column;
        gap: 6px;
        font-size: 13px;
    }
    
    .order-meta .order-info span {
        display: block;
    }
    
    /* Mobile Order Product Rows */
    .orders-table tr[data-id] {
        background: #fff;
        border: 1px solid #eee;
        border-top: none;
        padding: 12px;
    }
    
    .orders-table tr[data-id] td {
        padding: 4px 0;
    }
    
    .orders-table tr[data-id] td:nth-child(2),
    .orders-table tr[data-id] td:nth-child(3),
    .orders-table tr[data-id] td:nth-child(4) {
        padding-left: 75px;
    }
    
    .order-product {
        flex-direction: row;
        gap: 12px;
    }
    
    .order-product img {
        width: 60px;
        height: 60px;
        border-radius: 6px;
    }
    
    .order-product-info {
        flex: 1;
    }
    
    .order-product-name {
        font-size: 14px;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-clamp: 2;
        overflow: hidden;
    }
    
    .order-product-sku {
        font-size: 12px;
        color: #888;
        margin-top: 4px;
    }
    
    .order-price,
    .order-total {
        font-size: 14px;
        font-weight: 500;
    }
    
    .order-total {
        color: #f5576c;
    }
    
    /* Mobile Order Actions */
    .orders-table tr:has(.order-actions) {
        background: #fff;
        border: 1px solid #eee;
        border-top: none;
        border-radius: 0 0 10px 10px;
    }
    
    .order-actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        padding: 12px 0;
        justify-content: flex-start;
    }
    
    .btn-order {
        flex: 1;
        min-width: 100px;
        text-align: center;
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .view-more-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .empty-orders {
        padding: 40px 15px;
    }
    
    .empty-orders-icon {
        font-size: 48px;
    }
}


/* ============================================
 * User Center Layout Styles
 * ============================================ */

/* Z-index Management */
.account,
.user,
.wrap1 {
    position: relative;
    z-index: 0 !important;
}

.fullscreen-search {
    z-index: 999999 !important;
}

/* Left Sidebar */
.account-left {
    display: block;
    position: sticky;
    top: 120px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 20px;
}

.account-leftCon {
    margin-bottom: 20px;
}

.account-leftCon:last-child {
    margin-bottom: 0;
}

/* User Avatar Section */
.account-head {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
}

.account-head_portrait {
    display: inline-block;
    margin-bottom: 10px;
}

.account-head_portraitVal {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #667eea;
}

.account-head_info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.account-head_name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.account-head_level {
    display: inline-block;
    padding: 2px 10px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-size: 12px;
    border-radius: 10px;
}

.account-head_levels {
    display: inline-block;
    font-size: 12px;
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    padding: 2px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.account-head_levelIcon {
    font-size: 14px;
    color: #ddd;
    margin: 0 2px;
    display: none;
}

.account-head_levelIcon--active {
    color: #ffc107;
    display: inline-block;
}

.account-head_info .account-head_levelIcon {
    display: inline-block;
}

.account-head_plus {
    display: inline-block;
    margin-top: 10px;
    padding: 5px 15px;
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%);
    color: #fff;
    font-size: 12px;
    border-radius: 15px;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.account-head_plus:hover {
    transform: scale(1.05);
    color: #fff;
}

.account-head_pay {
    display: none;
}

/* Navigation Links */
.account-link {
    padding: 15px 0;
    margin-top: 15px;
}

.account-link_item {
    display: block;
    padding: 12px 18px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.account-link_item:hover {
    background: #f5f5f5;
    color: #667eea;
}

.account-link_item--active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    font-weight: 600;
}

.account-link_item--active:hover {
    background: linear-gradient(135deg, #5a6fd6 0%, #6a4190 100%);
    color: #fff;
}

/* News Section */
.news {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.news-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.catalog-title_more {
    font-size: 12px;
    color: #667eea;
    text-decoration: none;
}

.news-con {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    margin-bottom: 8px;
}

.news-item_link {
    display: block;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-item_link:hover {
    color: #667eea;
}

/* Accounts Header Tabs */
.accounts-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
    overflow-x: auto;
}

.accounts-header_item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #666;
    text-decoration: none;
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.accounts-header_item:hover {
    background: #fff;
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.accounts-header_item--active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: transparent;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.accounts-header_item--active:hover {
    background: linear-gradient(135deg, #5a6fd6 0%, #6a4190 100%);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(102, 126, 234, 0.4);
}

/* Member Head Items */
.member-head_tips {
    font-size: 13px;
    color: #888;
    text-align: center;
    margin: 15px 0;
}

.member-head_item {
    display: block;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 10px;
    text-decoration: none;
    color: #333;
    transition: all 0.2s ease;
}

.member-head_item:hover {
    background: #f0f0f0;
    color: #667eea;
}

.member-head_item--plus {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff !important;
    font-weight: 600;
    text-align: center;
}

.member-head_item--plus:hover {
    background: linear-gradient(135deg, #5a6fd6 0%, #6a4190 100%);
    color: #fff;
}

.member-head_tit {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    color: inherit;
    text-decoration: none;
}

.member-head_titSub {
    font-weight: 500;
}

.member-head_icon {
    font-size: 18px;
    color: #667eea;
}

.member-head_info {
    font-size: 13px;
    color: #666;
    margin: 5px 0 0;
}

.member-head_info--points {
    font-weight: 700;
    color: #667eea;
    font-size: 16px;
}

.member-head_help {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 18px;
    color: #ccc;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.member-head_help:hover {
    color: #667eea;
}

/* Member Help Popup */
.member-help {
    max-width: 300px;
}

.member-help_info {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

/* Member Account Banner */
.member-account {
    margin: 0 0 20px;
    padding: 0;
    border-radius: 12px;
    overflow: hidden;
}

.member-account img {
    width: 100%;
    height: auto;
    display: block;
}

.member-account img[src=""],
.member-account img:not([src]),
.member-account img[src="__CDN__"],
.member-account img[src="__CDN____WEBP__"] {
    display: none !important;
}

.member-account:has(img[src=""]),
.member-account:has(img:not([src])),
.member-account:has(img[src="__CDN__"]),
.member-account:has(img[src="__CDN____WEBP__"]) {
    display: none !important;
}

.member-account--hidden {
    display: none !important;
}

/* Account Right Content */
.account-right {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}


/* ============================================
 * Best Seller Product Carousel Styles
 * ============================================ */

.proCategory--best {
    margin-top: 50px;
    padding: 40px 0;
    background: #f8f9fa;
}

.proCategory--best .proCategory-tit {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
    position: relative;
}

.proCategory--best .proCategory-tit::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* UK Slider Container */
.proCategory--best .uk-position-relative {
    padding: 0 50px;
}

.proCategory--best .uk-slider-items {
    margin: 0;
}

.proCategory--best .uk-slider-items > li {
    padding: 10px;
}

/* Swiper Container */
.proCategory--best .proCategory-container {
    position: relative;
    padding: 0 50px;
}

.proCategory--best .proList {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Product Card */
.proCategory--best .proList-item {
    flex: 0 0 auto;
    width: 280px;
    margin-right: 20px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.proCategory--best .proList-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

/* Discount Tag */
.proCategory--best .proList-item_discount {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

/* HOT Tag */
.proCategory--best .hc-sale-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
}

.proCategory--best .hc-sale-tag span::before {
    content: 'HOT';
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

/* Product Image */
.proCategory--best .proList-item_img {
    display: block;
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #f5f5f5;
}

.proCategory--best .proList-item_img img,
.proCategory--best .proList-item_img video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.proCategory--best .proList-item_img > img.lozad {
    z-index: 1;
}

.proCategory--best .proList-item:hover .proList-item_img img {
    transform: scale(1.05);
}

/* Hover Image Container */
.proCategory--best .proList-item_img--active {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.proCategory--best .proList-item:hover .proList-item_img--active {
    opacity: 1;
}

/* Product Title */
.proCategory--best .proList-item_title {
    display: block;
    padding: 15px 15px 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    line-height: 1.4;
    height: 55px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.proCategory--best .proList-item_title:hover {
    color: #667eea;
}

/* Price Box */
.proCategory--best .price-box {
    padding: 0 15px 15px;
}

.proCategory--best .price-box_price {
    font-size: 13px;
    color: #666;
}

.proCategory--best .price-box_price .price {
    font-size: 18px;
    font-weight: 700;
    color: #f5576c;
}

.proCategory--best .price-box_oldPrice {
    font-size: 13px;
    color: #999;
    text-decoration: line-through;
    margin-left: 8px;
}

.proCategory--best .price-box_unit {
    font-size: 12px;
    color: #999;
}

/* UK Slider Navigation */
.proCategory--best [uk-slidenav-previous],
.proCategory--best [uk-slidenav-next] {
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    color: #333;
    transition: all 0.2s ease;
}

.proCategory--best [uk-slidenav-previous]:hover,
.proCategory--best [uk-slidenav-next]:hover {
    background: #667eea;
    color: #fff;
}

.proCategory--best .uk-position-center-left {
    left: 0;
}

.proCategory--best .uk-position-center-right {
    right: 0;
}

/* Swiper Navigation */
.proCategory--best .swiper-button-prev,
.proCategory--best .swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.proCategory--best .swiper-button-prev:hover,
.proCategory--best .swiper-button-next:hover {
    background: #667eea;
    color: #fff;
}

.proCategory--best .swiper-button-prev {
    left: 0;
}

.proCategory--best .swiper-button-next {
    right: 0;
}

/* Swiper Scrollbar */
.proCategory--best .swiper-scrollbar {
    margin-top: 25px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
}

.proCategory--best .swiper-scrollbar-drag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}


/* ============================================
 * Plus Member Page Styles
 * ============================================ */

.plus-container {
    padding: 30px 20px;
    box-sizing: border-box;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    margin-bottom: 25px;
}

.plus-header {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.4;
    color: #fff;
    text-transform: capitalize;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.plus-header:hover {
    color: #fff;
    opacity: 0.9;
}

.plus-header_left,
.plus-header_icon {
    color: #fff;
}

.plus-rights {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    list-style: none;
}

.plus-rights_item {
    width: calc((100% - 80px) / 5);
    padding: 20px 10px;
    background: #fff;
    margin-right: 20px;
    box-sizing: border-box;
    text-align: center;
    margin-bottom: 20px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
}

.plus-rights_item:hover {
    transform: translateY(-5px);
}

.plus-rights_item:nth-child(5n) {
    margin-right: 0;
}

.plus-rights_icon {
    font-size: 28px;
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
}

.plus-rights_icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.plus-rights_name {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
    color: #555;
    margin: 0;
}

.plus-rights_help {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 16px;
    color: #ccc;
    border: none;
    background: none;
    cursor: pointer;
    padding: 0;
}

.plus-rights_help:hover {
    color: #667eea;
}

.plus-rights_link {
    position: absolute;
    width: 24px;
    height: 24px;
    bottom: 0;
    right: 0;
    border-top-left-radius: 12px;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    font-size: 14px;
    text-align: center;
    line-height: 24px;
    color: #999;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.plus-rights_link:hover {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
}

.plus-pay {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    text-align: center;
}

.plus-pay_info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 16px;
}

.plus-pay_price {
    font-weight: 700;
    color: #333;
}

.plus-pay_tip {
    color: #ff4757;
    font-weight: 600;
}

.proDetail-option_paypal {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.proDetail-option_paypal_pay {
    font-size: 36px;
    color: #003087;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.proDetail-option_paypal_pay:hover {
    transform: scale(1.1);
}

.proDetail-option_paypal--credit {
    color: #1a1f71;
}

.plus-service {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.plus-service_item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
}

.plus-service_item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.plus-service_item:hover img {
    transform: scale(1.02);
}

/* Popup Window */
.window-con {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    z-index: 10000;
    width: 320px;
    text-align: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

.window-con_wrap {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

.window-cover_con_close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #ccc;
    transition: color 0.2s;
}

.window-cover_con_close:hover {
    color: #333;
}

.plusWindow-link {
    display: inline-block;
    padding: 8px 25px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    margin-top: 15px;
    font-weight: 600;
    transition: opacity 0.2s;
}

.plusWindow-link:hover {
    opacity: 0.9;
    color: #fff;
}

.plusWindow-info {
    margin: 0;
}

/* ============================================
 * Layout Responsive Styles
 * ============================================ */

@media (max-width: 959px) {
    .account-left {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
    
    .plus-rights_item {
        width: calc((100% - 20px) / 3);
        margin-right: 10px;
    }
    
    .plus-rights_item:nth-child(5n) {
        margin-right: 10px;
    }
    
    .plus-rights_item:nth-child(3n) {
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .accounts-header {
        gap: 10px;
        padding-bottom: 15px;
    }
    
    .accounts-header_item {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    /* Hide avatar and news sections */
    .account-head,
    .account-leftCon.news {
        display: none !important;
    }
    
    /* Menu container - horizontal layout */
    .account-leftCon.account-link {
        display: flex !important;
        flex-direction: row !important;
        align-items: center;
        background: transparent !important;
        border-radius: 0;
        padding: 0 !important;
        margin-bottom: 15px;
        box-shadow: none !important;
        gap: 8px;
    }
    
    /* Scroll area */
    .account-link_scroll {
        display: flex !important;
        flex: 1;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 8px;
        max-width: calc(100% - 50px);
    }
    
    .account-link_scroll::-webkit-scrollbar {
        display: none;
    }
    
    /* Menu items */
    .account-link_scroll .account-link_item {
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        padding: 10px 16px !important;
        margin: 0 !important;
        white-space: nowrap;
        font-size: 13px;
        font-weight: 500;
        color: #666;
        background: #f5f5f5;
        border-radius: 20px;
        text-decoration: none;
        flex-shrink: 0;
    }
    
    .account-link_scroll .account-link_item:hover {
        background: #eee;
        color: #333;
    }
    
    .account-link_scroll .account-link_item--active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
        color: #fff !important;
    }
    
    /* Logout button */
    .account-link_logout {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        min-width: 40px;
        background: #f5f5f5;
        border-radius: 50%;
        color: #999;
        flex-shrink: 0;
        margin-left: auto;
    }
    
    .account-link_logout:hover {
        background: #fee;
        color: #e74c3c;
    }
    
    .account-link_logout svg {
        width: 18px;
        height: 18px;
    }
    
    .account-link_logoutText {
        display: none !important;
    }
    
    /* Plus page responsive */
    .plus-rights_item {
        width: calc((100% - 10px) / 2);
        margin-right: 10px;
    }
    
    .plus-rights_item:nth-child(3n) {
        margin-right: 10px;
    }
    
    .plus-rights_item:nth-child(2n) {
        margin-right: 0;
    }
    
    .plus-pay_info {
        flex-direction: column;
        gap: 5px;
    }
    
    .plus-service {
        grid-template-columns: 1fr;
    }
    
    /* Best Seller responsive */
    .proCategory--best {
        padding: 30px 15px;
    }
    
    .proCategory--best .uk-position-relative,
    .proCategory--best .proCategory-container {
        padding: 0;
    }
    
    .proCategory--best .proList-item {
        width: 200px;
        margin-right: 15px;
    }
    
    .proCategory--best .proList-item_title {
        font-size: 13px;
        padding: 12px 12px 6px;
        height: 50px;
    }
    
    .proCategory--best .price-box {
        padding: 0 12px 12px;
    }
    
    .proCategory--best [uk-slidenav-previous],
    .proCategory--best [uk-slidenav-next],
    .proCategory--best .swiper-button-prev,
    .proCategory--best .swiper-button-next {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 769px) {
    .account-link_logout {
        display: flex;
        align-items: center;
        width: auto;
        height: auto;
        min-width: auto;
        padding: 12px 18px;
        background: transparent;
        border-radius: 8px;
        color: #999;
    }
    
    .account-link_logout:hover {
        background: #fee;
        color: #e74c3c;
    }
    
    .account-link_logout svg {
        margin-right: 8px;
    }
    
    .account-link_logoutText {
        display: inline;
        font-size: 14px;
    }
}

@media (max-width: 1200px) {
    .proCategory--best .proList-item {
        width: 240px;
    }
}
