
    #headerContainer,
.elementor-video {
    width: 100%;
}

/* ritello概念-start*/
/* 我們的理念 - 高級美觀樣式 */
.philosophy-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* 標題樣式 */
.philosophy-section .section-header>p {
    font-size: 18px;
    color: var(--text-color-light);
    margin-top: 15px;
    font-style: italic;
}

/* 主要內容區域 */
.philosophy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 2;
}

/* 左側主要理念內容 */
.philosophy-main {
    position: relative;
}

.philosophy-text-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.philosophy-text-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.quote-decoration {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 60px;
    color: rgba(240, 130, 52, 0.2);
    font-family: serif;
}

.philosophy-text-content {
    position: relative;
}

.philosophy-text-content .play-btn-wrapper {
    position: absolute;
    top: -10px;
    right: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(240, 130, 52, 0.3);
    
}

.philosophy-text-content .play-btn-wrapper .play-btn {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
   
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(240, 130, 52, 0.5);
}

.play-btn:active {
    transform: scale(0.95);
}


.philosophy-text-content h3 {
    font-size: 28px;
    color: var(--text-color);
    margin-bottom: 25px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.philosophy-text-content>p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 30px;
    font-weight: 400;
}

/* 重點內容樣式 */
.philosophy-highlights {
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    padding: 15px 20px;
    background: rgba(240, 130, 52, 0.05);
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(240, 130, 52, 0.1);
    transform: translateX(10px);
}

.highlight-item i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.highlight-item span {
    color: var(--text-color);
    font-weight: 500;
}

/* 統計數據樣式 - 使用唯一類名避免衝突 */
.philosophy-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-box {
    text-align: center;
    padding: 20px 15px;
    background: linear-gradient(135deg, rgba(240, 130, 52, 0.1), rgba(240, 130, 52, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(240, 130, 52, 0.2);
}

.philosophy-stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.philosophy-stat-text {
    font-size: 14px;
    color: var(--text-color-light);
    font-weight: 500;
}

/* 右側特色展示 - 簡化樣式讓它們更協調 */
.philosophy-features {
    display: grid;
    gap: 20px;
}

.philosophy-feature-item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 20px;
}

.philosophy-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(240, 130, 52, 0.05), transparent);
    transition: left 0.6s ease;
}

.philosophy-feature-item:hover::before {
    left: 100%;
}

.philosophy-feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(240, 130, 52, 0.2);
}

.philosophy-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.philosophy-feature-item:hover .philosophy-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.philosophy-feature-icon i {
    font-size: 28px;
    color: white;
    transition: transform 0.3s ease;
}

.philosophy-feature-item:hover .philosophy-feature-icon i {
    transform: scale(1.1);
}

.philosophy-feature-content {
    flex: 1;
}

.philosophy-feature-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-color);
    font-weight: 700;
}

.philosophy-feature-content p {
    font-size: 14px;
    color: var(--text-color-light);
    line-height: 1.5;
    margin: 0;
}



/* 響應式設計 */
@media (max-width: 768px) {
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .philosophy-text-card {
        padding: 30px 25px;
    }

    .philosophy-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .philosophy-feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .decoration-circle {
        display: none;
    }

    .decoration-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .philosophy-section {
        padding: 80px 0;
    }

    .philosophy-text-card {
        padding: 25px 20px;
    }

    .philosophy-feature-item {
        padding: 20px 15px;
    }
}

/* ritello概念-end */

/* 认识ritello-end-start */
.services-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.services-section .section-header p {
    font-size: 18px;
    margin-top: 15px;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

.service-item {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(240, 130, 52, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(240, 130, 52, 0.05) 0%, rgba(247, 147, 30, 0.05) 100%); */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.service-item:hover::before {
    opacity: 1;
}

.service-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(240, 130, 52, 0.15);
    border-color: rgba(240, 130, 52, 0.3);
}

.service-item > * {
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 338px;
    height: 338px;
    margin: 0 auto 30px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
}

.service-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(135deg, rgba(240, 130, 52, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%); */
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.service-item:hover .service-icon::before {
    opacity: 1;
}

.service-item:hover .service-icon {
    transform: scale(1.05);
    /* box-shadow: 0 12px 35px rgba(240, 130, 52, 0.2); */
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-item:hover .service-icon img {
    transform: scale(1.1);
}

.service-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #f08234 0%, #f7931e 100%);
    border-radius: 2px;
}

.service-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
    font-weight: 400;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .service-item {
        padding: 40px 25px;
    }
    
    .service-icon {
        width: 200px;
        height: auto;
        margin-bottom: 16px;
    }
    
    .service-item h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .service-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        gap: 20px;
    }
    
    .service-item {
        padding: 35px 20px;
    }
    
    .service-icon {
        width: 200px;
        height: auto;
        margin-bottom: 12px;
    }
}

