.opb-shop {
    --opb-peach: #ff9a73;
    --opb-peach-dark: #ff6f3c;
    --opb-panel: #f1f1f1;
    --opb-ink: #151515;
    --opb-muted: #8b929c;
    box-sizing: border-box;
    color: var(--opb-ink);
    direction: rtl;
    font-family: inherit;
    padding: 18px 0 44px;
}

.opb-shop *,
.opb-shop *::before,
.opb-shop *::after {
    box-sizing: border-box;
}

.opb-tabs {
    align-items: center;
    background: #050505;
    border-radius: 14px;
    display: flex;
    gap: 8px;
    justify-content: center;
    margin: 0 auto 86px;
    max-width: max-content;
    padding: 16px;
}

.opb-tab {
    background: transparent;
    border: 0;
    border-radius: 14px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 800;
    min-height: 36px;
    padding: 8px 18px;
}

.opb-tab.is-active {
    background: var(--opb-peach);
    color: #fff;
}

.opb-grid-products {
    display: none;
    grid-template-columns: repeat(4, minmax(190px, 1fr));
    gap: 82px 28px;
}

.opb-grid-products.is-active {
    display: grid;
}

.opb-product-card {
    min-width: 0;
}

.opb-product-card.is-link-only .opb-product-button {
    cursor: pointer;
}

.opb-product-button {
    background: #fff;
    border: 0;
    border-radius: 26px;
    box-shadow: 0 14px 32px rgba(37, 39, 64, 0.06);
    color: inherit;
    cursor: pointer;
    display: grid;
    min-height: 176px;
    padding: 0 24px 28px;
    position: relative;
    text-align: right;
    width: 100%;
}

.opb-product-button::before {
    background: rgba(226, 166, 112, 0.78);
    border-radius: 120px 120px 0 0;
    content: "";
    height: 68px;
    left: 50%;
    position: absolute;
    top: -68px;
    transform: translateX(-50%);
    width: 136px;
}

.opb-image-arch {
    align-items: center;
    display: flex;
    height: 112px;
    justify-content: center;
    justify-self: center;
    margin-top: -54px;
    position: relative;
    width: 112px;
    z-index: 1;
}

