:root {
    --page: #ffffff;
    --ink: #151515;
    --muted: #626262;
    --line: #d9d9d9;
    --soft: #f4f4f2;
    --card: #e4e4e4;
    --accent: #f7ca00;
    --green: #44b87b;
    --red: #e81717;
    --max: 1400px;
    --radius: 8px;
    --product-radius: 14px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { background: var(--page); color: var(--ink); }
body { margin: 0; color: var(--ink); background: var(--page); font-size: 16px; line-height: 1.5; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; }
img { display: block; max-width: 100%; height: auto; }
button, input, select { font: inherit; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }

.announcement-bar { background: #111; color: #fff; font-size: 13px; }
.announcement-bar__inner { display: flex; justify-content: center; gap: 28px; padding: 8px 0; text-align: center; }
.site-header { position: sticky; top: 0; z-index: 30; background: #fff; border-bottom: 1px solid var(--line); }
.site-header__main { display: grid; grid-template-columns: auto 1fr auto; align-items: center; min-height: 76px; gap: 28px; }
.site-logo { font-weight: 900; font-size: 28px; letter-spacing: 0; }
.site-nav { display: flex; align-items: center; justify-content: center; gap: 24px; font-size: 14px; font-weight: 700; }
.site-actions { display: flex; gap: 10px; }
.icon-link { width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; background: #fff; }
.icon-link svg { width: 22px; height: 22px; fill: currentColor; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 24px; border-radius: 7px; border: 1px solid #111; background: #111; color: #fff; font-weight: 800; cursor: pointer; text-decoration: none; }
.button:hover { text-decoration: none; background: #333; }
.button--ghost { background: #fff; color: #111; }
.button--small { min-height: 40px; padding: 0 18px; font-size: 14px; }
.button--full { width: 100%; }

.home-hero { background: var(--soft); border-bottom: 1px solid var(--line); }
.home-hero__inner { min-height: 540px; display: grid; grid-template-columns: minmax(280px, 0.88fr) minmax(420px, 1.12fr); gap: 48px; align-items: center; padding: 56px 0; }
.home-hero h1 { margin: 0; font-size: clamp(54px, 8vw, 112px); line-height: 0.92; letter-spacing: 0; }
.eyebrow { margin: 0 0 10px; font-size: 12px; font-weight: 900; letter-spacing: 0; text-transform: uppercase; color: var(--red); }
.home-hero__text { max-width: 560px; margin: 22px 0 28px; color: #333; font-size: 19px; }
.home-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.home-hero__media { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.home-hero__media img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: var(--product-radius); background: var(--card); }
.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-strip__inner { display: flex; justify-content: center; gap: 28px; padding: 15px 0; font-size: 14px; }
.section-block { padding: 64px 0 76px; }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 24px; }
.section-heading h2 { margin: 0; font-size: clamp(30px, 4vw, 54px); line-height: 1; letter-spacing: 0; }
.product-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }
.product-card { min-width: 0; }
.product-card__media { display: block; aspect-ratio: 1; background: var(--card); border-radius: var(--product-radius); overflow: hidden; }
.product-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .18s ease; }
.product-card:hover .product-card__media img { transform: scale(1.035); }
.product-card__body { padding: 14px 2px 0; }
.product-card h3 { margin: 0 0 6px; font-size: 17px; line-height: 1.2; }
.product-card__price { margin: 8px 0 14px; font-weight: 900; }
.rating-line { margin: 0; font-size: 13px; color: var(--muted); }
.rating-line span, .review-card__stars, .rating-pill span:first-child { color: var(--accent); letter-spacing: 0; }

.product-page { display: grid; grid-template-columns: minmax(420px, 0.95fr) minmax(360px, 1.05fr); gap: 54px; padding: 38px 0 54px; align-items: start; }
.product-gallery { position: sticky; top: 112px; min-width: 0; }
.product-gallery__main { border-radius: 16px; overflow: hidden; background: var(--card); }
.product-gallery__main img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-gallery__thumbs { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; margin-top: 12px; }
.gallery-thumb { aspect-ratio: 1; padding: 0; border: 1px solid transparent; border-radius: 8px; overflow: hidden; background: var(--card); cursor: pointer; }
.gallery-thumb.is-active { border-color: #111; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-summary { min-width: 0; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; color: var(--muted); font-size: 13px; }
.product-summary h1 { margin: 0 0 12px; font-size: clamp(40px, 5vw, 70px); line-height: .96; letter-spacing: 0; }
.rating-pill { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; font-size: 14px; }
.price-block { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin: 8px 0 14px; }
.price-block__amount { font-size: 24px; font-weight: 900; }
.price-block span:not(.price-block__amount) { color: var(--muted); font-weight: 700; }
.product-description { margin: 16px 0 20px; max-width: 760px; }
.rte p { margin: 0 0 14px; }
.rte ul, .rte ol { padding-left: 22px; }
.rte a { text-decoration: underline; }
.buy-more-save { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; padding: 14px 0; border-top: 1px solid #b9b9b9; border-bottom: 1px solid #b9b9b9; margin: 18px 0 22px; font-size: 14px; }
.buy-more-save > div:not(:last-child)::after { content: ""; display: inline-block; width: 1px; height: 22px; background: lightgray; margin-left: 12px; vertical-align: middle; }
.buy-more-save em { color: #058c57; font-style: normal; }

.upload-tabs { border: 1px solid #d6e4dc; border-radius: 14px; background: #fff; box-shadow: 0 5px 15px rgb(0 0 0 / 8%); overflow: hidden; margin-bottom: 22px; }
.upload-tabs__header { padding: 14px 16px 0; }
.upload-tabs__header h2 { margin: 0 0 12px; font-size: 18px; }
.upload-tabs__nav { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); border: 1px solid #e5e7eb; border-radius: 10px; overflow: hidden; }
.upload-tabs__tab { min-height: 40px; border: 0; border-right: 1px solid #e5e7eb; background: #f7f7f7; font-weight: 800; cursor: pointer; }
.upload-tabs__tab:last-child { border-right: 0; }
.upload-tabs__tab.is-active { background: #111; color: #fff; }
.upload-tabs__body { padding: 14px 16px 16px; }
.upload-dropzone { min-height: 180px; border: 1.5px dashed var(--green); border-radius: 14px; background: #f7fffa; display: grid; place-items: center; text-align: center; padding: 20px; cursor: default; }
.upload-dropzone__icon { width: 48px; height: 48px; border-radius: 50%; display: grid; place-items: center; background: #e6f6ee; color: #15803d; }
.upload-dropzone__icon svg { width: 26px; height: 26px; fill: currentColor; }
.upload-dropzone strong { font-size: 18px; }
.upload-dropzone span:not(.upload-dropzone__icon) { color: var(--muted); }
.upload-dropzone em { display: inline-flex; align-items: center; justify-content: center; min-height: 38px; padding: 0 24px; border-radius: 8px; background: #111; color: #fff; font-style: normal; font-weight: 800; }
.upload-dropzone input { width: 1px; height: 1px; opacity: 0; position: absolute; pointer-events: none; }
.upload-helper, .upload-recommendation { margin: 10px 0 0; color: var(--muted); font-size: 13px; text-align: center; }
.upload-helper a { color: var(--green); font-weight: 800; }

.product-form { display: grid; gap: 18px; }
.option-group { margin: 0; padding: 0; border: 0; }
.option-group legend, .variant-select span, .quantity-control span { display: block; margin-bottom: 9px; font-size: 14px; font-weight: 900; }
.option-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.option-grid input { position: absolute; opacity: 0; pointer-events: none; }
.option-grid label { min-width: 58px; min-height: 42px; padding: 9px 13px; border: 1px solid #cfcfcf; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; font-weight: 800; cursor: pointer; }
.option-grid input:checked + label { background: #111; border-color: #111; color: #fff; }
.variant-select select, .quantity-control input { width: 100%; min-height: 46px; border: 1px solid #cfcfcf; border-radius: 7px; padding: 0 12px; background: #fff; }

.accordion-section { padding: 0 0 36px; }
.accordion-section details { border-top: 1px solid var(--line); }
.accordion-section details:last-child { border-bottom: 1px solid var(--line); }
.accordion-section summary { cursor: pointer; list-style: none; padding: 20px 0; font-size: 18px; font-weight: 900; }
.accordion-section summary::-webkit-details-marker { display: none; }
.accordion-section summary::after { content: "+"; float: right; font-weight: 500; }
.accordion-section details[open] summary::after { content: "-"; }
.accordion-section .rte { padding-bottom: 18px; color: #333; }
.reviews-section { padding: 34px 0 76px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.review-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 20px; background: #fff; }
.review-card h3 { margin: 4px 0 8px; font-size: 18px; }
.review-card p { margin: 0 0 12px; }
.review-card footer { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 13px; }
.review-card footer strong { color: var(--green); }
.review-card__media { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: 14px 0; }
.review-card__media img, .review-card__media video { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 7px; background: var(--card); }
.review-card__media video { background: #111; }
.placeholder-page { min-height: 420px; padding: 72px 0; }
.placeholder-page h1 { margin: 0 0 14px; font-size: clamp(42px, 6vw, 76px); line-height: 1; }
.placeholder-page p { max-width: 560px; color: var(--muted); }

.site-footer { background: #111; color: #fff; }
.site-footer__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 34px 42px; padding: 54px 0 38px; }
.site-footer h2 { margin: 0 0 14px; font-size: 15px; }
.site-footer a, .site-footer p { display: block; color: #e9e9e9; font-size: 14px; margin: 0 0 8px; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 16px; padding: 18px 0 28px; border-top: 1px solid #333; color: #e9e9e9; font-size: 13px; }

@media (max-width: 1180px) {
    .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .product-page { grid-template-columns: 1fr; }
    .product-gallery { position: static; }
    .site-footer__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    .announcement-bar__inner, .trust-strip__inner { flex-direction: column; gap: 4px; }
    .site-header__main { grid-template-columns: 1fr auto; min-height: auto; padding-top: 14px; padding-bottom: 14px; }
    .site-nav { grid-column: 1 / -1; order: 3; justify-content: flex-start; overflow-x: auto; padding-bottom: 2px; gap: 18px; }
    .home-hero__inner { min-height: 0; grid-template-columns: 1fr; padding: 34px 0; }
    .home-hero__media { order: -1; }
    .product-grid, .reviews-grid, .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .product-gallery__thumbs { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .container { width: min(calc(100% - 24px), var(--max)); }
    .site-logo { font-size: 24px; }
    .product-grid, .reviews-grid, .site-footer__grid { grid-template-columns: 1fr; }
    .home-hero__media { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
    .product-page { padding-top: 12px; gap: 24px; }
    .product-summary h1 { font-size: 38px; }
    .buy-more-save { display: block; }
    .buy-more-save > div { padding: 10px 0; border-bottom: 1px solid #e8e8e8; }
    .buy-more-save > div:last-child { border-bottom: 0; }
    .buy-more-save > div::after { display: none !important; }
    .upload-tabs__nav { grid-template-columns: 1fr; }
    .upload-tabs__tab { border-right: 0; border-bottom: 1px solid #e5e7eb; }
    .upload-tabs__tab:last-child { border-bottom: 0; }
    .site-footer__bottom { flex-direction: column; }
}

.collection-hero { background: var(--soft); border-bottom: 1px solid var(--line); }
.collection-hero__inner { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.55fr); gap: 42px; align-items: center; padding: 42px 0 48px; }
.collection-hero__copy { min-width: 0; }
.collection-hero h1 { margin: 0; font-size: clamp(44px, 6vw, 82px); line-height: .96; letter-spacing: 0; }
.collection-hero__description { max-width: 780px; margin-top: 18px; color: #333; font-size: 17px; }
.collection-hero__media { border-radius: var(--product-radius); overflow: hidden; background: var(--card); }
.collection-hero__media img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.collection-products { padding: 34px 0 76px; }
.collection-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 24px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: 14px; font-weight: 800; }
.collection-toolbar__actions { display: flex; gap: 10px; }
.collection-toolbar__actions span { min-height: 36px; display: inline-flex; align-items: center; padding: 0 14px; border: 1px solid var(--line); border-radius: 7px; background: #fff; color: var(--ink); }
.empty-collection { min-height: 240px; display: grid; align-content: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); }
.empty-collection h2 { margin: 0 0 8px; color: var(--ink); font-size: 32px; }
.section-block--compact { padding-top: 8px; }
.collection-card-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 16px; }
.collection-card { display: grid; min-width: 0; color: var(--ink); text-decoration: none; }
.collection-card:hover { text-decoration: none; }
.collection-card__media { display: block; aspect-ratio: 1; border-radius: var(--product-radius); overflow: hidden; background: var(--card); }
.collection-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .18s ease; }
.collection-card:hover .collection-card__media img { transform: scale(1.035); }
.collection-card__body { display: grid; gap: 4px; padding: 12px 2px 0; }
.collection-card__body strong { font-size: 16px; line-height: 1.2; }
.collection-card__body em { color: var(--muted); font-size: 13px; font-style: normal; }

@media (max-width: 1180px) {
    .collection-card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 860px) {
    .collection-hero__inner { grid-template-columns: 1fr; padding: 28px 0 34px; }
    .collection-hero__media { order: -1; }
    .collection-toolbar { align-items: flex-start; flex-direction: column; }
    .collection-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .collection-card-grid { grid-template-columns: 1fr; }
    .collection-toolbar__actions { width: 100%; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .collection-toolbar__actions span { justify-content: center; }
}

/* Phase 9 content pages */
.content-hero { background: var(--soft); border-bottom: 1px solid var(--line); }
.content-hero__inner { padding: 34px 0 28px; }
.content-hero h1, .blog-article__header h1 { margin: 0; font-size: clamp(42px, 6vw, 78px); line-height: .96; letter-spacing: 0; }
.content-page { padding: 38px 0 76px; }
.content-page__body, .blog-article__body { max-width: 980px; margin: 0 auto; color: #262626; }
.content-page__body > :first-child, .blog-article__body > :first-child { margin-top: 0; }
.content-page__body h1, .content-page__body h2, .content-page__body h3,
.blog-article__body h2, .blog-article__body h3 { line-height: 1.08; letter-spacing: 0; color: var(--ink); }
.content-page__body h1 { font-size: clamp(38px, 5vw, 68px); }
.content-page__body h2, .blog-article__body h2 { margin: 34px 0 14px; font-size: clamp(28px, 3.4vw, 44px); }
.content-page__body h3, .blog-article__body h3 { margin: 26px 0 10px; font-size: 23px; }
.content-page__body p, .content-page__body li, .blog-article__body p, .blog-article__body li { font-size: 17px; }
.content-page__body img, .blog-article__body img { border-radius: var(--radius); margin: 20px auto; }
.content-page__body video, .blog-article__body video { width: 100%; max-width: 920px; border-radius: var(--radius); margin: 20px auto; background: #111; }
.content-page__body table, .blog-article__body table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.content-page__body td, .content-page__body th, .blog-article__body td, .blog-article__body th { border: 1px solid var(--line); padding: 14px; vertical-align: top; }
.content-page__body .button, .blog-article__body .button { margin-top: 8px; }
.image-with-text-template--26604371935551__ss_video_with_text_6FFexk__grid-template--26604371935551__ss_video_with_text_6FFexk { display: grid; grid-template-columns: minmax(260px, .9fr) minmax(280px, 1.1fr); gap: 34px; align-items: center; margin: 18px 0 34px; }
.image-with-text-template--26604371935551__ss_video_with_text_6FFexk__media { overflow: hidden; border-radius: var(--product-radius); background: var(--card); }
.image-with-text-template--26604371935551__ss_video_with_text_6FFexk__heading { font-size: clamp(30px, 4vw, 54px); font-weight: 900; line-height: 1; margin: 0 0 18px; }
.card.rich-text { margin: 24px 0; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: #fafafa; }
.faqPlusAppFaqCategory { margin: 34px 0 12px; font-size: 28px; }
.faqPlusAppFaq { border: 1px solid var(--line); border-radius: var(--radius); margin: 0 0 10px; overflow: hidden; background: #fff; }
.faqPlusAppToggle { position: absolute; opacity: 0; pointer-events: none; }
.faqPlusAppTitle { display: block; padding: 16px 48px 16px 18px; background: #133337; color: #fff; font-weight: 900; cursor: pointer; position: relative; }
.faqPlusAppTitle::after { content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); font-size: 22px; }
.faqPlusAppToggle:checked + .faqPlusAppTitle::after { content: "-"; }
.faqPlusAppContent { max-height: 0; overflow: hidden; background: #eeeeee; }
.faqPlusAppToggle:checked + .faqPlusAppTitle + .faqPlusAppContent { max-height: none; }
.faqPlusAppAnswer { padding: 18px; }
#easy-faq-app-top-section { min-height: 260px; display: grid; align-content: center; border-radius: var(--product-radius); overflow: hidden; background-size: cover; background-position: center; margin-bottom: 28px; }
#easy-faq-app-header { color: #fff; text-align: center; }
.easy-faq-contact-details { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; color: #fff; }
.easy-faq-double-detail-box { display: flex; align-items: center; gap: 10px; }
.easy-faq-double-detail-box img { width: 34px; margin: 0; }
.blog-article__header { padding: 36px 0 22px; }
.blog-article__meta { display: flex; gap: 12px; flex-wrap: wrap; color: var(--muted); font-size: 14px; font-weight: 800; margin-top: 16px; }
.blog-article__featured { margin-top: 0; margin-bottom: 34px; }
.blog-article__featured img { width: 100%; max-height: 720px; object-fit: cover; border-radius: var(--product-radius); background: var(--card); }
.blog-article__body { padding-bottom: 76px; }
.blog-index { padding: 38px 0 76px; }
.blog-card-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.blog-card__media { display: block; aspect-ratio: 1.25; border-radius: var(--product-radius); overflow: hidden; background: var(--card); }
.blog-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .18s ease; }
.blog-card:hover .blog-card__media img { transform: scale(1.035); }
.blog-card__body { padding: 14px 2px 0; }
.blog-card__body h2 { margin: 0 0 8px; font-size: 22px; line-height: 1.15; }
.blog-card__body time { color: var(--muted); font-size: 13px; font-weight: 800; }
.blog-card__body p { color: var(--muted); }

@media (max-width: 860px) {
    .image-with-text-template--26604371935551__ss_video_with_text_6FFexk__grid-template--26604371935551__ss_video_with_text_6FFexk { grid-template-columns: 1fr; }
    .blog-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
    .content-hero__inner, .blog-article__header { padding-top: 24px; }
    .card.rich-text { padding: 18px; }
    .blog-card-grid { grid-template-columns: 1fr; }
}
/* Phase 10 cart and artwork upload */
.icon-link { position: relative; }
.cart-count { position: absolute; top: -5px; right: -5px; min-width: 18px; height: 18px; display: inline-grid; place-items: center; border-radius: 999px; background: var(--red); color: #fff; font-size: 11px; font-weight: 900; line-height: 1; }
.form-alert { border-radius: var(--radius); padding: 13px 15px; margin: 16px 0; font-weight: 800; }
.form-alert--success { background: #e9f8f0; color: #12633d; border: 1px solid #b7e6cc; }
.form-alert--error { background: #fff0f0; color: #9b1111; border: 1px solid #f2bbbb; }
.upload-selected { margin: 10px 0 0; text-align: center; font-size: 13px; font-weight: 900; color: #12633d; }
.cart-page { padding: 38px 0 76px; }
.cart-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.cart-heading h1 { margin: 0; font-size: clamp(44px, 6vw, 82px); line-height: .96; letter-spacing: 0; }
.cart-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 28px; align-items: start; }
.cart-lines { display: grid; gap: 14px; }
.cart-line { display: grid; grid-template-columns: 138px minmax(0, 1fr) minmax(240px, .35fr); gap: 18px; padding: 16px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.cart-line__media { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: var(--card); }
.cart-line__media img { width: 100%; height: 100%; object-fit: cover; }
.cart-line__details h2 { margin: 0 0 6px; font-size: 22px; line-height: 1.15; letter-spacing: 0; }
.cart-line__variant { margin: 0 0 10px; color: var(--muted); font-weight: 800; }
.cart-options { display: grid; gap: 5px; margin: 10px 0; }
.cart-options div { display: flex; gap: 8px; flex-wrap: wrap; }
.cart-options dt { margin: 0; font-weight: 900; }
.cart-options dd { margin: 0; color: var(--muted); }
.cart-artwork { display: grid; gap: 4px; margin-top: 12px; font-size: 14px; }
.cart-artwork strong { font-size: 13px; text-transform: uppercase; }
.cart-artwork span { color: var(--muted); }
.cart-artwork em { color: var(--green); font-style: normal; font-weight: 900; }
.cart-line__controls { display: grid; gap: 14px; justify-items: end; align-content: start; }
.cart-line__price { display: grid; gap: 2px; text-align: right; }
.cart-line__price span { color: var(--muted); font-size: 14px; }
.cart-line__price strong { font-size: 18px; }
.cart-quantity { display: grid; grid-template-columns: 1fr auto; gap: 8px; align-items: end; }
.cart-quantity label span { display: block; margin-bottom: 6px; font-size: 12px; font-weight: 900; }
.cart-quantity input { width: 96px; min-height: 40px; border: 1px solid #cfcfcf; border-radius: 7px; padding: 0 10px; }
.cart-remove { border: 0; background: none; padding: 0; color: var(--red); font-weight: 900; cursor: pointer; text-decoration: underline; }
.cart-summary { position: sticky; top: 112px; display: grid; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.cart-summary h2 { margin: 0; font-size: 22px; }
.cart-summary__row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-top: 1px solid var(--line); }
.empty-cart { min-height: 300px; display: grid; align-content: center; justify-items: start; gap: 10px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.empty-cart h2 { margin: 0; font-size: 34px; }
.empty-cart p { margin: 0 0 8px; color: var(--muted); }

@media (max-width: 980px) {
    .cart-layout { grid-template-columns: 1fr; }
    .cart-summary { position: static; }
    .cart-line { grid-template-columns: 112px minmax(0, 1fr); }
    .cart-line__controls { grid-column: 1 / -1; justify-items: start; }
    .cart-line__price { text-align: left; }
}

@media (max-width: 620px) {
    .cart-heading { align-items: flex-start; flex-direction: column; }
    .cart-line { grid-template-columns: 88px minmax(0, 1fr); padding: 12px; }
    .cart-quantity { grid-template-columns: 1fr; }
}
/* Phase 11 checkout and orders */
.checkout-page, .confirmation-page { padding: 38px 0 76px; }
.checkout-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.checkout-heading h1, .confirmation-hero h1 { margin: 0; font-size: clamp(44px, 6vw, 82px); line-height: .96; letter-spacing: 0; }
.manual-payment-note { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; border: 1px solid #b7e6cc; border-radius: var(--radius); padding: 14px 16px; margin: 0 0 22px; background: #e9f8f0; color: #12633d; }
.manual-payment-note strong { font-weight: 900; }
.checkout-layout { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 28px; align-items: start; }
.checkout-form { display: grid; gap: 18px; }
.checkout-panel, .checkout-summary { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 20px; }
.checkout-panel h2, .checkout-summary h2 { margin: 0 0 16px; font-size: 22px; line-height: 1.15; }
.checkout-fields { display: grid; gap: 14px; margin-bottom: 14px; }
.checkout-fields--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.checkout-fields--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.field { display: grid; gap: 7px; }
.field span { font-size: 13px; font-weight: 900; }
.field input, .field textarea, .field select { width: 100%; min-height: 46px; border: 1px solid #cfcfcf; border-radius: 7px; padding: 10px 12px; background: #fff; color: var(--ink); }
.field select { appearance: auto; }
.field textarea { resize: vertical; line-height: 1.45; }
.field em { color: var(--red); font-size: 13px; font-style: normal; font-weight: 800; }
.field--error input, .field--error textarea { border-color: var(--red); box-shadow: 0 0 0 2px rgb(232 23 23 / 10%); }
.checkout-summary { position: sticky; top: 112px; display: grid; gap: 14px; }
.checkout-summary__items { display: grid; gap: 14px; }
.checkout-summary-item { display: grid; grid-template-columns: 78px minmax(0, 1fr) auto; gap: 12px; align-items: start; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.checkout-summary-item__media, .order-item__media { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: var(--card); }
.checkout-summary-item__media img, .order-item__media img { width: 100%; height: 100%; object-fit: cover; }
.checkout-summary-item h3, .order-item h3 { margin: 0 0 5px; font-size: 16px; line-height: 1.18; }
.checkout-summary-item p, .summary-artwork { margin: 0 0 5px; color: var(--muted); font-size: 13px; }
.checkout-summary-item > strong, .order-item > strong { white-space: nowrap; font-size: 14px; }
.summary-options { display: grid; gap: 3px; margin: 5px 0; font-size: 13px; color: var(--muted); }
.summary-options div { display: flex; gap: 5px; flex-wrap: wrap; }
.summary-options dt { margin: 0; font-weight: 900; color: var(--ink); }
.summary-options dd { margin: 0; }
.checkout-note { margin: -4px 0 0; color: var(--muted); font-size: 13px; text-align: center; }
.confirmation-hero { max-width: 900px; padding: 18px 0 32px; }
.confirmation-hero p:last-child { max-width: 760px; font-size: 18px; color: #333; }
.order-items { display: grid; gap: 14px; }
.order-item { display: grid; grid-template-columns: 108px minmax(0, 1fr) auto; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.order-item:first-child { padding-top: 0; }
.order-item:last-child { border-bottom: 0; padding-bottom: 0; }

@media (max-width: 980px) {
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
}

@media (max-width: 700px) {
    .checkout-heading { align-items: flex-start; flex-direction: column; }
    .checkout-fields--two, .checkout-fields--three { grid-template-columns: 1fr; }
    .checkout-summary-item, .order-item { grid-template-columns: 76px minmax(0, 1fr); }
    .checkout-summary-item > strong, .order-item > strong { grid-column: 2; }
}
/* Phase 12 admin orders */
.admin-page { padding: 38px 0 76px; }
.admin-login-page { min-height: 620px; display: grid; place-items: center; }
.admin-login-panel { width: min(100%, 460px); border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 28px; }
.admin-login-panel h1, .admin-topbar h1 { margin: 0; font-size: clamp(34px, 5vw, 62px); line-height: .96; letter-spacing: 0; }
.admin-muted { color: var(--muted); }
.admin-form { display: grid; gap: 16px; margin-top: 20px; }
.admin-topbar { display: flex; align-items: end; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.admin-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
.admin-nav a { min-height: 38px; display: inline-flex; align-items: center; padding: 0 14px; border: 1px solid var(--line); border-radius: 7px; font-weight: 900; background: #fff; text-decoration: none; }
.admin-nav a[aria-current="page"] { background: #111; border-color: #111; color: #fff; }
.admin-stats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-bottom: 22px; }
.admin-stat, .admin-panel { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; padding: 20px; }
.admin-stat { display: grid; gap: 6px; }
.admin-stat span { color: var(--muted); font-size: 13px; font-weight: 900; text-transform: uppercase; }
.admin-stat strong { font-size: 34px; line-height: 1; }
.admin-panel { margin-bottom: 18px; }
.admin-panel h2 { margin: 0 0 16px; font-size: 24px; line-height: 1.15; letter-spacing: 0; }
.admin-panel h3 { margin: 18px 0 8px; font-size: 17px; }
.admin-panel__heading { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.admin-panel__heading h2 { margin: 0; }
.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.admin-table th, .admin-table td { padding: 12px 10px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-table th { font-size: 12px; text-transform: uppercase; color: var(--muted); }
.admin-table td span { color: var(--muted); font-size: 13px; }
.status-pill { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; border-radius: 999px; background: #e9f8f0; color: #12633d !important; font-size: 12px !important; font-weight: 900; white-space: nowrap; }
.admin-filters { display: grid; grid-template-columns: minmax(180px, 1fr) minmax(160px, 220px) minmax(160px, 220px) auto auto; gap: 12px; align-items: end; margin-bottom: 18px; }
.admin-detail-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 18px; align-items: start; }
.admin-definition-list { display: grid; gap: 10px; margin: 0; }
.admin-definition-list div { display: flex; justify-content: space-between; gap: 14px; border-bottom: 1px solid var(--line); padding-bottom: 10px; }
.admin-definition-list dt { font-weight: 900; }
.admin-definition-list dd { margin: 0; color: var(--muted); text-align: right; }
.admin-status-form { display: grid; grid-template-columns: minmax(180px, 260px) minmax(220px, 1fr) auto; gap: 12px; align-items: end; }
.admin-order-items { display: grid; gap: 16px; }
.admin-order-item { display: grid; grid-template-columns: 118px minmax(0, 1fr); gap: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.admin-order-item:last-child { padding-bottom: 0; border-bottom: 0; }
.admin-order-item__media { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; background: var(--card); }
.admin-order-item__media img { width: 100%; height: 100%; object-fit: cover; }
.admin-order-item h3 { margin: 0 0 6px; font-size: 21px; line-height: 1.15; }
.cart-artwork a { color: var(--ink); font-weight: 900; text-decoration: underline; }

@media (max-width: 980px) {
    .admin-stats, .admin-detail-grid, .admin-status-form { grid-template-columns: 1fr; }
    .admin-filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
    .admin-topbar, .admin-panel__heading { align-items: flex-start; flex-direction: column; }
    .admin-stats, .admin-filters { grid-template-columns: 1fr; }
    .admin-order-item { grid-template-columns: 88px minmax(0, 1fr); }
    .admin-login-panel { padding: 20px; }
}
/* Content completeness rich product sections */
.product-rich-sections { border-top: 1px solid var(--line); }
.product-rich-section { padding: 54px 0; background: #fff; }
.product-rich-section:nth-child(even), .product-rich-section--product_details, .product-rich-section--faq { background: #fafafa; }
.product-rich-section__inner { max-width: var(--max); }
.product-rich-section h2 { margin: 0 0 18px; font-size: clamp(28px, 4vw, 48px); line-height: 1.05; letter-spacing: 0; }
.product-rich-section h3 { margin: 22px 0 10px; font-size: 22px; line-height: 1.1; }
.product-rich-section p, .product-rich-section li { color: #282828; }
.product-rich-section img { border-radius: var(--product-radius); background: var(--card); }
.product-rich-section .grid, .product-rich-section [class*="image-grid"], .product-rich-section .css-slider .grid { display: grid; gap: 22px; }
.product-rich-section .grid-2, .product-rich-section [class*="image-grid"] { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; }
.product-rich-section .grid-3, .product-rich-section .css-slider .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.product-rich-section .grid__item, .product-rich-section .card, .product-rich-section toggle-tab { min-width: 0; }
.product-rich-section .card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.product-rich-section .card__image { aspect-ratio: 1; overflow: hidden; background: var(--card); }
.product-rich-section .card__image[style*="padding-top"] { padding-top: 0 !important; }
.product-rich-section .card__image figure.lazy-image { display: block; width: 100%; height: 100%; margin: 0; padding-top: 0 !important; }
.product-rich-section .card__image figure.lazy-image img { display: block; width: 100%; height: 100%; object-fit: contain; padding: 18px; }
.product-rich-section .card__image img, .product-rich-section figure img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-rich-section .gutter--regular, .product-rich-section .spacing--small { padding: 14px; }
.product-rich-section .collapsible-content__header { margin-bottom: 18px; }
.product-rich-section .accordion, .product-rich-section toggle-tab { display: block; border-top: 1px solid var(--line); background: transparent; }
.product-rich-section .accordion:last-child, .product-rich-section toggle-tab:last-child { border-bottom: 1px solid var(--line); }
.product-rich-section summary, .product-rich-section .toggle__title { display: block; padding: 18px 0; cursor: pointer; font-weight: 900; }
.product-rich-section summary::-webkit-details-marker { display: none; }
.product-rich-section .toggle__content, .product-rich-section .accordion__content { padding: 0 0 18px; }
.product-rich-section .toggle__title[role="button"] + .toggle__content { display: block; }
.product-rich-section--before_after .before-after-image-wrapper { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; overflow: visible; border-radius: var(--product-radius); }
.product-rich-section--before_after .before-after-image-wrapper > div { min-width: 0; }
.product-rich-section--before_after .before-after-image-wrapper > div[style*="clip-path"] { display: block !important; position: relative !important; inset: auto !important; clip-path: none !important; }
.product-rich-section--before_after .before-after-image-wrapper > div[style*="position: absolute"]:not([style*="clip-path"]) { display: none !important; }
.product-rich-section--before_after .before-after-image-relative { position: relative; }
.product-rich-section--before_after .before-after-image { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-rich-section--before_after .img-label { position: absolute; top: 12px; z-index: 2; display: inline-flex; padding: 4px 8px; border-radius: 4px; background: var(--green); color: #fff; font-size: 12px; font-weight: 800; }
.product-rich-section--before_after .img-label-left-box { left: 12px; }
.product-rich-section--before_after .img-label-right-box { right: 12px; }
.product-rich-section--before_after .before-after__cursor { display: none; }
.product-rich-section before-after .before-after { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; align-items: stretch; }
.product-rich-section before-after .before-after > .img { min-width: 0; overflow: hidden; border-radius: var(--product-radius); background: var(--card); }
.product-rich-section before-after figure.lazy-image { margin: 0; padding-top: 0 !important; }
.product-rich-section before-after figure.lazy-image img { width: 100%; aspect-ratio: 16 / 9; height: auto; object-fit: cover; }
.product-rich-section before-after .before-after__slider, .product-rich-section before-after .before-after--handle { display: none; }
.product-rich-section--price_calculator { background: #f6fbf8; }
.bp-price-calculator { border: 1px solid #cfe7d9; border-radius: 12px; background: #fff; padding: 22px; box-shadow: 0 8px 20px rgb(0 0 0 / 6%); }
.bp-price-calculator__header h2 { margin-bottom: 16px; font-size: clamp(26px, 3vw, 38px); }
.bp-price-calculator__inputs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.bp-price-calculator label span { display: block; margin-bottom: 7px; font-size: 13px; font-weight: 900; }
.bp-price-calculator input { width: 100%; min-height: 44px; border: 1px solid #cfcfcf; border-radius: 7px; padding: 0 12px; }
.bp-price-calculator__size-note { margin: 12px 0 18px; color: var(--muted); font-size: 13px; }
.bp-price-calculator__tiers { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; margin: 16px 0; }
.bp-price-calculator__tiers-title { padding: 12px 14px; font-weight: 900; background: #111; color: #fff; }
.bp-price-calculator__tiers-head, .bp-price-calculator__tier { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding: 10px 14px; border-top: 1px solid var(--line); }
.bp-price-calculator__tiers-head { background: #f7f7f7; font-weight: 900; }
.bp-price-calculator__price { display: flex; align-items: baseline; gap: 8px; margin: 16px 0; }
.bp-price-calculator__price span { font-size: 28px; font-weight: 900; }
.bp-price-calculator__price small { color: var(--muted); font-weight: 800; }
.bp-price-calculator__dropzone { min-height: 120px; display: grid; place-items: center; text-align: center; gap: 6px; border: 1.5px dashed var(--green); border-radius: 12px; background: #f7fffa; padding: 16px; cursor: pointer; }
.bp-price-calculator__dropzone em { display: inline-flex; align-items: center; min-height: 34px; padding: 0 18px; border-radius: 7px; background: #111; color: #fff; font-style: normal; font-weight: 800; }

@media (max-width: 860px) {
    .product-rich-section { padding: 34px 0; }
    .product-rich-section .grid-2, .product-rich-section .grid-3, .product-rich-section [class*="image-grid"], .product-rich-section .css-slider .grid, .bp-price-calculator__inputs, .product-rich-section--before_after .before-after-image-wrapper, .product-rich-section before-after .before-after { grid-template-columns: 1fr; }
}
