/* =========================================================
   마이페이지 공통
   ========================================================= */
.mypage-wrap {
    width: 100%;
    padding: 0 0 36px;
    background: #fff;
    color: #25282d;
    font-family: "Malgun Gothic", "맑은 고딕", Arial, sans-serif;
    box-sizing: border-box;
}

.mypage-wrap *,
.mypage-wrap *:before,
.mypage-wrap *:after {
    box-sizing: border-box;
}

.mypage-title-image {
    margin: 0 0 18px;
}

.mypage-title-image img {
    display: block;
    max-width: 100%;
    border: 0;
}

.mypage-card {
    margin: 0 0 20px;
    padding: 24px;
    background: #fff;
    border: 1px solid #e4e7eb;
    border-radius: 7px;
    box-shadow: 0 4px 14px rgba(28, 36, 48, .05);
}

.member-summary-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.member-greeting strong {
    display: block;
    font-size: 24px;
    line-height: 1.35;
    color: #20242a;
    letter-spacing: -1px;
}

.member-greeting p {
    margin: 7px 0 0;
    font-size: 13px;
    line-height: 1.6;
    color: #7d848d;
}

.member-actions {
    display: flex;
    gap: 7px;
    white-space: nowrap;
}

.mypage-btn,
.table-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #d8dce1;
    border-radius: 7px;
    background: #fff;
    color: #555b63;
    font-size: 13px;
    text-decoration: none;
    transition: all .18s ease;
}

.mypage-btn:hover,
.table-btn:hover {
    border-color: #b7bdc5;
    background: #f7f8fa;
    color: #22272d;
    text-decoration: none;
}

.mypage-btn.muted {
    color: #8b929a;
}

.member-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 22px;
}

.summary-box {
    min-height: 118px;
    padding: 19px 20px;
    border: 1px solid #e8eaed;
    border-radius: 10px;
    background: #fafbfc;
}

.summary-label {
    display: block;
    margin-bottom: 11px;
    color: #737a83;
    font-size: 13px;
}

.summary-value {
    display: block;
    margin-bottom: 11px;
    color: #20242a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -.5px;
}

.summary-value.point-color {
    color: #dd1032;
}

.summary-link,
.summary-help {
    color: #777f88;
    font-size: 13px;
    line-height: 1.5;
    text-decoration: none;
}

.summary-link:hover {
    color: #dd1032;
    text-decoration: none;
}

.mypage-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 30px;
    margin-bottom: 16px;
}

.mypage-section-head h3 {
    margin: 0;
    color: #20242a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -.8px;
}

.mypage-more {
    color: #727983;
    font-size: 13px;
    text-decoration: none;
}

.mypage-more span {
    margin-left: 4px;
    font-size: 17px;
    vertical-align: -1px;
}

.mypage-more:hover {
    color: #dd1032;
    text-decoration: none;
}

.member-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid #eceef1;
}

.info-row {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    min-height: 51px;
    border-bottom: 1px solid #eceef1;
}

.info-row:nth-child(odd) {
    padding-right: 20px;
}

.info-row:nth-child(even) {
    padding-left: 20px;
    border-left: 1px solid #eceef1;
}

.info-row-wide {
    grid-column: auto;
}

.info-label,
.info-value {
    display: flex;
    align-items: center;
    padding: 11px 0;
    font-size: 13px;
    line-height: 1.55;
}

.info-label {
    color: #454b53;
    font-weight: 700;
}

.info-value {
    min-width: 0;
    color: #666d76;
    word-break: keep-all;
}

.mypage-table-wrap {
    overflow: hidden;
    border: 1px solid #e5e8ec;
    border-radius: 7px;
    background: #fff;
}

.mypage-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

