.action-btn {
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            gap: 0 !important;
            padding: 0.92rem 1.22rem !important;
            font-size: 1.08rem !important;
            min-width: 136px !important;
            border-radius: 2.1rem !important;
            font-weight: bold !important;
            color: white !important;
            text-decoration: none !important;
        }
        .btn-icon {
            width: 32px !important;
            height: 32px !important;
            margin-right: 0 !important;
            display: block !important;
            padding: 0 !important;
            border: none !important;
            box-shadow: none !important;
        }
        :root {
                        --primary-color: #3498db;
                        --secondary-color: #e74c3c;
                        --success-color: #2ecc71;
                        --warning-color: #f39c12;
                        --text-color: #333;
                        --light-text: #7f8c8d;
                        --dark-text: #2c3e50;
                        --card-bg: #ffffff;
                        --section-padding: 1.5rem;
                        --border-radius: 0.5rem;
                        --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
                    }

                    * {
                        margin: 0;
                        padding: 0;
                        box-sizing: border-box;
                        font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
                    }

                    body {
                        background: linear-gradient(135deg, #f5fff0, #e0f7e9);
                        color: var(--text-color);
                        line-height: 1.6;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        min-height: 100vh;
                    }

                    .main-container {
                        width: 100%;
                        max-width: 1200px;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        padding: 1rem;
                    }

                    /* 顶部Logo */
                    .header-logo {
                        width: 400;
                        height: auto;
                        margin: 1rem 0;
                        display: block;
                    }

                    /* 新增公告栏样式 */
                    .top-notice-bar {
                        width: 100%;
                        background-color: var(--warning-color);
                        color: white;
                        padding: 0.75rem 1rem;
                        border-radius: var(--border-radius);
                        margin-bottom: 1rem;
                        display: flex;
                        align-items: center;
                        box-shadow: var(--box-shadow);
                    }

                    .notice-icon {
                        font-size: 1.2rem;
                        margin-right: 0.75rem;
                        flex-shrink: 0;
                    }

                    .notice-content {
                        flex: 1;
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                        font-weight: 500;
                    }

                    .notice-link {
                        color: white;
                        text-decoration: none;
                        font-weight: bold;
                        margin-left: 1rem;
                        padding: 0.25rem 0.5rem;
                        border-radius: 0.25rem;
                        background-color: rgba(255, 255, 255, 0.2);
                        transition: all 0.3s ease;
                        flex-shrink: 0;
                    }

                    .notice-link:hover {
                        background-color: rgba(255, 255, 255, 0.3);
                        transform: translateX(3px);
                    }

                    /* 顶部轮播图 */
                    .top-carousel {
                        width: 400%;
                        height: 0;
                        padding-bottom: 33.625%; /* 1345/4000 ≈ 0.33625 */
                        overflow: hidden;
                        position: relative;
                        margin-bottom: 1.5rem;
                        border-radius: var(--border-radius);
                        box-shadow: var(--box-shadow);
                    }

                    .top-carousel img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        position: absolute;
                        top: 0;
                        left: 0;
                        opacity: 0;
                        transition: opacity 1s ease-in-out;
                    }

                    .top-carousel img.active {
                        opacity: 1;
                    }

                    /* 按钮容器 */
                    .action-buttons-container {
                        display: flex;
                        flex-wrap: wrap;
                        justify-content: center;
                        gap: 0.75rem;
                        width: 100%;
                        margin-bottom: 1.5rem;
                    }

                    /* 通用按钮样式 */
                    .action-btn {
                        padding: 0.5rem 0.8rem;   /* 減少上下左右內距 */
                        font-size: 1.25rem;       /* 保持大字 */
                        font-weight: bold;
                        border: none;
                        border-radius: 2rem;
                        cursor: pointer;
                        transition: all 0.3s ease;
                        color: white;
                        box-shadow: var(--box-shadow);
                        text-align: center;
                        text-decoration: none;
                        display: inline-block;
                        min-width: 100px;         /* 可酌量減小 */
                        flex: 1;
                    }

                    .action-btn:hover {
                        transform: translateY(-3px);
                        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
                    }

                    /* 各颜色按钮样式 */
                    .btn-green {
                        background-color: #5cb85c;
                    }

                    .btn-red {
                        background-color: #d9534f;
                    }

                    .btn-orange {
                        background-color: #FFA500;
                    }

                    .btn-blue {
                        background-color: #5bc0de;
                    }

                    .btn-yellow {
                        background-color: #f0ad4e;
                    }

                    .btn-purple {
                        background-color: #9b59b6;
                    }

                    /* 小屏幕适配 */
