/* 奢華與安全的完美融合 -start */
#safeSection {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

#safeSection .section-header .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.safe-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.safe-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
    border-color: rgba(240, 130, 52, 0.2);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ff7b14 0%, #ff9a3c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255, 123, 20, 0.3);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.safe-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-showcase {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.3s ease;
}

.product-showcase:hover {
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.15);
}

.product-showcase .product-image {
    max-width: 100%;
    max-height: 400px;
    border-radius: 20px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.shower-img-2 {
    position: absolute;
    top: -12px;
    left: -50px;
    width: 70%;
    object-fit: contain;
    transition: all 0.3s ease;
    z-index: 1;
    transform: rotate(-20deg);
    transition: all 0.3s ease;
}

.product-showcase:hover .product-image {
    transform: scale(1.06);
}

.product-showcase:hover .shower-img-2 {
    transform: rotate(-20deg) scale(1.03);
}

/* 響應式設計 */
@media (max-width: 1200px) {
    .safe-content {
        gap: 60px;
    }

    .feature-item {
        padding: 25px;
    }

    .product-showcase {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    #safeSection {
        padding: 80px 0;
    }

    #safeSection .section-header .section-title {
        font-size: 28px;
    }

    .safe-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .feature-grid {
        gap: 30px;
    }

    .feature-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
    }

    .feature-icon {
        align-self: center;
    }

    .product-showcase {
        padding: 25px;
    }

    .product-showcase .product-image {
        max-height: 300px;
    }
}

@media (max-width: 600px) {
    #safeSection {
        padding: 60px 0;
    }

    #safeSection .section-header .section-title {
        font-size: 24px;
    }

    .feature-item {
        padding: 16px;
    }

    .feature-content h3 {
        font-size: 18px;
    }

    .feature-content p {
        font-size: 14px;
    }

    .product-showcase {
        padding: 20px;
    }

    .product-showcase .product-image {
        max-height: 250px;
    }
}

/* 奢華與安全的完美融合 -end */

/* 豐富的調香技術與經驗 -start */
#perfumerySection {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

#perfumerySection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(255, 123, 20, 0.03) 0%, transparent 50%),
                radial-gradient(ellipse at bottom left, rgba(255, 123, 20, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

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

#perfumerySection .section-sub-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 600;
    color: #ff7b14;
    margin-bottom: 20px;
    padding: 8px 20px;
    background: rgba(255, 123, 20, 0.1);
    border-radius: 25px;
    border: 1px solid rgba(255, 123, 20, 0.2);
    display: inline-flex;
    margin: 0 auto 20px;
    text-align: center;
}

#perfumerySection .section-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

#perfumerySection .section-content {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

#perfumerySection .section-content p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

#perfumerySection .section-content p:last-child {
    margin-bottom: 0;
}

/* 符合人體工學的設計 -start */
#designSection {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}
/* 符合人體工學的設計 -end */

.shower-2-video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-flow: column;
    align-items: center;
}

/* 產品網格 */
.product-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 36px;
    margin-bottom: 60px;
}

/* 產品卡片 */
.product-card {
    width: 16%;
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 123, 20, 0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 123, 20, 0.15);
}

/* 產品圖片 */
.product-card .product-image {
    width: 100%;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border-bottom: 1px solid rgba(255, 123, 20, 0.15);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 36px;
}

.product-card .product-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: contain;
    object-position: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 123, 20, 0.15);
}

/* 產品信息 */
.product-info {
    text-align: center;
    padding: 20px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-name-cn {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.product-name-en {
    color: #ff7b14;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 0;
    opacity: 0.9;
}

.shower-2-video {
    width: 80%;
    border-radius: 20px;
    object-fit: cover;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

/* 響應式設計 */
@media (max-width: 1200px) {
    #perfumerySection {
        padding: 100px 0;
    }
    
    .shower-2-video-wrapper {
        padding: 30px;
    }
    
    .shower-2-video {
        height: 280px;
    }
}

@media (max-width: 768px) {
    #perfumerySection {
        padding: 80px 0;
    }
    
    #perfumerySection .section-content {
        margin-bottom: 50px;
    }
    .shower-2-video-wrapper {
        padding: 25px;
    }
    
    .shower-2-video {
        height: 250px;
    }
}

