/* pages.css - 页面特有样式 */

.product-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2d2d2d;
}

.product-id {
    color: #999;
    font-size: 16px;
    margin-bottom: 30px;
    font-family: monospace;
}

.price-label {
    font-size: 14px;
    font-weight: 700;
    color: rgba(26, 26, 46, 0.7);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.price-value {
    font-size: 56px;
    font-weight: 900;
    color: #1a1a2e;
    line-height: 1;
}

.stock-text {
    flex: 1;
}

.stock-label {
    font-size: 14px;
    color: #999;
    margin-bottom: 5px;
}

.stock-value {
    font-size: 20px;
    font-weight: 700;
    color: #4ecdc4;
}

.stock-value.out {
    color: #ff6b4a;
}

.description-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2d2d2d;
}

.description-text {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
}

.action-buttons {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

.long-desc-header h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 10px;
}

.long-desc-header p {
    font-size: 18px;
    opacity: 0.9;
    font-weight: 700;
}

.sidebar-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
    padding-bottom: var(--space-md);
    border-bottom: 3px solid var(--border-light);
}

.content-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--space-xl);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.content-title .iconify {
    font-size: 32px;
}

.avatar-info h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-black);
    margin-bottom: var(--space-sm);
    color: var(--text-primary);
}

.avatar-info p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    font-weight: var(--font-weight-bold);
}

.info-card h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.info-card p {
    font-size: var(--font-size-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: var(--line-height-relaxed);
    font-weight: var(--font-weight-bold);
}

.info-card p:last-child {
    margin-bottom: 0;
}

.wallet-card {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(254, 202, 87, 0.1));
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    text-align: center;
}

.wallet-balance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.wallet-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    border-radius: 50%;
    color: white;
    font-size: 40px;
    box-shadow: 0 8px 24px rgba(255, 107, 107, 0.3);
}

.wallet-info h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
}

.balance-amount {
    font-size: 48px;
    font-weight: var(--font-weight-black);
    background: linear-gradient(135deg, #ff6b6b, #feca57);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.wallet-tip {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: var(--font-weight-bold);
    opacity: 0.8;
    margin: 0;
}

.wallet-row {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px dashed rgba(255, 107, 107, 0.2);
    color: var(--text-secondary);
}

.wallet-row.insufficient {
    border-color: #ff6b6b;
    color: #ff6b6b;
}

.balance-insufficient {
    color: #ff6b6b;
    font-weight: 900;
}

.insufficient-warning {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-lg);
    color: #ff6b6b;
    font-size: 15px;
    font-weight: 700;
    margin-top: 15px;
    animation: pulse-warning 2s ease-in-out infinite;
}

.insufficient-warning .iconify {
    font-size: 24px;
}

@keyframes pulse-warning {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(0.98);
    }
}

.address-item p {
    margin-bottom: var(--space-sm);
}

.address-item p:last-child {
    margin-bottom: 0;
}

.stat-value {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-black);
    color: var(--primary);
    margin-bottom: var(--space-sm);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    font-weight: var(--font-weight-bold);
}

.max-limit {
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.confirm-page-detail {
    padding: 20px;
    padding-top: 120px;
}

.breadcrumb-item {
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
}

.breadcrumb-item:hover {
    color: #ff6b4a;
}

.breadcrumb-separator {
    color: rgba(255, 107, 74, 0.5);
}

.confirm-left-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-section-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: #2d2d2d;
}

.address-display p {
    margin-bottom: 12px;
    color: #2d2d2d;
    font-size: 16px;
    font-weight: 600;
}

.address-display p:last-child {
    margin-bottom: 0;
}

.items-grid-detail {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.item-info-display {
    flex: 1;
}

.item-name-detail {
    font-size: 18px;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 8px;
}

.item-meta-detail {
    font-size: 14px;
    color: #999;
    font-weight: 600;
}

.item-price-detail {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b4a, #ffb84d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.summary-title {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #2d2d2d;
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(255, 107, 74, 0.3);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 700;
    color: #4a4a4a;
}

.summary-row.grand {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #e8e8e8;
    font-size: 32px;
    color: #2d2d2d;
}

.grand-price {
    font-size: 36px;
    font-weight: 900;
    background: linear-gradient(135deg, #ff6b4a, #ffb84d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-select-wrapper {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.category-select-wrapper .el-select {
    width: 100%;
    max-width: 240px;
}

.category-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 107, 107, 0.15);
    border-radius: 10px;
    color: #2a2a2a;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.category-hint:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 107, 107, 0.25);
}

.category-hint .iconify {
    font-size: 16px;
    color: rgba(255, 107, 107, 0.8);
}

