.page-promotions-latest-offers {
    font-family: Arial, sans-serif;
    color: #FFF3E6; /* Text Main */
    background-color: var(--bg-color); /* Inherited from shared.css, assumed dark */
    line-height: 1.6;
}

.page-promotions-latest-offers__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

.page-promotions-latest-offers__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: #0D0E12;
}

.page-promotions-latest-offers__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
}

.page-promotions-latest-offers__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-promotions-latest-offers__hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    max-width: 900px;
    margin-top: 20px;
}

.page-promotions-latest-offers__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #FFF3E6;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(255,165,58,0.5);
}

.page-promotions-latest-offers__description {
    font-size: 1.2rem;
    color: #FFF3E6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-latest-offers__cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions-latest-offers__btn-primary,
.page-promotions-latest-offers__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-promotions-latest-offers__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(255,140,26,0.4);
}

.page-promotions-latest-offers__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255,140,26,0.6);
}

.page-promotions-latest-offers__btn-secondary {
    background: #17191F;
    color: #FFA53A;
    border: 2px solid #FFA53A;
}

.page-promotions-latest-offers__btn-secondary:hover {
    background: #FFA53A;
    color: #17191F;
    transform: translateY(-3px);
}

.page-promotions-latest-offers__section {
    padding: 60px 0;
    background-color: #0D0E12;
}

.page-promotions-latest-offers__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFF3E6;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255,165,58,0.3);
}

.page-promotions-latest-offers__sub-title {
    font-size: 2rem;
    font-weight: 600;
    color: #FFF3E6;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.page-promotions-latest-offers__text-block {
    font-size: 1.1rem;
    color: #FFF3E6;
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions-latest-offers__text-block strong {
    color: #FFA53A;
}

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

.page-promotions-latest-offers__card {
    background-color: #17191F; /* Card BG */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #A84F0C; /* Border */
}

.page-promotions-latest-offers__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(255,165,58,0.3);
}

.page-promotions-latest-offers__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    display: block;
}

.page-promotions-latest-offers__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFA53A;
    padding: 20px 20px 10px;
}

.page-promotions-latest-offers__card-text {
    font-size: 1rem;
    color: #FFF3E6;
    padding: 0 20px 20px;
    flex-grow: 1;
    text-align: justify;
}

.page-promotions-latest-offers__card-button {
    display: block;
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px 15px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-align: center;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions-latest-offers__card-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-promotions-latest-offers__steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-latest-offers__step-item {
    background-color: #17191F;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    border: 1px solid #A84F0C;
}

.page-promotions-latest-offers__step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 15px rgba(255,165,58,0.5);
}

.page-promotions-latest-offers__step-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #FFA53A;
    margin-bottom: 15px;
}

.page-promotions-latest-offers__step-text {
    font-size: 1rem;
    color: #FFF3E6;
    text-align: justify;
}

.page-promotions-latest-offers__benefit-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-latest-offers__benefit-item {
    background-color: #17191F;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #FFF3E6;
    border-left: 5px solid #FFA53A;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.page-promotions-latest-offers__benefit-item strong {
    color: #FFA53A;
}

.page-promotions-latest-offers__faq-section {
    padding: 60px 0;
    background-color: #0D0E12;
}

.page-promotions-latest-offers__faq-list {
    margin-top: 40px;
}

.page-promotions-latest-offers__faq-item {
    background-color: #17191F;
    border: 1px solid #A84F0C;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-promotions-latest-offers__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFF3E6;
    cursor: pointer;
    background-color: #17191F;
    position: relative;
    list-style: none;
}

.page-promotions-latest-offers__faq-question::-webkit-details-marker {
    display: none;
}

.page-promotions-latest-offers__faq-question::marker {
    display: none;
}

.page-promotions-latest-offers__faq-qtext {
    flex-grow: 1;
    color: #FFF3E6;
}

.page-promotions-latest-offers__faq-toggle {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFA53A;
    margin-left: 15px;
    line-height: 1;
    user-select: none;
}

.page-promotions-latest-offers__faq-item[open] .page-promotions-latest-offers__faq-toggle {
    content: '−';
}

.page-promotions-latest-offers__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    color: #FFF3E6;
    line-height: 1.6;
    text-align: justify;
}

.page-promotions-latest-offers__faq-answer p {
    margin-bottom: 10px;
}

.page-promotions-latest-offers__conclusion-section .page-promotions-latest-offers__dark-section {
    background-color: #FF8C1A;
    color: #FFF3E6;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(255,140,26,0.6);
}

.page-promotions-latest-offers__conclusion-section .page-promotions-latest-offers__section-title {
    color: #FFF3E6;
    text-shadow: none;
    margin-bottom: 20px;
}

