* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #333;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(238, 90, 36, 0.4);
}

.btn-secondary {
    background: #fff;
    color: #ee5a24;
    border: 2px solid #ee5a24;
}

.btn-secondary:hover {
    background: #ee5a24;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: #333;
    border: 1px solid #ccc;
}

.btn-outline:hover {
    background: #f5f5f5;
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 20px;
    font-weight: 700;
    color: #ee5a24;
}

.nav-list {
    display: flex;
    align-items: center;
}

.nav-item {
    margin-left: 30px;
    position: relative;
}

.nav-item a {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-item a:hover {
    color: #ee5a24;
}

.nav-item .submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
}

.nav-item:hover .submenu {
    display: block;
}

.submenu li {
    padding: 8px 20px;
}

.submenu li a {
    font-size: 14px;
    color: #666;
}

.submenu li:hover {
    background: #f5f5f5;
}

.header-right {
    display: flex;
    align-items: center;
}

.header-right .cart-icon {
    margin-right: 20px;
    font-size: 20px;
    cursor: pointer;
    position: relative;
}

.header-right .cart-icon span {
    position: absolute;
    top: -5px;
    right: -10px;
    background: #ee5a24;
    color: #fff;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Banner */
.banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.banner .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    background-size: cover;
    background-position: center;
}

.banner .slide.active {
    display: flex;
    align-items: center;
}

.banner .slide-content {
    width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
}

.banner .slide-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner .slide-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.banner .slide-content .btn {
    font-size: 16px;
    padding: 12px 40px;
}

.banner .indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.banner .indicators span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner .indicators span.active {
    background: #fff;
    width: 30px;
    border-radius: 6px;
}

.banner .prev, .banner .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.banner .prev:hover, .banner .next:hover {
    background: rgba(0, 0, 0, 0.5);
}

.banner .prev {
    left: 30px;
}

.banner .next {
    right: 30px;
}

/* Section */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 16px;
    color: #666;
}

.section-title .line {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    margin: 0 auto;
    margin-top: 15px;
}

/* Business Entry */
.business-entry {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.entry-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.entry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.entry-card .entry-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.entry-card .entry-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

.entry-card .entry-content {
    padding: 30px;
}

.entry-card .entry-content h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.entry-card .entry-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.entry-card .entry-content ul {
    margin-bottom: 20px;
}

.entry-card .entry-content ul li {
    font-size: 14px;
    color: #666;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.entry-card .entry-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ee5a24;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.product-card .product-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-card .product-image .discount-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ee5a24;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 5px;
}

.product-card .product-image .cart-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card .product-image .cart-icon:hover {
    background: #ee5a24;
    color: #fff;
}

.product-card .product-info {
    padding: 15px;
}

.product-card .product-info h4 {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #333;
}

.product-card .product-info .price {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.product-card .product-info .price .current-price {
    font-size: 18px;
    font-weight: 700;
    color: #ee5a24;
}

.product-card .product-info .price .original-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.product-card .product-info .coupon-price {
    font-size: 12px;
    color: #ff6b6b;
    margin-top: 5px;
}

/* Footer */
.footer {
    background: #222;
    color: #fff;
    padding: 60px 0;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
}

.footer-col ul li {
    padding: 8px 0;
}

.footer-col ul li a {
    color: #999;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ee5a24;
}

.footer-col .contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col .contact-info li i {
    color: #ee5a24;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    margin-top: 30px;
}

.footer-bottom p {
    color: #666;
    font-size: 13px;
}

.footer-bottom .beian {
    color: #666;
    font-size: 13px;
    margin-top: 10px;
}

.footer-bottom .beian a {
    color: #666;
}

.footer-bottom .beian a:hover {
    color: #ee5a24;
}

/* Page Specific Styles */
/* Marketing Page */
.marketing-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: #fff;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.service-card .btn {
    margin-top: 20px;
}

/* System Page */
.system-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.system-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.system-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.system-card .system-header {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 25px;
    color: #fff;
}

.system-card .system-header h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.system-card .system-header p {
    font-size: 14px;
    opacity: 0.8;
}

.system-card .system-content {
    padding: 25px;
}

.system-card .system-content ul {
    margin-bottom: 20px;
}

.system-card .system-content ul li {
    font-size: 14px;
    color: #666;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.system-card .system-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #ee5a24;
}

/* Cases Page */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.case-card .case-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.case-card .case-content {
    padding: 20px;
}

.case-card .case-content h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.case-card .case-content p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.case-card .case-content .case-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #999;
}

