* {
  margin: 0;
  padding: 0;
}
/* Products Hero Section */
.products-hero-section {
    position: relative;
    width: 100%;
    height: 40rem;
    overflow: hidden;
    background-color: #1a1a1a;
}

.products-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.products-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.products-hero-container {
    position: relative;
    z-index: 3;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 3.75rem;
    /*width: 100%;*/
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.products-hero-content {
    max-width: 60rem;
}

/* Hero Title - 图二 */
.products-hero-title {
    font-family: Arial, Arial;
    font-size: 6.25rem;
    font-weight: 400;
    color: #F5F3EE;
    line-height: 8.75rem;
    margin: 0 0 1.5rem 0;
}

/* Hero Subtitle - 图三 */
.products-hero-subtitle {
    font-family: ArialMT, ArialMT;
    font-size: 2.875rem;
    font-weight: 400;
    color: #F5F3EE;
    line-height: 4rem;
    margin: 0 0 1rem 0;
}

/* Hero Description - 图四 */
.products-hero-desc {
    font-family: ArialMT, ArialMT;
    font-size: 2rem;
    font-weight: 400;
    color: #F5F3EE;
    line-height: 2.5rem;
    margin: 0 0 2rem 0;
    max-width: 48.3125rem;
}

/* Hero Buttons */
.products-hero-buttons {
    display: flex;
    gap: 1.25rem;
}

/* Primary Button - Explore Fabrics */
.products-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background-color: #123326;
    color: #F5F3EE;
    text-decoration: none;
    font-family: Arial, Arial;
    font-size: 1.625rem;
    font-weight: 400;
    line-height: 2.25rem;
    border: 0.125rem solid #123326;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.products-btn-primary:hover {
    background-color: transparent;
    border-color: #F5F3EE;
}

/* Secondary Button - Request Sample 图四 */
.products-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.5rem;
    background-color: transparent;
    color: #F5F3EE;
    text-decoration: none;
    font-family: Arial, Arial;
    font-size: 1.625rem;
    font-weight: 400;
    line-height: 2.25rem;
    border: 1px solid #666666;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.products-btn-secondary:hover {
    border-color: #F5F3EE;
}

/* Features Section - 图一 */
.products-features-section {
    background-color: #123326;
    height: auto;
    min-height: 8.75rem;
    width: 100%;
}