.page-promotions-latest-offers__conclusion-section .page-promotions-latest-offers__text-block {
    color: #FFF3E6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-promotions-latest-offers__conclusion-section .page-promotions-latest-offers__btn-primary {
    background: #17191F;
    color: #FFA53A;
    border: 2px solid #FFA53A;
    box-shadow: none;
}

.page-promotions-latest-offers__conclusion-section .page-promotions-latest-offers__btn-primary:hover {
    background: #FFA53A;
    color: #17191F;
}

.page-promotions-latest-offers__conclusion-section .page-promotions-latest-offers__btn-secondary {
    background: #0D0E12;
    color: #FFF3E6;
    border: 2px solid #FFF3E6;
}

.page-promotions-latest-offers__conclusion-section .page-promotions-latest-offers__btn-secondary:hover {
    background: #FFF3E6;
    color: #0D0E12;
}

.page-promotions-latest-offers a {
    color: #FFA53A;
    text-decoration: none;
}

.page-promotions-latest-offers a:hover {
    text-decoration: underline;
}

/* --- Responsive Styles --- */

@media (max-width: 1024px) {
    .page-promotions-latest-offers__container {
        padding: 15px;
    }

    .page-promotions-latest-offers__main-title {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
    }

    .page-promotions-latest-offers__description {
        font-size: 1.1rem;
    }

    .page-promotions-latest-offers__section-title {
        font-size: 2.2rem;
    }

    .page-promotions-latest-offers__sub-title {
        font-size: 1.8rem;
    }

    .page-promotions-latest-offers__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }

    .page-promotions-latest-offers__card-title {
        font-size: 1.4rem;
    }

    .page-promotions-latest-offers__card-text {
        font-size: 0.95rem;
    }

    .page-promotions-latest-offers__step-item {
        padding: 25px;
    }

    .page-promotions-latest-offers__faq-question {
        font-size: 1.1rem;
    }

    .page-promotions-latest-offers__faq-answer {
        font-size: 0.95rem;
    }

    .page-promotions-latest-offers__conclusion-section .page-promotions-latest-offers__dark-section {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    /* HERO 主图区域 */
    .page-promotions-latest-offers__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
    }

    .page-promotions-latest-offers__hero-content {
        padding: 15px;
        margin-top: 10px;
    }

    .page-promotions-latest-offers__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 10px;
    }

    .page-promotions-latest-offers__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    /* 通用图片与容器 */
    .page-promotions-latest-offers img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .page-promotions-latest-offers__section,
    .page-promotions-latest-offers__card,
    .page-promotions-latest-offers__container,
    .page-promotions-latest-offers__cta-buttons,
    .page-promotions-latest-offers__button-group,
    .page-promotions-latest-offers__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden;
    }

    /* 按钮与按钮容器 */
    .page-promotions-latest-offers__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .page-promotions-latest-offers__btn-primary,
    .page-promotions-latest-offers__btn-secondary,
    .page-promotions-latest-offers a[class*="button"],
    .page-promotions-latest-offers a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        text-align: center;
    }

    .page-promotions-latest-offers__card-button {
        width: calc(100% - 30px) !important;
        margin: 0 15px 15px !important;
    }

    /* 产品展示图区域 (cards) */
    .page-promotions-latest-offers__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions-latest-offers__card {
        margin-bottom: 20px;
    }

    .page-promotions-latest-offers__card-image {
        height: 180px;
    }

    .page-promotions-latest-offers__card-title {
        font-size: 1.3rem;
        padding: 15px 15px 10px;
    }

    .page-promotions-latest-offers__card-text {
        font-size: 0.9rem;
        padding: 0 15px 15px;
    }

    /* 其他内容模块 */
    .page-promotions-latest-offers__section {
        padding: 40px 0;
    }

    .page-promotions-latest-offers__section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .page-promotions-latest-offers__sub-title {
        font-size: 1.6rem;
    }

    .page-promotions-latest-offers__text-block {
        font-size: 1rem;
    }

    .page-promotions-latest-offers__steps-wrapper {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-promotions-latest-offers__step-item {
        padding: 20px;
    }

    .page-promotions-latest-offers__step-title {
        font-size: 1.3rem;
    }

    .page-promotions-latest-offers__step-text {
        font-size: 0.95rem;
    }

    .page-promotions-latest-offers__benefit-item {
        font-size: 1rem;
        padding: 15px;
    }

    .page-promotions-latest-offers__faq-question {
        font-size: 1.05rem;
        padding: 15px;
    }

    .page-promotions-latest-offers__faq-toggle {
        font-size: 1.5rem;
    }

    .page-promotions-latest-offers__faq-answer {
        font-size: 0.95rem;
        padding: 0 15px 15px;
    }

    .page-promotions-latest-offers__conclusion-section .page-promotions-latest-offers__dark-section {
        padding: 30px;
    }

    .page-promotions-latest-offers__conclusion-section .page-promotions-latest-offers__text-block {
        font-size: 1rem;
        margin-bottom: 30px;
    }
}