.cart-drawer {
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    border-left: 4px solid var(--border-strong);
}

.cart-header h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-black);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item-name {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-black);
    color: #1a1a1a;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.cart-item-price {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-black);
    color: #1a1a1a;
    margin-bottom: var(--space-md);
}

.total-price {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-id {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--primary);
}

.order-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(10px);
}

.status-icon {
    font-size: 18px;
}

.status-pending {
    background: linear-gradient(135deg, #ff6b4a, #feca57);
}

.status-processing {
    background: linear-gradient(135deg, #00d2d3, #54a0ff);
}

.status-shipped {
    background: linear-gradient(135deg, #0984e3, #6c5ce7);
}

.status-delivered {
    background: linear-gradient(135deg, #00b894, #55efc4);
}

.status-cancelled {
    background: linear-gradient(135deg, #d63031, #e17055);
}

.cart-page-content {
    padding: 20px;
    padding-top: 120px;
}

.breadcrumb-cart {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 30px;
    font-size: 14px;
}

.breadcrumb-cart .breadcrumb-item {
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
    font-weight: 600;
}

.breadcrumb-cart .breadcrumb-item:hover {
    color: var(--accent);
}

.breadcrumb-cart .breadcrumb-item.active {
    color: var(--text-primary);
    cursor: default;
}

.breadcrumb-cart .breadcrumb-separator {
    color: rgba(255, 107, 107, 0.4);
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 30px;
}

.cart-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cart-products-section,
.cart-address-section {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-glow);
}

.cart-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-light);
}

.cart-section-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--text-primary);
    display: flex;
    align-items: center;
}

.clear-cart-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: transparent;
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-lg);
    color: #ff6b6b;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
}

.clear-cart-btn:focus-visible {
    outline: var(--focus-visible);
    outline-offset: 2px;
}

.clear-cart-btn:hover {
    background: rgba(255, 107, 107, 0.1);
    border-color: #ff6b6b;
    box-shadow: var(--shadow-md);
}

.clear-cart-btn:active {
    transform: scale(0.98);
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item-card {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    background: rgba(26, 26, 46, 0.02);
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.cart-item-card:hover {
    background: rgba(26, 26, 46, 0.04);
    border-color: rgba(255, 107, 107, 0.2);
    transform: translateX(4px);
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: rgba(26, 26, 46, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.3);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1), rgba(254, 202, 87, 0.1));
}

.cart-item-fallback .iconify {
    font-size: 40px;
    color: rgba(255, 107, 107, 0.6);
}

.cart-item-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-item-category {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cart-item-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.3;
    margin: 0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-item-name:hover {
    color: var(--accent);
}

.cart-item-price {
    font-size: 20px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 6px;
    border-radius: var(--radius-md);
    border: 2px solid var(--border-light);
}

.quantity-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 26, 46, 0.05);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    min-height: var(--min-touch-target);
}

.quantity-btn:focus-visible {
    outline: var(--focus-visible);
    outline-offset: 2px;
}

.quantity-btn:hover:not(:disabled) {
    background: var(--gradient-primary);
    box-shadow: var(--shadow-md);
    transform: scale(1.1);
}

.quantity-btn:hover:not(:disabled) .iconify {
    color: white;
}

.quantity-btn:active:not(:disabled) {
    transform: scale(1);
}

.quantity-btn:disabled {
    opacity: 0.3;
    cursor: var(--cursor-not-allowed);
}

.quantity-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    min-width: 30px;
    text-align: center;
}

.cart-item-subtotal {
    font-size: 22px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item-remove {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item-remove:hover {
    background: #ff6b6b;
    border-color: #ff6b6b;
}

.cart-item-remove:hover .iconify {
    color: white;
}

.add-address-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.add-address-link:hover {
    opacity: 0.8;
}

.no-address-hint {
    text-align: center;
    padding: 50px 20px;
    color: var(--text-secondary);
}

.no-address-hint p {
    font-size: 16px;
    font-weight: 600;
    margin: 20px 0;
}

.add-address-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-lg);
    color: white;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.add-address-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.address-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.address-card {
    position: relative;
    padding: 20px;
    background: white;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.address-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.address-card.address-selected {
    border-color: var(--accent);
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.08), rgba(254, 202, 87, 0.08));
}

.address-default-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    background: var(--gradient-primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: var(--radius-sm);
}

.address-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    padding-right: 50px;
}

.address-phone {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 12px;
}

.address-detail {
    font-size: 14px;
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 600;
}

.cart-right {
    position: sticky;
    top: 120px;
    align-self: start;
}

.cart-summary-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 2px solid var(--border-light);
    box-shadow: var(--shadow-glow);
}