@media (max-width: 600px) {
    #perfumerySection {
        padding: 60px 0;
    }
    
    #perfumerySection .section-sub-title {
        font-size: 14px;
        padding: 6px 16px;
    }
    
    #perfumerySection .section-content p {
        font-size: 14px;
    }
    
    .shower-2-video-wrapper {
        padding: 20px;
    }
    
    .shower-2-video {
        height: 200px;
    }
}
/* 豐富的調香技術與經驗 -end */

/* 優質過濾器 -start */
#filterSection {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

#filterSection .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 上半部分：主要內容區域 */
#filterSection .flex-justify-between:first-of-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

/* 左側視頻區域 */
#filterSection .left-wrapper {
    flex: 0 0 35%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#filterSection .video-wrapper-3 {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    background: #ffffff;
    width: 100%;
    max-width: 400px;
}

#filterSection .video-3 {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

#filterSection .video-wrapper-3:hover .video-3 {
    transform: scale(1.02);
}

/* 右側內容區域 */
#filterSection .right-wrapper {
    flex: 0 0 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#filterSection .section-header {
    text-align: left;
    margin-bottom: 0;
}

#filterSection .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

#filterSection .section-divider {
    height: 4px;
    background: linear-gradient(135deg, #ff7b14 0%, #ff9a3c 100%);
    margin-bottom: 20px;
    border-radius: 2px;
    margin-left: 40px;
}

#filterSection .section-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

#filterSection .section-header p:last-child {
    margin-bottom: 0;
}

/* 下半部分：實驗室對比視頻區域 */
#filterSection .flex-justify-between:last-of-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

#filterSection .lab-video {
    border-radius: 24px;
    padding: 40px;
    margin-top: 60px;
}

/* 實驗室視頻容器 */
#filterSection .lab-video .video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background: #ffffff;
    border: 1px solid rgba(255, 123, 20, 0.1);
}

#filterSection .lab-video .video-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(255, 123, 20, 0.15);
}

/* 實驗室視頻標題 */
#filterSection .lab-video .video-title {
    width: fit-content;
    position: absolute;
    top: 24px;
    left: auto;
    right: 24px;
    background: rgba(255, 123, 20, 0.95);
    color: white;
    padding: 8px 12px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(255, 123, 20, 0.3);
    letter-spacing: 0.5px;
}

#filterSection .lab-video .video-title-1 {
    background: rgba(255, 123, 20, 0.95);
}

/* 實驗室視頻元素 */
#filterSection .lab-video .video-wrapper .my-video {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

#filterSection .lab-video .video-wrapper:hover .my-video {
    transform: scale(1.02);
}

/* 視頻標題 */
#filterSection .video-title {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 123, 20, 0.95);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    z-index: 2;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(255, 123, 20, 0.3);
    letter-spacing: 0.5px;
}

#filterSection .video-title-1 {
    background: rgba(255, 123, 20, 0.95);
}

#filterSection .video-title-2 {
    background: rgba(52, 152, 219, 0.95);
}

/* 功能視頻元素 */
#filterSection .video-wrapper .my-video {
    width: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}

#filterSection .video-wrapper:hover .my-video {
    transform: scale(1.02);
}

/* 響應式設計 */
@media (max-width: 1200px) {
    #filterSection {
        padding: 100px 0;
    }
    
    #filterSection .flex-justify-between:first-of-type {
        gap: 40px;
        margin-bottom: 60px;
    }
    
    #filterSection .left-wrapper {
        flex: 0 0 40%;
    }
    
    #filterSection .right-wrapper {
        flex: 0 0 55%;
    }
    
    #filterSection .video-3 {
        height: 300px;
    }
    
    #filterSection .video-wrapper .my-video {
        height: 220px;
    }
    
    #filterSection .flex-justify-between:last-of-type {
        gap: 30px;
        max-width: 900px;
    }
    
    #filterSection .lab-video {
        padding: 30px;
        margin-top: 50px;
    }
    
    #filterSection .lab-video .video-wrapper .my-video {
        height: 280px;
    }
}