/* 认识ritello-end */

/* 專業認證 - 參考 featureSection 設計 */
#certificationSection {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

#certificationSection .container {
    position: relative;
    z-index: 2;
}

#certificationSection .logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 50px;
    margin-top: 60px;
}

#certificationSection .logo-item {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(240, 130, 52, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}



#certificationSection .logo-item:hover::before {
    opacity: 1;
}

#certificationSection .logo-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(240, 130, 52, 0.15);
    border-color: rgba(240, 130, 52, 0.3);
}

#certificationSection .logo-item > * {
    position: relative;
    z-index: 2;
}

#certificationSection .logo-icon {
    width: 338px;
    height: auto;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1); */
}
#certificationSection .logo-item:hover .logo-icon::before {
    opacity: 1;
}

#certificationSection .logo-item:hover .logo-icon {
    transform: scale(1.05);
    /* box-shadow: 0 12px 35px rgba(240, 130, 52, 0.2); */
}

#certificationSection .logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

#certificationSection .logo-item:hover .logo-icon img {
    transform: scale(1.1);
}

#certificationSection .logo-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

#certificationSection .logo-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #f08234 0%, #f7931e 100%);
    border-radius: 2px;
}

#certificationSection .logo-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin: 0;
    font-weight: 400;
}

/* 響應式設計 */
@media (max-width: 768px) {
    #certificationSection {
        padding: 60px 0;
    }
    
    #certificationSection .logos-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    #certificationSection .logo-item {
        padding: 40px 25px;
    }
    
    #certificationSection .logo-icon {
        width: 160px;
        height: 160px;
        margin-bottom: 25px;
    }
    
    #certificationSection .logo-item h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    #certificationSection .logo-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    #certificationSection .logos-grid {
        gap: 20px;
    }
    
    #certificationSection .logo-item {
        padding: 35px 20px;
    }
    
    #certificationSection .logo-icon {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
    }
}

/* RITELLO 的進步 - 時間軸設計 */
#progressSection {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

#progressSection .container {
    position: relative;
    z-index: 2;
}

.progress-timeline {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
    position: relative;
}

.progress-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #f08234 0%, #f7931e 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.progress-item {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.progress-item:nth-child(odd) {
    flex-direction: row;
}

.progress-item:nth-child(even) {
    flex-direction: row-reverse;
}

.progress-year {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f08234 0%, #f7931e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    position: relative;
    z-index: 3;
    box-shadow: 0 8px 25px rgba(240, 130, 52, 0.3);
    flex-shrink: 0;
}

.progress-content {
    flex: 1;
    margin: 0 40px;
}

.progress-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.progress-card:hover::before {
    opacity: 1;
}

.progress-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(240, 130, 52, 0.15);
    border-color: rgba(240, 130, 52, 0.3);
}

.progress-card > * {
    position: relative;
    z-index: 2;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(240, 130, 52, 0.1);
}

.progress-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.progress-badge {
    background: linear-gradient(135deg, #f08234 0%, #f7931e 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.progress-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 25px;
}

.progress-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.feature-tag {
    background: rgba(240, 130, 52, 0.1);
    color: #f08234;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(240, 130, 52, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(240, 130, 52, 0.2);
    transform: translateY(-2px);
}

/* 響應式設計 */
@media (max-width: 768px) {
    #progressSection {
        padding: 60px 0;
    }
    
    .progress-timeline {
        gap: 60px;
        margin-top: 40px;
    }
    
    .progress-timeline::before {
        left: 30px;
    }
    
    .progress-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .progress-year {
        position: absolute;
        left: -40px;
        width: 60px;
        height: 60px;
        font-size: 16px;
    }
    
    .progress-content {
        margin: 0;
    }
    
    .progress-card {
        padding: 30px 25px;
    }
    
    .progress-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .progress-header h3 {
        font-size: 24px;
    }
    
    .progress-features {
        gap: 8px;
    }
    
    .feature-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .progress-timeline {
        gap: 40px;
    }
    
    .progress-card {
        padding: 25px 20px;
    }
    
    .progress-header h3 {
        font-size: 20px;
    }
    
    .progress-body p {
        font-size: 14px;
    }
}