.summary-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid rgba(255, 107, 74, 0.3);
    display: flex;
    align-items: center;
    color: var(--text-primary);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
}

.summary-value {
    color: var(--text-primary);
    font-size: 18px;
    font-weight: 800;
}

.summary-divider {
    height: 2px;
    background: var(--border-light);
    margin: 25px 0;
}

.summary-row.grand {
    margin-top: 20px;
    font-size: 20px;
    color: var(--text-primary);
}

.grand-price {
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.address-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(255, 107, 74, 0.1);
    border: 2px solid rgba(255, 107, 74, 0.3);
    border-radius: var(--radius-lg);
    color: #ff6b6b;
    font-size: 14px;
    font-weight: 700;
    margin-top: 25px;
}

.checkout-btn {
    width: 100%;
    padding: 18px;
    margin-top: 20px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-xl);
    color: white;
    font-size: 20px;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.checkout-btn:focus-visible {
    outline: var(--focus-visible);
    outline-offset: 2px;
}

.checkout-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.05);
}

.checkout-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.checkout-btn:disabled {
    opacity: 0.5;
    cursor: var(--cursor-not-allowed);
}

.empty-cart-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.empty-cart-icon {
    font-size: 120px;
    color: rgba(255, 107, 107, 0.3);
    margin-bottom: 30px;
}

.empty-cart-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.empty-cart-text {
    font-size: 18px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 40px;
}

.empty-cart-btn {
    display: inline-flex;
    align-items: center;
    padding: 16px 40px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-xl);
    color: white;
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
    transition: all var(--duration-normal) var(--ease-smooth);
    min-height: var(--min-touch-target);
    position: relative;
    overflow: hidden;
}

.empty-cart-btn:focus-visible {
    outline: var(--focus-visible);
    outline-offset: 2px;
}

.empty-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    filter: brightness(1.05);
}

.empty-cart-btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-md);
}

.cart-item-card.disabled-item {
    opacity: 0.6;
    background: rgba(255, 107, 107, 0.05);
    border-color: #ff6b6b;
}

.cart-item-card.disabled-item .cart-item-name {
    color: #999;
}

.cart-item-card.disabled-item .cart-item-price {
    color: #999;
}

.item-disabled-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 107, 107, 0.9);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(8px);
    animation: float-simple 3s ease-in-out infinite;
}

.item-disabled-hint {
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(255, 193, 7, 0.15);
    color: #ffc107;
    border-radius: 8px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.item-disabled-hint .iconify {
    font-size: 16px;
}

@media (max-width: 768px) {
    .product-title {
        font-size: 32px;
    }
    
    .price-value {
        font-size: 42px;
    }
    
    .product-icon-large {
        font-size: 150px;
    }
    
    .action-buttons {
        grid-template-columns: 1fr;
    }
    
    .long-desc-content {
        padding: 30px;
    }
    
    .sidebar {
        order: 2;
    }
    
    .content-area {
        order: 1;
    }
    
    .address-header h4 {
        font-size: var(--font-size-lg);
        font-weight: var(--font-weight-bold);
        color: var(--text-primary);
        margin: 0;
        flex: 1;
    }
    
    .confirm-page-detail {
        padding: 20px;
        padding-top: 120px;
    }
    
    .summary-title {
        font-size: 24px;
    }
    
    .grand-price {
        font-size: 28px;
    }
    
    .item-name-detail {
        font-size: 16px;
    }
    
    .item-price-detail {
        font-size: 20px;
    }
    
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .cart-right {
        position: static;
    }
    
    .cart-item-card {
        grid-template-columns: 80px 1fr;
        gap: 15px;
    }
    
    .cart-item-quantity,
    .cart-item-subtotal,
    .cart-item-remove {
        grid-column: 2;
    }
    
    .cart-item-quantity {
        justify-content: flex-start;
        margin-top: 10px;
    }
    
    .cart-item-subtotal {
        margin-top: 10px;
    }
    
    .cart-item-remove {
        justify-self: end;
        margin-top: 10px;
    }
    
    .address-list {
        grid-template-columns: 1fr;
    }
    
    .summary-title {
        font-size: 20px;
    }
    
    .grand-price {
        font-size: 28px;
    }
    
    .checkout-btn {
        font-size: 18px;
        padding: 16px;
    }
    
    .empty-cart-icon {
        font-size: 80px;
    }
    
    .empty-cart-title {
        font-size: 28px;
    }
    
    .empty-cart-text {
        font-size: 16px;
    }
    
    .empty-cart-btn {
        font-size: 16px;
        padding: 14px 32px;
    }
}
