* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

body.auth-bg {
    background: url('images/login/Group_2364@3x.png') no-repeat center center fixed;
    background-size: cover;
}

/* Header */
.site-header {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-content {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 40px; /* Adjust based on actual aspect ratio */
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 73pt;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-size: 10pt;
    font-weight: 500;
    transition: color 0.3s;
    font-family: PingFang SC-Regular;
}

.main-nav a:hover, .main-nav a.active {
    color: #D9304E; /* Assuming a reddish brand color based on description */
}

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

.btn-login-outline {
    text-decoration: none;
    padding: 6px 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    color: #666;
    font-size: 14px;
}

.btn-register-solid {
    text-decoration: none;
    padding: 6px 20px;
    background-color: #D9304E;
    border: 1px solid #D9304E;
    border-radius: 4px;
    color: white;
    font-size: 14px;
}

/* Main Login Section */
.login-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px; /* Space for fixed header */
}

.login-container {
    width: 1200px;
    position: relative; /* Add relative positioning context */
    height: 100%; /* Ensure container takes full height for absolute positioning if needed */
}

.login-box {
    width: 420px;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    margin-left: 150px;
    margin-top: 226px;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
    color: #333;
}

.login-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.tab {
    padding-bottom: 10px;
    margin-right: 20px;
    cursor: pointer;
    font-size: 16px;
    color: #666;
    position: relative;
}

.tab.active {
    color: #333;
    font-weight: 600;
}

.tab.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #F8B62D; /* Yellowish accent */
}

.form-group {
    margin-bottom: 20px;
    position: relative; /* Add this to position the icon */
}

.password-group {
    display: flex;
    align-items: center;
}

.input-field {
    width: 100%;
    padding: 12px 15px;
    padding-right: 40px; /* Make space for the icon */
    border: 1px solid #eee;
    background-color: #f9f9f9;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
    transition: border 0.3s;
}