@media (max-width: 768px) {
    .action-buttons-container {
        gap: 0.5rem;
    }

    .action-btn {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        min-width: 100px;
    }
}

@media (max-width: 480px) {
    .action-btn {
        flex-basis: calc(50% - 0.5rem);
        min-width: auto;
    }
}


                    /* 公告轮播 */
                    .announcement-carousel {
                        background-color: var(--warning-color);
                        padding: 2rem;
                        border-radius: var(--border-radius);
                        margin-bottom: 1.5rem;
                        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                        position: relative;
                        overflow: hidden;
                        min-height: 5rem;
                        width: 100%;
                        max-width: 1200px;
                    }

                    .announcement-container {
                        position: relative;
                        height: 100%;
                    }

                    .announcement-item {
                        position: absolute;
                        width: 100%;
                        top: 0;
                        left: 0;
                        opacity: 0;
                        transition: opacity 0.5s ease-in-out;
                        display: flex;
                        align-items: center;
                        height: 100%;
                        padding: 0.5rem 0;
                    }

                    .announcement-item.active {
                        opacity: 1;
                    }

                    .announcement-icon {
                        font-size: 1.5rem;
                        margin-right: 1rem;
                        color: var(--secondary-color);
                        flex-shrink: 0;
                    }

                    .announcement-content {
                        flex: 1;
                        overflow: hidden;
                    }

                    .announcement-title {
                        font-weight: bold;
                        margin-bottom: 0.25rem;
                        color: var(--dark-text);
                        white-space: nowrap;
                        overflow: hidden;
                        text-overflow: ellipsis;
                    }

                    .announcement-text {
                        color:  white;
                        font-size: 0.875rem;
                        display: -webkit-box;
                        -webkit-line-clamp: 2;
                        -webkit-box-orient: vertical;
                        overflow: hidden;
                    }

                    /* 优惠活动推荐 */
                    .promotion-section {
                        width: 100%;
                        max-width: 1200px;
                        margin-bottom: 2rem;
                    }

                    .promotion-section h2 {
                        margin-bottom: 1.25rem;
                        color: var(--dark-text);
                        border-bottom: 2px solid var(--primary-color);
                        padding-bottom: 0.5rem;
                        font-size: 1.5rem;
                        text-align: left;
                    }

                    /* Swiper样式 */
                    .swiper {
                        width: 100%;
                        height: auto;
                        border-radius: var(--border-radius);
                        box-shadow: var(--box-shadow);
                    }

                    .swiper-slide {
                        text-align: center;
                        background: #fff;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                    }

                    .swiper-slide img {
                        display: block;
                        width: 100%;
                        height: auto;
                        max-height: 500px;
                        object-fit: contain;
                        border-radius: var(--border-radius);
                    }

                    .swiper-pagination-bullet {
                        width: 12px;
                        height: 12px;
                        background-color: #ccc;
                        opacity: 1;
                    }

                    .swiper-pagination-bullet-active {
                        background-color: var(--primary-color);
                    }

                    .swiper-button-next,
                    .swiper-button-prev {
                        color: var(--primary-color);
                        width: 40px;
                        height: 40px;
                        background-color: rgba(255, 255, 255, 0.8);
                        border-radius: 50%;
                        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
                    }

                    .swiper-button-next:after,
                    .swiper-button-prev:after {
                        font-size: 1.2rem;
                    }

                    /* 申请优惠联系我们 */
                    .contact-section {
                        background-color: var(--card-bg);
                        padding: var(--section-padding);
                        border-radius: var(--border-radius);
                        margin-bottom: 2.5rem;
                        box-shadow: var(--box-shadow);
                        width: 100%;
                        max-width: 1200px;
                    }

                    .contact-section h2 {
                        text-align: center;
                        margin-bottom: 1.5rem;
                        color: var(--dark-text);
                        border-bottom: 2px solid var(--primary-color);
                        padding-bottom: 0.5rem;
                        font-size: 1.5rem;
                    }

                    .contact-methods {
                        display: grid;
                        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                        gap: 1.25rem;
                    }

                    @media (max-width: 576px) {
                        .contact-methods {
                            grid-template-columns: 1fr;
                        }
                    }

                    .contact-method {
                        text-align: center;
                        padding: 1.25rem;
                        background-color: #f8f9fa;
                        border-radius: var(--border-radius);
                        transition: all 0.3s ease;
                    }

                    .contact-method:hover {
                        transform: translateY(-5px);
                        box-shadow: var(--box-shadow);
                    }

                    .contact-icon {
                        font-size: 2rem;
                        margin-bottom: 1rem;
                        color: var(--primary-color);
                    }

                    .contact-method h3 {
                        margin-bottom: 0.75rem;
                        color: var(--dark-text);
                        font-size: 1.1rem;
                    }

                    .contact-method p {
                        color: var(--light-text);
                        margin-bottom: 0.75rem;
                        font-size: 0.9rem;
                    }

                    .discount-btn {
                        padding: 0.5rem 1.25rem;
                        background-color: var(--secondary-color);
                        color: white;
                        border: none;
                        border-radius: var(--border-radius);
                        cursor: pointer;
                        transition: all 0.3s ease;
                        font-size: 0.9rem;
                    }

                    .discount-btn:hover {
                        background-color: #c0392b;
                        transform: translateY(-2px);
                    }

                    /* 底部轮播图 */
                    .bottom-carousel {
                        width: 100%;
                        height: 0;
                        padding-bottom: 16.67%; /* 6:1 宽高比 */
                        overflow: hidden;
                        position: relative;
                        border-radius: var(--border-radius);
                        box-shadow: var(--box-shadow);
                        max-width: 1200px;
                    }

                    .bottom-carousel img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                        position: absolute;
                        top: 0;
                        left: 0;
                        opacity: 0;
                        transition: opacity 1s ease-in-out;
                    }

                    .bottom-carousel img.active {
                        opacity: 1;
                    }
                    .action-buttons-container {
                        display: flex;
                        flex-wrap: wrap;
                        justify-content: center;
                        gap: 0.75rem;
                        width: 100%;
                        margin-bottom: 1.5rem;
                    }

                    /* 解決 swiper 高度撐開與下壓問題 */
                    #promotion-section .swiper {
                        aspect-ratio: 16 / 9;         /* 設定寬高比例 */
                        max-width: 100%;
                        height: auto;
                        overflow: hidden;
                        border-radius: 0.5rem;
                        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
                        margin-bottom: 1.5rem;
                    }
                    /* 按钮排版 */
                    .button-item {
                        display: flex;
                        flex-direction: column; /* 垂直排列 */
                        align-items: center;     /* 水平置中 */
                        justify-content: center; /* 垂直置中（搭配固定高度才會有用） */
                        height: 150px;           /* 你可根據圖片大小微調 */
                        text-align: center;
                    }

                    /* 字体 */
                    .button-label {
                        margin-bottom: 0.5rem;
                        font-size: 14px;
                        font-weight: bold;
                        color: rgb(255, 255, 255);
                    }
                    #promotion-section .swiper-slide {
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        background: #fff;
                    }

                    #promotion-section .swiper-slide img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;            /* 裁切圖片以滿版填滿容器 */
                        border-radius: 0.5rem;
                    }

                    #promotion-section .swiper {
                        aspect-ratio: 16 / 9;
                        max-width: 100%;
                        height: auto;
                        overflow: hidden;
                        border-radius: 0.5rem;
                        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
                        margin-bottom: 1.5rem;
                    }

                    /* 調整圖片不裁切 */
                    #promotion-section .swiper-slide img {
                        width: 100%;
                        height: auto;             /* 圖片高度依比例自動 */
                        object-fit: contain;      /* 圖片完整顯示（可能留白） */
                        border-radius: 0.5rem;
                        background-color: #fff;   /* 補背景避免空白處透明 */
                    }

                     /* 申请优惠联系我们 */
        .contact-section {
            background-color: var(--card-bg);
            padding: var(--section-padding);
            border-radius: var(--border-radius);
            margin-bottom: 2.5rem;
            box-shadow: var(--box-shadow);
        }
        

        @media (max-width: 576px) {
            .contact-methods {
                grid-template-columns: 1fr;
            }
        }

        .contact-method {
            text-align: center;
            padding: 1.5rem;
            background-color: #f8f9fa;
            border-radius: var(--border-radius);
            transition: all 0.3s ease;
        }

        .contact-method:hover {
            transform: translateY(-5px);
            box-shadow: var(--box-shadow);
        }

        .contact-icon {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .contact-method h3 {
            margin-bottom: 1rem;
            color: var(--dark-text);
            font-size: 1.25rem;
        }

        .contact-info p {
            color: var(--dark-text);
            margin-bottom: 1rem;
            font-size: 1rem;
            font-weight: bold;
        }

        .action-buttons {
            display: flex;
            gap: 0.75rem;
            justify-content: center;
        }

        @media (max-width: 400px) {
            .action-buttons {
                flex-direction: column;
            }
        }

        .copy-btn, .download-btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: var(--border-radius);
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .copy-btn {
            background-color: var(--primary-color);
            color: white;
        }

        .copy-btn:hover {
            background-color: #2980b9;
            transform: translateY(-2px);
        }

        .download-btn {
            background-color: var(--secondary-color);
            color: white;
        }

        .download-btn:hover {
            background-color: #c0392b;
            transform: translateY(-2px);
        }
        .contact-section h2 {
              text-align: center;
              margin-bottom: 1.5rem;
              color: var(--dark-text);
              border-bottom: 2px solid var(--primary-color);
              padding-bottom: 0.5rem;
              font-size: 1.5rem;
          }

        .contact-methods {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.5rem;
        }
         .cs-box {
        position: fixed;
        right: 20px;
        bottom: 100px;
        z-index: 9999;
        background-color: #fff;
        border-radius: 0.75rem;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        padding: 0.75rem 1rem;
        width: 200px;
        font-family: 'Microsoft YaHei','PingFang SC',sans-serif;
    }
    .cs-box h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        text-align: center;
        color: #2c3e50;
    }
    .cs-btn {
        display: block;
        width: 100%;
        padding: 0.5rem;
        margin-bottom: 0.5rem;
        text-align: center;
        background-color: #3498db;
        color: white;
        text-decoration: none;
        border-radius: 0.5rem;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }
    .cs-btn:hover {
        background-color: #2980b9;
    }
    :root {
        --primary-color: #3498db;
        --secondary-color: #e74c3c;
        --success-color: #2ecc71;
        --warning-color: #f39c12;
        --text-color: #333;
        --light-text: #7f8c8d;
        --dark-text: #2c3e50;
        --card-bg: #ffffff;
        --section-padding: 1.5rem;
        --border-radius: 0.5rem;
        --box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Microsoft YaHei', 'PingFang SC', sans-serif;
    }

    body {
        background: url('./img/LOhQrKdmgGHBcPs.jpg') no-repeat center center fixed;

        background-size: cover;
    }

    .main-container {
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    /* 顶部Logo */
    .header-logo {
        width: 250px;
        height: auto;
        margin: 1rem 0;
        display: block;
    }

    /* 新增公告栏样式 */
    .top-notice-bar {
        width: 100%;
        background-color: var(--warning-color);
        color: white;
        padding: 0.75rem 1rem;
        border-radius: var(--border-radius);
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        box-shadow: var(--box-shadow);
    }

    .notice-icon {
        font-size: 1.2rem;
        margin-right: 0.75rem;
        flex-shrink: 0;
    }

    .notice-content {
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 500;
    }

    .notice-link {
        color: white;
        text-decoration: none;
        font-weight: bold;
        margin-left: 1rem;
        padding: 0.25rem 0.5rem;
        border-radius: 0.25rem;
        background-color: rgba(255, 255, 255, 0.2);
        transition: all 0.3s ease;
        flex-shrink: 0;
    }

    .notice-link:hover {
        background-color: rgba(255, 255, 255, 0.3);
        transform: translateX(3px);
    }

    /* 顶部轮播图 */
    .top-carousel {
        width: 100%;
        height: 0;
        padding-bottom: 33.625%; /* 1345/4000 ≈ 0.33625 */
        overflow: hidden;
        position: relative;
        margin-bottom: 1.5rem;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }

    .top-carousel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .top-carousel img.active {
        opacity: 1;
    }

    /* 各颜色按钮样式 */
    .btn-green {
        background-color: #5cb85c;
    }

    .btn-red {
        background-color: #d9534f;
    }

    .btn-orange {
        background-color: #FFA500;
    }

    .btn-blue {
        background-color: #5bc0de;
    }

    .btn-yellow {
        background-color: #f0ad4e;
    }

    .btn-purple {
        background-color: #9b59b6;
    }

    /* 小屏幕适配 */
    @media (max-width: 768px) {
        .action-buttons-container {
            gap: 0.5rem;
        }

        .action-btn {
            padding: 0.6rem 0.8rem;
            font-size: 0.85rem;
            min-width: 100px;
        }
    }

    @media (max-width: 480px) {
        .action-btn {
            flex-basis: calc(50% - 0.5rem);
            min-width: auto;
        }
    }

    /* 公告轮播 */
    .announcement-carousel {
        background-color: var(--warning-color);
        padding: 2rem;
        border-radius: var(--border-radius);
        margin-bottom: 1.5rem;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        position: relative;
        overflow: hidden;
        min-height: 5rem;
        width: 100%;
        max-width: 1200px;
    }

    .announcement-container {
        position: relative;
        height: 100%;
    }

    .announcement-item {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.5s ease-in-out;
        display: flex;
        align-items: center;
        height: 100%;
        padding: 0.5rem 0;
    }

    .announcement-item.active {
        opacity: 1;
    }

    .announcement-icon {
        font-size: 1.5rem;
        margin-right: 1rem;
        color: var(--secondary-color);
        flex-shrink: 0;
    }

    .announcement-content {
        flex: 1;
        overflow: hidden;
    }

    .announcement-title {
        font-weight: bold;
        margin-bottom: 0.25rem;
        color: var(--dark-text);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .announcement-text {
        color:  white;
        font-size: 0.875rem;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* 优惠活动推荐 */
    .promotion-section {
        width: 100%;
        max-width: 1200px;
        margin-bottom: 2rem;
    }

    .promotion-section h2 {
        margin-bottom: 1.25rem;
        color: var(--dark-text);
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 0.5rem;
        font-size: 1.5rem;
        text-align: left;
    }

    /* Swiper样式 */
    .swiper {
        width: 100%;
        height: auto;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
    }

    .swiper-slide {
        text-align: center;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .swiper-slide img {
        display: block;
        width: 100%;
        height: auto;
        max-height: 500px;
        object-fit: contain;
        border-radius: var(--border-radius);
    }

    .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background-color: #ccc;
        opacity: 1;
    }

    .swiper-pagination-bullet-active {
        background-color: var(--primary-color);
    }

    .swiper-button-next,
    .swiper-button-prev {
        color: var(--primary-color);
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 1.2rem;
    }

    /* 申请优惠联系我们 */
    .contact-section {
        background-color: var(--card-bg);
        padding: var(--section-padding);
        border-radius: var(--border-radius);
        margin-bottom: 2.5rem;
        box-shadow: var(--box-shadow);
        width: 100%;
        max-width: 1200px;
    }

    .contact-section h2 {
        text-align: center;
        margin-bottom: 1.5rem;
        color: var(--dark-text);
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 0.5rem;
        font-size: 1.5rem;
    }

    .contact-methods {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.25rem;
    }

    @media (max-width: 576px) {
        .contact-methods {
            grid-template-columns: 1fr;
        }
    }

    .contact-method {
        text-align: center;
        padding: 1.25rem;
        background-color: #f8f9fa;
        border-radius: var(--border-radius);
        transition: all 0.3s ease;
    }

    .contact-method:hover {
        transform: translateY(-5px);
        box-shadow: var(--box-shadow);
    }

    .contact-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    .contact-method h3 {
        margin-bottom: 0.75rem;
        color: var(--dark-text);
        font-size: 1.1rem;
    }

    .contact-method p {
        color: var(--light-text);
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }

    .discount-btn {
        padding: 0.5rem 1.25rem;
        background-color: var(--secondary-color);
        color: white;
        border: none;
        border-radius: var(--border-radius);
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 0.9rem;
    }

    .discount-btn:hover {
        background-color: #c0392b;
        transform: translateY(-2px);
    }

    /* 底部轮播图 */
    .bottom-carousel {
        width: 100%;
        height: 0;
        padding-bottom: 16.67%; /* 6:1 宽高比 */
        overflow: hidden;
        position: relative;
        border-radius: var(--border-radius);
        box-shadow: var(--box-shadow);
        max-width: 1200px;
    }

    .bottom-carousel img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }