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

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

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

.header-top-left a {
    margin-left: 20px;
    color: #fff;
}

.header-top-right a {
    margin-left: 15px;
    color: #fff;
    transition: opacity 0.3s;
}

.header-top-right a:hover {
    opacity: 0.8;
}

.header-main {
    padding: 20px 0;
}

.header-main .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.search-box {
    flex: 1;
    display: flex;
    max-width: 500px;
}

.search-box input {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid #ff6b35;
    border-right: none;
    border-radius: 25px 0 0 25px;
    font-size: 14px;
    outline: none;
}

.search-box button {
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border-radius: 0 25px 25px 0;
    font-size: 14px;
    transition: opacity 0.3s;
}

.search-box button:hover {
    opacity: 0.9;
}

.header-cart {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #fff5f0;
    border-radius: 25px;
    color: #ff6b35;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.header-cart:hover {
    background: #ffe8dc;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
    min-width: 18px;
    text-align: center;
}

.nav {
    background: #fff;
    border-top: 1px solid #eee;
}

.nav .container {
    display: flex;
    align-items: center;
}

.nav-categories {
    position: relative;
    padding: 15px 25px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    cursor: pointer;
    font-weight: 500;
}

.nav-categories:hover .category-dropdown {
    display: block;
}

.category-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    z-index: 100;
}

.category-item {
    padding: 12px 20px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s;
}

.category-item:hover {
    background: #fff5f0;
    color: #ff6b35;
}

.category-item i {
    margin-right: 10px;
    width: 20px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin-left: 30px;
}

.nav-list li {
    padding: 15px 25px;
    cursor: pointer;
    font-weight: 500;
    color: #666;
    transition: all 0.3s;
    position: relative;
}

.nav-list li:hover,
.nav-list li.active {
    color: #ff6b35;
}

.nav-list li.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: #ff6b35;
    border-radius: 2px;
}

.main {
    min-height: calc(100vh - 400px);
    padding: 30px 0;
}

.banner {
    margin-bottom: 30px;
}

.banner-slider {
    position: relative;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.banner-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: #fff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.banner-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.banner-btn {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s;
}

.banner-btn:hover {
    transform: scale(1.05);
}

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

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dot.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

.section-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.section-title h2 {
    font-size: 24px;
    color: #333;
    position: relative;
    padding-left: 15px;
}

.section-title h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
}

.section-title a {
    color: #ff6b35;
    font-size: 14px;
}

.category-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.category-nav-item {
    padding: 10px 25px;
    background: #fff;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.category-nav-item:hover,
.category-nav-item.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    background: #ff4757;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
}

.product-card-info {
    padding: 15px;
}

.product-card-name {
    font-size: 14px;
    color: #333;
    margin-bottom: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-card-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.product-card-price .current {
    font-size: 20px;
    color: #ff4757;
    font-weight: 700;
}

.product-card-price .original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.product-card-sales {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

.auth-container {
    max-width: 450px;
    margin: 50px auto;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.auth-title {
    text-align: center;
    margin-bottom: 30px;
}

.auth-title h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.auth-title p {
    color: #999;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #ff6b35;
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-secondary {
    background: #f5f5f5;
    color: #666;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

.btn-block {
    width: 100%;
    text-align: center;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 16px;
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    color: #999;
    font-size: 14px;
}

.auth-footer a {
    color: #ff6b35;
}

.cart-container {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
}

.cart-header {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    font-weight: 500;
    color: #666;
}

.cart-item {
    display: flex;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.cart-item-image {
    width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 20px;
}

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

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

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

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

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px;
}

.cart-item-subtotal {
    font-size: 18px;
    color: #ff4757;
    font-weight: 600;
    min-width: 100px;
    text-align: right;
}

.cart-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-top: 1px solid #f0f0f0;
    margin-top: 20px;
}

.cart-total {
    font-size: 16px;
}

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

.order-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
}

.status-pending {
    background: #fff3cd;
    color: #856404;
}

.status-paid {
    background: #d1ecf1;
    color: #0c5460;
}

.status-shipped {
    background: #d4edda;
    color: #155724;
}

.status-completed {
    background: #d4edda;
    color: #155724;
}

.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

.order-card {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.order-items {
    padding: 20px;
}

.order-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
}

.order-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
}

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

.order-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
}

.order-total {
    font-size: 16px;
}

.order-total span {
    color: #ff4757;
    font-size: 20px;
    font-weight: 700;
}

.user-sidebar {
    width: 220px;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    height: fit-content;
}

.user-avatar {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.user-avatar img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
}

.user-avatar h3 {
    font-size: 16px;
    color: #333;
}

.user-menu {
    padding: 15px 0;
}

.user-menu-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    margin-bottom: 5px;
}

.user-menu-item:hover,
.user-menu-item.active {
    background: #fff5f0;
    color: #ff6b35;
}

.user-menu-item i {
    width: 20px;
    margin-right: 10px;
}

.user-content {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-left: 20px;
}

.merchant-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s;
}

.merchant-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.merchant-logo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
}

.merchant-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.merchant-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.merchant-info p {
    color: #999;
    font-size: 14px;
}

.footer {
    background: #2d3436;
    color: #dfe6e9;
    padding: 50px 0 30px;
    margin-top: 50px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ff6b35;
}

.footer-section p {
    font-size: 14px;
    line-height: 2;
}

.footer-section a {
    color: #dfe6e9;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3d4852;
    font-size: 13px;
}