@media (max-width: 768px) {
    #filterSection {
        padding: 80px 0;
    }
    
    #filterSection .flex-justify-between:first-of-type {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    #filterSection .left-wrapper {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    #filterSection .right-wrapper {
        flex: none;
        width: 100%;
        text-align: center;
    }
    
    #filterSection .section-title {
        font-size: 28px;
    }
    
    #filterSection .video-3 {
        height: 280px;
    }
    
    #filterSection .flex-justify-between:last-of-type {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
    }
    
    #filterSection .lab-video {
        padding: 25px;
        margin-top: 40px;
    }
    
    #filterSection .lab-video .video-wrapper .my-video {
        height: 250px;
    }
    
    #filterSection .video-wrapper .my-video {
        height: 200px;
    }
}

@media (max-width: 600px) {
    #filterSection {
        padding: 60px 0;
    }
    
    #filterSection .flex-justify-between:first-of-type {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    #filterSection .section-title {
        font-size: 24px;
    }
    
    #filterSection .section-header p {
        font-size: 14px;
    }
    
    #filterSection .video-3 {
        height: 250px;
    }
    
    #filterSection .video-wrapper .my-video {
        height: 180px;
    }
    
    #filterSection .video-title {
        font-size: 12px;
        padding: 8px 16px;
        top: 16px;
        left: 16px;
    }
    
    #filterSection .flex-justify-between:last-of-type {
        gap: 16px;
        max-width: 100%;
    }
    
    #filterSection .lab-video {
        padding: 20px;
        margin-top: 30px;
    }
    
    #filterSection .lab-video .video-wrapper .my-video {
        height: 220px;
    }
    
    #filterSection .lab-video .video-title {
        font-size: 12px;
        padding: 10px 20px;
        top: 20px;
        left: 20px;
    }
}
/* 優質過濾器 -end */

/* 由淨水專家製作的過濾器 -start */
#technicalSection {
    background: #ffffff;
}

.technical-container {
    overflow: hidden;
    border-radius: 16px;
}
/* 證書列表 */
.cert-technical-list, .cert-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-items: center;
}

/* 證書項目 */
.cert-item {
    background: #ffffff;
    border-radius: 16px;
    padding: 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 123, 20, 0.12);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0 24px;
    cursor: pointer;
}

.design-container .cert-item {
    margin: 0 20px;
}

.cert-item:hover {
    /* transform: translateY(-6px); */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 123, 20, 0.25);
}

.cert-img {
    width: 100%;
    height: 320px;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    /* padding: 20px; */
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.cert-item:hover .cert-img {
    transform: scale(1.06);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* 分頁器樣式 */
.swiper-pagination-technical, 
.swiper-pagination-patent, 
.swiper-pagination-design {
    position: relative;
    margin-top: 20px;
    text-align: center;
}

.swiper-pagination-technical .swiper-pagination-bullet,
.swiper-pagination-patent .swiper-pagination-bullet,
.swiper-pagination-design .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 123, 20, 0.3);
    opacity: 1;
    margin: 0 4px;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.swiper-pagination-technical .swiper-pagination-bullet-active,
.swiper-pagination-patent .swiper-pagination-bullet-active,
.swiper-pagination-design .swiper-pagination-bullet-active {
    background: #ff7b14;
    transform: scale(1.2);
}

/* 響應式設計 */
@media (max-width: 1200px) {
    .my-container {
        max-width: 1000px;
        padding: 0 16px;
    }
    
    .cert-technical-list, .cert-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 20px;
    }
    
    .design-container .cert-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cert-img {
        height: 280px;
        padding: 16px;
    }
}

@media (max-width: 768px) {
    #technicalSection, #patentSection, #designSection {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-sub-title {
        font-size: 20px;
    }
    
    .cert-technical-list, .cert-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 16px;
    }
    
    .design-container .cert-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-img {
        height: 240px;
        padding: 12px;
    }
    
    .swiper-title {
        font-size: 18px;
        margin-bottom: 24px;
    }
}

@media (max-width: 600px) {
    .cert-technical-list, .cert-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 14px;
    }
    
    .design-container .cert-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cert-img {
        height: 200px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    #technicalSection, #patentSection, #designSection {
        padding: 40px 0;
    }
    
    .my-container {
        padding: 0 12px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-sub-title {
        font-size: 18px;
    }
    
    .cert-technical-list, .cert-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 12px;
    }
    
    .cert-img {
        height: 180px;
        padding: 8px;
    }
    
    .swiper-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
}
/* 由淨水專家製作的過濾器 -end */

/* 科學的設計 - start */
#designSection .left-wrapper {
    width: 50%;
}
#designSection .right-wrapper {
    width: 36%;
}