.icon-eye {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px; /* Adjust size as needed */
    height: auto;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.icon-eye:hover {
    opacity: 1;
}

/* Arrow for Menu */
.arrow-down {
    display: inline-block;
    width: 0; 
    height: 0; 
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #666;
    margin-left: 5px;
    vertical-align: middle;
    transition: border-top-color 0.3s;
}

.main-nav a:hover .arrow-down, 
.main-nav a.active .arrow-down {
    border-top-color: #D9304E;
}


.input-field:focus {
    border-color: #D9304E;
    background-color: #fff;
}

.form-options {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    font-size: 12px;
    color: #999;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.checkbox-container input {
    margin-top: 2px;
    margin-right: 8px;
}

.checkbox-container a {
    color: #5D85C3;
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    padding: 12px;
    background-color: #D9304E;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    margin-bottom: 20px;
    transition: background 0.3s;
}

.btn-submit:hover {
    background-color: #c42642;
}

.form-footer {
    text-align: center;
    font-size: 14px;
}

.form-footer a {
    color: #5D85C3;
    text-decoration: none;
    margin: 0 10px;
}

/* --- Registration Page Styles --- */

.register-page {
    /* Override main background for register page if needed, or keep same */
    background: #fcfcfc; /* Cleaner background for registration based on image */
}

.register-section {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 70px;
}

.register-box {
    width: 500px;
    background: white;
    padding: 40px 60px;
    /* Optional shadow/border if it's a card, or transparent if it's just content */
    /* Based on image, it looks like a clean layout, maybe slight shadow or just white on white */
    /* Let's add a subtle shadow for better visibility */
    box-shadow: 0 0 40px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.register-box h2 {
    text-align: center;
    font-size: 24px;
    color: #333;
    margin-bottom: 40px;
    font-weight: normal;
}

/* Phone Group with Area Code */
.phone-group {
    display: flex;
    gap: 10px;
}

.area-code-wrapper {
    position: relative;
    width: 120px;
    height: 46px; /* Match input height */
    border: 1px solid #eee;
    background-color: #f9f9f9;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    user-select: none;
}

.area-code-selected {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    height: 100%;
    color: #333;
}

.arrow-down-small {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #999;
}

.area-code-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-top: 5px;
    list-style: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    display: none;
    z-index: 10;
}

.area-code-wrapper.active .area-code-dropdown {
    display: block;
}

.area-code-dropdown li {
    padding: 10px 15px;
    color: #666;
    transition: background 0.2s;
}

.area-code-dropdown li:hover {
    background-color: #f5f5f5;
    color: #333;
}

.phone-input {
    flex: 1;
}

/* Verify Group */
.verify-group {
    display: flex;
    position: relative;
}

.verify-input {
    padding-right: 100px; /* Space for button */
}

.btn-get-code {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: none;
    color: #5D85C3; /* Blue color */
    font-size: 14px;
    cursor: pointer;
    outline: none;
}

.btn-get-code:hover {
    text-decoration: underline;
}

/* Frame Eye Icon */
.icon-eye-frame {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px; /* Frame icon might be slightly larger or different shape */
    height: auto;
    cursor: pointer;
    opacity: 0.8;
}

/* Register Button */
.btn-register-big {
    background-color: #D9304E; /* Red */
    height: 50px;
    font-size: 18px;
    margin-top: 10px;
}

/* --- Home Page Styles --- */
.home-page .hero-section {
    width: 100%;
    height: 600px; /* Adjust height based on background image ratio */
    background: url('images/indexpic/1_8922641@2x.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px; /* Increased from 70px to avoid overlap */
}

.brand-page .brand-hero {
    width: 100%;
    height: 600px;
    background: url('images/kind/Group_2251@2x.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}

.brand-hero-title {
    font-size: 44px;
    color: #212121;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
}

.brand-hero-subtitle {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
}

.merchant-page .merchant-hero {
    width: 100%;
    height: 600px;
    background: url('images/shopping/Group_2325@2x.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}

.merchant-hero-title {
    font-size: 44px;
    color: #212121;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
}

.merchant-hero-subtitle {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
}

.merchant-benefits {
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.benefits-top {
    width: 1000px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.benefit-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-card img {
    width: 56px;
    height: 56px;
}

.benefit-info h3 {
    font-size: 16px;
    color: #212121;
    margin-bottom: 6px;
    font-weight: 600;
}

.benefit-info p {
    font-size: 14px;
    color: #666;
}

.category-pills {
    display: flex;
    gap: 12px;
}

.pill.small {
    display: inline-block;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    text-decoration: none;
    color: #666;
    font-size: 16px;
    line-height: 28px;
}

.pill.small:hover {
    color: #333;
}

.pill.small.active {
    background-color: #CD1D2A;
    color: #FFFFFF;
    padding: 0px 10px;
    border-radius: 8px;
}

.global-page .global-hero {
    width: 100%;
    height: 600px;
    background: url('images/global/Frame@2x.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}

.global-hero-title {
    font-size: 44px;
    color: #212121;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 600;
}

.global-hero-subtitle {
    font-size: 20px;
    color: #333;
    margin-bottom: 30px;
}

.global-filters {
    width: 100%;
    padding: 60px 0 20px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.filters-wrap {
    width: 1000px;
}

.filter-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.filter-label {
    width: 90px;
    font-size: 14px;
    color: #333;
    text-align: right;
}

.filter-bar {
    flex: 1;
    background: #F3F3F3;
    border-radius: 12px;
    padding: 10px 12px;
}

.filter-pills {
    display: flex;
    gap: 8px;
}

.placeholder-grid {
    width: 1000px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.placeholder {
    height: 160px;
    background: #EDEDED;
    border-radius: 12px;
}

.global-core-goods {
    width: 100%;
    padding: 80px 0 40px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.global-assurance {
    width: 100%;
    padding: 60px 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.assurance-grid {
    width: 900px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.assurance-item img {
    width: 160px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.shopping-flow {
    width: 100%;
    padding: 60px 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.global-faq {
    width: 100%;
    padding: 80px 0;
    background: #fff;
    display: flex;
    justify-content: center;
}

.about-page .about-hero {
    width: 100%;
    height: 600px;
    background: url('images/about/Frame_2659@2x.png') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}

.about-hero-content {
    width: 1200px;
    display: grid;
    grid-template-columns: 520px 1fr;
    align-items: center;
    gap: 40px;
}

.about-title-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.about-app-icon {
    width: 110px;
    height: 110px;
    border-radius: 16px;
    flex-shrink: 0;
}

.about-title-text {
    display: flex;
    flex-direction: column;
}

.about-hero-title {
    font-size: 40px;
    color: #FFFFFF;
    line-height: 1.3;
    margin-bottom: 16px;
    font-weight: 700;
}

.about-hero-subtitle {
    font-size: 18px;
    color: #FFE6EA;
    margin-bottom: 18px;
}

.qr-row {
    display: flex;
    gap: 12px;
    margin: 16px 0;
}

.qr-row .qr-placeholder {
    width: 110px;
    height: 110px;
    border-radius: 8px;
    background: rgba(255,255,255,0.9);
}

.download-buttons {
    display: flex;
    gap: 12px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(0,0,0,0.25);
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
}

.download-btn img {
    width: 16px;
    height: 16px;
}

/* --- Join Modal --- */
.join-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}
.join-modal {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    width: 360px;
    padding: 24px 24px 20px;
    text-align: center;
}
.join-modal h3 {
    font-size: 18px;
    color: #212121;
    margin-bottom: 16px;
    font-weight: 700;
}
.join-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
}
.join-btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    cursor: pointer;
}
.join-btn-merchant {
    background: #D9304E;
    color: #fff;
}
.join-btn-supplier {
    background: #FFFFFF;
    color: #D9304E;
    border: 1px solid #D9304E;
}
.join-close {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: #666;
    cursor: pointer;
}
.about-info {
    width: 100%;
    padding: 80px 0;
    background: #fff;
    display: flex;
    justify-content: center;
}

.about-info-inner {
    width: 1200px;
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.about-sidebar-title {
    font-size: 20px;
    color: #212121;
    margin-bottom: 14px;
    font-weight: 600;
}

.about-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-big {
    font-size: 15px;
    color: #212121;
    font-weight: 600;
}

.about-small {
    font-size: 14px;
    color: #333;
}

.about-menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 0;
    cursor: pointer;
}

.about-menu-item span {
    font-size: 14px;
    color: #333;
}

.about-menu-item img {
    width: 16px;
    height: 16px;
}

.about-menu-item.active {
    color: #CC1D32;
}

.about-sublist-title {
    font-size: 13px;
    color: #999;
    padding: 6px 2px;
}

.about-sublist {
    list-style: none;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 2px solid #F0F0F0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about-sublist li {
    font-size: 13px;
    color: #666;
}

.about-sublist-inline {
    list-style: none;
    margin-left: 8px;
    padding-left: 8px;
    border-left: 2px solid #F0F0F0;
}

.about-sublist-inline li {
    font-size: 13px;
    color: #666;
}
.about-content h2 {
    font-size: 28px;
    color: #212121;
    margin-bottom: 12px;
    font-weight: 700;
}

.about-content h3 {
    font-size: 20px;
    color: #212121;
    margin: 18px 0 8px;
    font-weight: 600;
}

.about-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.values-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.values-list .label {
    font-weight: 700;
    color: #212121;
}

/* Assurance default block */
.assurance-block {
    padding-top: 10px;
}
.assurance-top img {
    width: 500px;
    height: auto;
    display: block;
    margin: 0 auto 16px;
}
.assurance-bullets {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 14px;
}
.assurance-bullets li {
    position: relative;
    padding-left: 18px;
    color: #CC1D32;
    font-size: 14px;
}
.assurance-bullets li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 7px;
    width: 6px;
    height: 6px;
    background: #CC1D32;
    border-radius: 50%;
}
.assurance-title {
    font-size: 20px;
    font-weight: 700;
    color: #212121;
    margin: 10px 0 12px;
    text-align: left;
}
.assurance-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.num {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #F0F2F8;
    color: #6A7488;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.step-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}
.step-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.mindset-section {
    margin-top: 10px;
}
.mindset-header {
    position: relative;
    text-align: center;
    background: url('images/about/Vector@2x(2).png') no-repeat center;
    background-size: 280px auto;
    padding: 24px 0 16px;
}

.mindset-block {
    padding-top: 0;
}

.brand-story {
    margin-top: 40px;
}
.product-grid {
    width: 1000px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.product-card {
    background: #fff;
    border: 1.5px dashed #CFCFCF;
    border-radius: 10px;
    padding: 16px;
}

.product-img {
    position: relative;
    padding: 20px;
    background: #f7f7f7;
    border-radius: 8px;
}

.product-img img {
    width: 100%;
    height: auto;
    display: block;
}

.badge-top {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #CC1D32;
    color: #fff;
    padding: 2px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(204,29,50,0.25);
}

.product-meta {
    padding: 14px 6px 0;
    text-align: center;
}

.product-meta h4 {
    font-size: 16px;
    color: #666666;
    margin-bottom: 6px;
}

.product-meta p {
    font-size: 14px;
    color: #666;
    margin-bottom: 6px;
}

.meta-count {
    font-size: 16px;
    color: #333;
    font-weight: 700;
}

.stars {
    margin-top: 6px;
    font-size: 24px;
    letter-spacing: 2px;
    color: #333;
}

.merchant-flow {
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.merchant-faq {
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
    display: flex;
    justify-content: center;
}

.faq-content {
    width: 1000px;
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 40px;
    align-items: center;
}

.faq-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.faq-title {
    font-size: 22px;
    color: #212121;
    margin-bottom: 16px;
    font-weight: 600;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.faq-pill {
    display: inline-block;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid #FFD8DD;
    box-shadow: 0 6px 18px rgba(217,48,78,0.08);
    border-radius: 10px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
}

/* Supplier Apply Page */
.apply-page .apply-hero {
    width: 100%;
    padding-top: 90px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
}
.apply-hero-title h1 {
    font-size: 28px;
    color: #212121;
    font-weight: 700;
}
.apply-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 20px 0 80px;
}
.apply-form {
    width: 900px;
}
.apply-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    padding: 24px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}
.req {
    color: #CC1D32;
    margin-left: 4px;
}
.options-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
}
.options-grid.options-3 {
    gap: 16px;
}
.options-grid.options-wrap {
    gap: 10px 14px;
}
.option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #333;
}
.note {
    color: #CC1D32;
    margin-left: 4px;
}
.option-box {
    background: #F7F7F7;
    border-radius: 12px;
    padding: 16px;
}
.option-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.option-list.columns-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}
.upload-box {
    width: 200px;
    height: 140px;
    border: 2px dashed #E5E5E5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAFAFA;
}
.input-select {
    width: 300px;
    height: 40px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
}
.input-text {
    width: 100%;
    height: 40px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    padding: 0 12px;
    font-size: 14px;
}
.apply-submit {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.btn-apply-submit {
    background: #D9304E;
    color: #fff;
    border: none;
    border-radius: 24px;
    height: 44px;
    padding: 0 36px;
    font-size: 16px;
    cursor: pointer;
}
.brand-benefits {
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefits-grid {
    width: 1000px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 80px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.benefit-icon img {
    width: 60px;
    height: 60px;
}

.benefit-text h3 {
    font-size: 18px;
    color: #212121;
    margin-bottom: 6px;
    font-weight: 600;
}

.benefit-text p {
    font-size: 14px;
    color: #666;
}

.brand-cases {
    width: 100%;
    padding: 80px 0;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.case-frame {
    width: 1000px;
    position: relative;
}

.case-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: auto;
}

.case-arrow.left {
    left: -40px;
}

.case-arrow.right {
    right: -40px;
}

.case-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 24px;
    align-items: center;
}

.case-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.case-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    font-weight: 600;
    color: #212121;
}

.case-badge {
    background: #CC1D32;
    color: #fff;
    font-size: 12px;
    border-radius: 12px;
    padding: 2px 6px;
}

.case-stats {
    display: flex;
    gap: 40px;
    margin: 12px 0 16px;
}

.stat-num {
    font-size: 28px;
    font-weight: 700;
    color: #212121;
    margin-right: 6px;
}

.stat-label {
    color: #666;
    font-size: 14px;
}

.stat-icon-up {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-left: 6px;
    margin-right: 6px;
}

.case-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}

.brand-flow {
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow-card {
    width: 1000px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    padding: 28px 32px;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.flow-step img {
    width: 56px;
    height: 56px;
}

.flow-label {
    font-size: 14px;
    color: #333;
}

.flow-arrow {
    position: relative;
    width: 80px;
    height: 0;
    border-top: 2px dashed #CC1D32;
}

.flow-arrow::after {
    content: '';
    position: absolute;
    right: -2px;
    top: -5px;
    width: 0;
    height: 0;
    border-left: 8px solid #CC1D32;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.hero-content {
    width: 1200px;
    padding-left: 20px; /* Minor adjustment if needed */
}

.hero-title {
    font-family: "PingFang SC-Medium", "PingFang SC", sans-serif;
    font-size: 48px;
    color: #CC1C29; /* Approx from UIColor(red: 0.8, green: 0.11, blue: 0.16) */
    line-height: 1.4;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-family: "PingFang SC-Medium", "PingFang SC", sans-serif;
    font-size: 24px;
    color: #212121; /* Approx from UIColor(red: 0.13, green: 0.13, blue: 0.13) */
    margin-bottom: 40px;
}

.hero-actions-pill {
    display: inline-flex;
    border: 2px solid #D9304E;
    border-radius: 50px;
    overflow: hidden;
    background-color: white;
}

.pill-btn {
    padding: 12px 30px;
    font-size: 18px;
    text-decoration: none;
    color: #D9304E;
    transition: all 0.3s;
    font-weight: 500;
}

.pill-btn.active, .pill-btn:hover {
    background-color: #D9304E;
    color: white;
    font-size: 18px;
}

/* Adjust borders between buttons if needed, or rely on background */
.pill-btn + .pill-btn {
    border-left: 1px solid #eee;
}

/* --- Ecosystem Section --- */
.ecosystem-section {
    width: 100%;
    padding: 80px 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 44px;
    font-weight: 600; /* Semibold */
    color: #212121;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 20px;
    font-weight: 300; /* Light */
    color: #212121;
}

.ecosystem-content {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ecosystem-diagram {
    position: relative;
    width: 700px; /* Adjust based on image sizes */
    height: 500px;
}

.diagram-base {
    position: relative;
    width: 125%;
    height: 100%;
}

.base-img {
    width: 75%;
    height: auto;
    position: absolute;
    bottom: 50px;
    left: 50px;
    z-index: 1;
}

.diagram-element {
    /* position: absolute; Removed common absolute, set individually */
    z-index: 2;
    text-align: center;
    transition: transform 0.3s ease;
}

.diagram-element:hover {
    transform: translateY(-5px);
}

/* Individual Image Styling for Precise Control */
.brand-supplier img {
    width: 120px;
    height: auto;
    display: block;
    margin: -13px 90px;
}

.center-platform img {
    width: 100px;
    height: auto;
    display: block;
    margin: 1px -115px;
    animation: bounceY 2.4s ease-in-out infinite;
    will-change: transform;
}

.merchant img {
    width: 130px;
    height: auto;
    display: block;
    margin: 14px 32px;
}

.user img {
    width: 130px;
    height: auto;
    display: block;
    margin: 106px 90px;
}

/* Positioning specific elements based on the base image */
.brand-supplier {
    position: absolute !important;
    top: 30px;
    left: 200px;
}

.center-platform {
    position: absolute !important;
    top: 130px;
    left: 50%;
    transform: translateX(-50%); 
    z-index: 3;
}
.center-platform:hover {
    transform: translateX(-50%) translateY(-5px);
}

@keyframes bounceY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.merchant {
    position: absolute !important;
    bottom: 50px;
    left: 80px;
}

.user {
    position: absolute !important;
    bottom: 50px;
    right: 80px;
}

/* Right Features */
.ecosystem-features {
    width: 400px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    /* background: #f9f9f9; */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* --- Global Supply Section --- */
.global-supply-section {
    width: 100%;
    padding: 80px 0;
    background-color: #fff; /* Or specific background color if needed */
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -150px;
}

.supply-tabs {
    display: flex;
    gap: 60px;
    margin-bottom: 50px;
    border-bottom: 1px solid transparent; /* Placeholder for potential line */
}

.supply-tab {
    font-size: 25px;
    color: #333;
    padding-bottom: 10px;
    cursor: pointer;
    position: relative;
    font-weight: 600;
}

.supply-tab.active {
    color: #333;
    font-weight: 600;
}

.supply-tab.active::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Adjust distance from text */
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: #D9304E;
}

.supply-content {
    width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center; /* Center the content block */
    gap: 80px;
}

.supply-image img {
    width: 600px; /* Adjust based on design (658pt approx 877px, but 600px fits layout better usually, or use max-width) */
    /* Based on image annotation: 658pt width. Let's try 650px first */
    width: 650px; 
    height: auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); /* Optional shadow */
}

.supply-details {
    width: 400px;
}

.supply-details h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.supply-details p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-outline-pill {
    display: inline-block;
    padding: 10px 30px;
    border: 1px solid #333;
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-outline-pill:hover {
    border-color: #D9304E;
    color: #D9304E;
}

/* --- Core Data Section --- */
.core-data-section {
    width: 100%;
    padding: 80px 0;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.core-data-cards {
    width: 1200px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    height: 350px; /* Fixed height for consistency */
}

.data-card {
    background: transparent; /* Default transparent for collapsed state */
    /* border-radius: 12px; Remove from here, apply to active state or keep subtle */
    padding: 0; /* Reset padding */
    transition: all 0.5s ease; /* Smooth transition */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align icon/text to bottom */
    width: 180px; /* Collapsed width */
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Active/Expanded State (Default first one, or hovered) */
.data-card.active {
    width: 580px; /* Expanded width */
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-radius: 12px;
    padding: 30px;
    justify-content: space-between; /* Space between image and text */
}

.data-card:hover {
    /* We will handle hover logic via JS to manage the 'active' class, 
       or use pure CSS sibling selectors if structure allows. 
       JS is safer for "one open at a time" logic. */
}

.card-content-top {
    display: none; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease 0.1s; /* Slight delay */
    justify-content: flex-end;
}

.data-card.active .card-content-top {
    display: flex;
    opacity: 1;
}

.card-main-img {
    max-width: 100%;
    height: auto;
    max-height: 200px; /* Adjust based on expanded height */
    object-fit: contain;
}

.card-content-bottom {
    display: flex;
    align-items: center; /* Center vertically for collapsed state */
    gap: 15px;
    padding: 20px 0; /* Add some padding for touch target/visual */
}

.data-card.active .card-content-bottom {
    padding: 0; /* Reset padding when active as parent has padding */
    align-items: flex-end;
}

.data-icon img {
    width: 48px;
    height: 48px;
    transition: transform 0.3s;
}

/* Optional: Enlarge icon slightly when active */
/* .data-card.active .data-icon img { transform: scale(1.1); } */

.data-text {
    display: flex;
    flex-direction: column;
}

.data-number {
    font-size: 28px;
    font-weight: bold;
    color: #D9304E; 
    line-height: 1;
    margin-bottom: 5px;
    font-family: Arial, sans-serif;
    white-space: nowrap; /* Prevent wrapping during transition */
}

.data-label {
    font-size: 14px;
    color: #666;
    white-space: nowrap;
}

/* --- User Testimonials Section --- */
.testimonials-section {
    width: 100%;
    padding: 80px 0;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.testimonials-cloud {
    position: relative;
    width: 1200px; /* Match standard width */
    height: 600px; /* Sufficient height for the cloud */
    margin-top: 50px;
}

.testimonial-card {
    position: absolute;
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(217, 48, 78, 0.08); /* Pinkish glow by default */
    display: flex;
    align-items: center;
    gap: 15px;
    width: auto;
    min-width: 280px;
    max-width: 350px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: 1px solid #fff; /* White border */
    z-index: 1; /* Default z-index */
}

/* Hover Effect: Scale up and bring to front */
.testimonial-card:hover {
    transform: scale(1.15) !important; /* Override specific transforms */
    z-index: 100 !important;
    box-shadow: 0 20px 50px rgba(217, 48, 78, 0.2); /* Stronger brand color shadow */
    border-color: #FFEFF1;
}

.card-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.card-info h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.card-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Specific Positions for "Clustered" Layout */

/* 1. Top Center (Brand) - Behind */
.pos-1 { 
    top: 5%; 
    left: 45%; 
    transform: translateX(-50%) rotate(-2deg);
    z-index: 1; 
}

/* 2. Bottom Center (Brand) - Frontish */
.pos-2 { 
    top: 65%; 
    left: 48%; 
    transform: translateX(-50%) rotate(2deg);
    z-index: 4; 
}

/* 3. Top Right (Brand) */
.pos-3 { 
    top: 15%; 
    right: 18%; 
    transform: rotate(3deg);
    z-index: 2; 
}

/* 4. Bottom Left (Brand) */
.pos-4 { 
    top: 70%; 
    left: 20%; 
    transform: rotate(-3deg);
    z-index: 3; 
}

/* 5. Center (User @不吃香菜) - Main Focus */
.pos-5 { 
    top: 40%; 
    left: 50%; 
    transform: translate(-50%, -50%) scale(1.05); /* Slightly larger */
    z-index: 10; 
    box-shadow: 0 15px 40px rgba(217, 48, 78, 0.12);
}

/* 6. Top Left (User @AAA) */
.pos-6 { 
    top: 20%; 
    left: 18%; 
    transform: rotate(-4deg);
    z-index: 2; 
}

/* 7. Mid Left (User @AAA) */
.pos-7 { 
    top: 45%; 
    left: 12%; 
    transform: rotate(2deg);
    z-index: 5; 
}

/* 8. Bottom Right (User @AAA / Duplicate) */
.pos-8 { 
    top: 55%; 
    right: 15%; 
    transform: rotate(-3deg);
    z-index: 3; 
}

/* 9. Far Top Left (Brand) - Background */
.pos-9 { 
    top: 10%; 
    left: 5%; 
    transform: rotate(2deg) scale(0.9);
    z-index: 0; 
    opacity: 0.9;
}

/* 10. Far Top Right (User @AAA) - Background */
.pos-10 { 
    top: 8%; 
    right: 5%; 
    transform: rotate(-3deg) scale(0.9);
    z-index: 0; 
    opacity: 0.9;
}

/* 11. Far Bottom Left (Brand) - Background */
.pos-11 { 
    bottom: 10%; 
    left: 5%; 
    transform: rotate(4deg) scale(0.9);
    z-index: 1; 
}

/* 12. Mid Right Edge (User @不吃香菜) - Side */
.pos-12 { 
    top: 40%; 
    right: 2%; 
    transform: rotate(3deg);
    z-index: 2; 
}

/* --- Qualification Certification Section --- */
.qualification-section {
    width: 100%;
    padding: 80px 0;
    background-color: #F8F8F8;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qualification-grid {
    width: 1200px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.qualification-card {
    background: white;
    border-radius: 12px;
    width: 200px; /* Adjust to fit 5 items within 1200px */
    height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03); /* Very subtle shadow */
}

.qualification-card img {
    width: 80px; /* Adjust size based on image content */
    height: auto;
    margin-bottom: 15px;
    display: block;
}

.qualification-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.footer-cta {
    width: 100%;
    background-color: #CD1D2A;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}

.footer-cta-inner {
    width: 1200px;
    text-align: center;
}

.cta-title {
    font-size: 25pt;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 12px 75px;
    border: 1.5px solid #fff;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

.site-footer {
    width: 100%;
    background-color: #111316;
    color: #fff;
    padding: 60px 0 30px;
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 1200px;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: flex-start;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #bfbfbf;
    text-decoration: none;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    align-items: flex-start;
}

.footer-btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 22px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.footer-btn-download {
    background-color: #CC1D32;
    color: #FFFFFF;
}

.footer-btn-consult {
    background-color: #FFFFFF;
    color: #CC1D32;
}

.footer-qrs .qr-list {
    display: flex;
    gap: 16px;
}

.qr-placeholder {
    width: 110px;
    height: 110px;
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-logo img {
    height: 28px;
}

.footer-meta {
    display: flex;
    gap: 20px;
    color: #bfbfbf;
    font-size: 12px;
}