/* Shop Page */
.shop-header {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    padding: 40px 0;
    color: #fff;
    text-align: center;
}

.shop-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.shop-header p {
    font-size: 16px;
    opacity: 0.9;
}

.shop-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.shop-categories .category-item {
    padding: 10px 30px;
    background: #fff;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.shop-categories .category-item:hover,
.shop-categories .category-item.active {
    background: #ee5a24;
    color: #fff;
}

.shop-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
}

.shop-filters .filter-left {
    display: flex;
    gap: 15px;
}

.shop-filters .filter-left select {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 14px;
    background: #fff;
}

.shop-filters .filter-right input {
    padding: 8px 20px;
    border-radius: 20px;
    border: 1px solid #ddd;
    font-size: 14px;
    width: 250px;
}

/* Product Detail Page */
.product-detail {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
}

.product-detail .detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.product-detail .detail-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-detail .detail-images .main-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}

.product-detail .detail-images .thumbnails {
    display: flex;
    gap: 10px;
}

.product-detail .detail-images .thumbnails img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.product-detail .detail-images .thumbnails img:hover {
    opacity: 1;
}

.product-detail .detail-info h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.product-detail .detail-info .price-section {
    margin-bottom: 20px;
}

.product-detail .detail-info .price-section .current-price {
    font-size: 32px;
    font-weight: 700;
    color: #ee5a24;
}

.product-detail .detail-info .price-section .original-price {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    margin-left: 15px;
}

.product-detail .detail-info .price-section .coupon {
    display: inline-block;
    background: #fff3f3;
    color: #ee5a24;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin-left: 10px;
}

.product-detail .detail-info .specs {
    margin-bottom: 30px;
}

.product-detail .detail-info .specs h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.product-detail .detail-info .specs table {
    width: 100%;
    border-collapse: collapse;
}

.product-detail .detail-info .specs table td {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #666;
}

.product-detail .detail-info .specs table td:first-child {
    font-weight: 500;
    color: #333;
}

.product-detail .detail-info .quantity {
    margin-bottom: 30px;
}

.product-detail .detail-info .quantity label {
    font-size: 14px;
    font-weight: 500;
    margin-right: 15px;
}

.product-detail .detail-info .quantity input {
    width: 80px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
}

.product-detail .detail-info .action-buttons {
    display: flex;
    gap: 20px;
}

.product-detail .detail-info .action-buttons .btn {
    flex: 1;
    padding: 15px;
    font-size: 16px;
}

.product-detail .detail-info .tags {
    margin-top: 30px;
}

.product-detail .detail-info .tags span {
    display: inline-block;
    background: #f5f5f5;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* About Page */
.about-intro {
    background: #fff;
    padding: 60px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.about-intro h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.about-intro p {
    font-size: 15px;
    color: #666;
    line-height: 2;
    margin-bottom: 20px;
}

.team-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.team-card .avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: #fff;
}

.team-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #333;
}

.team-card .position {
    font-size: 14px;
    color: #ee5a24;
    margin-bottom: 15px;
}