/* 床墊中的塵蟎 - 專業展示設計 */
#whyRiteelloSection {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

#whyRiteelloSection .container {
    position: relative;
    z-index: 2;
}

.dust-mite-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-top: 60px;
    align-items: start;
}

.dust-mite-card {
    background: white;
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.dust-mite-card:hover::before {
    opacity: 1;
}

.dust-mite-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(240, 130, 52, 0.15);
    border-color: rgba(240, 130, 52, 0.3);
}

.dust-mite-card > * {
    position: relative;
    z-index: 2;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(240, 130, 52, 0.1);
}

.header-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f08234 0%, #f7931e 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.header-icon i {
    font-size: 28px;
    color: white;
}

.card-header h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.card-body {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.content-paragraph {
    padding: 20px;
    background: rgba(240, 130, 52, 0.05);
    border-radius: 15px;
    border-left: 4px solid #f08234;
    transition: all 0.3s ease;
}

.content-paragraph:hover {
    background: rgba(240, 130, 52, 0.1);
    transform: translateX(5px);
}

.content-paragraph p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin: 0;
}

.content-paragraph strong {
    color: #f08234;
    font-weight: 700;
}

.dust-mite-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 100%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    flex: 1;
}

.stat-item {
    background: white;
    border-radius: 20px;
    padding: 35px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(240, 130, 52, 0.15);
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #f08234;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #5a6c7d;
    font-weight: 500;
}

.feature-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 100px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(240, 130, 52, 0.15);
    border-color: rgba(240, 130, 52, 0.3);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f08234 0%, #f7931e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 22px;
    color: white;
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.feature-content p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0;
}

.video-showcase {
    margin-top: 80px;
    text-align: center;
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.video-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* 響應式設計 */
@media (max-width: 1024px) {
    .dust-mite-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    #whyRiteelloSection {
        padding: 60px 0;
    }
    
    .dust-mite-content {
        margin-top: 40px;
    }
    
    .dust-mite-card {
        padding: 30px 25px;
    }
    
    .card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .card-header h3 {
        font-size: 24px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 25px 15px;
        min-height: 100px;
    }
    
    .stat-number {
        font-size: 20px;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .video-showcase {
        margin-top: 60px;
    }
    
    .video-wrapper iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .dust-mite-card {
        padding: 25px 20px;
    }
    
    .content-paragraph {
        padding: 15px;
    }
    
    .content-paragraph p {
        font-size: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-cards {
        gap: 15px;
    }
    
    .feature-card {
        padding: 20px;
    }
}

#whyRiteelloSection .section-sub-title {
    display: flex;
    justify-content: center;
    align-items: center;
}

#whyRiteelloSection::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../image/block-bg-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

#whyRiteelloSection .section-content p {
    text-align: left;
    font-size: 16px;
    line-height: 28px;
    color: #3f4245;
    margin-bottom: 12px;
}

#whyRiteelloSection .video-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-top: 46px;
}

/* 为什么选择RITELLO-end */

/* 影片專區 - start */
#videoSection .video-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
}


/* RITELLO的特點 - 新設計 */
.characteristic-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.characteristic-section .container {
    position: relative;
    z-index: 2;
}

.characteristic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.characteristic-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.characteristic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(240, 130, 52, 0.15);
    border-color: rgba(240, 130, 52, 0.3);
}

.characteristic-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.characteristic-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.characteristic-card:hover .characteristic-image img {
    transform: scale(1.05);
}

.characteristic-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.characteristic-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    position: relative;
    padding-bottom: 15px;
}

.characteristic-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #f08234 0%, #f7931e 100%);
    border-radius: 2px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.feature-list li {
    position: relative;
    padding: 12px 0 12px 25px;
    font-size: 14px;
    line-height: 1.6;
    color: #5a6c7d;
    border-bottom: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.3s ease;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #f08234 0%, #f7931e 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.feature-list li:hover {
    color: #2c3e50;
    padding-left: 30px;
}