.products-features-container {
    max-width: 1920px;
    height: 100%;
    margin: 0 auto;
    padding: 0 3.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.products-feature-item {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.products-feature-icon {
    width: 3.25rem;
    height: 3.125rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products-feature-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}


.feature-texts {
  display: flex;
  flex-direction: column;
  gap: 4px; /* 标题与描述的上下间距，可按需调整 */
}

/* Feature Label - 图二 */
.products-feature-label {
    font-family: Arial, Arial;
    font-size: 1.5rem;
    font-weight: 400;
    color: #F5F3EE;
    line-height: 2.125rem;
    text-align: left;
}

/* Feature Value - 图三 */
.products-feature-value {
    font-family: ArialMT, ArialMT;
    font-size: 1.125rem;
    font-weight: 400;
    color: #D8D6CF;
    line-height: 1.5625rem;
    text-align: left;
}

/* Responsive - 1440px */
@media screen and (max-width: 1440px) {
    .products-hero-section {
        height: 50rem;
    }

    .products-hero-title {
        font-size: 5rem;
        line-height: 7rem;
    }

    .products-hero-subtitle {
        font-size: 2.25rem;
        line-height: 3rem;
    }

    .products-hero-desc {
        font-size: 1.75rem;
        line-height: 2.25rem;
    }

    .products-btn-primary,
    .products-btn-secondary {
        font-size: 1.375rem;
        line-height: 2rem;
    }

    .products-feature-label {
        font-size: 1.25rem;
        line-height: 1.875rem;
    }

    .products-feature-value {
        font-size: 1rem;
        line-height: 1.375rem;
    }
}

/* Responsive - 1200px */
@media screen and (max-width: 1200px) {
    .products-hero-container {
        padding: 0 2.5rem;
    }

    .products-hero-title {
        font-size: 4.5rem;
        line-height: 6.25rem;
    }

    .products-hero-subtitle {
        font-size: 2rem;
        line-height: 2.75rem;
    }

    .products-hero-desc {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .products-features-container {
        padding: 0 2.5rem;
    }

    .products-feature-item {
        gap: 0.5rem;
    }
}

/* Responsive - 992px */
@media screen and (max-width: 992px) {
    .products-hero-section {
        height: 44rem;
    }

    .products-hero-container {
        padding: 0 2rem;
    }

    .products-hero-title {
        font-size: 3.75rem;
        line-height: 5rem;
    }

    .products-hero-subtitle {
        font-size: 1.75rem;
        line-height: 2.5rem;
    }

    .products-hero-desc {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .products-features-section {
        height: auto;
        padding: 1.5rem 0;
    }

    .products-features-container {
        padding: 0 2rem;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .products-feature-item {
        flex: 0 0 calc(50% - 0.75rem);
        justify-content: flex-start;
    }
}

/* Responsive - 768px (Mobile) */
@media screen and (max-width: 768px) {
    .products-hero-section {
        height: 32rem;
    }

    .products-hero-container {
        padding: 0 1.25rem;
    }

    .products-hero-title {
        font-size: 1.875rem;
        line-height: 2.5rem;
        margin-bottom: 0.75rem;
        word-break: break-word;
    }

    .products-hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.75rem;
        margin-bottom: 0.5rem;
        word-break: break-word;
    }

    .products-hero-desc {
        font-size: 1rem;
        line-height: 1.5rem;
        margin-bottom: 1.25rem;
        max-width: 100%;
    }

    .products-hero-buttons {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .products-btn-primary,
    .products-btn-secondary {
        font-size: 1rem;
        line-height: 1.375rem;
        padding: 0.625rem 1.25rem;
        width: 100%;
        justify-content: center;
    }

    .products-features-section {
        min-height: auto;
        padding: 1.5rem 0;
    }

    .products-features-container {
        padding: 0 1.25rem;
        flex-direction: column;
        gap: 1rem;
        height: auto;
    }

    .products-feature-item {
        
        flex: 0 0 auto;
        width: 48.5%;
        gap: 0.75rem;
    }

    .products-feature-icon {
        width: 1.875rem;
        height: 1.875rem;
    }

    .products-feature-label {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }

    .products-feature-value {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }
}

/* Explore Our Fabrics Section */
.products-explore-section {
    background-color: #FFFFFF;
    padding: 4rem 0;
    border-bottom:1px solid #666666
}

.products-explore-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 3.75rem;
    
}

/* Section Title - 图四 */
.products-explore-title {
    font-family: Arial, Arial;
    font-size: 2rem;
    font-weight: 400;
    color: #0B0F0D;
    line-height: 2.8125rem;
    margin: 0 0 2rem 0;
    text-align: left;
}

/* Fabrics Grid */
.products-fabrics-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
}

.products-fabrics-grid > a:nth-child(n+7) {
    display: none;
}

/* Fabric Card - 背景图方式 */
.products-fabric-card {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0.5rem;
    overflow: hidden;
    width: 17.5rem;
    height: 19.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    transition: transform 0.3s ease;
}

.products-fabric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.products-fabric-card:hover {
    transform: translateY(-4px);
}

.products-fabric-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

/* Fabric Name - 图三 */
.products-fabric-name {
    font-family: Arial, Arial;
    font-size: 1.625rem;
    font-weight: 400;
    color: #F5F3EE;
    line-height: 2.25rem;
    margin: 0 0 0.25rem 0;
    text-align: left;
}

/* Fabric Description - 图二 */
.products-fabric-desc {
    font-family: ArialMT, ArialMT;
    font-size: 1.375rem;
    font-weight: 400;
    color: #F5F3EE;
    line-height: 2.5rem;
    margin: 0;
    text-align: left;
}

/* Fashion & Development Section - 图一布局 */
.products-development-section {
    background-color: #FFFFFF;
    padding: 4rem 0;
}

.products-development-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 3.75rem;
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    
    align-items: start;
}

.products-development-content {
    max-width: 24rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 图二：标题 */
.products-development-title {
    font-family: Arial, Arial;
    font-size: 1.75rem;
    font-weight: 400;
    color: #0B0F0D;
    line-height: 2.4375rem;
    margin: 0;
}

/* 图三：描述 */
.products-development-desc {
    font-family: ArialMT, ArialMT;
    font-size: 1.5rem;
    font-weight: 400;
    color: #0B0F0D;
    line-height: 2.5rem;
    margin: 0;
}

/* 图四：列表项 */
.products-development-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.products-development-list li {
    font-family: ArialMT, ArialMT;
    font-size: 1.5rem;
    font-weight: 400;
    color: #666666;
    line-height: 2.5rem;
    padding-left: 1.75rem;
    position: relative;
}

.products-development-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.9375rem;
    width: 0.875rem;
    height: 0.875rem;
    background-size: contain;
    background-repeat: no-repeat;
}

.products-list-icon {
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
    flex-shrink: 0;
}


/* 图五：View More按钮 */
.products-view-more-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.5rem;
    background-color: #123326;
    color: #F5F3EE;
    width: 16rem;
    text-decoration: none;
    font-family: ArialMT, ArialMT;
    font-size: 1.625rem;
    font-weight: 400;
    line-height: 2.25rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}
.products-view-more-icon {
    width: 1.5rem;
    height: 1.5rem;
    color:writh;
    object-fit: contain;
    flex-shrink: 0;
}




.products-view-more-btn:hover {
    background-color: #0d261c;
}

/* Development Images - 2x2 grid layout */
.products-development-images {
    display: grid;
    height: 28rem;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    width: 100%;
}

.products-development-card {
    position: relative;
    border-radius: 0.5rem;
    overflow: hidden;
    height: 28rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.products-development-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.products-development-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.products-development-card-title {
    position: absolute;
    bottom: 3rem;
    left: 0;
    right: 0;
    text-align: center;
    justify-content: center;
    color: #F5F3EE;
    font-family: Arial, Arial;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5rem;
    z-index: 2;
}

/* Statistics Section */
.products-stats-section {
    background-color: #FFFFFF;
    padding: 4rem 0 3rem 0;
    border-top: 1px solid #E5E5E5;
    margin-top: 2rem;
}

.products-stats-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 3.75rem 3.75rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.products-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
}

.products-stat-icon {
    width: 3.25rem;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-stat-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* 图一：统计数值 */
.products-stat-value {
    font-family: ArialMT, ArialMT;
    font-size: 3.75rem;
    font-weight: 400;
    color: #123326;
    line-height: 5.25rem;
    margin: 0;
}

/* 图二：统计标签 */
.products-stat-label {
    font-family: ArialMT, ArialMT;
    font-size: 1.5rem;
    font-weight: 400;
    color: #666666;
    line-height: 2.125rem;
    margin: 0;
    text-align: center;
}

/* Global Reach Section */
.products-reach-section {
    background-color: #F5F3EE;
    padding: 4rem 0;
}

.products-reach-container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 3.75rem;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1rem;
}

.products-reach-content {
    max-width: 32rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* 图一：GLOBAL REACH */
.products-reach-eyebrow {
    font-family: Arial, Arial;
    font-size: 1.75rem;
    font-weight: 400;
    color: #666666;
    line-height: 2.4375rem;
    margin: 0;
    text-align: left;
}

/* 图二：Serving Clients Worldwide */
.products-reach-title {
    font-family: Arial, Arial;
    font-size: 2.5rem;
    font-weight: 400;
    color: #0B0F0D;
    line-height: 3.125rem;
    margin: 0;
}

/* 图三：描述文字 */
.products-reach-desc {
    font-family: ArialMT, ArialMT;
    font-size: 1.75rem;
    font-weight: 400;
    color: #666666;
    line-height: 2.5rem;
    margin: 0;
    text-align: left;
}

/* Reach Stats */
.products-reach-stats {
    display: flex;
    gap: 3rem;
    margin-top: 1.5rem;
}

.products-reach-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* 图四：统计数值 */
.products-reach-stat-value {
    font-family: ArialMT, ArialMT;
    font-size: 3.75rem;
    font-weight: 400;
    color: #123326;
    line-height: 5.25rem;
    text-align: left;
}

/* 图五：统计标签 */
.products-reach-stat-label {
    font-family: ArialMT, ArialMT;
    font-size: 1.5rem;
    font-weight: 400;
    color: #666666;
    line-height: 2.125rem;
    text-align: right;
}

/* Reach Images Layout */
.products-reach-images {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 1rem;
}

.products-reach-map {
    border-radius: 0.5rem;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-reach-map img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.products-reach-brands {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-content: start;
}

.products-reach-brand-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 12rem;
    background-size:cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
    border-radius: 0.5rem;
    overflow: hidden;
    position: relative;
}

.products-reach-brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    
    pointer-events: none;
}

.products-reach-brand-card span {
    position: relative;
    z-index: 1;
    font-family: Arial, Arial;
    font-size: 1.125rem;
    font-weight: 400;
    color: #F5F3EE;
    line-height: 1.25rem;
    text-align: left;
    padding:2.55rem 0.75rem;
}

/* Responsive - Explore, Development, Stats, Reach */
@media screen and (max-width: 1440px) {
    .products-explore-section,
    .products-development-section,
    .products-stats-section,
    .products-reach-section {
        padding: 3rem 0;
    }

    .products-explore-container,
    .products-development-container,
    .products-stats-container,
    .products-reach-container {
        padding: 0 3rem;
    }

    .products-explore-title {
        font-size: 1.75rem;
    }

    .products-fabric-card {
        height: 26rem;
    }

    .products-fabric-name {
        font-size: 1.375rem;
        line-height: 2rem;
    }

    .products-fabric-desc {
        font-size: 1.125rem;
        line-height: 2rem;
    }

    .products-stat-value {
        font-size: 3rem;
        line-height: 4.25rem;
    }

    .products-reach-desc {
        font-size: 1.5rem;
    }

    .products-reach-stat-value {
        font-size: 3rem;
        line-height: 4.25rem;
    }
}

@media screen and (max-width: 1200px) {
    .products-fabrics-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .products-fabric-card {
        height: 24rem;
    }

    .products-explore-container,
    .products-development-container,
    .products-stats-container,
    .products-reach-container {
        padding: 0 2.5rem;
    }

    .products-development-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .products-stat-value {
        font-size: 2.5rem;
        line-height: 3.5rem;
    }

    .products-reach-container {
        grid-template-columns: 1fr;
    }

    .products-reach-stat-value {
        font-size: 3rem;
        line-height: 4.25rem;
    }
}

@media screen and (max-width: 992px) {
   
    .products-development-container {
        grid-template-columns: 1fr;
    }

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

    .products-fabric-card {
        height: 22rem;
    }

    .products-explore-container,
    .products-development-container,
    .products-stats-container,
    .products-reach-container {
        padding: 0 2rem;
    }

    .products-development-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-stat-item {
        gap: 0.5rem;
    }

    .products-stat-value {
        font-size: 2rem;
        line-height: 2.75rem;
    }

    .products-reach-stat-value {
        font-size: 2.5rem;
        line-height: 3.5rem;
    }
}

@media screen and (max-width: 768px) {
    .products-explore-section,
    .products-development-section,
    .products-reach-section {
        padding: 2rem 0;
    }

    .products-stats-section {
        padding: 1.5rem 0;
    }

    .products-explore-container,
    .products-development-container,
    .products-stats-container,
    .products-reach-container {
        padding: 0 1.25rem;
    }

    .products-reach-content {
        max-width: 100%;
    }

    .products-reach-map {
        min-height: 18rem;
    }

    .products-reach-map img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .products-explore-title {
        font-size: 1.375rem;
        line-height: 1.875rem;
        margin-bottom: 1.5rem;
    }

    .products-fabrics-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .products-fabric-card {
        height: 20rem;
    }

    .products-fabric-name {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .products-fabric-desc {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .products-development-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .products-development-title {
        font-size: 1.375rem;
        line-height: 1.875rem;
        margin-bottom: 0.75rem;
    }

    .products-development-desc {
        font-size: 1.125rem;
        line-height: 1.625rem;
        margin-bottom: 1rem;
    }

    .products-development-list {
        margin-bottom: 1.25rem;
    }

    .products-development-list li {
        font-size: 1rem;
        line-height: 1.5rem;
        padding-left: 1.5rem;
        gap: 0.5rem;
    }

    .products-list-icon {
        width: 1rem;
        height: 1rem;
    }

    .products-view-more-btn {
        font-size: 1.125rem;
        line-height: 1.5rem;
        padding: 0.5rem 1.25rem;
    }

    .products-development-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        width: 100%;
    }

    .products-development-card {
        height: 16rem;
    }

    .products-development-card-title {
        bottom: 0.75rem;
        left: 1rem;
        right: 1rem;
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .products-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding-top: 1rem;
        margin-top: 1rem;
    }

    .products-stat-item {
        gap: 0.5rem;
    }

    .products-stat-value {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .products-stat-label {
        font-size: 0.875rem;
        line-height: 1.125rem;
    }

    .products-reach-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-reach-eyebrow {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }

    .products-reach-title {
        font-size: 1.375rem;
        line-height: 1.875rem;
    }

    .products-reach-desc {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .products-reach-stats {
        gap: 1.5rem;
    }

    .products-reach-stat-value {
        font-size: 1.75rem;
        line-height: 2.375rem;
    }

    .products-reach-stat-label {
        font-size: 0.875rem;
        line-height: 1.125rem;
        text-align: left;
    }

    .products-reach-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-reach-brands {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
}

/* Responsive - 480px (Small Mobile) */
@media screen and (max-width: 480px) {
    .products-hero-section {
        height: 28rem;
    }

    .products-hero-container {
        padding: 0 1rem;
    }

    .products-hero-title {
        font-size: 1.5rem;
        line-height: 2rem;
        margin-bottom: 0.625rem;
    }

    .products-hero-subtitle {
        font-size: 1rem;
        line-height: 1.5rem;
        margin-bottom: 0.375rem;
    }

    .products-hero-desc {
        font-size: 0.875rem;
        line-height: 1.25rem;
        margin-bottom: 1rem;
    }

    .products-btn-primary,
    .products-btn-secondary {
        font-size: 0.9375rem;
        padding: 0.5rem 1rem;
    }

    .products-features-section {
        padding: 1rem 0;
    }

    .products-features-container {
        padding: 0 1rem;
        gap: 0.875rem;
        height: auto;
        display: flex;
        flex-direction: row;
        gap: 0;
    }

    .products-feature-icon {
        width: 1.5rem;
        height: 1.5rem;
    }

    .products-feature-label {
        font-size: 0.9375rem;
        line-height: 1.25rem;
    }

    .products-feature-value {
        font-size: 0.75rem;
        line-height: 1rem;
    }

    .products-explore-section,
    .products-development-section,
    .products-reach-section {
        padding: 1.5rem 0;
    }

    .products-stats-section {
        padding: 1rem 0;
    }

    .products-explore-container,
    .products-development-container,
    .products-stats-container,
    .products-reach-container {
        padding: 0 1rem;
    }

    .products-explore-title {
        font-size: 1.125rem;
        line-height: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .products-fabrics-grid {
        gap: 1rem;
    }

    .products-fabric-card {
        height: 16rem;
    }

    .products-fabric-name {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .products-fabric-desc {
        font-size: 0.875rem;
        line-height: 1.125rem;
    }

    .products-development-title {
        font-size: 1.125rem;
        line-height: 1.5rem;
    }

    .products-development-desc {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .products-development-list li {
        font-size: 0.9375rem;
        line-height: 1.375rem;
        padding-left: 1.25rem;
    }

    .products-view-more-btn {
        font-size: 1rem;
        padding: 0.375rem 1rem;
    }

    .products-development-images {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        width: 100%;
    }

    .products-development-card {
        height: 12rem;
    }

    .products-development-card-title {
        bottom: 0.5rem;
        left: 0.75rem;
        right: 0.75rem;
        font-size: 0.875rem;
        line-height: 1.125rem;
    }

    .products-stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .products-stat-value {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .products-stat-label {
        font-size: 0.875rem;
        line-height: 1.125rem;
    }

    .products-reach-eyebrow {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .products-reach-title {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .products-reach-desc {
        font-size: 1rem;
        line-height: 1.375rem;
    }

    .products-reach-stat-value {
        font-size: 1.875rem;
        line-height: 2.625rem;
    }

    .products-reach-stat-label {
        font-size: 0.875rem;
        line-height: 1.125rem;
        text-align: left;
    }

    .products-reach-content {
        max-width: 100%;
    }

    .products-reach-map {
        min-height: 14rem;
    }

    .products-reach-brands {
        grid-template-columns: 1fr;
    }

    .products-reach-brand-card {
        height: 10rem;
    }
}