.opb-image-arch img {
    border-radius: 24px;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.opb-product-title {
    color: var(--opb-ink);
    display: block;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.5;
    margin: 14px 0 24px;
    min-height: 54px;
    padding: 0;
    text-align: center;
}

.opb-card-bottom {
    align-items: center;
    display: grid;
    gap: 14px;
    justify-items: center;
}

.opb-card-actions {
    align-items: center;
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    justify-content: center;
    width: 100%;
}

.opb-buy,
.opb-submit {
    background: var(--opb-peach);
    border: 0;
    border-radius: 18px;
    color: #fff;
    cursor: pointer;
    font-size: 15px;
    font-weight: 800;
    line-height: 1.4;
    min-width: 92px;
    padding: 10px 18px;
    text-align: center;
}

.opb-view-product {
    align-items: center;
    display: inline-flex;
    justify-content: center;
    text-decoration: none;
}

.opb-view-product:hover,
.opb-view-product:focus {
    color: #fff;
}

.opb-price {
    color: var(--opb-peach-dark);
    display: block;
    font-size: 15px;
    font-weight: 900;
    min-height: 34px;
    text-align: center;
}

.opb-price del,
.opb-payable del {
    color: var(--opb-muted);
    display: block;
    font-size: 13px;
    font-weight: 600;
}

.opb-order-area {
    background: var(--opb-panel);
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(260px, 400px) minmax(320px, 1fr);
    margin: 76px calc(50% - 50vw) 0;
    padding: 96px max(28px, calc((100vw - 1200px) / 2));
}

.opb-notice {
    align-self: start;
    background: #fff;
    border-radius: 14px;
    padding: 24px 34px;
}

.opb-notice h3 {
    border-bottom: 1px solid #f2d7ca;
    color: #6b7280;
    font-size: 16px;
    margin: 0 0 22px;
    padding-bottom: 16px;
    text-align: center;
}

.opb-notice ul {
    display: grid;
    gap: 20px;
    margin: 0;
    padding: 0 18px 0 0;
}

.opb-notice li {
    color: #2f3440;
    font-size: 15px;
    line-height: 2;
}

.opb-form {
    display: grid;
    gap: 32px;
}

.opb-selected {
    align-items: center;
    background-color: #dfa08d;
    background-image: linear-gradient(90deg, #d29a92, #e9b98e);
    border-radius: 14px;
    color: #fff;
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr auto auto;
    min-height: 134px;
    overflow: hidden;
    padding: 20px 24px;
    position: relative;
}

.opb-selected::before {
    background: url("../account-selection-mobile.png") center / contain no-repeat;
    content: "";
    height: 119px;
    opacity: 0.9;
    pointer-events: none;
    position: absolute;
    right: 22px;
    top: 8px;
    width: 151px;
    z-index: 0;
}


.opb-selected-copy,
.opb-selected-meta,
.opb-selected-image {
    position: relative;
    z-index: 1;
}

.opb-hand {
    display: block;
    font-size: 28px;
    font-weight: 900;
    transform: rotate(-13deg);
}

.opb-selected-meta {
    min-width: 150px;
}

.opb-selected-meta h2 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 8px;
    padding: 0;
}

.opb-selected-meta strong {
    color: #fff;
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}

.opb-selected-image img {
    border-radius: 24px;
    height: 86px;
    object-fit: cover;
    width: 86px;
}

.opb-qty {
    align-items: center;
    background: #fff;
    border-radius: 999px;
    color: #485066;
    display: inline-flex;
    direction: ltr;
    height: 30px;
    overflow: hidden;
    width: 104px;
}

.opb-qty button {
    background: transparent;
    border: 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 800;
    height: 30px;
    line-height: 30px;
    padding: 0;
    width: 34px;
}

.opb-qty input {
    -moz-appearance: textfield;
    appearance: textfield;
    background: transparent;
    border: 0;
    color: #485066;
    font-size: 15px;
    font-weight: 700;
    height: 30px;
    line-height: 30px;
    margin: 0;
    padding: 0;
    text-align: center;
    width: 36px;
}

.opb-qty input::-webkit-outer-spin-button,
.opb-qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.opb-field-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
}

.opb-field {
    display: block;
    position: relative;
}

.opb-field input,
.opb-field textarea {
    background: #fff;
    border: 0;
    border-radius: 14px;
    color: #4b5563;
    font: inherit;
    min-height: 64px;
    outline: 0;
    padding: 0 24px 0 78px;
    text-align: center;
    width: 100%;
}

.opb-field textarea {
    min-height: 108px;
    padding-top: 22px;
    resize: vertical;
}

.opb-field input::placeholder,
.opb-field textarea::placeholder {
    color: #bcc3d0;
}

.opb-help {
    background: #cf988d;
    border: 0;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    left: 14px;
    padding: 7px 10px;
    position: absolute;
    top: 16px;
    z-index: 1;
}

.opb-help-modal[hidden] {
    display: none;
}

.opb-help-modal {
    align-items: center;
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 18px;
    position: fixed;
    z-index: 99999;
}

.opb-help-backdrop {
    background: rgba(17, 24, 39, 0.52);
    inset: 0;
    position: absolute;
}

.opb-help-dialog {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 22px 60px rgba(17, 24, 39, 0.24);
    color: #2f3440;
    max-width: 420px;
    padding: 28px;
    position: relative;
    width: min(100%, 420px);
    z-index: 1;
}

.opb-help-dialog h3 {
    color: var(--opb-ink);
    font-size: 20px;
    margin: 0 0 14px;
}

.opb-help-content {
    color: #4b5563;
    font-size: 15px;
    line-height: 2;
    white-space: pre-line;
}

.opb-help-close {
    align-items: center;
    background: #fff1eb;
    border: 0;
    border-radius: 999px;
    color: var(--opb-peach-dark);
    cursor: pointer;
    display: flex;
    font-size: 24px;
    height: 34px;
    justify-content: center;
    left: 14px;
    line-height: 1;
    position: absolute;
    top: 14px;
    width: 34px;
}