.feature-list li:hover::before {
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(240, 130, 52, 0.5);
}

/* 響應式設計 */
@media (max-width: 768px) {
    .characteristic-section {
        padding: 60px 0;
    }
    
    .characteristic-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .characteristic-image {
        height: 180px;
    }
    
    .characteristic-content {
        padding: 25px;
    }
    
    .characteristic-content h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .feature-list li {
        font-size: 13px;
        padding: 10px 0 10px 20px;
    }
}

@media (max-width: 480px) {
    .characteristic-grid {
        gap: 25px;
    }
    
    .characteristic-image {
        height: 160px;
    }
    
    .characteristic-content {
        padding: 20px;
    }
    
    .characteristic-content h3 {
        font-size: 18px;
    }
    
    .feature-list li {
        font-size: 12px;
        padding: 8px 0 8px 18px;
    }
}

/* RITELLO 的配件 - Swiper 輪播設計 */
.accessory-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.accessory-section .container {
    position: relative;
    z-index: 2;
}

/* Swiper 容器 */
.accessory-swiper-container {
    margin-top: 60px;
    position: relative;
}

.accessory-swiper {
    padding: 20px 0 60px 0;
    overflow: hidden;
}

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

.accessory-swiper-container .swiper-button-next, 
.accessory-swiper-container .swiper-button-prev {
    top: 48%;
    box-shadow: none;
}

/* .accessory-swiper-container .swiper-button-prev {
    left: 0;
}

.accessory-swiper-container .swiper-button-next {
    right: 0;
} */

.accessory-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.accessory-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(240, 130, 52, 0.15);
    border-color: rgba(240, 130, 52, 0.3);
}

.accessory-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.accessory-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.accessory-card:hover .accessory-image img {
    transform: scale(1.05);
}

.accessory-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.accessory-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 15px 0;
    position: relative;
    padding-bottom: 12px;
    line-height: 1.4;
}

.accessory-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(135deg, #f08234 0%, #f7931e 100%);
    border-radius: 2px;
}

.accessory-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0;
    flex: 1;
}

/* Swiper 導航按鈕樣式 */
.accessory-swiper-button-next,
.accessory-swiper-button-prev {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f08234 0%, #f7931e 100%);
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(240, 130, 52, 0.3);
}

.accessory-swiper-button-next:hover,
.accessory-swiper-button-prev:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(240, 130, 52, 0.4);
}

.accessory-swiper-button-next:after,
.accessory-swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.accessory-swiper-button-next {
    right: 20px;
}

.accessory-swiper-button-prev {
    left: 20px;
}

/* Swiper 分頁器樣式 */
.accessory-swiper-pagination {
    bottom: 20px;
}