#designSection .right-wrapper video {
    width: 90%;
    border-radius: 24px;
    margin-left: 10%;
}

#designSection .shower-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

#designSection .shower-item {
    flex: 1 1 33%;
    padding: 12px;
    border-radius: 12px;
    overflow: hidden;
}

#designSection .shower-item img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
    cursor: pointer;
}

#designSection .shower-item:hover img {
    transform: scale(1.06);
}

#designSection .right-wrapper {
    padding-top: 100px;
}

.layui-layer-photos .layui-layer-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.layui-layer-photos .layer-layer-photos-main img {
  width: 50%;
}
/* 科學的設計 - end */

/* 規格與細節 - start */
#detailsSection {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

#detailsSection .my-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* 標題區域 */
#detailsSection .section-sub-title {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

#detailsSection .section-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

/* 產品圖片展示 */
#detailsSection .product-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 80px;
}

#detailsSection .product-item {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

#detailsSection .product-visual {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(240, 130, 52, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    padding: 0;
}

#detailsSection .product-visual:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

#detailsSection .product-img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

#detailsSection .product-visual:hover .product-img {
    transform: scale(1.05);
}

#detailsSection .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ff7b14 0%, #ff9a3c 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(255, 123, 20, 0.3);
}

#detailsSection .brand-name {
    font-family: 'Arial', sans-serif;
    font-weight: 700;
}

/* 規格詳情 */
#detailsSection .specification-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

#detailsSection .specification-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#detailsSection .specification-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#detailsSection .spec-group {
    /* background: #ffffff;
    border-radius: 16px; */
    /* padding: 25px; */
    /* box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(240, 130, 52, 0.1); */
    transition: all 0.3s ease;
}

#detailsSection .spec-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* #detailsSection .spec-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(240, 130, 52, 0.2);
} */

#detailsSection .spec-icon {
    width: 24px;
    height: 24px;
    color: #ff7b14;
    flex-shrink: 0;
}

#detailsSection .spec-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#detailsSection .info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#detailsSection .info-item:last-child {
    border-bottom: none;
}

#detailsSection .info-item.highlight {
    /* margin: 0 -15px; */
    padding: 15px;
    border-radius: 8px;
    background: rgba(240, 130, 52, 0.05);
}

#detailsSection .info-label {
    font-weight: 500;
    color: #666;
    font-size: 14px;
}

#detailsSection .info-value {
    font-weight: 600;
    color: #333;
    text-align: right;
    font-size: 14px;
}

#detailsSection .info-value.large {
    font-size: 18px;
    color: #ff7b14;
    font-weight: 700;
}

#detailsSection .info-note {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 12px;
    background: rgba(255, 123, 20, 0.05);
    border-radius: 8px;
    font-size: 12px;
    color: #666;
}

#detailsSection .note-icon {
    width: 16px;
    height: 16px;
    color: #ff7b14;
    flex-shrink: 0;
}

#detailsSection .spec-image {
    margin-top: 20px;
    text-align: center;
    border: none;
}

#detailsSection .dimension-img {
    max-height: 140px;
    height: auto;
    border-radius: 12px;
    box-shadow: none;
}

#detailsSection .product-img {
    width: 200px;
    transform: rotate(15deg) scaleX(-1);
}

/* 移除舊的 white-line */
#detailsSection .white-line {
    display: none;
}

/* 響應式設計 */
@media (max-width: 1200px) {
    #detailsSection {
        padding: 100px 0;
    }
    
    #detailsSection .specification-details {
        gap: 40px;
    }
    
    #detailsSection .section-sub-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    #detailsSection {
        padding: 80px 0;
    }
    
    #detailsSection .specification-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    #detailsSection .section-sub-title {
        font-size: 24px;
    }
    
    #detailsSection .product-gallery {
        flex-direction: column;
        gap: 20px;
    }
    
    #detailsSection .product-item {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 600px) {
    #detailsSection {
        padding: 60px 0;
    }
    
    #detailsSection .section-sub-title {
        font-size: 20px;
        flex-direction: column;
        gap: 8px;
    }
    
    #detailsSection .section-icon {
        width: 40px;
        height: 40px;
    }
}
/* 規格與細節 - end */

/* Hero section video 样式 */
.hero-section .hero-background video {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    display: block;
}