.header-top_text_slick {
    padding: 5px 0;
    background: linear-gradient(to right, rgb(211, 179, 149) 0%, rgb(197, 156, 88) 100%);
}
.header-top_text_slick a {
    display: block;
    color: #fff!important;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
    text-align: center;
}
.white-arrow2 .slick-prev {
    left: 20px;
    outline: 0;
    width: 18.5px;
    height: 27px;
    z-index: 2;
    background: url(../images/main_controls.png) 9.5px no-repeat;
    background-size: 85%;
    opacity: .5;
}
.white-arrow2 .slick-next {
    right: 20px;
    outline: 0;
    width: 18.5px;
    height: 27px;
    z-index: 2;
    background: url(../images/main_controls.png) -9.5px no-repeat;
    background-size: 85%;
    opacity: .5;
}

.section-product , .section03 {
    background-attachment: fixed;
    background-position: center;
}

.section02, .section04, .section05 {
    background-position: center;
}

.banner_slider_mo .img-item{
    padding-top: 120%;
}

/* 運送方式切換按鈕美化 */
.shipping-method-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.shipping-method-icon:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.shipping-method-icon:active {
    transform: translateY(0) scale(0.95);
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.4);
}

.shipping-method-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.shipping-method-icon:hover::before {
    left: 100%;
}

.shipping-method-icon i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.shipping-method-icon:hover i {
    transform: rotate(15deg);
}

/* 運送方式按鈕樣式 */
.shipping-method-item {
    margin-bottom: 15px;
    text-align: center;
}

.shipping-method-btn {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #667eea;
    background: linear-gradient(135deg, #fff 0%, #f8f9ff 100%);
    color: #667eea;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.shipping-method-btn:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    border-color: #667eea;
}

.shipping-method-btn.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-color: #667eea;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.shipping-method-btn.btn-primary:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.shipping-method-btn i {
    font-size: 18px;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.shipping-method-btn:hover i {
    transform: scale(1.1);
}

.shipping-method-btn span {
    font-weight: 500;
    position: relative;
    z-index: 1;
}

/* 載入動畫 */
.shipping-method-list.loading {
    opacity: 0.6;
    pointer-events: none;
}

.shipping-method-list.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #667eea;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* 按鈕載入狀態 */
.shipping-method-btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #6c757d;
}

.shipping-method-btn.loading:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.1);
}

.shipping-method-btn.loading i {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* 響應式設計 */
@media (max-width: 768px) {
    .shipping-method-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .shipping-method-btn {
        padding: 12px 15px;
        font-size: 14px;
        border-radius: 10px;
    }

    .shipping-method-btn i {
        font-size: 16px;
        margin-right: 6px;
    }
}

/* 動畫效果 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shipping-method-item {
    animation: fadeInUp 0.5s ease forwards;
}

.shipping-method-item:nth-child(1) {
    animation-delay: 0.1s;
}

.shipping-method-item:nth-child(2) {
    animation-delay: 0.2s;
}

.shipping-method-item:nth-child(3) {
    animation-delay: 0.3s;
}

.shipping-method-item:nth-child(4) {
    animation-delay: 0.4s;
}


/* 數量加減按鈕美化 */
.quantity.proInNum {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    max-width: 120px;
    margin: 0 auto;
}

.quantity.proInNum .left-icon,
.quantity.proInNum .right-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    color: white;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.quantity.proInNum .left-icon:hover,
.quantity.proInNum .right-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.quantity.proInNum .left-icon:active,
.quantity.proInNum .right-icon:active {
    transform: scale(0.95);
    box-shadow: 0 1px 4px rgba(102, 126, 234, 0.3);
}

.quantity.proInNum .productQty {
    width: 50px;
    height: 32px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
    background: #fff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.quantity.proInNum .productQty:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    background: #f8f9ff;
}

.quantity.proInNum .productQty:hover {
    border-color: #667eea;
    background: #f8f9ff;
}

/* 響應式設計 */
@media (max-width: 768px) {
    .quantity.proInNum {
        max-width: 100px;
        gap: 3px;
    }

    .quantity.proInNum .left-icon,
    .quantity.proInNum .right-icon {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .quantity.proInNum .productQty {
        width: 40px;
        height: 28px;
        font-size: 12px;
    }
}