.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: #333;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    z-index: 10000;
    transition: transform 0.3s;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #999;
}

.empty-state i {
    font-size: 60px;
    margin-bottom: 20px;
    color: #ddd;
}

.empty-state p {
    font-size: 16px;
    margin-bottom: 20px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.pagination button {
    padding: 10px 15px;
    border: 1px solid #e0e0e0;
    background: #fff;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
}

.pagination button:hover,
.pagination button.active {
    border-color: #ff6b35;
    color: #ff6b35;
}

.tabs {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 25px;
}

.tab-item {
    padding: 15px 25px;
    cursor: pointer;
    color: #666;
    position: relative;
    transition: color 0.3s;
}

.tab-item:hover,
.tab-item.active {
    color: #ff6b35;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b35;
}

.product-detail {
    display: flex;
    gap: 50px;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
}

.product-gallery {
    width: 450px;
}

.product-main-image {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 15px;
}

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

.product-thumbnails {
    display: flex;
    gap: 10px;
}

.product-thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.product-thumbnail.active,
.product-thumbnail:hover {
    border-color: #ff6b35;
}

.product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info {
    flex: 1;
}

.product-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.product-price-box {
    background: #fff5f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.product-price {
    font-size: 32px;
    color: #ff4757;
    font-weight: 700;
}

.product-original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 15px;
}

.product-meta {
    margin-bottom: 25px;
}

.product-meta-item {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.product-meta-item label {
    width: 80px;
    color: #999;
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.product-actions {
    display: flex;
    gap: 15px;
}

.btn-cart {
    padding: 15px 40px;
    border: 2px solid #ff6b35;
    color: #ff6b35;
    background: #fff;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-cart:hover {
    background: #fff5f0;
}

.btn-buy {
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-buy:hover {
    opacity: 0.9;
}

.address-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.address-card:hover,
.address-card.selected {
    border-color: #ff6b35;
}

.address-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.address-name {
    font-weight: 600;
    font-size: 16px;
}

.address-phone {
    color: #666;
}

.address-detail {
    color: #999;
    font-size: 14px;
}

.address-default {
    display: inline-block;
    padding: 2px 8px;
    background: #ff6b35;
    color: #fff;
    font-size: 12px;
    border-radius: 4px;
    margin-left: 10px;
}

.checkout-container {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
}

.checkout-section {
    margin-bottom: 30px;
}

.checkout-section h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.checkout-summary {
    background: #fafafa;
    border-radius: 8px;
    padding: 25px;
}

.checkout-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
}

.checkout-total {
    font-size: 20px;
    font-weight: 700;
    color: #ff4757;
}

.about-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-radius: 12px;
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.about-hero p {
    font-size: 18px;
    opacity: 0.9;
}

.about-content {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
}

.about-section {
    margin-bottom: 40px;
}

.about-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #ff6b35;
}

.about-section p {
    color: #666;
    line-height: 2;
    margin-bottom: 15px;
}

@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .header-main .container {
        flex-wrap: wrap;
    }
    
    .search-box {
        order: 3;
        max-width: 100%;
        margin-top: 15px;
    }
    
    .product-detail {
        flex-direction: column;
    }
    
    .product-gallery {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.content-page {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
}

.content-page h1 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #333;
    border-bottom: 2px solid #ff6b35;
    padding-bottom: 15px;
}

.content-section {
    margin-bottom: 40px;
}

.content-section h2 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
}

.content-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.content-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-section ul,
.content-section ol {
    color: #666;
    line-height: 2;
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-section li {
    margin-bottom: 8px;
}

.faq-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.faq-item h3 {
    color: #ff6b35;
    margin-bottom: 10px;
}

.policy-item {
    background: #fff5f0;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #ff6b35;
}

.process-list {
    background: #f9f9f9;
    padding: 30px 30px 30px 50px;
    border-radius: 8px;
}

.shipping-method {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.shipping-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.shipping-table th,
.shipping-table td {
    padding: 12px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.shipping-table th {
    background: #f5f5f5;
    font-weight: 600;
}

.shipping-table tr:hover {
    background: #fafafa;
}

.payment-method {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.payment-method h3 {
    color: #ff6b35;
}

.payment-method h3 i {
    margin-right: 10px;
}

.merchant-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
}

.stat-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.stat-card p {
    color: #999;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .merchant-stats {
        grid-template-columns: 1fr;
    }
    
    .content-page {
        padding: 20px;
    }
    
    .content-page h1 {
        font-size: 22px;
    }
}

.merchant-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.merchant-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.merchant-logo {
    width: 100px;
    height: 100px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.merchant-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.merchant-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.merchant-info p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

.merchant-detail {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.merchant-header {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: linear-gradient(135deg, #fff5f0 0%, #fff 100%);
}

.merchant-cover {
    width: 150px;
    height: 150px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

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

.merchant-header-info h1 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.merchant-desc {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.merchant-meta {
    display: flex;
    gap: 30px;
    color: #999;
    font-size: 14px;
}

.merchant-meta i {
    margin-right: 8px;
    color: #ff6b35;
}

.merchant-products {
    padding: 30px;
}

.merchant-products h2 {
    font-size: 20px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

@media (max-width: 768px) {
    .merchant-card {
        flex-direction: column;
        text-align: center;
    }
    
    .merchant-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .merchant-meta {
        flex-direction: column;
        gap: 10px;
    }
}