.opb-modal-open {
    overflow: hidden;
}

.opb-submit-row {
    align-items: center;
    background: rgba(226, 214, 211, 0.5);
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    min-height: 88px;
    padding: 16px;
}

.opb-submit {
    align-items: center;
    box-shadow: 0 10px 22px rgba(255, 121, 69, 0.24);
    display: inline-flex;
    gap: 18px;
    min-height: 56px;
}

.opb-submit span {
    font-size: 32px;
    line-height: 1;
}

.opb-payable {
    color: #697386;
    display: grid;
    gap: 6px;
    text-align: right;
}

.opb-payable span {
    font-weight: 800;
}

.opb-payable strong {
    color: var(--opb-peach-dark);
    font-size: 22px;
}

.opb-about {
    background:
        radial-gradient(circle at 14% 18%, rgba(195, 201, 221, 0.36) 0 4px, transparent 5px),
        radial-gradient(circle at 72% 16%, rgba(193, 239, 247, 0.48) 0 4px, transparent 5px),
        linear-gradient(180deg, rgba(232, 234, 240, 0.96), rgba(232, 234, 240, 0.78));
    border-radius: 26px;
    color: #5f6670;
    margin: 96px auto 0;
    max-width: 1188px;
    overflow: visible;
    padding: 48px 64px;
    position: relative;
    text-align: center;
}

.opb-about-head {
    align-items: center;
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 18px;
    justify-content: center;
    margin-bottom: 34px;
}

.opb-about-head img {
    border-radius: 22px;
    height: 86px;
    object-fit: cover;
    width: 86px;
}

.opb-about-head h2 {
    color: #050505;
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 8px;
}

.opb-about-head strong {
    color: #78808a;
    display: block;
    font-size: 15px;
    letter-spacing: 1px;
}

.opb-about-intro {
    color: #1f2933;
    font-size: 18px;
    line-height: 2;
    margin: 0 0 22px;
}

.opb-about-content {
    display: grid;
    gap: 18px;
}

.opb-about-content p {
    font-size: 16px;
    line-height: 2.2;
    margin: 0;
}

.opb-feature-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(3, minmax(180px, 1fr));
    margin: 130px auto 0;
    max-width: 1078px;
}

.opb-feature-card {
    background: var(--opb-card-bg);
    border-radius: 14px;
    min-height: 130px;
    padding: 30px 28px;
    text-align: right;
}

.opb-feature-icon {
    color: #050505;
    display: inline-block;
    font-size: 24px;
    margin-left: 10px;
    vertical-align: middle;
}

.opb-feature-card h3 {
    color: #050505;
    display: inline-block;
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 12px;
    vertical-align: middle;
}

.opb-feature-card p {
    color: #76808c;
    font-size: 13px;
    line-height: 2;
    margin: 0;
}

.opb-support {
    align-items: center;
    border: 2px dashed #e5e7eb;
    border-radius: 12px;
    display: grid;
    gap: 24px;
    grid-template-columns: auto 1fr auto;
    margin: 74px auto 0;
    max-width: 880px;
    min-height: 112px;
    padding: 26px 34px;
}

.opb-support-icon {
    align-items: center;
    background: #fff1eb;
    border-radius: 14px;
    color: var(--opb-peach-dark);
    display: flex;
    font-size: 24px;
    height: 50px;
    justify-content: center;
    width: 50px;
}

.opb-support p {
    color: #777d87;
    font-size: 17px;
    margin: 0;
    text-align: center;
}

.opb-support-button {
    background: #fff1eb;
    border-radius: 16px;
    color: var(--opb-peach-dark);
    font-size: 16px;
    font-weight: 900;
    padding: 14px 28px;
    text-decoration: none;
    white-space: nowrap;
}

.opb-comments {
    margin: 94px auto 0;
    max-width: 860px;
}

.opb-comments-head {
    margin-bottom: 28px;
    text-align: center;
}

.opb-comments-head h2 {
    color: #050505;
    font-size: 24px;
    font-weight: 900;
    margin: 0 0 8px;
}

.opb-comments-head p {
    color: #b1b7bf;
    font-size: 14px;
    margin: 0;
}