.team-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Login/Register Page */
.auth-page {
    min-height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.auth-container {
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    width: 500px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.auth-container .auth-tabs {
    display: flex;
    margin-bottom: 40px;
}

.auth-container .auth-tabs .tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.auth-container .auth-tabs .tab.active {
    color: #ee5a24;
    border-bottom-color: #ee5a24;
}

.auth-container .auth-tabs .tab:hover {
    color: #ee5a24;
}

.auth-container .form-group {
    margin-bottom: 25px;
}

.auth-container .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.auth-container .form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.auth-container .form-group input:focus {
    outline: none;
    border-color: #ee5a24;
}

.auth-container .form-group .captcha-row {
    display: flex;
    gap: 15px;
}

.auth-container .form-group .captcha-row input {
    flex: 1;
}

.auth-container .form-group .captcha-row .captcha-img {
    width: 120px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 5px;
    cursor: pointer;
}

.auth-container .form-group .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.auth-container .form-group .checkbox-group input {
    width: auto;
}

.auth-container .form-group .checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.auth-container .form-group .checkbox-group a {
    color: #ee5a24;
}

.auth-container .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-top: 20px;
}

.auth-container .auth-switch {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #666;
}

.auth-container .auth-switch a {
    color: #ee5a24;
}

/* Contact Page */
.contact-info {
    /*display: grid;*/
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-item .icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: #fff;
}

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.contact-item p {
    font-size: 14px;
    color: #666;
}

.contact-form {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #ee5a24;
}

.contact-form .form-group textarea {
    height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
}

/* Merchant Section */
.merchant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.merchant-card {
    background: #fff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.merchant-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(238, 90, 36, 0.2);
    border-color: #ee5a24;
}

.merchant-logo {
    width: 150px;
    height: 150px;
    /*border-radius: 50%;*/
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.merchant-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.5;
}

.merchant-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.merchant-card p i {
    color: #ee5a24;
    margin-right: 5px;
}

.merchant-tag {
    display: inline-block;
    padding: 5px 15px;
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
}

/* Merchant Register Page */
.merchant-register {
    max-width: 800px;
    margin: 0 auto;
}

.merchant-register .form-section {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.merchant-register .form-section h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #333;
    padding-bottom: 15px;
    border-bottom: 2px solid #f5f5f5;
}

.merchant-register .form-group {
    margin-bottom: 25px;
}

.merchant-register .form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: #333;
}

.merchant-register .form-group label .required {
    color: #ee5a24;
    margin-left: 3px;
}

.merchant-register .form-group input,
.merchant-register .form-group textarea,
.merchant-register .form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.merchant-register .form-group input:focus,
.merchant-register .form-group textarea:focus,
.merchant-register .form-group select:focus {
    outline: none;
    border-color: #ee5a24;
}

.merchant-register .form-group textarea {
    height: 100px;
    resize: vertical;
}

.merchant-register .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.merchant-register .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.merchant-register .checkbox-group input {
    width: auto;
}

.merchant-register .checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.merchant-register .submit-area {
    text-align: center;
}

.merchant-register .submit-area .btn {
    padding: 15px 60px;
    font-size: 16px;
}

/* Publisher Page */
.publisher-info-section {
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    padding: 60px 0;
    color: #fff;
}

.publisher-info-section .container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.publisher-logo {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #fff;
}

.publisher-info h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.publisher-info p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.publisher-badges {
    display: flex;
    gap: 20px;
}

.publisher-badges span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive */
@media (max-width: 1200px) {
    .container {
        width: 100%;
    }
    
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .marketing-services {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-section {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-list {
        display: none;
    }
    
    .business-entry {
        grid-template-columns: 1fr;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .marketing-services {
        grid-template-columns: 1fr;
    }
    
    .system-grid {
        grid-template-columns: 1fr;
    }
    
    .case-grid {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-detail .detail-content {
        grid-template-columns: 1fr;
    }
    
    .merchant-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .merchant-register .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .banner .slide-content h2 {
        font-size: 28px;
    }
    
    .banner .slide-content p {
        font-size: 14px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer .container {
        grid-template-columns: 1fr;
    }
    
    .team-section {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .auth-container {
        width: 100%;
        padding: 30px;
    }
    
    .shop-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .merchant-grid {
        grid-template-columns: 1fr;
    }
    
    .publisher-info-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .publisher-badges {
        justify-content: center;
    }
}