.wine_search_page {
    margin-top: 20px;
}

.wine_search_page {
    background: #ffffff;
    min-height: 100vh;
    padding: 0 30px;
    padding-bottom: 175px;
}

.asked_questions-container {
    max-width: 660px;
    margin: auto;
    padding-top: 195px;
}

.asked_questions-header {
    position: relative;
    padding: 60px 0;
    text-align: center;
}

.asked_questions-header h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 0;
}

.back-btn {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0 12px;
    cursor: pointer;
}

.back-icon {
    width: 17px;
    height: 28px;
    object-fit: contain;
}

.asked_questions-header h2 {
    font-size: 30px;
    letter-spacing: -1px;
    line-height: 1.4;
    color: #252525;
    font-weight: 800;
}

.faq-list {
    border-top: 1px solid #dbdbdb;
    width: 660px;
    margin: 20px auto;
}

.faq-item {
    border-bottom: 1px solid #ccc;
}

.faq-item.active {
    background-color: #f9f9f9;
}

.faq-question {
    display: flex;
    align-items: center;
    padding: 30px 30px;
    cursor: pointer;
    position: relative;
}

.faq-question span {
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 1.4;
    text-transform: uppercase;
    color: #252525;
}

.faq-icon {
    margin-right: 20px;
}

.arrow-icon {
    width: 26px;
    height: 15px;
    margin-left: auto;
    transition: transform 0.2s ease
}

.faq-item.active .arrow-icon {
    transform: rotate(180deg);
}

.faq-answer {
    margin-left: 32px;
    padding: 30px 44px;
    padding-top: 0;
    color: #666;
    font-size: 20px;
    display: none;
    line-height: 1.4;
}

.faq-item.active .faq-answer {
    display: block;
}

.red-text {
    color: #ff6565;
    font-weight: bold;
}

/* phân trang */
.pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 80px;
}

.page-btn {
    width: 65px;
    height: 65px;
    border: 1px solid #ccc;
    background: #fff;
    color: #333;
    font-size: 22px;
    cursor: pointer;
    transition: background 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-btn:hover {
    background: #f2f2f2;
}

.page-btn.active {
    border-color: none;
    background: #f25c5c;
    color: #fff;
    font-weight: 700;
    border: none;
}

.arrow {
    width: 29px;
    height: 31px;
    object-fit: contain;
}