.opb-comment-message {
    border-radius: 12px;
    font-size: 14px;
    font-weight: 800;
    margin: 0 0 18px;
    padding: 12px 16px;
    text-align: center;
}

.opb-comment-message.is-success {
    background: #d8ffee;
    color: #079b6c;
}

.opb-comment-message.is-error {
    background: #ffe4e6;
    color: #be123c;
}

.opb-comment-form {
    background:
        radial-gradient(circle at 18% 18%, rgba(195, 201, 221, 0.36) 0 4px, transparent 5px),
        radial-gradient(circle at 45% 70%, rgba(193, 239, 247, 0.48) 0 4px, transparent 5px),
        #e9ebf1;
    border-radius: 28px;
    display: grid;
    gap: 18px;
    margin-bottom: 60px;
    padding: 26px;
}

.opb-hp {
    display: none !important;
}

.opb-comment-author {
    align-items: center;
    display: grid;
    gap: 14px;
    grid-template-columns: auto 1fr;
}

.opb-comment-avatar {
    background: #c7c9cc;
    border-radius: 999px;
    display: inline-block;
    height: 42px;
    position: relative;
    width: 42px;
}

.opb-comment-avatar::before {
    background: #fff;
    border-radius: 999px;
    content: "";
    height: 13px;
    left: 50%;
    position: absolute;
    top: 9px;
    transform: translateX(-50%);
    width: 13px;
}

.opb-comment-avatar::after {
    background: #fff;
    border-radius: 999px 999px 0 0;
    bottom: 8px;
    content: "";
    height: 14px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 24px;
}

.opb-comment-fields {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, 1fr);
}

.opb-comment-fields input,
.opb-comment-form textarea {
    background: #fff;
    border: 0;
    border-radius: 14px;
    color: #4b5563;
    font: inherit;
    outline: 0;
    padding: 16px 18px;
    width: 100%;
}

.opb-comment-form textarea {
    min-height: 120px;
    resize: vertical;
}