.mypage-table th {
    height: 43px;
    padding: 9px 8px;
    border: 0;
    border-bottom: 1px solid #e5e8ec;
    background: #f7f8fa;
    color: #464c54;
    font-family: "Malgun Gothic", "맑은 고딕", Arial, sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.mypage-table td {
    height: 50px;
    padding: 10px 8px;
    border: 0;
    border-bottom: 1px solid #eceef1;
    background: #fff;
    color: #646b74;
    font-family: "Malgun Gothic", "맑은 고딕", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
}

.mypage-table tbody tr:last-child td {
    border-bottom: 0;
}

.mypage-table td.text-left {
    text-align: left;
}

.mypage-table a {
    color: #343941;
    text-decoration: none;
}

.mypage-table a:hover {
    color: #dd1032;
    text-decoration: underline;
}

.qa-thumb img {
    display: inline-block;
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    vertical-align: middle;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 64px;
    height: 25px;
    padding: 0 9px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.status-badge.waiting {
    background: #fff3e6;
    color: #d46b08;
}

.status-badge.done {
    background: #edf8f2;
    color: #198754;
}

.qa-detail-row td {
    padding: 0;
    background: #fafbfc;
}

.qa-detail {
    padding: 16px 18px;
    text-align: left;
}

.qa-question,
.qa-answer {
    display: grid;
    grid-template-columns: 55px 1fr;
    gap: 12px;
    padding: 9px 0;
    color: #555d66;
    font-size: 13px;
    line-height: 1.7;
}

.qa-question strong,
.qa-answer strong {
    color: #30363d;
}

.mypage-empty-cell {
    height: 145px !important;
    padding: 40px 15px !important;
    text-align: center !important;
}

.mypage-empty-cell strong {
    display: block;
    margin-bottom: 7px;
    color: #4c525a;
    font-size: 14px;
}

.mypage-empty-cell span {
    display: block;
    color: #9299a2;
    font-size: 12px;
}

.table-btn {
    height: 34px;
    padding: 0 12px;
    font-size: 13px;
}

/* orderinquiry.sub.php에서 출력되는 기존 주문 테이블 카드형 정리 */
.mypage-order-area {
    overflow: hidden;
    border: 1px solid #e5e8ec;
    border-radius: 9px;
    background: #fff;
}

.mypage-order-area table {
    width: 100% !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    font-family: "Malgun Gothic", "맑은 고딕", Arial, sans-serif !important;
}

.mypage-order-area th {
    height: 43px !important;
    padding: 9px 8px !important;
    border-top: 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-bottom: 1px solid #e5e8ec !important;
    background: #f7f8fa !important;
    color: #464c54 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.mypage-order-area td {
    height: 50px !important;
    padding: 10px 8px !important;
    border-top: 0 !important;
    border-right: 0 !important;
    border-left: 0 !important;
    border-bottom: 1px solid #eceef1 !important;
    background: #fff !important;
    color: #646b74 !important;
    font-size: 13px !important;
    text-align: center !important;
}

.mypage-order-area a {
    color: #dd1032 !important;
    text-decoration: none !important;
}

.mypage-order-area a:hover {
    text-decoration: underline !important;
}

@media screen and (max-width: 760px) {
    .mypage-card {
        padding: 18px;
    }

    .member-summary-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .member-summary-grid {
        grid-template-columns: 1fr;
    }

    .member-info-grid {
        grid-template-columns: 1fr;
    }

    .info-row:nth-child(odd),
    .info-row:nth-child(even) {
        padding-right: 0;
        padding-left: 0;
        border-left: 0;
    }

    .mypage-table-wrap,
    .mypage-order-area {
        overflow-x: auto;
    }

    .mypage-table,
    .mypage-order-area table {
        min-width: 680px;
    }
}


/* =========================================================
   주문내역 / 내가 쓴 상품 Q&A 공통 폭
   ========================================================= */

/* 페이지 폭 */
.order-inquiry-page,
.itemqa-page {
    width: 787px;
    max-width: 100%;
    padding-bottom: 36px;
}

/* 제목 영역도 동일한 폭으로 유지 */
.order-inquiry-page .mypage-title,
.itemqa-page .mypage-title {
    width: 100%;
    margin: 0 0 18px;
}

/* 카드 */
.order-inquiry-card,
.itemqa-card {
    width: 100%;
    margin: 0 0 20px;
    padding: 24px;
    border: 1px solid #e4e7eb;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(28,36,48,.05);
}

/* 안내문 */
.order-inquiry-guide,
.itemqa-guide {
    margin-bottom: 18px;
    padding: 14px 16px;
    border: 1px solid #eceef1;
    border-radius: 8px;
    background: #f8f9fa;
    color: #666d76;
    font-size: 14px;
    line-height: 1.6;
}

/* 리스트(테이블) 외곽 */
.order-inquiry-page .mypage-order-area,
.itemqa-list {
    overflow: hidden;
    width: 100%;
    border: 1px solid #e5e8ec;
    border-radius: 9px;
    background: #fff;
}


/* =========================================================
   주문내역
   orderinquiry.php
   ========================================================= */

.order-inquiry-page {
    font-family: "Malgun Gothic", "맑은 고딕", Arial, sans-serif;
    color: #25282d;
    background: #fff;
}

.order-inquiry-page *,
.order-inquiry-page *::before,
.order-inquiry-page *::after {
    box-sizing: border-box;
}

/* 전체 주문내역 제목 영역 */
.order-inquiry-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    margin-bottom: 16px;
}

.order-inquiry-head h3 {
    margin: 0;
    color: #20242a;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -.8px;
}

/* 총 주문 건수 */
.order-inquiry-count {
    margin: 7px 0 0;
    color: #7d848d;
    font-size: 13px;
    line-height: 1.5;
}

.order-inquiry-count strong {
    color: #dd1032;
    font-weight: 700;
}

.order-inquiry-guide strong {
    color: #3f464e;
    font-weight: 700;
}

/* 주문 테이블 */
.order-inquiry-page .mypage-order-area table {
    width: 100% !important;
    margin: 0 !important;
    border-collapse: collapse !important;
    border-spacing: 0 !important;
    table-layout: fixed;
}

.order-inquiry-page .mypage-order-area th {
    height: 44px !important;
    padding: 11px 6px !important;
    border: 0 !important;
    border-bottom: 1px solid #e5e8ec !important;
    background: #f7f8fa !important;
    color: #4b5057 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    text-align: center !important;
    white-space: nowrap;
}

.order-inquiry-page .mypage-order-area td {
    height: 50px !important;
    padding: 12px 6px !important;
    border: 0 !important;
    border-bottom: 1px solid #eceef1 !important;
    background: #fff !important;
    color: #666d76 !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
    text-align: center !important;
    vertical-align: middle !important;
}

.order-inquiry-page .mypage-order-area tr:last-child td {
    border-bottom: 0 !important;
}

.order-inquiry-page .mypage-order-area tbody tr:hover td {
    background: #fcfcfd !important;
}

/* 주문번호 링크 */
.order-inquiry-page .mypage-order-area a {
    color: #dd1032 !important;
    font-weight: 500;
    text-decoration: none !important;
}

.order-inquiry-page .mypage-order-area a:hover {
    color: #c90e2c !important;
    text-decoration: underline !important;
}

/* 페이지 번호 */
.order-inquiry-page .mypage-paging {
    margin-top: 22px;
    text-align: center;
}


/* =========================================================
   장바구니
   cart.php / cartsub.inc.php
   ========================================================= */

/* 장바구니 cartsub.inc.php */
.cart-form{width:100%;margin:0;padding:0;font-family:"Malgun Gothic","맑은 고딕",sans-serif}
.cart-list-wrap{overflow:hidden;width:100%;border:1px solid #e5e8ec;border-radius:7px;background:#fff}
.cart-list-table{width:100%;border-collapse:collapse;table-layout:fixed}
.cart-list-table th{height:43px;padding:9px 8px;border-bottom:1px solid #e5e8ec;background:#f7f8fa;font-size:13px;font-weight:700;color:#4b5057;text-align:center;white-space:nowrap}
.cart-list-table td{padding:14px 8px;border-bottom:1px solid #eceef1;background:#fff;font-size:13px;line-height:1.5;color:#666d76;text-align:center;vertical-align:middle}
.cart-list-table tbody tr:last-child td{border-bottom:0}
.cart-list-table tbody tr:hover td{background:#fcfcfd}
.cart-image-cell {
    padding: 14px 4px !important;
    text-align: center !important;
    vertical-align: middle !important;
    line-height: 0;
}
/* 상품 이미지 링크 영역 */
.cart-product-image {
    display: block;
    width: 72px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    background: none;
    line-height: 0;
    text-decoration: none;
}
/* 실제 상품 이미지 */
.cart-product-image img {
    display: block !important;
    width: 72px !important;
    height: 72px !important;
    margin: 0 !important;
    padding: 4px !important;
    border: 1px solid #e5e8ec;
    border-radius: 9px;
    background: #fff;
    object-fit: contain;
    box-sizing: border-box;
}
.cart-product-name{display:block;overflow:hidden;color:#30363d;font-size:15px;font-weight:700;text-decoration:none;text-overflow:ellipsis;white-space:nowrap}
.cart-product-name:hover{color:#dd1032;text-decoration:underline}
.cart-product-options{margin-top:6px;font-size:12px;line-height:1.5;color:#8d949d}
.cart-store-cell,.cart-option-cell{word-break:keep-all}.cart-price-cell{color:#555c65!important;font-weight:600;white-space:nowrap}
.cart-subtotal-cell{color:#20242a!important;font-weight:700;white-space:nowrap}
.cart-delete-btn{display:inline-flex;align-items:center;justify-content:center;min-width:48px;height:30px;padding:0 10px;border:1px solid #dfe2e6;border-radius:6px;background:#fff;font-size:12px;color:#777e87;text-decoration:none}
.cart-delete-btn:hover{border-color:#dd1032;color:#dd1032}
.cart-status{display:inline-flex;align-items:center;justify-content:center;min-width:66px;height:26px;padding:0 10px;border-radius:20px;font-size:12px;font-weight:700;white-space:nowrap}
.cart-status.status-order,.cart-status.status-ready{background:#eaf3ff;color:#2769b2}
.cart-status.status-shipping{background:#f0ecff;color:#6541b5}
.cart-status.status-complete{background:#eaf7ef;color:#16834d}
.cart-status.status-cancel{background:#fff0f1;color:#c43b49}
.cart-empty{padding:58px 15px!important;text-align:center!important}.cart-empty strong{display:block;margin-bottom:7px;font-size:15px;color:#4a5058}
.cart-empty span{display:block;font-size:13px;color:#969ca4}
.cart-summary{margin-top:18px;padding:18px 20px;border-radius:7px;background:#f8f9fa}
.cart-summary-row{display:flex;justify-content:flex-end;align-items:center;gap:34px;min-height:36px;font-size:14px;color:#666d76}
.cart-summary-row+.cart-summary-row{margin-top:6px;padding-top:12px;border-top:1px solid #e5e8ec}
.cart-summary-label{min-width:90px;text-align:right}.cart-summary-price{min-width:120px;color:#343a40;font-weight:700;text-align:right}
.cart-summary-total .cart-summary-label{color:#20242a;font-size:15px;font-weight:700}
.cart-summary-total .cart-summary-price{color:#dd1032;font-size:21px}
.cart-actions{display:flex;justify-content:center;gap:9px;margin-top:22px}
.cart-action-btn{display:inline-flex;align-items:center;justify-content:center;min-width:150px;height:42px;padding:0 22px;border-radius:8px;font-size:15px;font-weight:700;text-decoration:none}
.cart-action-btn.primary{border:1px solid #dd1032;background:#dd1032;color:#fff}
.cart-action-btn.primary:hover{background:#c90e2c}
.cart-action-btn.secondary{border:1px solid #d9dde2;background:#f5f6f7;color:#555c65}
.cart-action-btn.secondary:hover{background:#eceef1}
.cart-action-btn.outline{border:1px solid #cfd4da;background:#fff;color:#555c65}
.cart-action-btn.outline:hover{border-color:#999fa7;background:#fafafa}
.cart-guide{margin-top:22px;padding:17px 19px;border:1px solid #eceef1;border-radius:7px;background:#fff}
.cart-guide p{position:relative;margin:0;padding-left:11px;font-size:13px;line-height:1.9;color:#737a83}
.cart-guide p:before{position:absolute;top:11px;left:0;width:3px;height:3px;border-radius:50%;background:#aeb4bc;content:""}
.cart-guide strong{color:#dd1032}
@media screen and (max-width:760px){.cart-list-wrap{overflow-x:auto}
.cart-list-table{min-width:850px}
.cart-actions{flex-wrap:wrap}
.cart-action-btn{min-width:104px}}


/* =========================================================
   내가 쓴 상품 Q/A
   itemqalist.php
   ========================================================= */

.itemqa-page {
    padding-bottom: 36px;
    background: #fff;
    font-family: "Malgun Gothic", "맑은 고딕", sans-serif;
}

.itemqa-page *,
.itemqa-page *::before,
.itemqa-page *::after {
    box-sizing: border-box;
}

.itemqa-title {
    margin-bottom: 18px;
}

.itemqa-title h2 {
    margin: 0;
    font-size: 24px;
    line-height: 1.35;
    font-weight: 700;
    letter-spacing: -1px;
    color: #22272e;
}

.itemqa-title p {
    margin: 7px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #858c95;
}

.itemqa-section-head {
    margin-bottom: 16px;
}

.itemqa-section-head p {
    margin: 7px 0 0;
    font-size: 13px;
    color: #7d848d;
}

.itemqa-section-head p strong {
    color: #dd1032;
    font-weight: 700;
}

.itemqa-row {
    display: grid;
    grid-template-columns: 12% 12% 20% 12% 29% 15%;
    align-items: center;
    width: 100%;
}

.itemqa-head-row {
    min-height: 44px;
    border-bottom: 1px solid #e5e8ec;
    background: #f7f8fa;
}

.itemqa-head-row .itemqa-cell {
    padding: 11px 7px;
    font-size: 13px;
    font-weight: 700;
    color: #4b5057;
    text-align: center;
    white-space: nowrap;
}

.itemqa-item {
    border-bottom: 1px solid #eceef1;
}

.itemqa-item:last-child {
    border-bottom: 0;
}

.itemqa-summary-row {
    min-height: 76px;
    transition: background .18s ease;
}

.itemqa-summary-row:hover {
    background: #fcfcfd;
}

.itemqa-cell {
    min-width: 0;
    padding: 10px 7px;
    font-size: 13px;
    line-height: 1.45;
    color: #666d76;
}

.itemqa-store,
.itemqa-image,
.itemqa-writer,
.itemqa-answer {
    text-align: center;
}

.itemqa-thumb {
    display: inline-flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 1px solid #e5e8ec;
    border-radius: 8px;
    background: #fff;
}

.itemqa-thumb img {
    display: block;
    max-width: 100%;
    max-height: 100%;
}

.itemqa-product-link {
    display: block;
    overflow: hidden;
    color: #343a40;
    font-weight: 600;
    text-decoration: none;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.itemqa-product-link:hover {
    color: #dd1032;
    text-decoration: underline;
}

.itemqa-question-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    width: 100%;
    padding: 5px 0;
    border: 0;
    background: transparent;
    font-family: inherit;
    font-size: 13px;
    line-height: 1.45;
    color: #3c4249;
    text-align: left;
    cursor: pointer;
}

.itemqa-question-btn > span:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.itemqa-question-btn:hover {
    color: #dd1032;
}

.itemqa-arrow {
    flex: 0 0 auto;
    font-size: 16px;
    color: #9aa0a8;
    transition: transform .18s ease;
}

.itemqa-question-btn.is-open .itemqa-arrow {
    transform: rotate(180deg);
}

.itemqa-status {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 66px;
    height: 26px;
    padding: 0 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.itemqa-status.is-complete {
    background: #eaf7ef;
    color: #16834d;
}

.itemqa-status.is-wait {
    background: #fff3e5;
    color: #c76600;
}

.itemqa-detail {
    display: none;
    border-top: 1px solid #eceef1;
    background: #fafbfc;
}

.itemqa-detail-block {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 76px;
}

.itemqa-detail-block + .itemqa-detail-block {
    border-top: 1px solid #eceef1;
}

.itemqa-detail-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 18px 16px;
    background: #f4f6f8;
    font-size: 13px;
    font-weight: 700;
    color: #4b5057;
}

.itemqa-detail-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

.itemqa-detail-mark.question {
    background: #fff0f2;
    color: #dd1032;
}

.itemqa-detail-mark.answer {
    background: #eaf7ef;
    color: #16834d;
}

.itemqa-detail-content {
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.75;
    color: #555c65;
    word-break: break-all;
}

.itemqa-wait-message {
    color: #9298a0;
}

.itemqa-empty {
    padding: 54px 15px;
    font-size: 14px;
    color: #9298a0;
    text-align: center;
}

.itemqa-mobile-label {
    display: none;
}

/* 작은 화면 */
@media screen and (max-width: 760px) {
    .itemqa-card {
        padding: 18px;
    }

    .itemqa-title h2 {
        font-size: 21px;
    }

    .itemqa-head-row {
        display: none;
    }

    .itemqa-item {
        padding: 6px 0;
    }

    .itemqa-summary-row {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        min-height: 0;
        padding: 12px;
    }

    .itemqa-cell {
        padding: 6px 8px;
        text-align: left;
    }

    .itemqa-image {
        grid-row: 1 / span 4;
        grid-column: 1;
        padding-left: 0;
    }

    .itemqa-store,
    .itemqa-product,
    .itemqa-writer,
    .itemqa-question,
    .itemqa-answer {
        grid-column: 2;
    }

    .itemqa-store,
    .itemqa-writer {
        font-size: 12px;
        color: #858c95;
    }

    .itemqa-answer {
        text-align: left;
    }

    .itemqa-mobile-label {
        display: inline-block;
        margin-right: 6px;
        font-size: 11px;
        font-weight: 700;
        color: #9aa0a8;
    }

    .itemqa-question-btn {
        padding: 3px 0;
    }

    .itemqa-detail-block {
        display: block;
    }

    .itemqa-detail-title {
        padding: 13px 15px;
    }

    .itemqa-detail-content {
        padding: 15px;
    }
}