/* =========================================================
   00. RESET & BASE SETTINGS
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #F7F4EC;
    color: #27231F;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    overflow-x: hidden;
    word-break: keep-all;
}

body.no-scroll {
    overflow: hidden !important;
}


/* =========================================================
   01. HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    background: rgba(252, 250, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    color: #27231F;
}

.navigation {
    display: flex;
    gap: 20px;
}

.navigation a {
    color: #27231F;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.navigation a:hover {
    opacity: 0.6;
}

.bag-button {
    border: 0;
    background: transparent;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 1.5px;
    color: #27231F;
    font-weight: 700;
    padding: 8px 4px;
}


/* =========================================================
   02. HERO (Signature Orange)
========================================================= */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    padding: 120px 6% 80px;
    color: #ffffff;
    background: #7A4A4F;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 900px;
}

.eyebrow {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
}

.hero h1 {
    font-weight: 700;
    font-size: clamp(38px, 9vw, 110px);
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 25px;
    color: #ffffff;
}

.hero-description {
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.6;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.95);
}

.hero-button {
    display: inline-block;
    padding: 16px 28px;
    background: #ffffff;
    color: #27231F;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease;
    border-radius: 0;
}

.hero-button:hover {
    background: #27231F;
    color: #ffffff;
}


/* =========================================================
   03. ABOUT (Deep Dark)
========================================================= */

.about-section {
    padding: 100px 6%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    background: #1E1E1E;
    color: #F7F4EC;
}

@media (min-width: 768px) {
    .about-section {
        grid-template-columns: 1fr 2fr;
        padding: 140px 8%;
        gap: 80px;
    }
}

.about-label {
    font-size: 10px;
    letter-spacing: 3px;
    color: #7A4A4F;
    font-weight: 700;
}

.about-content h2 {
    font-size: clamp(36px, 7vw, 90px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 35px;
    color: #F7F4EC;
}

.about-content p {
    max-width: 650px;
    font-size: clamp(15px, 3.8vw, 18px);
    line-height: 1.8;
    color: rgba(252, 250, 255, 0.85);
}


/* =========================================================
   04. COLLECTION (자연스럽고 정갈한 샴페인 크림 배경)
========================================================= */

.collection-section {
    padding: 90px 5% 100px;
    background: #F7F4EC;
}

.collection-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 45px;
    border-bottom: 1px solid rgba(23, 21, 19, 0.1);
    padding-bottom: 20px;
}

.collection-header .eyebrow {
    color: #756D63;
}

.collection-header h2 {
    font-size: clamp(32px, 6vw, 80px);
    font-weight: 700;
    letter-spacing: -2px;
    color: #27231F;
}

.collection-count {
    font-size: 10px;
    letter-spacing: 2px;
    color: #756D63;
    font-weight: 600;
}

/* 모바일 2열 컬럼 배치 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 14px;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 34px 22px;
    }
}

.product-card {
    cursor: pointer;
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 0.82;
    overflow: hidden;
    background: #E9E2D6;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.04);
}

.product-number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 8px;
    letter-spacing: 1px;
    background: rgba(252, 250, 255, 0.92);
    color: #27231F;
    padding: 5px 7px;
    font-weight: 700;
}

.product-info {
    padding: 12px 2px 0;
}

.product-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #27231F;
}

.product-price {
    font-size: 12px;
    letter-spacing: 0.5px;
    color: #756D63;
}


/* =========================================================
   05. FOOTER (기존 고유 톤 & 텍스트 원상복구)
========================================================= */

.footer {
    background: #27231F;
    color: #F1ECE3;
    padding: 80px 6% 90px;
    text-align: center;
}

.footer-logo {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #F1ECE3;
}

.footer p {
    font-size: 10px;
    letter-spacing: 2px;
    color: #A39A90;
    margin-top: 12px;
    line-height: 1.6;
}

.footer .creator {
    color: #F1ECE3;
    margin-top: 40px;
    font-weight: 600;
}


/* =========================================================
   06. PRODUCT DETAIL MODAL (모바일 스크롤 지원)
========================================================= */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    z-index: 2000;
    display: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-inner {
    min-height: 100vh;
    padding: 70px 5% 60px;
    background: #F7F4EC;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: 0;
    background: none;
    font-size: 36px;
    cursor: pointer;
    color: #27231F;
    padding: 10px;
    line-height: 1;
    z-index: 10;
}

.product-detail {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 800px) {
    .product-detail {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
        align-items: center;
        min-height: 75vh;
    }
}