.accessory-swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(240, 130, 52, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.accessory-swiper-pagination .swiper-pagination-bullet-active {
    background: linear-gradient(135deg, #f08234 0%, #f7931e 100%);
    transform: scale(1.2);
}

/* 響應式設計 */
@media (max-width: 1200px) {
    .accessory-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .accessory-section {
        padding: 60px 0;
    }
    
    .accessory-swiper-container {
        margin-top: 40px;
    }
    
    .accessory-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 10px;
    }
    
    .accessory-image {
        height: 180px;
    }
    
    .accessory-content {
        padding: 20px;
    }
    
    .accessory-content h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .accessory-content p {
        font-size: 13px;
    }
    
    .accessory-swiper-button-next,
    .accessory-swiper-button-prev {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .accessory-swiper-button-next {
        right: 10px;
    }
    
    .accessory-swiper-button-prev {
        left: 10px;
    }
}

@media (max-width: 480px) {
    .accessory-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 5px;
    }
    
    .accessory-image {
        height: 160px;
    }
    
    .accessory-content {
        padding: 18px;
    }
    
    .accessory-content h3 {
        font-size: 15px;
    }
    
    .accessory-content p {
        font-size: 12px;
    }
    
    .accessory-swiper-button-next,
    .accessory-swiper-button-prev {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .accessory-swiper-button-next {
        right: 5px;
    }
    
    .accessory-swiper-button-prev {
        left: 5px;
    }
}

/* 影片專區 - 重新設計 */
.video-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.video-section .container {
    position: relative;
    z-index: 2;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.video-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(240, 130, 52, 0.15);
    border-color: rgba(240, 130, 52, 0.3);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail .play-video {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
}

.video-thumbnail .play-btn-wrapper .play-btn:hover   {
    transform: scale(1.1);
}

.video-thumbnail .play-btn-wrapper .play-btn:active {
    transform: scale(0.95);
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-card:hover .video-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: rgba(240, 130, 52, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: rgba(240, 130, 52, 1);
    transform: scale(1.1);
}

.play-button i {
    font-size: 24px;
    color: white;
    margin-left: 3px;
}

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

.action-btn {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: white;
    transform: translateY(-2px);
}

.action-btn i {
    font-size: 16px;
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.video-info p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.6;
    margin: 0 0 15px 0;
}

.video-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid rgba(240, 130, 52, 0.1);
}

.brand {
    background: linear-gradient(135deg, #f08234 0%, #f7931e 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.platform-link {
    color: #f08234;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.platform-link:hover {
    color: #f7931e;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .video-thumbnail {
        height: 180px;
    }
    
    .video-info {
        padding: 20px;
    }
    
    .video-info h3 {
        font-size: 16px;
    }
    
    .video-info p {
        font-size: 14px;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .video-grid {
        gap: 20px;
    }
    
    .video-thumbnail {
        height: 160px;
    }
    
    .video-info {
        padding: 15px;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 20px;
    }
    
    .action-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

/* 视频弹窗响应式样式 */
.layui-layer-content {
    overflow: hidden !important;
}

.layui-layer-content video {
    border-radius: inherit !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* 移动端视频弹窗优化 */
@media (max-width: 768px) {
    .layui-layer {
        border-radius: 16px !important;
    }
    
    .layui-layer-title {
        border-radius: 16px 16px 0 0 !important;
        font-size: 16px !important;
        padding: 15px 20px !important;
    }
    
    .layui-layer-content {
        border-radius: 0 0 16px 16px !important;
        padding: 0 !important;
    }
    
    .layui-layer-content video {
        border-radius: 0 0 16px 16px !important;
        max-height: 70vh !important;
    }
    
    /* 横屏提示样式 */
    .landscape-tip {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: rgba(0, 0, 0, 0.8);
        color: white;
        padding: 10px 20px;
        border-radius: 20px;
        font-size: 14px;
        z-index: 1000;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .landscape-tip.show {
        opacity: 1;
    }
}

/* 平板端视频弹窗优化 */
@media (min-width: 768px) and (max-width: 1024px) {
    .layui-layer {
        border-radius: 20px !important;
    }
    
    .layui-layer-title {
        border-radius: 20px 20px 0 0 !important;
        font-size: 18px !important;
        padding: 20px !important;
    }
    
    .layui-layer-content {
        border-radius: 0 0 20px 20px !important;
    }
    
    .layui-layer-content video {
        border-radius: 0 0 20px 20px !important;
        max-height: 80vh !important;
    }
}

/* PC端视频弹窗优化 */
@media (min-width: 1024px) {
    .layui-layer {
        border-radius: 24px !important;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    }
    
    .layui-layer-title {
        border-radius: 24px 24px 0 0 !important;
        font-size: 20px !important;
        padding: 25px 30px !important;
        background: linear-gradient(135deg, #ff7b14, #ff9500) !important;
        color: white !important;
        font-weight: 600 !important;
    }
    
    .layui-layer-content {
        border-radius: 0 0 24px 24px !important;
        background: #f8f9fa !important;
    }
    
    .layui-layer-content video {
        border-radius: 0 0 24px 24px !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    }
    
    .layui-layer-content iframe {
        border-radius: 0 0 24px 24px !important;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
    }
}

/* YouTube视频弹窗特殊样式 */
.layui-layer-content iframe {
    border-radius: inherit !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1) !important;
}

/* 移动端YouTube视频优化 */
@media (max-width: 768px) {
    .layui-layer-content iframe {
        border-radius: 0 0 16px 16px !important;
        max-height: 70vh !important;
    }
}

/* 平板端YouTube视频优化 */
@media (min-width: 768px) and (max-width: 1024px) {
    .layui-layer-content iframe {
        border-radius: 0 0 20px 20px !important;
        max-height: 80vh !important;
    }
}

