* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.profile-section {
    background-color: var(--bg-light);
    min-height: calc(100vh - 200px);
}

.header-info {
    background-color: var(--bg-color);
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
}

.avatar-icon {
    width: 30px;
    height: 30px;
    fill: white;
    stroke: white;
}

.user-info {
    margin-top: 0.5rem;
}

.username {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.status-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light, #666);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--success-color);
}

.status-text {
    font-size: 0.875rem;
}

.account-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: white;
    padding: 1rem;
    margin: 0.5rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.75rem;
    color: #666;
}

.orders-section {
    background: white;
    margin: 0.5rem 1rem;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.see-more {
    font-size: 0.875rem;
    color: #666;
    text-decoration: none;
}

.order-options {
    display: flex;
    justify-content: space-between;
    overflow-x: auto;
    gap: 1rem;
    padding: 0rem 0 0.5rem 0;
    scrollbar-width: none;
}

.order-options::-webkit-scrollbar {
    display: none;
}

.order-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 70px;
    text-decoration: none;
    color: #333;
}

.order-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.order-label {
    font-size: 0.75rem;
    text-align: center;
}

.my-order-list {
    margin-top: 0.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.my-order-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.my-order-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.my-order-item-header {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.my-order-item-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;
}

.my-order-sn {
    font-size: 0.85rem;
    color: #666;
}

.my-order-status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.my-order-status-0 {
    background: #fff7e6;
    color: #fa8c16;
}

.my-order-status-1 {
    background: #fff7e6;
    color: #fa8c16;
}

.my-order-status-2 {
    background: #e6f7ff;
    color: #1890ff;
}

.my-order-status-3 {
    background: #f6ffed;
    color: #52c41a;
}

.my-order-status-4 {
    background: #f9f0ff;
    color: #722ed1;
}

.my-order-status-5 {
    background: #f5f5f5;
    color: #999;
}

.my-order-item-date {
    font-size: 0.75rem;
    color: #999;
}

.my-order-item-body {
    padding: 0.75rem 1rem;
}

.my-order-products {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
}

.my-order-product-mini {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.my-order-product-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.my-order-product-more {
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #666;
    flex-shrink: 0;
}

.my-order-item-footer {
    padding: 0.75rem 1rem;
    border-top: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
}

.my-order-total {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.my-order-total-label {
    font-size: 0.85rem;
    color: #666;
}

.my-order-total-price {
    font-size: 1rem;
    font-weight: 600;
    color: #f5222d;
}

.my-order-item-count {
    font-size: 0.8rem;
    color: #999;
}

.my-order-detail-btn {
    padding: 0.4rem 0.8rem;
    border: 1px solid #e53935;
    color: #e53935;
    border-radius: 4px;
    font-size: 0.8rem;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.my-order-detail-btn:hover {
    background: #e53935;
    color: #fff;
}

.my-order-loading-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid #f0f0f0;
    border-top-color: #e53935;
    border-radius: 50%;
    animation: my-order-spin 0.8s linear infinite;
}

@keyframes my-order-spin {
    to {
        transform: rotate(360deg);
    }
}

.order-option.active .order-label {
    color: #e53935;
    font-weight: 600;
}

.my-order-repurchase-notice {
    background: #fff7e6;
    color: #d46b08;
    padding: 0.5rem 0.75rem;
    border-radius: 4px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .my-order-item {
        border-radius: 0;
    }

    .my-order-item-header {
        padding: 0.5rem;
    }

    .my-order-item-body {
        padding: 0.5rem;
    }

    .my-order-item-footer {
        padding: 0.5rem;
        flex-wrap: wrap;
    }

    .my-order-detail-btn {
        width: 100%;
        text-align: center;
        margin-top: 0.5rem;
    }
}

.quick-actions {
    background: white;
    margin: 0.5rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.account-stats,
.orders-section,
.quick-actions {
    background-color: rgba(255, 253, 247, 0.82) !important;
}

@media (min-width: 769px) {
    .account-stats,
    .orders-section,
    .quick-actions {
        max-width: 1200px;
        margin: 0.5rem auto !important;
        padding: 1rem 20px 1.5rem 20px;
    }
    
    .order-options {
        padding: 2rem 40px 0.5rem 40px;
    }
}

.no-reviews {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 3rem 2rem !important;
    margin: 3rem 1rem 2rem 1rem !important;
    text-align: center !important;
    position: relative !important;
    top: 30px !important;
}

.no-reviews-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.no-reviews-text {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .account-stats,
    .orders-section,
    .quick-actions,
    .settings-list {
        margin: 0.5rem 0 !important;
        border-radius: 0 !important;
    }
    
    .order-options {
        gap: 0;
    }
    
    body.profile-page #header-container {
        display: none;
    }
    
    .no-reviews {
        margin: 0.5rem 0 !important;
        padding: 2rem 0;
    }
    
    .edit-form {
        margin: 0 0 !important;
        padding: 1rem;
        border-radius: 0;
    }
    
    .setting-item {
        border-radius: 0;
    }
    
    .form-control {
        border-radius: 0;
    }
    
    .btn {
        border-radius: 0;
    }
    
    .logout-btn {
        border-radius: 0;
    }
}

@media (min-width: 769px) {
    .account-stats,
    .orders-section,
    .quick-actions,
    .settings-list {
        max-width: 1200px;
        margin: 0.5rem auto !important;
        padding: 1rem 20px 1.5rem 20px;
    }
    
    .order-options {
        padding: 2rem 40px 0.5rem 40px;
    }
    
    .no-reviews {
        max-width: 1200px;
        margin: 0.5rem auto !important;
        padding: 2rem 20px;
    }
    
    .edit-form {
        margin: 0 auto;
        max-width: 1200px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

.action-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    height: 100%;
}

.action-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 0.5rem;
    text-decoration: none;
    color: #333;
    border-radius: 0;
    transition: background 0.2s;
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    height: 100%;
}

.action-item:nth-child(3n) {
    border-right: none;
}

.action-item:last-child,
.action-item:nth-last-child(2) {
    border-bottom: none;
}

.action-item:hover {
    background: #f8f8f8;
}

.action-icon {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.settings-list {
    background: rgba(255, 253, 247, 0.82);
    margin: 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.setting-item {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.setting-item:last-child {
    border-bottom: none;
}

.setting-item:hover {
    background: #f8f8f8;
}

/* Estilos para el layout vertical de la información */
.setting-item.vertical-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: relative;
}

.setting-item.vertical-layout .setting-label {
    margin-bottom: 5px;
    text-align: left;
}

.setting-item.vertical-layout .setting-value {
    width: 100%;
    text-align: left;
    padding-left: 0;
    margin-bottom: 5px;
}

.setting-item.vertical-layout .arrow-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.setting-icon {
    margin-right: 12px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.setting-label {
    flex: 1;
    font-size: 1rem;
    color: var(--text-color);
}

.setting-value {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.arrow-icon {
    flex-shrink: 0;
}

.logout-section {
    padding: 1rem;
    text-align: center;
}

.logout-btn {
    width: 100%;
    max-width: 300px;
    padding: 12px;
    background-color: #f87171;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.logout-btn:hover {
    background-color: #ef4444;
}

.edit-form {
    background: #f9fafb;
    padding: 1rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 0 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.1);
}

.form-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: background-color 0.2s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #e55a2b;
}

.btn-secondary {
    background-color: #e5e7eb;
    color: #374151;
}

.btn-secondary:hover {
    background-color: #d1d5db;
}

/* Withdraw form styles */
.withdraw-form-group {
    margin-bottom: 1rem;
}

.withdraw-form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.withdraw-form-control {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: white;
}

.withdraw-form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.1);
}

.withdraw-form-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
    margin-top: 1rem;
}

.withdraw-small-input {
    max-width: 150px;
}

.input-with-unit {
    display: flex;
    align-items: center;
    gap: 8px;
}

.input-unit {
    color: var(--text-light);
    font-size: 0.9rem;
    white-space: nowrap;
}

.withdraw-notice {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: #fffbeb;
    border-left: 3px solid #f59e0b;
    font-size: 0.85rem;
    color: #555;
    line-height: 1.5;
}

.action-label {
    font-size: 0.875rem;
    text-align: center;
}

.profile-actions {
    padding: 1rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.profile-actions .btn {
    flex: 1;
    max-width: 200px;
}

:root {
    --primary-color: #e53935;
    --secondary-color: #006847;
    --accent-color: #ffb300;

    --text-color: #222222;
    --text-light: #6b7280;

    --bg-color: #fffdf7;
    --bg-light: #fff7ed;

    --border-color: #e5e7eb;

    --success-color: #16a34a;
    --warning-color: #facc15;
    --danger-color: #dc2626;

    --shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 14px 35px rgba(15, 23, 42, 0.14);
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-light);
    padding-bottom: 70px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
}

.top-nav {
    background-color: rgba(255, 253, 247, 0.82);
    backdrop-filter: blur(14px);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.announcement-bar {
    background-color: rgba(250, 204, 21, 0.1);
    border-bottom: 1px solid rgba(250, 204, 21, 0.6);
    padding: 12px 0;
}

.announcement-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.announcement-content svg {
    color: var(--warning-color);
    flex-shrink: 0;
}

.announcement-text {
    flex: 1;
    color: #856404;
    font-size: 14px;
    font-weight: 500;
}

.announcement-link {
    color: var(--warning-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.announcement-link:hover {
    text-decoration: underline;
}

.top-bar {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-link {
    color: white;
    opacity: 0.9;
}

.top-bar-link:hover {
    opacity: 1;
}

.language-select {
    background-color: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
}

.language-select option {
    color: var(--text-color);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.logo h1 {
    /* -webkit-text-fill-color: transparent; */
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -1px;
    /* text-shadow: rgba(0, 0, 0, 0.1) 2px 2px 4px; */
    /* background: linear-gradient(135deg, rgb(231, 76, 60) 0%, rgb(243, 156, 18) 50%, rgb(46, 204, 113) 100%) text; */
}

.logo-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 2px;
}

.search-bar {
    flex: 1;
    max-width: 550px;
    margin: 0 40px;
    display: flex;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 12px 0 0 12px;
    font-size: 14px;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.search-input:focus {
    border-color: var(--primary-color);
    background-color: white;
    outline: none;
}

.search-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 20px;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.search-btn:hover {
    background-color: #e55a2b;
}

.nav-actions {
    display: flex;
    gap: 25px;
    align-items: center;
}

.nav-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--text-color);
    font-size: 12px;
    transition: var(--transition);
}

.nav-action:hover {
    color: var(--primary-color);
}

.favorites-section {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.favorites-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.favorite-item {
    display: flex;
    align-items: center;
    background: rgba(255, 253, 247, 0.82);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
    cursor: pointer;
}

.favorite-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.favorite-item-image {
    width: 120px;
    height: 120px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.favorite-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.favorite-item-info {
    flex: 1;
    padding: 0 16px;
    min-width: 0;
}

.favorite-item-name {
    font-size: 16px;
    font-weight: 500;
    color: #1f2937;
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.favorite-item-price {
    font-size: 20px;
    font-weight: 600;
    color: #e11d48;
    margin-bottom: 8px;
}

.favorite-item-price .currency {
    font-size: 14px;
    font-weight: 500;
}

.favorite-item-original-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 8px;
}

.favorite-item-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.favorite-item-actions .btn-add-cart,
.favorite-item-actions .btn-remove,
.favorite-item-actions .btn-buy-now {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.btn-add-cart {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-add-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-remove {
    background: transparent;
    color: #6b7280;
    border: 1px solid #d1d5db;
}

.btn-remove:hover {
    background: #fee2e2;
    color: #e11d48;
    border-color: #e11d48;
}

.btn-buy-now {
    background: linear-gradient(135deg, var(--primary-color, #e53935) 0%, #ff6b6b 100%);
    color: white;
    border: none;
}

.btn-buy-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.4);
}

.favorites-empty {
    text-align: center;
    padding: 60px 20px;
}

.favorites-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    color: #d1d5db;
}

.favorites-empty-text {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 20px;
}

.favorites-empty-btn {
    display: inline-block;
    background: #e11d48;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.favorites-empty-btn:hover {
    background: #be123c;
}

.favorites-loading {
    text-align: center;
    padding: 40px;
    color: #6b7280;
}

@media (max-width: 768px) {
    .favorites-section {
        padding: 0;
        border-radius: 0;
    }
    
    .favorite-item {
        flex-direction: column;
        align-items: stretch;
        border-radius: 0;
    }
    
    .favorite-item-image {
        width: 100%;
        height: 200px;
    }
    
    .favorite-item-info {
        padding: 12px 0;
    }
    
    .favorite-item-actions {
        flex-direction: row;
        justify-content: stretch;
        display: flex;
    }
    
    .favorite-item-actions .btn-remove {
        display: none;
    }
    
    .favorite-item-actions button {
        flex: 1;
    }
}

.nav-action.cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--danger-color);
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.category-nav {
    display: flex;
    gap: 30px;
    padding: 12px 0;
    overflow-x: auto;
    white-space: nowrap;
}

.category-link {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: 20px;
    transition: var(--transition);
}

.category-link:hover,
.category-link.active {
    color: var(--primary-color);
    background-color: rgba(255, 107, 53, 0.1);
}

.main-content {
    min-height: calc(100vh - 200px);
}

.hero-section {
    background: linear-gradient(145deg, var(--secondary-color) 0%, var(--primary-color) 55%, var(--accent-color) 100%);
    padding: 0px 0;
    overflow: hidden;
    position: relative;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.hero-slide {
    display: none;
    width: 100%;
    height: 400px;
}

.hero-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.hero-image {
    width: 100%;
    height: 400px;
}

.hero-image a {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
}

.hero-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 48px;
    color: #f9fafb;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0.45) 45%, transparent 75%);
}

.hero-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.hero-subtitle {
    font-size: 15px;
    color: #e5e7eb;
    max-width: 380px;
    margin-bottom: 20px;
}

.cta-button {
    align-self: flex-start;
    padding: 10px 22px;
    border-radius: 9999px;
    background-color: var(--accent-color);
    color: #1f2933;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow);
    pointer-events: auto;
    transition: var(--transition);
}

.cta-button svg {
    width: 18px;
    height: 18px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.hero-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--accent-color);
    transform: scale(1.2);
}

.dot:hover {
    background-color: white;
}

.quick-actions-section {
    padding: 18px 0 8px;
    background-color: var(--bg-light);
}

.quick-actions-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.quick-action-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.quick-action-icon {
    width: 54px;
    height: 54px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

.quick-action-icon svg {
    width: 26px;
    height: 26px;
}

.quick-action-info .quick-action-icon {
    background: #16a34a;
}

.quick-action-discount .quick-action-icon {
    background: #f97316;
}

.quick-action-recharge .quick-action-icon {
    background: #22c55e;
}

.quick-action-withdraw .quick-action-icon {
    background: #3b82f6;
}

.quick-action-support .quick-action-icon {
    background: #8b5cf6;
}

.quick-action-label {
    font-size: 13px;
    color: var(--text-light);
}

@media (min-width: 769px) {
    .quick-actions-section {
        padding: 22px 0 14px;
        background-color: rgba(229, 57, 53, 0.06);
    }

    .quick-actions-section .container {
        background-color: rgba(255, 253, 247, 0.96);
        border-radius: 9999px;
        padding: 10px 22px;
        box-shadow: var(--shadow);
    }

    .quick-actions-grid {
        padding: 0;
        border-radius: 9999px;
        background-color: transparent;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .quick-actions-grid {
        gap: 10px;
    }

    .quick-action-icon {
        width: 42px;
        height: 42px;
        box-shadow: 0 6px 16px rgba(15, 23, 42, 0.16);
    }

    .quick-action-icon svg {
        width: 20px;
        height: 20px;
    }

    .quick-action-label {
        font-size: 12px;
    }
}

.features-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.features-section .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-item svg {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-color);
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

.products-section {
    padding: 60px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 0px;
    position: relative;
}

.section-header h2 {
    font-size: 24px;
    color: var(--text-color);
    font-weight: 700;
    position: relative;
    padding-left: 20px;
}

.section-header h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.view-all {
    color: #999;
    padding: 10px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.view-all:hover {
    color: #999;
    text-decoration: none;
    transform: translateX(3px);
}

.filter-options {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-option {
    position: relative;
}

.filter-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 180px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.filter-trigger:hover {
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 4px 14px rgba(229, 57, 53, 0.15);
    transform: translateY(-2px);
}

.filter-label {
    font-size: 14px;
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 0.2px;
}

.filter-arrow {
    color: var(--text-light);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.filter-trigger:hover .filter-arrow {
    color: var(--primary-color);
    transform: rotate(180deg);
}

.filter-dropdown {
    position: absolute;
    top: calc(100% - 1px);
    left: 0;
    background-color: white;
    border: 1px solid var(--border-color);
    border-radius: 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 100;
    min-width: 220px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.filter-dropdown.hidden {
    display: none;
    opacity: 0;
    transform: translateY(-10px);
}

.filter-dropdown.show {
    display: block;
    animation: dropdownSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.filter-content ul {
    list-style: none;
    padding: 6px 0;
}

.filter-content li {
    padding: 0;
    position: relative;
}

.filter-content li a {
    display: block;
    padding: 12px 20px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
    z-index: 1;
}

.filter-content li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, #ff6b6b 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: -1;
}

.filter-content li a:hover {
    background: linear-gradient(90deg, rgba(229, 57, 53, 0.08) 0%, transparent 100%);
    color: var(--primary-color);
    padding-left: 24px;
}

.filter-content li a:hover::before {
    opacity: 1;
}

.filter-content li.selected a {
    color: var(--primary-color);
    font-weight: 700;
    background: linear-gradient(90deg, rgba(229, 57, 53, 0.12) 0%, transparent 100%);
    padding-left: 24px;
}

.filter-content li.selected a::before {
    opacity: 1;
}

.view-all:active {
    color: #999;
}

.view-all svg {
    width: 20px;
    height: 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    background-color: var(--bg-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.badge.hot {
    background-color: var(--danger-color);
    color: white;
}

.badge.new {
    background-color: var(--success-color);
    color: white;
}

.badge.discount {
    background-color: var(--warning-color);
    color: var(--text-color);
}

.wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    opacity: 0;
}

.product-card:hover .wishlist-btn {
    opacity: 1;
}

.wishlist-btn:hover {
    background-color: var(--primary-color);
    color: white;
}

.wishlist-btn.favorited {
    opacity: 1;
    background-color: var(--primary-color);
    color: white;
}

.wishlist-btn.favorited svg {
    fill: currentColor;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--text-color);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-category {
    display: none;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.current-price {
    font-size: 20px;
    font-weight: 400;
    color: var(--text-color);
}

.original-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-rating {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.stars {
    color: var(--warning-color);
    font-size: 14px;
}

.review-count {
    font-size: 12px;
    color: var(--text-light);
}

.add-to-cart {
    display: none;
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.add-to-cart:hover {
    background-color: #e55a2b;
}

.promo-section {
    padding: 60px 0;
}

.promo-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
}

.promo-content {
    flex: 1;
    padding: 60px;
    color: white;
}

.promo-content h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.promo-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.promo-button {
    background-color: white;
    color: var(--primary-color);
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
}

.promo-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.promo-image {
    flex: 1;
    height: 300px;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.new-arrivals-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.bottom-nav {
    background-color: var(--text-color);
    color: white;
    padding: 60px 0 20px;
}

.bottom-nav .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: white;
}

.footer-logo h2 {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 14px;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-btn {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: #e55a2b;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.payment-icon {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

@media (max-width: 1024px) {
    .hero-content h2 {
        font-size: 36px;
    }

    .hero-slider {
        flex-direction: column;
        text-align: center;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        gap: 10px;
    }

    .main-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
        transition: all 0.3s ease;
    }

    .main-nav.scrolled {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        padding: 18px 6px 18px 8px;
    }

    .main-nav.scrolled .logo {
        text-align: left;
        padding: 0;
        margin: 0;
        flex-shrink: 0;
    }

    .main-nav.scrolled .logo h1 {
        /* padding-left: 8px; */
        font-size: 18px;
    }

    .main-nav.scrolled .logo-subtitle {
        display: none;
    }

    .main-nav.scrolled .search-bar {
        flex: 1;
        max-width: 200px;
        margin: 0;
    }

    .main-nav.scrolled .search-input {
        padding: 6px 10px;
        padding-right: 50px;
        font-size: 13px;
    }

    .main-nav.scrolled .search-btn {
        padding: 6px 10px;
    }

    .main-nav.scrolled .search-btn svg {
        width: 16px;
        height: 16px;
    }

    .main-nav.scrolled .nav-actions {
        display: none;
    }

    .logo {
        text-align: center;
        padding: 10px 0;
    }

    .logo h1 {
        font-size: 26px;
    }

    .search-bar {
        max-width: 100%;
        margin: 0;
        display: flex;
        position: relative;
    }

    .search-input {
        flex: 1;
        padding: 14px 18px;
        padding-right: 60px;
        font-size: 16px;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        background-color: var(--bg-light);
    }

    .search-input:focus {
        border-color: var(--primary-color);
        background-color: white;
    }

    .search-btn {
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        padding: 10px 14px;
        border-radius: 8px;
        background-color: var(--primary-color);
    }

    .search-btn:hover {
        background-color: #e55a2b;
    }

    .search-btn svg {
        width: 22px;
        height: 22px;
    }

    .nav-actions {
        gap: 15px;
    }

    .category-nav {
        gap: 15px;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .filter-options {
        gap: 10px;
        margin-bottom: 20px;
        width: 100%;
    }

    .filter-option {
        flex: 1;
        min-width: 0;
    }

    .filter-trigger {
        padding: 11px 14px;
        min-width: 0;
        width: 100%;
        justify-content: center;
        border-radius: 0;
        border: none;
    }

    .filter-label {
        font-size: 13px;
        font-weight: 600;
        text-align: center;
    }

    .filter-dropdown {
        min-width: 100%;
        left: 0;
        right: 0;
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
        max-height: 280px;
        overflow-y: auto;
    }

    .filter-content li a {
        padding: 11px 16px;
        font-size: 13px;
    }

    .promo-card {
        flex-direction: column;
    }

    .promo-content {
        padding: 30px;
    }

    .promo-image {
        height: 200px;
    }

    .bottom-nav .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 !important;
        max-width: 100% !important;
    }

    .main-nav {
        gap: 6px;
        padding: 12px 0;
    }

    .logo {
        text-align: center;
        padding: 8px 0;
    }

    .logo h1 {
        font-size: 24px;
    }

    .logo-subtitle {
        font-size: 12px;
    }

    .search-bar {
        max-width: 100% !important;
        margin: 0;
        display: flex;
        position: relative;
    }

    .search-input {
        flex: 1;
        padding: 12px 16px;
        padding-right: 60px;
        font-size: 15px;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        background-color: var(--bg-light);
    }

    .search-input:focus {
        border-color: var(--primary-color);
        background-color: white;
    }

    .search-btn {
        position: absolute;
        right: 4px;
        top: 50%;
        transform: translateY(-50%);
        padding: 8px 12px;
        border-radius: 8px;
        background-color: var(--primary-color);
    }

    .search-btn:hover {
        background-color: #e55a2b;
    }

    .search-btn svg {
        width: 20px;
        height: 20px;
    }

    .nav-actions {
        display: none;
    }

    .nav-action span {
        display: none;
    }

    .hero-section {
        padding: 0px 0;
    }

    .hero-slider {
        height: 250px;
    }

    .hero-slide {
        height: 250px;
    }

    .hero-image {
        height: 250px;
    }

    .hero-image a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .hero-image img {
        height: 250px;
    }

    .hero-dots {
        bottom: 15px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .features-section {
        padding: 40px 0 60px 0;
    }

    .features-section .container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-item {
        padding: 20px 15px;
    }

    .feature-item svg {
        width: 36px;
        height: 36px;
        margin-bottom: 15px;
    }

    .feature-item h3 {
        font-size: 16px;
    }

    .feature-item p {
        font-size: 13px;
    }

    .announcement-bar {
        padding: 10px 0;
    }

    .announcement-content {
        gap: 8px;
    }

    .announcement-content svg {
        width: 18px;
        height: 18px;
    }

    .announcement-text {
        font-size: 13px;
    }

    .announcement-link {
        font-size: 13px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .cta-button,
    .promo-button {
        padding: 12px 30px;
        font-size: 14px;
    }

    .products-section,
    .new-arrivals-section {
        padding: 20px 0;
    }

    .section-header {
        margin-bottom: 15px;
        padding-bottom: 0px;
    }

    .section-header h2 {
        font-size: 22px;
        padding-left: 15px;
    }

    .section-header h2::before {
        width: 3px;
        height: 18px;
    }

    .view-all {
        padding: 8px;
        width: 32px;
        height: 32px;
    }

    .view-all svg {
        width: 16px;
        height: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
        padding: 0;
        margin: 0;
    }

    .product-card {
        border-radius: 0;
        margin: 0;
    }

    .product-info {
        padding: 8px;
    }

    .product-title {
        font-size: 13px;
        font-weight: 400;
        margin-bottom: 4px;
    }

    .product-category {
        display: none;
        font-size: 11px;
        margin-bottom: 6px;
    }

    .current-price {
        font-size: 16px;
        font-weight: 400;
    }

    .original-price {
        font-size: 12px;
    }

    .stars {
        display: none;
        font-size: 12px;
    }

    .review-count {
        display: none;
        font-size: 10px;
    }

    .add-to-cart {
        display: none;
        padding: 6px;
        font-size: 12px;
    }

    .wishlist-btn {
        width: 28px;
        height: 28px;
    }

    .badge {
        font-size: 9px;
        padding: 2px 4px;
    }
}

.mobile-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    background-color: rgba(255, 253, 247, 0.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 -6px 20px rgba(15, 23, 42, 0.18);
    z-index: 9999;
    padding: 8px 0;
    border-top: 1px solid rgba(229, 231, 235, 0.7);
    width: 100%;
    max-width: none;
}

.mobile-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--text-light);
    font-size: 11px;
    padding: 4px 0;
    transition: var(--transition);
    position: relative;
}

.mobile-nav-item svg {
    margin-bottom: 0px;
    stroke-width: 2;
}

.mobile-nav-item.active {
    color: var(--primary-color);
}

.mobile-nav-item:active {
    transform: scale(0.95);
}

.mobile-cart-count {
    position: absolute;
    top: -8px;
    right: calc(50% - 7px);
    background-color: var(--danger-color);
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 2px 5px;
    border-radius: 10px;
    min-width: 16px;
    text-align: center;
}

@media (max-width: 768px) {
    body {
        padding-bottom: 60px;
    }
}

.login-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.login-container {
    max-width: 480px;
    margin: 0 auto;
}

.login-card {
    background-color: rgba(255, 253, 247, 0.82);
    border-radius: 16px;
    padding: 48px 40px;
    box-shadow: var(--shadow);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 12px;
}

.login-subtitle {
    font-size: 14px;
    color: var(--text-light);
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 16px;
    color: var(--text-light);
    flex-shrink: 0;
}

.form-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 1.5px solid var(--border-color);
    border-radius: 12px;
    font-size: 15px;
    transition: var(--transition);
    background-color: var(--bg-light);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
}

.form-input::placeholder {
    color: var(--text-light);
}

.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.phone-prefix {
    position: absolute;
    left: 48px;
    color: var(--text-light);
    font-weight: 600;
    font-size: 15px;
    pointer-events: none;
    user-select: none;
}

.phone-input {
    padding-left: 90px !important;
}

.password-toggle {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.password-toggle:hover {
    color: var(--primary-color);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-color);
}

.checkbox-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.forgot-password {
    color: var(--primary-color);
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-button {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff6b6b 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}

.error-message {
    width: 100%;
    padding: 12px;
    background-color: #fee2e2;
    color: #dc2626;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
    border: 1px solid #fecaca;
}

.login-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(229, 57, 53, 0.4);
}

.login-button:active {
    transform: translateY(0);
}

.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 8px 0;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
}

.divider span {
    font-size: 13px;
    color: var(--text-light);
}

.social-login {
    display: flex;
    gap: 12px;
}

.social-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    background-color: white;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.social-button:hover {
    border-color: var(--primary-color);
    background-color: rgba(229, 57, 53, 0.05);
}

.social-button svg {
    width: 20px;
    height: 20px;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
}

.register-text {
    font-size: 14px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.register-text a {
    font-weight: normal;
    text-decoration: none;
    transition: var(--transition);
}

.register-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .login-section {
        padding: 0.5rem 0 !important;
    }

    .login-card {
        padding: 32px 24px;
        border-radius: 0;
    }

    .login-title {
        font-size: 24px;
    }

    .form-input {
        padding: 12px 14px 12px 44px;
        font-size: 14px;
    }

    .phone-prefix {
        left: 44px;
        font-size: 14px;
    }

    .phone-input {
        padding-left: 80px !important;
    }

    .login-button {
        padding: 12px 20px;
        font-size: 15px;
    }

    .social-login {
        flex-direction: column;
    }
}

.stat-item.highlighted {
    border: 2px solid #FF6B35; /* Color naranja del logo */
    border-radius: 8px;
    padding: 8px;
    background-color: #FFF5EB; /* Fondo suave que combina con el color del logo */
}

.stat-item.highlighted .stat-value {
    font-weight: bold;
    color: #FF6B35; /* Texto en color del logo */
}

.stat-item.highlighted .stat-label {
    color: #FF6B35; /* Etiqueta también en color del logo */
}

.stat-item.processing {
    border: 2px solid #3b82f6;
    border-radius: 8px;
    padding: 8px;
    background-color: #eff6ff;
    animation: pulse-blue 2s infinite;
}

@keyframes pulse-blue {
    0% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
    }
}

.stat-item.processing .stat-value {
    font-weight: bold;
    color: #3b82f6;
}

.stat-item.processing .stat-label {
    color: #3b82f6;
}

.stat-item.unavailable {
    border: 2px dashed #f59e0b;
    border-radius: 8px;
    padding: 8px;
    background-color: #fffbeb;
    position: relative;
    cursor: help;
}

.stat-item.unavailable::before {
    content: 'Retiro no disponible por el momento';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 12px;
    background-color: #f59e0b;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    margin-bottom: 6px;
    z-index: 100;
}

.stat-item.unavailable::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #f59e0b;
    opacity: 1;
    visibility: visible;
    margin-bottom: -6px;
    z-index: 100;
}

.stat-item.unavailable .stat-value {
    font-weight: bold;
    color: #f59e0b;
}

.stat-item.unavailable .stat-label {
    color: #f59e0b;
}

.stat-item.frozen {
    border: 2px dashed #9ca3af; /* Borde punteado gris para estado congelado */
    border-radius: 8px;
    padding: 8px;
    background-color: #f9fafb; /* Fondo gris claro */
    opacity: 0.7; /* Ligeramente transparente para mostrar el estado inactivo */
}

.stat-item.frozen .stat-value {
    font-weight: bold;
    color: #9ca3af; /* Texto gris */
    text-decoration: line-through; /* Tachado para indicar estado congelado */
}

.stat-item.frozen .stat-label {
    color: #9ca3af;
}

.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    max-width: 90%;
    text-align: center;
}

.toast.show {
    opacity: 1;
    visibility: visible;
}

.toast.success {
    background: #10b981;
    color: white;
}

.toast.error {
    background: #ef4444;
    color: white;
}

.toast.warning {
    background: #f59e0b;
    color: white;
}

.toast.info {
    background: #3b82f6;
    color: white;
}

.cart-section {
    padding: 0;
}

.cart-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 130px;
    margin-top: 0.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.cart-item {
    display: flex;
    align-items: center;
    background: rgba(255, 253, 247, 0.82);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.2s ease;
}

.cart-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.cart-item-checkbox {
    margin-right: 12px;
    flex-shrink: 0;
}

.cart-item-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #e11d48;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info {
    flex: 1;
    padding: 0 16px;
    min-width: 0;
}

.cart-item-name {
    font-size: 15px;
    font-weight: 500;
    color: #1f2937;
    margin: 0 0 8px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-item-spec {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 18px;
    font-weight: 600;
    color: #e11d48;
}

.cart-item-price .currency {
    font-size: 12px;
    font-weight: 500;
}

.cart-item-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-qty-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e5e7eb;
    background: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: #6b7280;
    transition: all 0.2s;
}

.cart-qty-btn:hover {
    border-color: #e11d48;
    color: #e11d48;
}

.cart-qty-input {
    width: 40px;
    height: 32px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.cart-qty-input:focus {
    outline: none;
    border-color: #e11d48;
}

.cart-item-subtotal {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
}

.cart-item-delete {
    background: none;
    border: none;
    color: #9ca3af;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.cart-item-delete:hover {
    color: #e11d48;
}

.cart-item-delete svg {
    width: 20px;
    height: 20px;
}

.cart-footer {
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid #e5e7eb;
    padding: 16px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    z-index: 100;
}

.cart-footer-inner {
    max-width: 480px;
    margin: 0 auto;
}

.cart-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.cart-select-all {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.cart-select-all input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #e11d48;
}

.cart-select-all label {
    font-size: 14px;
    color: #6b7280;
    cursor: pointer;
}

.cart-total-info {
    text-align: right;
}

.cart-total-label {
    font-size: 14px;
    color: #6b7280;
}

.cart-total-price {
    font-size: 24px;
    font-weight: 700;
    color: #e11d48;
}

.cart-total-price .currency {
    font-size: 14px;
    font-weight: 500;
}

.cart-checkout-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #e11d48 0%, #ff6b6b 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.cart-checkout-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
}

.cart-checkout-btn:disabled {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    text-align: center;
}

.cart-empty svg {
    color: #d1d5db;
    margin-bottom: 16px;
}

.cart-empty-text {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
}

.cart-empty-btn {
    display: inline-block;
    background: #e11d48;
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

.cart-empty-btn:hover {
    background: #be123c;
}

@media (max-width: 480px) {
    .cart-item {
        padding: 12px;
        border-radius: 0;
    }

    .cart-item-image {
        width: 80px;
        height: 80px;
    }

    .cart-item-info {
        padding: 0 12px;
    }

    .cart-item-name {
        font-size: 14px;
    }

    .cart-item-price {
        font-size: 16px;
    }

    .cart-footer {
        bottom: 60px;
        padding: 12px;
    }

    .cart-total-price {
        font-size: 20px;
    }
}

.order-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin: 0.5rem 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.order-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 16px;
}

.order-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.order-status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.order-status-0 {
    background: #fff7e6;
    color: #fa8c16;
}

.order-status-1 {
    background: #fff7e6;
    color: #fa8c16;
}

.order-status-2 {
    background: #e6f7ff;
    color: #1890ff;
}

.order-status-3 {
    background: #f6ffed;
    color: #52c41a;
}

.order-status-4 {
    background: #f9f0ff;
    color: #722ed1;
}

.order-status-5 {
    background: #f5f5f5;
    color: #999;
}

.order-status-6 {
    background: #f5f5f5;
    color: #999;
}

.buy-status-message {
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: #fff7e6;
    border: 1px solid #ffd591;
    border-radius: 4px;
    color: #d46b08;
    font-size: 0.9rem;
    line-height: 1.5;
}

.buy-status-message strong {
    color: #d46b08;
}

.order-field {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.order-field label {
    color: #666;
}

.order-field span {
    color: #333;
    font-weight: 500;
    word-wrap: break-word;
    word-break: break-all;
    max-width: 60%;
    text-align: right;
}

.order-item-card {
    display: flex;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
}

.order-item-card:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f5f5f5;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-info {
    flex: 1;
    margin-left: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.order-item-name {
    font-size: 14px;
    color: #333;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.order-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.order-item-price {
    font-size: 14px;
    color: #666;
}

.order-item-quantity {
    font-size: 12px;
    color: #999;
}

.order-item-subtotal {
    font-size: 14px;
    color: #ff4d4f;
    font-weight: 600;
}

.order-summary-card {
    background: #fafafa;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.order-summary-row span:first-child {
    color: #666;
}

.order-summary-row span:last-child {
    color: #333;
    font-weight: 500;
}

.order-summary-row.total {
    border-top: 1px solid #e0e0e0;
    margin-top: 8px;
    padding-top: 16px;
    font-size: 16px;
    font-weight: 600;
}

.order-summary-row.total span:last-child {
    color: #ff4d4f;
    font-size: 18px;
}

.order-action-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.order-action-btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.order-action-btn.primary {
    background: #ff4d4f;
    color: #fff;
}

.order-action-btn.primary:hover {
    background: #ff7875;
}

.order-action-btn.secondary {
    background: #fff;
    color: #666;
    border: 1px solid #d9d9d9;
}

.order-action-btn.secondary:hover {
    border-color: #ff4d4f;
    color: #ff4d4f;
}

@media (max-width: 768px) {
    .order-card {
        padding: 16px;
        border-radius: 0px;
    }

    .order-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .order-item-card {
        flex-direction: column;
    }

    .order-item-image {
        width: 100%;
        height: 150px;
    }

    .order-item-info {
        margin-left: 0;
        margin-top: 12px;
    }

    .order-action-buttons {
        flex-direction: column;
        margin-bottom: 24px;
    }
}

@media (min-width: 769px) {
    #order-detail {
        max-width: 1200px;
        margin: 0.5rem auto !important;
        padding: 0rem 20px 1.5rem 20px;
    }
}

/* Article Detail Styles */
.article-detail-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.article-tabs {
    background: rgba(255, 253, 247, 0.82);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-content {
    padding: 0;
}

.tab-pane {
    display: none;
    padding: 2rem;
}

.tab-pane.active {
    display: block;
}

.tab-content-inner h2 {
    margin-bottom: 1rem;
    color: #333;
}

.tab-content-inner h3 {
    margin: 1.5rem 0 0.5rem 0;
    color: #555;
}

.tab-content-inner p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.tab-content-inner img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .tab-pane {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .article-detail-content {
        padding: 0.75rem;
    }

    .article-tabs {
        border-radius: 0;
    }

    .tab-pane {
        padding: 1rem;
    }
}

/* Article List Styles */
.article-list-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.article-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0 0.5rem;
}

.article-list-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
}

.article-list-count {
    font-size: 0.875rem;
    color: #666;
}

.article-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.article-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.article-cover {
    width: 100%;
    height: 180px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.article-cover-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
}

.article-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
}

.article-info {
    padding: 0.875rem;
}

.article-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: #999;
}

.article-time {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-views {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.article-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    color: #999;
}

.article-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.article-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.article-empty-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.article-empty-text {
    font-size: 1rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.article-empty-hint {
    font-size: 0.875rem;
    color: #ccc;
}

.article-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 1rem 0;
}

.article-pagination-btn {
    padding: 0.5rem 1rem;
    border: 1px solid #e0e0e0;
    background: white;
    border-radius: 8px;
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
    transition: all 0.2s;
}

.article-pagination-btn:hover:not(:disabled) {
    background: #f5f5f5;
    border-color: #667eea;
    color: #667eea;
}

.article-pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.article-pagination-btn.active {
    background: #667eea;
    border-color: #667eea;
    color: white;
}

.article-pagination-info {
    font-size: 0.875rem;
    color: #666;
    padding: 0 0.5rem;
}

@media (max-width: 480px) {
    .article-list-wrapper {
        max-width: 100%;
        padding: 0.75rem;
    }

    .article-card {
        border-radius: 0;
    }
}