.detail-image {
    aspect-ratio: 0.9;
    background: #E9E2D6;
    overflow: hidden;
    width: 100%;
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-info .eyebrow {
    color: #756D63;
    margin-bottom: 8px;
}

.detail-info h2 {
    font-size: clamp(32px, 6vw, 64px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 25px;
    color: #27231F;
}

.detail-spec {
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 18px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.detail-spec div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.detail-spec span {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: #7B736A;
}

.detail-spec strong {
    font-size: 14px;
    font-weight: 700;
    color: #27231F;
}

.detail-description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #37322D;
    min-height: 48px;
}

.detail-price {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #27231F;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.quantity button {
    width: 40px;
    height: 40px;
    border: 1px solid #ccc;
    background: #fff;
    font-size: 18px;
    cursor: pointer;
    color: #27231F;
}

.quantity span {
    font-size: 16px;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.purchase-buttons {
    display: flex;
    gap: 10px;
}

.purchase-buttons button {
    flex: 1;
    height: 52px;
    cursor: pointer;
    letter-spacing: 1.5px;
    font-size: 11px;
    font-weight: 700;
}

.add-button {
    background: transparent;
    border: 1px solid #27231F;
    color: #27231F;
}

.buy-button {
    background: #27231F;
    color: #ffffff;
    border: 1px solid #27231F;
}


/* =========================================================
   07. BAG MODAL
========================================================= */

.bag-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    display: none;
}

.bag-panel {
    margin-left: auto;
    width: min(450px, 100%);
    height: 100%;
    background: #F7F4EC;
    padding: 70px 25px 40px;
    overflow-y: auto;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bag-panel .eyebrow {
    color: #756D63;
    margin-bottom: 5px;
}

.bag-panel h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #27231F;
}

#bag-items {
    flex: 1;
}

.empty-bag {
    padding: 50px 0;
    text-align: center;
    color: #888;
    font-size: 12px;
    letter-spacing: 2px;
}

.bag-item {
    display: flex;
    gap: 15px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: relative;
    align-items: center;
}

.bag-item img {
    width: 70px;
    height: 85px;
    object-fit: cover;
    background: #E9E2D6;
}

.bag-item-info strong {
    display: block;
    font-size: 15px;
    margin-bottom: 4px;
}

.bag-item-info p {
    font-size: 11px;
    color: #6E665E;
    margin-top: 2px;
}

.bag-remove-button {
    position: absolute;
    right: 0;
    top: 15px;
    border: none;
    background: transparent;
    font-size: 20px;
    cursor: pointer;
    color: #888;
    padding: 5px;
}

.bag-total {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #27231F;
    color: #27231F;
    font-size: 14px;
    letter-spacing: 1px;
}

.checkout-button {
    width: 100%;
    height: 52px;
    margin-top: 20px;
    background: #27231F;
    color: #ffffff;
    border: none;
    cursor: pointer;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   08. STATEMENT / PURCHASE SHOCK MODAL (붉은 배경 & 흰 글씨 복원)
========================================================= */

.purchase-modal {
    position: fixed;
    inset: 0;
    z-index: 5000;
    background: #b01c2e; /* 붉은색 크림슨 배경 */
    color: #ffffff;      /* 흰색 글자 */
    display: none;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 24px;
}

.purchase-message {
    max-width: 600px;
    width: 100%;
}

.purchase-message .eyebrow {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.purchase-message h2 {
    font-weight: 700;
    font-size: clamp(28px, 6vw, 56px);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 30px;
    color: #ffffff;
}

.message-line {
    width: 50px;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    margin: 0 auto 30px;
}

.korean-message {
    font-size: clamp(22px, 5vw, 32px);
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.message-description {
    font-size: clamp(14px, 3.8vw, 17px);
    line-height: 1.7;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.purchase-message button {
    padding: 16px 40px;
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    cursor: pointer;
    letter-spacing: 2px;
    font-size: 11px;
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease;
}

.purchase-message button:hover {
    background: #ffffff;
    color: #b01c2e;
}


/* =========================================================
   09. PURCHASE EXPLANATION MODAL (모바일 가독성)
========================================================= */

.purchase-explanation-modal {
    position: fixed;
    inset: 0;
    z-index: 6000;
    display: none;
    background: #F7F4EC;
    color: #27231F;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.purchase-explanation-inner {
    width: min(850px, 90%);
    margin: 0 auto;
    padding: 50px 0 80px;
}

.purchase-explanation-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 18px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.purchase-explanation-top .eyebrow {
    color: #756D63;
    margin: 0;
}

.purchase-explanation-close {
    padding: 8px 0;
    border: none;
    background: transparent;
    color: #27231F;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 700;
}

.purchase-explanation-title {
    font-weight: 700;
    font-size: clamp(42px, 10vw, 90px);
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 20px;
    color: #27231F;
}

.purchase-explanation-subtitle {
    font-size: clamp(18px, 4.5vw, 24px);
    line-height: 1.5;
    color: #4d4842;
    margin-bottom: 60px;
}

.purchase-explanation-body {
    max-width: 700px;
    margin: 0 auto;
}

.purchase-explanation-section {
    margin-bottom: 50px;
}

.purchase-explanation-number {
    font-size: 10px;
    letter-spacing: 2px;
    color: #817a72;
    margin-bottom: 12px;
    font-weight: 700;
}

.purchase-explanation-section h3 {
    font-size: clamp(20px, 4.8vw, 26px);
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 18px;
    color: #27231F;
}

.purchase-explanation-body p {
    font-size: clamp(15px, 3.8vw, 17px);
    line-height: 1.8;
    color: #443f39;
    margin-bottom: 20px;
}

.purchase-explanation-highlight {
    margin: 45px 0;
    padding: 24px 0;
    border-top: 1px solid #b01c2e;
    border-bottom: 1px solid #b01c2e;
}

.purchase-explanation-highlight p {
    font-size: clamp(15px, 4vw, 18px);
    letter-spacing: 0.5px;
    line-height: 1.7;
    color: #b01c2e;
    margin: 0;
    font-weight: 600;
}

.purchase-explanation-final {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #27231F;
}

.purchase-explanation-final p {
    font-size: clamp(18px, 5vw, 24px);
    font-weight: 700;
    line-height: 1.6;
    color: #27231F;
    margin-bottom: 16px;
}

.purchase-explanation-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 80px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
}

@media (min-width: 600px) {
    .purchase-explanation-footer {
        flex-direction: row;
        justify-content: space-between;
    }
}

.purchase-explanation-footer p {
    font-size: 9px;
    line-height: 1.8;
    letter-spacing: 1.5px;
    color: #817a72;
}
/* =========================================================
   DOGBI MOBILE UI
   기존 PC 디자인 유지 / 모바일 가독성 최적화
========================================================= */


/* ---------- 작품 정보 ---------- */

.purchase-explanation-heading {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.purchase-explanation-meta {
    margin: 0;
    font-size: 9px;
    letter-spacing: 1.8px;
    color: #817A71;
    line-height: 1.5;
}

.work-information {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-bottom: 60px;
    border-top: 1px solid rgba(39, 35, 31, 0.12);
    border-bottom: 1px solid rgba(39, 35, 31, 0.12);
}

.work-information-item {
    padding: 18px 16px 18px 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
    min-width: 0;
}

.work-information-item:nth-child(3),
.work-information-item:nth-child(4) {
    border-top: 1px solid rgba(39, 35, 31, 0.08);
}

.work-information-item span {
    font-size: 8px;
    letter-spacing: 1.7px;
    color: #817A71;
    font-weight: 700;
}

.work-information-item strong {
    font-size: 13px;
    line-height: 1.55;
    font-weight: 600;
    color: #27231F;
    word-break: keep-all;
}


/* ---------- 제목 묶음 ---------- */

.purchase-explanation-title-wrap {
    margin-bottom: 65px;
}


/* ---------- 태블릿 / 작은 화면 ---------- */

@media (max-width: 767px) {

    /* Header */
    .header {
        height: 58px;
        padding: 0 20px;
    }

    .logo {
        font-size: 21px;
        letter-spacing: -0.8px;
    }

    .navigation {
        gap: 12px;
    }

    .navigation a {
        font-size: 9px;
        letter-spacing: 1.2px;
    }

    .bag-button {
        font-size: 9px;
        letter-spacing: 1.2px;
        padding: 7px 2px;
    }


    /* Hero */
    .hero {
        min-height: 100svh;
        padding: 100px 24px 55px;
    }

    .hero h1 {
        font-size: clamp(34px, 10vw, 52px);
        line-height: 1.08;
        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 28px;
    }

    .hero-button {
        padding: 14px 22px;
        font-size: 10px;
        letter-spacing: 1.7px;
    }


    /* About */
    .about-section {
        padding: 80px 24px;
    }

    .about-content h2 {
        font-size: clamp(38px, 11vw, 64px);
        line-height: 1.05;
    }

    .about-content p {
        font-size: 14px;
        line-height: 1.8;
    }


    /* Collection */
    .collection-section {
        padding: 75px 20px 80px;
    }

    .collection-header {
        margin-bottom: 32px;
        padding-bottom: 15px;
    }

    .collection-header h2 {
        font-size: 32px;
        letter-spacing: -1.5px;
    }

    .collection-count {
        font-size: 8px;
        letter-spacing: 1.4px;
    }

    .product-grid {
        gap: 24px 12px;
    }

    .product-image {
        aspect-ratio: 0.82;
    }

    .product-info {
        padding-top: 10px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-price {
        font-size: 11px;
    }


    /* Product Modal */
    .modal-inner {
        padding: 60px 20px 40px;
    }

    .product-detail {
        gap: 24px;
    }

    .detail-info h2 {
        font-size: 34px;
    }

    .detail-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .detail-price {
        font-size: 18px;
    }

    .purchase-buttons {
        gap: 8px;
    }

    .purchase-buttons button {
        height: 50px;
        font-size: 10px;
    }


    /* Bag */
    .bag-panel {
        width: 100%;
        padding: 65px 20px 30px;
    }

    .bag-panel h2 {
        font-size: 29px;
    }


    /* =====================================================
       PURCHASE EXPLANATION
    ===================================================== */

    .purchase-explanation-inner {
        width: calc(100% - 40px);
        padding: 30px 0 60px;
    }

    .purchase-explanation-top {
        padding-bottom: 15px;
        margin-bottom: 30px;
        align-items: flex-start;
    }

    .purchase-explanation-top .eyebrow {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .purchase-explanation-meta {
        font-size: 8px;
        letter-spacing: 1.4px;
    }

    .purchase-explanation-close {
        font-size: 9px;
        letter-spacing: 1.5px;
        padding: 6px 0;
        flex-shrink: 0;
    }


    /* 작품 정보 */
    .work-information {
        grid-template-columns: 1fr 1fr;
        margin-bottom: 45px;
    }

    .work-information-item {
        padding: 14px 12px 14px 0;
    }

    .work-information-item span {
        font-size: 7px;
        letter-spacing: 1.4px;
    }

    .work-information-item strong {
        font-size: 11px;
        line-height: 1.5;
    }


    /* 작품 제목 */
    .purchase-explanation-title-wrap {
        margin-bottom: 48px;
    }

    .purchase-explanation-title {
        font-size: clamp(38px, 12vw, 54px);
        line-height: 0.98;
        letter-spacing: -2px;
        margin-bottom: 16px;
    }

    .purchase-explanation-subtitle {
        font-size: 16px;
        line-height: 1.65;
        color: #514A44;
        margin-bottom: 0;
    }


    /* 본문 */
    .purchase-explanation-body {
        width: 100%;
        max-width: none;
    }

    .purchase-explanation-section {
        margin-bottom: 48px;
    }

    .purchase-explanation-number {
        font-size: 8px;
        letter-spacing: 1.8px;
        margin-bottom: 10px;
    }

    .purchase-explanation-section h3 {
        font-size: 21px;
        line-height: 1.42;
        letter-spacing: -0.5px;
        margin-bottom: 18px;
    }

    .purchase-explanation-body p {
        font-size: 14px;
        line-height: 1.9;
        color: #47423D;
        margin-bottom: 17px;
    }


    /* 강조문 */
    .purchase-explanation-highlight {
        margin: 38px 0 45px;
        padding: 21px 0;
    }

    .purchase-explanation-highlight p {
        font-size: 15px;
        line-height: 1.7;
        letter-spacing: 0;
        margin: 0;
    }


    /* 마지막 문장 */
    .purchase-explanation-final {
        margin-top: 55px;
        padding-top: 30px;
    }

    .purchase-explanation-final p {
        font-size: 20px;
        line-height: 1.55;
        margin-bottom: 14px;
    }


    /* Footer */
    .purchase-explanation-footer {
        margin-top: 60px;
        padding-top: 20px;
        gap: 18px;
    }

    .purchase-explanation-footer p {
        font-size: 8px;
        line-height: 1.7;
        letter-spacing: 1.2px;
    }

}


/* =========================================================
   초소형 모바일
   320px ~ 374px
========================================================= */

@media (max-width: 374px) {

    .header {
        padding: 0 16px;
    }

    .navigation {
        gap: 8px;
    }

    .navigation a {
        font-size: 8px;
        letter-spacing: 1px;
    }

    .bag-button {
        font-size: 8px;
    }


    .hero {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1 {
        font-size: 34px;
    }


    .purchase-explanation-inner {
        width: calc(100% - 32px);
    }

    .work-information-item strong {
        font-size: 10px;
    }

    .purchase-explanation-title {
        font-size: 36px;
    }

    .purchase-explanation-section h3 {
        font-size: 20px;
    }

    .purchase-explanation-body p {
        font-size: 13.5px;
    }

    .purchase-explanation-final p {
        font-size: 19px;
    }

}