.opb-recommend {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.opb-recommend span {
    color: #59616d;
    margin-left: 12px;
}

.opb-recommend label {
    align-items: center;
    background: #151515;
    border-radius: 12px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 13px;
    font-weight: 800;
    gap: 6px;
    padding: 9px 12px;
}

.opb-recommend label:first-of-type {
    background: var(--opb-peach);
}

.opb-recommend label:last-of-type {
    background: #4b5563;
}

.opb-comment-submit {
    align-self: end;
    background: var(--opb-peach-dark);
    border: 0;
    border-radius: 16px;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 900;
    justify-self: end;
    min-width: 112px;
    padding: 15px 24px;
}

.opb-comment-list {
    display: grid;
    gap: 68px;
}

.opb-comment {
    direction: ltr;
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr auto;
}

.opb-comment.is-hidden {
    display: none;
}

.opb-comment-badge {
    align-self: start;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    justify-self: start;
    padding: 8px 12px;
}

.opb-comment-badge.is-yes {
    background: #fff1eb;
    color: var(--opb-peach-dark);
}

.opb-comment-badge.is-no {
    background: #151515;
}

.opb-comment-badge.is-never {
    background: #4b5563;
}

.opb-comment-meta {
    align-items: center;
    display: inline-grid;
    direction: rtl;
    gap: 12px;
    grid-column: 2;
    grid-template-columns: auto auto;
    justify-self: end;
}

.opb-comment-meta h3 {
    color: #050505;
    font-size: 17px;
    font-weight: 800;
    margin: 0 0 4px;
}

.opb-comment-meta time {
    color: #8f96a1;
    font-size: 13px;
}

.opb-comment-body {
    background:
        radial-gradient(circle at 22% 66%, rgba(195, 201, 221, 0.34) 0 4px, transparent 5px),
        radial-gradient(circle at 48% 50%, rgba(193, 239, 247, 0.46) 0 4px, transparent 5px),
        #e9ebf1;
    border-radius: 14px;
    color: #252a32;
    font-size: 16px;
    grid-column: 1 / -1;
    line-height: 2;
    padding: 18px 20px;
    text-align: right;
    direction: rtl;
}

.opb-comments-more {
    background: #e6e8ee;
    border: 0;
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 16px;
    font-weight: 900;
    margin: 72px auto 0;
    min-width: 216px;
    padding: 20px 28px;
}

.opb-shop .opb-comments {
    clear: both;
    direction: rtl;
    width: min(100%, 860px);
}

.opb-shop .opb-comment-form {
    background:
        radial-gradient(circle at 18% 18%, rgba(195, 201, 221, 0.36) 0 4px, transparent 5px),
        radial-gradient(circle at 45% 70%, rgba(193, 239, 247, 0.48) 0 4px, transparent 5px),
        #e9ebf1 !important;
    border: 0 !important;
    border-radius: 28px !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    display: grid !important;
    gap: 18px !important;
    margin: 0 auto 72px !important;
    max-width: 795px !important;
    padding: 26px !important;
    width: 100% !important;
}

.opb-shop .opb-comment-author {
    align-items: center !important;
    display: grid !important;
    gap: 14px !important;
    grid-template-columns: auto 1fr !important;
}

.opb-shop .opb-comment-fields {
    display: grid !important;
    gap: 12px !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: 100% !important;
}

.opb-shop .opb-comment-fields input,
.opb-shop .opb-comment-form textarea {
    appearance: none !important;
    background: #fff !important;
    border: 0 !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    color: #4b5563 !important;
    direction: rtl !important;
    display: block !important;
    font: inherit !important;
    margin: 0 !important;
    max-width: none !important;
    outline: 0 !important;
    padding: 16px 18px !important;
    text-align: right !important;
    width: 100% !important;
}

.opb-shop .opb-comment-form textarea {
    min-height: 120px !important;
    resize: vertical;
}

.opb-shop .opb-recommend {
    align-items: center !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    justify-content: flex-end !important;
    margin: 0 !important;
}

.opb-shop .opb-recommend span {
    color: #59616d !important;
    margin: 0 0 0 12px !important;
}

.opb-shop .opb-recommend label {
    align-items: center !important;
    background: #151515 !important;
    border: 0 !important;
    border-radius: 12px !important;
    color: #fff !important;
    cursor: pointer !important;
    display: inline-flex !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    gap: 6px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 9px 12px !important;
    width: auto !important;
}

.opb-shop .opb-recommend label:first-of-type {
    background: var(--opb-peach) !important;
}

.opb-shop .opb-recommend label:last-of-type {
    background: #4b5563 !important;
}

.opb-shop .opb-recommend input {
    accent-color: #fff;
    height: 13px !important;
    margin: 0 !important;
    width: 13px !important;
}

.opb-shop .opb-comment-submit {
    align-items: center !important;
    background: var(--opb-peach-dark) !important;
    border: 0 !important;
    border-radius: 16px !important;
    box-shadow: none !important;
    color: #fff !important;
    cursor: pointer !important;
    display: inline-flex !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    justify-content: center !important;
    justify-self: end !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    min-height: 50px !important;
    min-width: 112px !important;
    padding: 14px 24px !important;
    text-decoration: none !important;
    width: auto !important;
}

.opb-shop .opb-comment-list {
    margin: 0 auto !important;
    max-width: 770px !important;
}

.opb-shop .opb-comment {
    direction: ltr !important;
    grid-template-columns: 1fr auto !important;
}

.opb-shop .opb-comment-badge {
    grid-column: 1 !important;
    justify-self: start !important;
}

.opb-shop .opb-comment-meta {
    direction: rtl !important;
    grid-column: 2 !important;
    justify-self: end !important;
}

.opb-shop .opb-comment-body {
    direction: rtl !important;
    grid-column: 1 / -1 !important;
    min-height: 60px;
}

@media (max-width: 980px) {
    .opb-grid-products {
        grid-template-columns: repeat(2, minmax(160px, 1fr));
    }

    .opb-order-area {
        grid-template-columns: 1fr;
    }

    .opb-feature-grid {
        grid-template-columns: 1fr;
    }

    .opb-support {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .opb-comment-fields {
        grid-template-columns: 1fr;
    }

    .opb-shop .opb-comment-fields {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 640px) {
    .opb-shop {
        overflow-x: hidden;
        width: 100%;
    }

    .opb-tabs {
        margin-bottom: 72px;
        overflow-x: auto;
        width: 100%;
    }

    .opb-grid-products {
        gap: 72px 14px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .opb-product-button {
        border-radius: 20px;
        min-height: 164px;
        padding: 0 12px 18px;
    }

    .opb-product-button::before {
        height: 52px;
        top: -52px;
        width: 104px;
    }

    .opb-image-arch {
        height: 82px;
        margin-top: -40px;
        width: 82px;
    }

    .opb-image-arch img {
        border-radius: 18px;
    }

    .opb-product-title {
        font-size: 14px;
        line-height: 1.6;
        margin: 12px 0 12px;
        min-height: 44px;
    }

    .opb-card-actions {
        flex-wrap: wrap;
        justify-content: center;
    }

    .opb-buy {
        border-radius: 16px;
        font-size: 13px;
        min-width: 72px;
        padding: 8px 12px;
    }

    .opb-view-product {
        min-width: 96px;
    }

    .opb-price {
        font-size: 13px;
        min-height: 30px;
    }

    .opb-order-area {
        justify-items: center;
        margin: 56px 0 0;
        max-width: 100%;
        padding: 56px 16px;
        width: 100%;
    }

    .opb-notice,
    .opb-form,
    .opb-selected-card,
    .opb-field-grid,
    .opb-submit-row {
        max-width: 350px;
        width: 100%;
    }

    .opb-selected,
    .opb-field-grid,
    .opb-submit-row {
        grid-template-columns: 1fr;
    }

    .opb-selected {
        justify-items: center;
        min-height: 254px;
        padding: 28px 20px;
        text-align: center;
    }

    .opb-selected::before {
        left: 50%;
        right: auto;
        top: 18px;
        transform: translateX(-50%);
    }

    .opb-selected::after {
        left: 50%;
        right: auto;
        top: 46px;
        transform: translateX(-50%) rotate(-13deg);
        white-space: nowrap;
    }

    .opb-selected-copy,
    .opb-selected-meta,
    .opb-selected-image {
        min-width: 0;
        width: 100%;
    }

    .opb-selected-image {
        display: flex;
        justify-content: center;
        order: 3;
    }

    .opb-selected-copy {
        order: 1;
    }

    .opb-selected-meta {
        order: 2;
    }

    .opb-qty {
        margin: 12px auto 0;
    }

    .opb-payable {
        justify-items: center;
        text-align: center;
    }

    .opb-submit-row {
        justify-items: center;
        display: grid;
        gap: 20px;
    }

    .opb-submit {
        justify-content: center;
        width: 100%;
    }

    .opb-about {
        border-radius: 18px;
        margin-top: 56px;
        padding: 34px 20px;
    }

    .opb-about-head {
        display: grid;
        gap: 12px;
    }

    .opb-about-head h2 {
        font-size: 22px;
    }

    .opb-about-intro,
    .opb-about-content p {
        font-size: 14px;
    }

    .opb-feature-grid {
        margin-top: 92px;
    }

    .opb-feature-card {
        text-align: center;
    }

    .opb-support {
        margin-top: 48px;
        padding: 24px 18px;
    }

    .opb-comments {
        margin-top: 56px;
    }

    .opb-comment-form {
        border-radius: 18px;
        padding: 18px;
    }

    .opb-comment-author,
    .opb-comment {
        grid-template-columns: 1fr;
    }

    .opb-shop .opb-comment-author {
        grid-template-columns: 1fr !important;
    }

    .opb-comment-author {
        justify-items: center;
    }

    .opb-recommend {
        justify-content: center;
    }

    .opb-comment-submit {
        justify-self: stretch;
    }

    .opb-shop .opb-comment-submit {
        justify-self: stretch !important;
        width: 100% !important;
    }

    .opb-comment {
        gap: 12px;
    }

    .opb-comment-badge,
    .opb-comment-meta {
        grid-column: auto;
        justify-self: center;
    }

    .opb-comment-body {
        grid-column: auto;
        text-align: center;
    }
}
