/* ─────────────────────────────────────────────────────────────────
   풍찬 account-shop.css — cart / checkout / myaccount / shop / single-product
   디자인 토큰: style.css :root --pc-*
   ─────────────────────────────────────────────────────────────── */

/* ───────── 공통 페이지 wrap (Botiga 부모 wrap 무시) ───────── */
body.pc-cart-page .botiga-container,
body.pc-checkout-page .botiga-container,
body.pc-account-page .botiga-container,
body.pc-thankyou-page .botiga-container,
body.pc-legal-page .botiga-container{
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 32px 24px 64px;
}

body.pc-cart-page .site-content,
body.pc-checkout-page .site-content,
body.pc-account-page .site-content,
body.pc-thankyou-page .site-content,
body.pc-legal-page .site-content{
  background: var(--pc-white);
}

/* Botiga default page title 숨김 — 풍찬 자체 헤더(.pc-cart-head 등)만 사용 */
body.pc-cart-page .page-title-wrapper,
body.pc-cart-page .entry-title,
body.pc-cart-page .page-header,
body.pc-checkout-page .page-title-wrapper,
body.pc-checkout-page .entry-title,
body.pc-checkout-page .page-header,
body.pc-account-page .page-title-wrapper,
body.pc-account-page .entry-title,
body.pc-account-page .page-header,
body.pc-thankyou-page .page-title-wrapper,
body.pc-thankyou-page .entry-title,
body.pc-thankyou-page .page-header,
body.pc-single-product .page-title-wrapper,
body.pc-single-product .entry-title:not(.pc-buy__title):not(.pc-archive__h1):not(.pc-sec__h2):not(.pc-card__title),
body.pc-single-product .page-header,
body.pc-product-archive .page-title-wrapper,
body.pc-product-archive .entry-title:not(.pc-archive__h1),
body.pc-product-archive .page-header,
body.pc-legal-page .page-title-wrapper{
  display: none !important;
}

/* WC notice 톤 */
.pc-site .woocommerce-message,
.pc-site .woocommerce-info,
.pc-site .woocommerce-error{
  background: var(--pc-cream);
  border-left: 4px solid var(--pc-primary);
  border-radius: var(--pc-r-btn);
  padding: 14px 20px;
  color: var(--pc-text-sub);
  font-size: 13px;
  margin-bottom: 16px;
}
.pc-site .woocommerce-message::before,
.pc-site .woocommerce-info::before{ color: var(--pc-primary); }
.pc-site .woocommerce-error{ border-left-color: var(--pc-error); }

/* ───────── shop archive — 4×3 pc-card 그리드 ───────── */
.pc-site.woocommerce-shop .site-content,
.pc-site.tax-product_cat .site-content,
.pc-site.tax-product_tag .site-content,
.pc-site.woocommerce.search-results .site-content{
  background: var(--pc-white);
}
.pc-site.woocommerce-shop .botiga-container,
.pc-site.tax-product_cat .botiga-container,
.pc-site.tax-product_tag .botiga-container,
.pc-site.woocommerce.search-results .botiga-container{
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 32px 24px 64px;
}

.pc-site .woocommerce ul.products{
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  margin: 0 0 32px !important;
  padding: 0 !important;
  list-style: none !important;
}
.pc-site .woocommerce ul.products li.product{
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  clear: none !important;
  background: var(--pc-white);
  border: 1px solid var(--pc-line);
  border-radius: var(--pc-r-card);
  overflow: hidden;
  transition: box-shadow 200ms, transform 200ms;
}
.pc-site .woocommerce ul.products li.product:hover{
  box-shadow: 0 6px 20px rgba(42,36,33,0.08);
  transform: translateY(-2px);
}
.pc-site .woocommerce ul.products li.product a.woocommerce-LoopProduct-link{
  display: block;
  padding: 0;
  color: var(--pc-text);
}
.pc-site .woocommerce ul.products li.product img{
  width: 100% !important;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin: 0;
}
.pc-site .woocommerce ul.products li.product .woocommerce-loop-product__title{
  padding: 12px 14px 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pc-text);
  line-height: 1.4;
  min-height: 2.8em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pc-site .woocommerce ul.products li.product .price{
  display: block;
  padding: 0 14px 16px;
  font-size: 17px;
  font-weight: 700;
  color: var(--pc-primary);
}
.pc-site .woocommerce ul.products li.product .price del{
  font-size: 12px;
  color: var(--pc-text-muted);
  margin-right: 6px;
  font-weight: 500;
}
.pc-site .woocommerce ul.products li.product .price ins{
  text-decoration: none;
  color: var(--pc-primary);
}
.pc-site .woocommerce ul.products li.product .button{
  display: none; /* shop archive 의 "장바구니에 추가" 버튼 — 카드 hover 만으로 충분 */
}
.pc-site .woocommerce ul.products li.product .onsale{
  position: absolute;
  top: 10px; left: 10px;
  background: var(--pc-primary);
  color: var(--pc-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--pc-r-btn);
  min-height: auto;
  min-width: auto;
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 900px){
  .pc-site .woocommerce ul.products{ grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
}

/* shop 헤더 - title + ordering */
.pc-site .woocommerce-products-header,
.pc-site .term-description{
  text-align: center;
  margin: 0 0 24px;
}
.pc-site .woocommerce-products-header__title{
  font-family: var(--pc-font-display);
  font-size: 28px;
  color: var(--pc-text);
}
.pc-site .woocommerce-result-count{
  float: none;
  font-size: 12px;
  color: var(--pc-text-muted);
  margin: 0 0 16px;
}
.pc-site .woocommerce-ordering{
  float: right;
  margin: 0 0 16px;
}
.pc-site .woocommerce-ordering select{
  font-size: 13px;
  padding: 8px 12px;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  color: var(--pc-text);
  background: var(--pc-white);
}

/* pagination */
.pc-site .woocommerce-pagination ul.page-numbers{
  display: flex;
  justify-content: center;
  gap: 6px;
  border: 0;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}
.pc-site .woocommerce-pagination ul.page-numbers li{
  border: 0;
  margin: 0;
}
.pc-site .woocommerce-pagination ul.page-numbers a,
.pc-site .woocommerce-pagination ul.page-numbers span{
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--pc-r-btn);
  font-size: 13px;
  font-weight: 600;
  color: var(--pc-text);
  background: var(--pc-cream);
}
.pc-site .woocommerce-pagination ul.page-numbers .current{
  background: var(--pc-primary);
  color: var(--pc-white);
}

/* ───────── single product ───────── */
.pc-site.single-product .woocommerce div.product{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 32px 24px 64px;
}
.pc-site.single-product .woocommerce div.product .images,
.pc-site.single-product .woocommerce div.product .summary{
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
.pc-site.single-product .woocommerce div.product .product_title{
  font-family: var(--pc-font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--pc-text);
  line-height: 1.3;
  margin: 0 0 16px;
}
.pc-site.single-product .woocommerce div.product .price{
  font-size: 26px;
  font-weight: 700;
  color: var(--pc-primary);
  margin: 0 0 16px;
}
.pc-site.single-product .woocommerce div.product .price del{
  font-size: 14px;
  color: var(--pc-text-muted);
  margin-right: 8px;
  font-weight: 500;
}
.pc-site.single-product .woocommerce div.product .price ins{
  text-decoration: none;
  color: var(--pc-primary);
}
.pc-site.single-product .woocommerce div.product .woocommerce-product-details__short-description{
  font-size: 14px;
  line-height: 1.7;
  color: var(--pc-text-sub);
  margin: 0 0 24px;
  padding: 16px 0;
  border-top: 1px solid var(--pc-line);
  border-bottom: 1px solid var(--pc-line);
}
.pc-site.single-product .woocommerce form.cart{
  display: block !important; /* css-traps.md §4: form.cart flex 붕괴 회피 */
  margin: 0 !important;
}
.pc-site.single-product .woocommerce form.cart .quantity{
  display: inline-flex;
  align-items: center;
  margin-right: 12px;
}
.pc-site.single-product .woocommerce form.cart .quantity input{
  width: 60px;
  height: 44px;
  text-align: center;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  font-size: 14px;
  font-weight: 600;
}
.pc-site.single-product .woocommerce form.cart .button.single_add_to_cart_button{
  background: var(--pc-primary);
  color: var(--pc-white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 32px;
  border: 0;
  border-radius: var(--pc-r-btn);
  cursor: pointer;
  letter-spacing: 0.5px;
}
.pc-site.single-product .woocommerce form.cart .button.single_add_to_cart_button:hover{
  background: var(--pc-primary-deep);
}

/* 탭 */
.pc-site.single-product .woocommerce-tabs{
  grid-column: 1 / -1;
  margin-top: 48px;
}
.pc-site.single-product .woocommerce-tabs ul.tabs{
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--pc-line);
}
.pc-site.single-product .woocommerce-tabs ul.tabs li{
  background: transparent !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border-radius: 0 !important;
}
.pc-site.single-product .woocommerce-tabs ul.tabs li::before,
.pc-site.single-product .woocommerce-tabs ul.tabs li::after{ display: none !important; }
.pc-site.single-product .woocommerce-tabs ul.tabs li a{
  display: block;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--pc-text-muted) !important;
  border: 0;
  position: relative;
}
.pc-site.single-product .woocommerce-tabs ul.tabs li.active a{
  color: var(--pc-primary) !important;
}
.pc-site.single-product .woocommerce-tabs ul.tabs li.active a::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: var(--pc-primary);
}
.pc-site.single-product .woocommerce-Tabs-panel h2{
  font-family: var(--pc-font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}
.pc-site.single-product .woocommerce-Tabs-panel{
  font-size: 14px;
  line-height: 1.7;
  color: var(--pc-text-sub);
}

@media (max-width: 900px){
  .pc-site.single-product .woocommerce div.product{ grid-template-columns: 1fr; gap: 24px; }
}

/* ───────── cart ───────── */
body.pc-cart-page .woocommerce table.shop_table{
  border: 1px solid var(--pc-line);
  border-radius: var(--pc-r-card);
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  margin-bottom: 24px;
  width: 100%;
}
body.pc-cart-page .woocommerce table.shop_table th{
  background: var(--pc-cream);
  color: var(--pc-text);
  font-size: 13px;
  font-weight: 700;
  padding: 14px 16px;
  border-bottom: 1px solid var(--pc-line);
  text-align: left;
}
body.pc-cart-page .woocommerce table.shop_table td{
  padding: 16px;
  border-top: 1px solid var(--pc-line);
  background: var(--pc-white);
  font-size: 13px;
  color: var(--pc-text);
}
body.pc-cart-page .woocommerce table.shop_table tr:first-child td{ border-top: 0; }
body.pc-cart-page .woocommerce table.cart .product-thumbnail img{
  width: 80px; height: 80px;
  object-fit: cover;
  border-radius: var(--pc-r-btn);
}
body.pc-cart-page .woocommerce table.cart .product-name a{
  color: var(--pc-text);
  font-weight: 600;
}
body.pc-cart-page .woocommerce .quantity{
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  overflow: hidden;
}
body.pc-cart-page .woocommerce .quantity input{
  width: 50px;
  height: 36px;
  text-align: center;
  border: 0;
  font-size: 13px;
}

body.pc-cart-page .cart-collaterals{ max-width: 480px; margin-left: auto; }
body.pc-cart-page .cart_totals h2{
  font-family: var(--pc-font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 12px;
}
body.pc-cart-page .cart_totals table{
  width: 100%;
  border: 1px solid var(--pc-line);
  border-radius: var(--pc-r-card);
  border-collapse: separate;
  overflow: hidden;
  margin: 0 0 16px;
}
body.pc-cart-page .cart_totals table th,
body.pc-cart-page .cart_totals table td{
  padding: 12px 16px;
  font-size: 13px;
  border-top: 1px solid var(--pc-line);
}
body.pc-cart-page .cart_totals table tr:first-child th,
body.pc-cart-page .cart_totals table tr:first-child td{ border-top: 0; }
body.pc-cart-page .cart_totals .order-total td{
  color: var(--pc-primary);
  font-size: 18px;
  font-weight: 700;
}
body.pc-cart-page .wc-proceed-to-checkout .checkout-button{
  display: block;
  width: 100%;
  background: var(--pc-primary);
  color: var(--pc-white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  text-align: center;
  border-radius: var(--pc-r-btn);
  text-decoration: none;
  letter-spacing: 0.5px;
}
body.pc-cart-page .wc-proceed-to-checkout .checkout-button:hover{ background: var(--pc-primary-deep); }

/* 비회원 결제차단 안내 배너 (mu-plugin 출력) */
.pc-site .pc-cart-login-notice{
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--pc-cream);
  border-left: 4px solid var(--pc-primary);
  border-radius: var(--pc-r-btn);
  padding: 16px 20px;
  margin: 0 0 24px;
}
.pc-site .pc-cart-login-notice__icon{ font-size: 20px; }
.pc-site .pc-cart-login-notice__msg{ flex: 1; font-size: 13px; color: var(--pc-text-sub); line-height: 1.6; }
.pc-site .pc-cart-login-notice__msg strong{ display: block; font-size: 14px; color: var(--pc-text); margin-bottom: 2px; }
.pc-site .pc-cart-login-notice__btn{
  background: var(--pc-primary);
  color: var(--pc-white);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--pc-r-btn);
  text-decoration: none;
}

/* ───────── checkout ───────── */
body.pc-checkout-page form.checkout{
  display: grid !important;
  grid-template-columns: 1fr 380px !important;
  gap: 32px !important;
}
body.pc-checkout-page #customer_details{
  width: 100% !important;
  float: none !important;
  max-width: none !important;
}
body.pc-checkout-page #customer_details .col-1,
body.pc-checkout-page #customer_details .col-2{
  width: 100% !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
}
body.pc-checkout-page #customer_details h3{
  font-family: var(--pc-font-display);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pc-line);
}
body.pc-checkout-page #customer_details .form-row{
  margin: 0 0 14px !important;
  padding: 0 !important;
}
body.pc-checkout-page #customer_details .form-row label{
  font-size: 12px;
  font-weight: 600;
  color: var(--pc-text);
  margin-bottom: 6px;
  display: block;
}
body.pc-checkout-page #customer_details .form-row input,
body.pc-checkout-page #customer_details .form-row select,
body.pc-checkout-page #customer_details .form-row textarea{
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-size: 14px;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  background: var(--pc-white);
  box-sizing: border-box;
}
body.pc-checkout-page #customer_details .form-row textarea{
  height: auto;
  padding: 12px 14px;
  min-height: 80px;
}
body.pc-checkout-page .hidden-pc-field{ display: none !important; }

/* checkout 우측 sticky */
body.pc-checkout-page #order_review_heading,
body.pc-checkout-page #order_review{
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}
body.pc-checkout-page #order_review_heading{
  font-family: var(--pc-font-display);
  font-size: 17px;
  font-weight: 700;
  margin: 0 0 16px;
}
body.pc-checkout-page .checkout-wrapper{
  margin: 0 !important;
  width: 100% !important;
}
body.pc-checkout-page #order_review{
  position: sticky;
  top: 240px;
  background: var(--pc-cream);
  border-radius: var(--pc-r-card);
  padding: 20px;
}
body.pc-checkout-page table.shop_table{ border: 0; margin: 0 0 16px; background: transparent; }
body.pc-checkout-page table.shop_table th,
body.pc-checkout-page table.shop_table td{
  padding: 10px 0;
  font-size: 13px;
  border-bottom: 1px dashed var(--pc-line);
  background: transparent !important;
}
body.pc-checkout-page table.shop_table tfoot .order-total{
  font-size: 16px;
  font-weight: 700;
  color: var(--pc-primary);
}

body.pc-checkout-page #payment{
  background: transparent;
  border-top: 1px solid var(--pc-line);
  padding-top: 16px;
}
body.pc-checkout-page #payment ul.payment_methods{
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}
body.pc-checkout-page #payment ul.payment_methods li{
  padding: 12px 0;
  border: 0;
  background: transparent;
}
body.pc-checkout-page #place_order{
  display: block;
  width: 100%;
  background: var(--pc-primary);
  color: var(--pc-white);
  font-size: 15px;
  font-weight: 700;
  padding: 16px;
  border: 0;
  border-radius: var(--pc-r-btn);
  cursor: pointer;
  letter-spacing: 0.5px;
}
body.pc-checkout-page #place_order:hover{ background: var(--pc-primary-deep); }

@media (max-width: 900px){
  body.pc-checkout-page form.checkout{ grid-template-columns: 1fr !important; }
  body.pc-checkout-page #order_review{ position: static; }
}

/* ───────── thankyou ───────── */
body.pc-thankyou-page .woocommerce-order{ max-width: 720px; margin: 0 auto; padding: 32px 24px; }
body.pc-thankyou-page .woocommerce-thankyou-order-received{
  font-family: var(--pc-font-display);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 24px;
  color: var(--pc-text);
}
body.pc-thankyou-page .woocommerce-order-overview{
  list-style: none;
  padding: 20px;
  margin: 0 0 24px;
  background: var(--pc-cream);
  border-radius: var(--pc-r-card);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
body.pc-thankyou-page .woocommerce-order-overview li{
  font-size: 13px;
  color: var(--pc-text-muted);
  border: 0;
  padding: 0;
}
body.pc-thankyou-page .woocommerce-order-overview li strong{
  display: block;
  font-size: 14px;
  color: var(--pc-text);
  margin-top: 4px;
}

/* ───────── myaccount ───────── */
body.pc-account-page .woocommerce-MyAccount-navigation{
  width: 220px;
  float: left;
}
body.pc-account-page .woocommerce-MyAccount-navigation ul{
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--pc-cream);
  border-radius: var(--pc-r-card);
  overflow: hidden;
}
body.pc-account-page .woocommerce-MyAccount-navigation ul li{
  border-top: 1px solid var(--pc-line);
}
body.pc-account-page .woocommerce-MyAccount-navigation ul li:first-child{ border-top: 0; }
body.pc-account-page .woocommerce-MyAccount-navigation ul li a{
  display: block;
  padding: 14px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pc-text);
  text-decoration: none;
}
body.pc-account-page .woocommerce-MyAccount-navigation ul li.is-active a,
body.pc-account-page .woocommerce-MyAccount-navigation ul li a:hover{
  background: var(--pc-primary);
  color: var(--pc-white);
}
body.pc-account-page .woocommerce-MyAccount-content{
  margin-left: 250px;
  padding: 0;
  background: var(--pc-white);
}
body.pc-account-page .woocommerce-MyAccount-content h2,
body.pc-account-page .woocommerce-MyAccount-content h3{
  font-family: var(--pc-font-display);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 16px;
}
body.pc-account-page .woocommerce-MyAccount-content p{
  font-size: 14px;
  line-height: 1.7;
  color: var(--pc-text-sub);
  margin: 0 0 12px;
}

/* 로그인 + 회원가입 split */
body.pc-account-page.pc-login-page .u-columns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}
body.pc-account-page.pc-login-page .u-column1,
body.pc-account-page.pc-login-page .u-column2{
  width: 100% !important;
  float: none !important;
  padding: 32px !important;
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  margin: 0 !important;
}
body.pc-account-page.pc-login-page h2{
  font-family: var(--pc-font-display);
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
  text-align: center;
}
body.pc-account-page form.woocommerce-form-login,
body.pc-account-page form.woocommerce-form-register{
  border: 0 !important;
  padding: 0 !important;
}
body.pc-account-page form .form-row{ margin: 0 0 14px; padding: 0; }
body.pc-account-page form label{
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--pc-text);
  margin-bottom: 6px;
}
body.pc-account-page form input[type="text"],
body.pc-account-page form input[type="email"],
body.pc-account-page form input[type="password"],
body.pc-account-page form input[type="tel"]{
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-size: 14px;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  background: var(--pc-white);
  box-sizing: border-box;
}
body.pc-account-page form .button{
  display: block;
  width: 100%;
  background: var(--pc-primary);
  color: var(--pc-white);
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
  border: 0;
  border-radius: var(--pc-r-btn);
  margin-top: 8px;
  cursor: pointer;
  letter-spacing: 0.5px;
}
body.pc-account-page form .button:hover{ background: var(--pc-primary-deep); }
body.pc-account-page .pc-form-row{ margin: 0 0 14px; padding: 0; }
body.pc-account-page .pc-form-row input{
  width: 100%;
  height: 44px;
  padding: 0 14px;
  font-size: 14px;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  background: var(--pc-white);
  box-sizing: border-box;
}
body.pc-account-page .lost_password a{ color: var(--pc-primary); font-size: 12px; }

@media (max-width: 768px){
  body.pc-account-page .woocommerce-MyAccount-navigation,
  body.pc-account-page .woocommerce-MyAccount-content{
    width: 100%;
    float: none;
    margin: 0 0 24px;
  }
  body.pc-account-page.pc-login-page .u-columns{ grid-template-columns: 1fr; }
}

/* ============================================================
   봄뜰 → 풍찬 포팅 (누락 룰, .bf-* → .pc-*, 봄뜰 오렌지 → 풍찬 보르도/금색)
   컬러 매핑:
     --bf-orange / --bf-orange-dark    → var(--pc-primary) / var(--pc-primary-deep)
     --bf-orange-tint / --bf-orange-soft → var(--pc-cream) / var(--pc-bg)
     --bf-charcoal                     → var(--pc-text)
     --bf-cream                        → var(--pc-cream)
     --bf-text / --bf-text-sub         → var(--pc-text) / var(--pc-text-sub)
     --bf-text-muted                   → var(--pc-text-muted)
     --bf-border / --bf-line           → var(--pc-border) / var(--pc-line)
     --bf-white                        → var(--pc-white)
     --bf-red                          → var(--pc-error)
     --bf-green-leaf / --bf-green-deep → var(--pc-leaf) / var(--pc-leaf)
     --bf-r-btn / --bf-r-card / --bf-r-pill → var(--pc-r-btn) / var(--pc-r-card) / var(--pc-r-pill)
     --bf-font-base / --bf-font-display → var(--pc-font-base) / var(--pc-font-display)
     --bf-container                    → var(--pc-container)
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   00 · 공통 래퍼 / 페이지 헤더 / 스텝 / 정보 DL / WC 폼 reset
   ────────────────────────────────────────────────────────── */

.pc-site .pc-acct-wrap,
.pc-site .pc-acct-page,
.pc-site .pc-cart-wrap,
.pc-site .pc-checkout-wrap {
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 30px 20px 70px;
  width: 100%;
}
.pc-site .pc-acct-wrap { max-width: 1080px; }

/* 페이지 공통 헤더 */
.pc-cart-head {
  text-align: center;
  margin-bottom: 30px;
}
.pc-cart-head__title {
  font-family: var(--pc-font-display);
  font-weight: 800;
  font-size: 30px;
  line-height: 1.2;
  color: var(--pc-text);
  margin: 0;
}
.pc-acct-sub {
  margin: 12px auto 0;
  max-width: 600px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--pc-text-sub);
}
.pc-acct-sub strong { color: var(--pc-primary); font-weight: 800; }
.pc-acct-hello { margin: 10px 0 0; font-size: 15px; color: var(--pc-text-sub); }
.pc-acct-hello strong { color: var(--pc-primary); font-weight: 800; }

/* 주문 진행 스텝 (01 장바구니 → 02 주문/결제 → 03 주문완료) */
.pc-step {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin: 18px 0 0;
  padding: 0;
}
.pc-step li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--pc-text-muted);
  font-size: 13.5px;
  font-weight: 700;
}
.pc-step li em {
  font-style: normal;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: var(--pc-r-pill);
  background: var(--pc-border);
  color: var(--pc-text-muted);
  font-size: 12px;
  font-weight: 800;
}
.pc-step li:not(:first-child)::before {
  content: "";
  width: 26px;
  height: 2px;
  margin: 0 12px;
  background: var(--pc-border);
  border-radius: 2px;
}
.pc-step li.is-active { color: var(--pc-primary); }
.pc-step li.is-active em { background: var(--pc-primary); color: #fff; }

/* 정보 표시용 DL */
.pc-info-dl {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px 18px;
  margin: 0;
  font-size: 14px;
}
.pc-info-dl dt {
  color: var(--pc-text-muted);
  font-weight: 700;
  white-space: nowrap;
}
.pc-info-dl dd {
  margin: 0;
  color: var(--pc-text);
  line-height: 1.55;
}

/* WC 폼 row / label / 필드 상태 */
.pc-site .woocommerce form .form-row,
.pc-site .form-row {
  display: block;
  margin: 0 0 16px;
  padding: 0;
}
.pc-site .form-row label,
.pc-site .woocommerce-address-fields label,
.pc-site .woocommerce-billing-fields label,
.pc-site .woocommerce-shipping-fields label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pc-text);
  margin-bottom: 7px;
}
.pc-site .required {
  color: var(--pc-error);
  font-weight: 700;
  border: 0;
  text-decoration: none;
}
.pc-site .optional { color: var(--pc-text-muted); font-weight: 600; }
.pc-site .form-row.woocommerce-invalid input.input-text,
.pc-site .form-row.woocommerce-invalid select,
.pc-site .woocommerce-invalid input.input-text {
  border-color: var(--pc-error);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, .12);
}
.pc-site .form-row.woocommerce-validated input.input-text {
  border-color: var(--pc-leaf);
}

/* 취소선 정가 회색 처리 */
.pc-site del .woocommerce-Price-amount,
.pc-site .pc-cart-row del,
.pc-site del bdi {
  color: var(--pc-text-muted);
  font-weight: 600;
}

/* 수량 입력 (WC woocommerce_quantity_input) */
.pc-site .quantity {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--pc-border) !important;
  border-radius: var(--pc-r-btn);
  overflow: hidden;
  background: #fff;
}
.pc-site .quantity input.qty {
  width: 56px;
  height: 42px;
  padding: 0 6px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 700;
  border: 0 !important;
  border-radius: 0;
  background: transparent;
  -moz-appearance: textfield;
}
.pc-site .quantity .botiga-quantity-minus,
.pc-site .quantity .botiga-quantity-plus {
  width: 36px; height: 42px; display: flex; align-items: center; justify-content: center;
  color: var(--pc-text); cursor: pointer; text-decoration: none;
}
.pc-site .quantity .botiga-quantity-minus:hover,
.pc-site .quantity .botiga-quantity-plus:hover { background: var(--pc-cream); color: var(--pc-primary); }
.pc-site .quantity input.qty::-webkit-outer-spin-button,
.pc-site .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* WC select2 */
.pc-site .select2-container .select2-selection--single {
  height: 48px;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  display: flex;
  align-items: center;
}
.pc-site .select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 46px;
  padding-left: 13px;
  color: var(--pc-text);
}
.pc-site .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 46px;
}
.pc-site .select2-dropdown {
  border-color: var(--pc-border);
  border-radius: var(--pc-r-btn);
}
.pc-site .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background: var(--pc-primary);
}

/* WC 기본 버튼 톤 */
.pc-site .woocommerce a.button,
.pc-site .woocommerce button.button,
.pc-site .woocommerce input.button,
.pc-site .woocommerce-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-family: var(--pc-font-base);
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1;
  height: 46px;
  padding: 0 22px;
  border: 1.5px solid var(--pc-primary);
  border-radius: var(--pc-r-btn);
  background: #fff;
  color: var(--pc-primary);
  cursor: pointer;
  transition: all .15s ease;
}
.pc-site .woocommerce a.button:hover,
.pc-site .woocommerce button.button:hover,
.pc-site .woocommerce input.button:hover,
.pc-site .woocommerce-button:hover {
  background: var(--pc-cream);
}
.pc-site .woocommerce button.button.alt,
.pc-site .woocommerce input.button.alt,
.pc-site .woocommerce a.button.alt {
  background: var(--pc-primary);
  color: #fff;
}
.pc-site .woocommerce button.button.alt:hover,
.pc-site .woocommerce input.button.alt:hover,
.pc-site .woocommerce a.button.alt:hover {
  background: var(--pc-primary-deep);
}

/* ──────────────────────────────────────────────────────────
   01 · 커스텀 체크박스 (.pc-checkbox)
   ────────────────────────────────────────────────────────── */
.pc-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
  color: var(--pc-text);
  line-height: 1.4;
  position: relative;
}
/* WC/Botiga 부모 룰이 input[type=checkbox] 시각을 강제할 수 있어 강한 specificity 로 hide */
label.pc-checkbox > input,
.pc-checkbox > input[type="checkbox"],
.pc-checkbox input[type="checkbox"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  pointer-events: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}
.pc-checkbox__box {
  flex: 0 0 20px;
  display: inline-block !important; /* span 의 default inline 으로 width/height 무시되는 트랩 차단 */
  width: 20px !important;
  height: 20px !important;
  border: 2px solid var(--pc-text-muted); /* cream BG 와 contrast 확보 — 옅은 border 시인성 0 트랩 */
  border-radius: 6px;
  background: #fff;
  position: relative;
  transition: background .15s, border-color .15s;
  vertical-align: middle;
}
.pc-checkbox__box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .15s ease;
}
.pc-checkbox input:checked ~ .pc-checkbox__box {
  background: var(--pc-primary);
  border-color: var(--pc-primary);
}
.pc-checkbox input:checked ~ .pc-checkbox__box::after { transform: rotate(45deg) scale(1); }
.pc-checkbox input:indeterminate ~ .pc-checkbox__box {
  background: var(--pc-primary);
  border-color: var(--pc-primary);
}
.pc-checkbox input:indeterminate ~ .pc-checkbox__box::after {
  transform: none;
  left: 4px;
  top: 8px;
  width: 10px;
  height: 0;
  border-width: 0 0 2.5px 0;
  border-radius: 2px;
}
.pc-checkbox input:focus-visible ~ .pc-checkbox__box {
  outline: 2px solid var(--pc-primary);
  outline-offset: 2px;
}
.pc-checkbox__lbl { flex: 1 1 auto; }
.pc-checkbox__lbl a { color: var(--pc-primary); font-weight: 700; text-decoration: underline; }
.pc-checkbox__lbl em { font-style: normal; color: var(--pc-text-muted); font-weight: 600; }

/* ──────────────────────────────────────────────────────────
   02 · 계정/인증 — 로그인·회원가입 split / 비밀번호 찾기·재설정
   ────────────────────────────────────────────────────────── */
.pc-acct-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.pc-acct-split.is-single {
  grid-template-columns: minmax(0, 460px);
  justify-content: center;
}

.pc-acct-card {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  box-shadow: 0 2px 8px rgba(42,36,33,0.06);
  padding: 30px 30px 32px;
}
.pc-acct-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 19px;
  font-weight: 800;
  color: var(--pc-text);
  margin: 0 0 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--pc-line);
}
.pc-acct-badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 11px;
  font-size: 12px;
  font-weight: 800;
  border-radius: var(--pc-r-pill);
  background: var(--pc-primary);
  color: #fff;
}

.pc-acct-form { margin: 0; }
.pc-acct-form .form-row { margin-bottom: 16px; }
.pc-acct-form .input-text { width: 100%; }

/* 로그인 옵션 행 */
.pc-acct-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0 20px;
  flex-wrap: wrap;
}
.pc-acct-link {
  color: var(--pc-text-sub);
  font-size: 13.5px;
  font-weight: 700;
  transition: color .15s;
}
.pc-acct-link:hover { color: var(--pc-primary); }

/* 약관 동의 영역 */
.pc-acct-terms {
  margin: 18px 0 22px;
  padding: 16px;
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
}
.pc-acct-terms .pc-checkbox { align-items: flex-start; }
.pc-acct-terms .pc-checkbox__box { margin-top: 1px; }

/* 인증 버튼 */
.pc-acct-btn {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 52px;
  border: 1.5px solid var(--pc-primary);
  border-radius: var(--pc-r-btn);
  font-family: var(--pc-font-base);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: all .15s ease;
}
.pc-acct-btn--login {
  background: var(--pc-primary);
  color: #fff;
}
.pc-acct-btn--login:hover { background: var(--pc-primary-deep); border-color: var(--pc-primary-deep); }
/* 회원가입 CTA — 풍찬 보르도-deep 톤 (검은색 배제: 한정식·cream 톤 사이트와 충돌 회피) */
.pc-acct-btn--reg {
  background: var(--pc-primary-deep);
  color: #fff;
  border-color: var(--pc-primary-deep);
}
.pc-acct-btn--reg:hover { background: var(--pc-primary); border-color: var(--pc-primary); }

.pc-acct-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--pc-text-muted);
  font-size: 14px;
}

/* 회원가입 추가필드 */
.pc-form-row { margin-bottom: 16px; }
.pc-form-row > label {
  display: block;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pc-text);
  margin-bottom: 7px;
}
.pc-form-row__hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--pc-text-muted);
}

/* 비밀번호 찾기 / 재설정 */
.pc-lost-password__back { margin: 18px 0 0; text-align: center; }
.pc-lost-password__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: var(--pc-r-pill);
  background: var(--pc-cream);
  color: var(--pc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.pc-lost-password__notice { text-align: center; }
.pc-lost-password__msg {
  margin: 0 0 22px;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--pc-text-sub);
}
.pc-lost-password__msg strong { color: var(--pc-primary); font-weight: 800; }
.pc-lost-password__cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 0;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────────────────────
   03 · 마이페이지 — 상단 가로 탭 nav / 콘텐츠 / 대시보드 / head·empty·actions
   ────────────────────────────────────────────────────────── */
.pc-acct-layout { display: block; }

.pc-acct-nav {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  box-shadow: 0 2px 8px rgba(42,36,33,0.06);
  margin-bottom: 24px;
  overflow-x: auto;
}
.pc-acct-nav__list {
  list-style: none;
  margin: 0;
  padding: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}
.pc-acct-nav__list li { margin: 0; }
.pc-acct-nav__list li a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 11px 16px;
  border-radius: var(--pc-r-pill);
  font-size: 14px;
  font-weight: 700;
  color: var(--pc-text-sub);
  transition: background .14s, color .14s;
}
.pc-acct-nav__list li a:hover {
  background: var(--pc-cream);
  color: var(--pc-primary);
}
.pc-acct-nav__list li.is-active a,
.pc-acct-nav__list li.woocommerce-MyAccount-navigation-link--is-active a {
  background: var(--pc-primary);
  color: #fff;
}
.pc-acct-nav__ico { display: inline-flex; flex: 0 0 auto; }
.pc-acct-nav__ico svg { width: 16px; height: 16px; }

/* 콘텐츠 영역 */
.pc-acct-content {
  min-width: 0;
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  box-shadow: 0 2px 8px rgba(42,36,33,0.06);
  padding: 30px 32px 34px;
}
/* ⚠️ Botiga 기본 .woocommerce-MyAccount-content 가 사이드바 자리로 margin-left:250px +
   padding-left:30px 를 박아 콘텐츠가 우측으로 밀려 화면이 틀어지는 트랩.
   상단 가로 nav 레이아웃이므로 margin/padding 을 우리 값으로 강제 리셋. */
.pc-site .pc-acct-content,
.pc-site .woocommerce-MyAccount-content {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 30px 32px 34px !important;
}

/* 마이페이지 본문 공통 head */
.pc-mypage__head {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--pc-line);
}
.pc-mypage__title {
  font-size: 20px;
  font-weight: 800;
  color: var(--pc-text);
  margin: 0;
}
.pc-mypage__desc {
  margin: 8px 0 0;
  font-size: 13.5px;
  color: var(--pc-text-sub);
  line-height: 1.55;
}
.pc-mypage__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 26px 0 0;
  flex-wrap: wrap;
}

/* 대시보드 */
.pc-acct-dash__intro {
  margin-bottom: 22px;
  padding: 16px 18px;
  background: var(--pc-cream);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  font-size: 14px;
  color: var(--pc-text-sub);
  line-height: 1.6;
}
.pc-acct-dash__intro p { margin: 0; }
.pc-acct-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.pc-acct-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 22px 20px;
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.pc-acct-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(42,36,33,0.10);
  border-color: var(--pc-bg);
}
.pc-acct-tile__ico { line-height: 1; margin-bottom: 10px; color: var(--pc-primary); }
.pc-acct-tile__ico svg { width: 26px; height: 26px; stroke-width: 1.75; }
.pc-acct-tile__title { font-size: 16px; font-weight: 800; color: var(--pc-text); }
.pc-acct-tile__desc { font-size: 13px; color: var(--pc-text-muted); }
.pc-acct-tile__badge {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  background: var(--pc-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  border-radius: var(--pc-r-pill);
}

/* 마이페이지 빈 상태 */
.pc-mypage-empty {
  text-align: center;
  padding: 56px 20px;
}
.pc-mypage-empty__ico { font-size: 48px; margin-bottom: 14px; }
.pc-mypage-empty__msg {
  margin: 0 0 22px;
  font-size: 15px;
  color: var(--pc-text-sub);
}

/* ──────────────────────────────────────────────────────────
   04 · 주문내역 테이블 (.pc-orders-table) + 상태 뱃지 (.pc-status)
   ────────────────────────────────────────────────────────── */
.pc-mypage-orders__table-wrap { overflow-x: auto; }
.pc-orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.pc-orders-table thead th {
  background: var(--pc-cream);
  color: var(--pc-text-sub);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  padding: 13px 12px;
  border-bottom: 2px solid var(--pc-line);
  white-space: nowrap;
}
.pc-orders-table tbody td {
  padding: 16px 12px;
  text-align: center;
  border-bottom: 1px solid var(--pc-line);
  color: var(--pc-text);
  vertical-align: middle;
}
.pc-orders-table tbody tr:last-child td { border-bottom: 0; }
.pc-orders-table, .pc-orders-table tbody tr { border: 0; }
.pc-orders-table td, .pc-orders-table th { border-left: 0 !important; border-right: 0 !important; border-top: 0 !important; }
.pc-orders-table__no a {
  font-weight: 800;
  color: var(--pc-primary);
}
.pc-orders-table__no a:hover { text-decoration: underline; }
.pc-orders-table__date { color: var(--pc-text-muted); font-size: 13px; white-space: nowrap; }
.pc-orders-table__name { text-align: left; }
.pc-orders-table__name a {
  font-weight: 700;
  color: var(--pc-text);
}
.pc-orders-table__name a:hover { color: var(--pc-primary); }
.pc-orders-table__count { color: var(--pc-text-sub); white-space: nowrap; }
.pc-orders-table__total strong { color: var(--pc-primary); font-weight: 800; }

/* 주문상태 뱃지 */
.pc-status {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: var(--pc-r-pill);
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
  background: var(--pc-border);
  color: var(--pc-text-sub);
}
.pc-status--pending,
.pc-status--on-hold { background: #FFF3D6; color: #9A6B00; }
.pc-status--processing { background: var(--pc-cream); color: var(--pc-primary); }
.pc-status--completed { background: #E3F4E7; color: var(--pc-leaf); }
.pc-status--cancelled,
.pc-status--failed,
.pc-status--refunded { background: #FBE3E3; color: var(--pc-error); }

/* 주문내역 페이지네이션 */
.pc-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  background: #fff;
  font-size: 14px;
  font-weight: 700;
  color: var(--pc-text);
  transition: all .14s;
}
.pc-pagination__btn:hover { border-color: var(--pc-primary); color: var(--pc-primary); }
.pc-pagination__info {
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pc-text-sub);
}
.pc-mypage-orders .pc-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

/* ──────────────────────────────────────────────────────────
   05 · 주문 상세 (.pc-vo)
   ────────────────────────────────────────────────────────── */
.pc-vo__head {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--pc-line);
}
.pc-vo__head-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.pc-vo__head-top h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--pc-text);
  margin: 0;
}
.pc-vo__no { color: var(--pc-primary); margin-left: 6px; }
.pc-vo__meta {
  margin: 12px 0 0;
  font-size: 13.5px;
  color: var(--pc-text-sub);
  line-height: 1.6;
}
.pc-vo__meta strong { color: var(--pc-text); font-weight: 700; }
.pc-vo__amount { color: var(--pc-primary) !important; font-weight: 800 !important; }

.pc-vo__section { margin-bottom: 26px; }
.pc-vo__section h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--pc-text);
  margin: 0 0 14px;
}

/* 무통장 안내 박스 */
.pc-vo__bacs {
  padding: 20px 22px;
  background: var(--pc-cream);
  border: 1px solid var(--pc-bg);
  border-radius: var(--pc-r-card);
}
.pc-vo__bacs h4 { color: var(--pc-primary); }
.pc-vo__bacs-account { font-weight: 700; }
.pc-vo__bacs-total { color: var(--pc-primary); font-weight: 800; }

/* 주문 상품 테이블 */
.pc-vo__table { margin: 0; }
.pc-vo__table thead th { text-align: center; }
.pc-vo__name {
  text-align: left !important;
  display: flex;
  align-items: center;
  gap: 12px;
}
.pc-vo__name img {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--pc-border);
}
.pc-vo__name div { font-size: 14px; line-height: 1.4; }
.pc-vo__price { color: var(--pc-text-sub); white-space: nowrap; }
.pc-vo__qty { color: var(--pc-text-sub); white-space: nowrap; }
.pc-vo__sum strong { color: var(--pc-text); font-weight: 800; }
.pc-vo__shipping td { color: var(--pc-text-sub); }
.pc-vo__shipping-lbl { text-align: right !important; font-weight: 700; }
.pc-vo__free { color: var(--pc-leaf); font-weight: 800; }
.pc-vo__total td {
  background: var(--pc-cream);
  border-top: 2px solid var(--pc-line);
}
.pc-vo__total-lbl { text-align: right !important; font-weight: 800; color: var(--pc-text); }
.pc-vo__total td strong { color: var(--pc-primary); font-size: 17px; font-weight: 800; }

/* 주문 처리 메모 */
.pc-vo__notes-list { list-style: none; margin: 0; padding: 0; }
.pc-vo__notes-list li {
  padding: 14px 16px;
  background: var(--pc-cream);
  border-radius: var(--pc-r-btn);
  margin-bottom: 10px;
}
.pc-vo__notes-date { font-size: 12px; color: var(--pc-text-muted); font-weight: 700; }
.pc-vo__notes-body { font-size: 14px; color: var(--pc-text); margin-top: 4px; }
.pc-vo__notes-body p { margin: 0; }

.pc-vo__cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--pc-line);
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────────────────────
   06 · 배송지 관리 (.pc-address) / 회원정보 수정 (.pc-edit-account)
   ────────────────────────────────────────────────────────── */
.pc-address-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.pc-address-card {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  padding: 22px 24px;
}
.pc-address-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pc-line);
}
.pc-address-card__head h4 {
  font-size: 16px;
  font-weight: 800;
  color: var(--pc-text);
  margin: 0;
}
.pc-address-card__edit {
  display: inline-flex;
  align-items: center;
  height: 34px;
  padding: 0 16px;
  border: 1.5px solid var(--pc-primary);
  border-radius: var(--pc-r-pill);
  font-size: 13px;
  font-weight: 800;
  color: var(--pc-primary);
  transition: all .15s;
}
.pc-address-card__edit:hover { background: var(--pc-primary); color: #fff; }
.pc-address-card__empty {
  margin: 0;
  padding: 18px 0;
  color: var(--pc-text-muted);
  font-size: 14px;
  text-align: center;
}

/* 배송지 수정 폼 */
.pc-edit-address__form {
  max-width: 560px;
}
.pc-edit-address__form .woocommerce-address-fields__field-wrapper { margin: 0; }
.pc-edit-address__form .form-row-first,
.pc-edit-address__form .form-row-last {
  width: 100%;
  float: none;
}

/* 회원정보 수정 */
.pc-edit-account { max-width: 560px; }
.pc-edit-account__pw {
  margin: 8px 0 0;
  padding: 22px 22px 6px;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  background: var(--pc-cream);
}
.pc-edit-account__pw legend {
  font-size: 14.5px;
  font-weight: 800;
  color: var(--pc-text);
  padding: 0 8px;
}
.pc-edit-account__pw .pc-form-row__hint { display: inline; margin: 0 0 0 4px; }

/* ──────────────────────────────────────────────────────────
   07 · 장바구니 (.pc-cart-*) + 빈 장바구니 (.pc-cart-empty-state)
   ────────────────────────────────────────────────────────── */
.pc-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

/* 좌: 상품 리스트 */
.pc-cart-list {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  box-shadow: 0 2px 8px rgba(42,36,33,0.06);
  overflow: hidden;
}
.pc-cart-list__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  background: var(--pc-cream);
  border-bottom: 1px solid var(--pc-line);
  flex-wrap: wrap;
}
.pc-cart-list__select-all { font-weight: 700; }
.pc-cart-list__actions { display: flex; gap: 8px; }
.pc-cart-list__act {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-pill);
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--pc-text-sub);
  cursor: pointer;
  transition: all .14s;
  font-family: var(--pc-font-base);
}
.pc-cart-list__act:hover { border-color: var(--pc-primary); color: var(--pc-primary); }

/* 상품 행 */
.pc-cart-row {
  display: grid;
  grid-template-columns: 28px 92px minmax(0, 1fr) auto auto 28px;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--pc-line);
}
.pc-cart-row:last-child { border-bottom: 0; }
.pc-cart-row__check { gap: 0; }
.pc-cart-row__thumb {
  width: 92px;
  height: 92px;
  border-radius: var(--pc-r-btn);
  overflow: hidden;
  background: var(--pc-cream);
  border: 1px solid var(--pc-border);
}
.pc-cart-row__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pc-cart-row__info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}
.pc-cart-row__origin {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--pc-leaf);
}
.pc-cart-row__title {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--pc-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pc-cart-row__title:hover { color: var(--pc-primary); }
.pc-cart-row__unit { font-size: 12.5px; color: var(--pc-text-muted); }
.pc-cart-row__qty { flex: 0 0 auto; }
.pc-cart-row__sub {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 3px;
  min-width: 96px;
  text-align: right;
}
.pc-cart-row__sub-label { font-size: 11.5px; color: var(--pc-text-muted); font-weight: 600; }
.pc-cart-row__sub-amt { font-size: 16px; font-weight: 800; color: var(--pc-primary); }
.pc-cart-row__sub-amt .woocommerce-Price-amount { color: var(--pc-primary); }
.pc-cart-row__rm {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  color: var(--pc-text-muted);
  transition: background .14s, color .14s;
}
.pc-cart-row__rm:hover { background: #FBE3E3; color: var(--pc-error); }

/* 카트 하단 갱신 툴바 */
.pc-cart-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--pc-cream);
  border-top: 1px solid var(--pc-line);
}
.pc-cart-update {
  background: #fff;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  padding: 0 18px;
  height: 42px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pc-text-sub);
  cursor: pointer;
  transition: all .14s;
  font-family: var(--pc-font-base);
}
.pc-cart-update:hover { border-color: var(--pc-primary); color: var(--pc-primary); }

/* 우: sticky 요약 사이드 */
.pc-cart-side { position: sticky; top: 18px; }
.pc-summary__continue {
  display: block;
  text-align: center;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pc-text-sub);
  transition: color .15s;
}
.pc-summary__continue:hover { color: var(--pc-primary); }

/* 빈 장바구니 */
.pc-cart-empty-state {
  text-align: center;
  padding: 60px 24px 64px;
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  box-shadow: 0 2px 8px rgba(42,36,33,0.06);
}
.pc-cart-empty-state__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: var(--pc-r-pill);
  background: var(--pc-cream);
  color: var(--pc-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-cart-empty-state__title {
  font-family: var(--pc-font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--pc-text);
  margin: 0 0 12px;
}
.pc-cart-empty-state__desc {
  margin: 0 0 26px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--pc-text-sub);
}
.pc-cart-empty-state__actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.pc-cart-empty-state__perks {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px dashed var(--pc-border);
  font-size: 13px;
  color: var(--pc-text-sub);
}
.pc-cart-empty-state__perks li { white-space: nowrap; display: inline-flex; align-items: center; gap: 7px; }
.pc-cart-empty-state__perks li svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--pc-leaf); }

/* ──────────────────────────────────────────────────────────
   08 · 주문 요약 카드 (.pc-summary) + WC 결제버튼 / 배송 row
   ────────────────────────────────────────────────────────── */
.pc-summary {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  box-shadow: 0 2px 8px rgba(42,36,33,0.06);
  padding: 24px 24px 26px;
}
.pc-summary__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--pc-text);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--pc-line);
}

/* 합계 DL */
.pc-summary__dl {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 10px;
  margin: 0 0 16px;
  font-size: 14px;
  padding-top: 4px;
}
.pc-summary__dl dt { color: var(--pc-text-sub); }
.pc-summary__dl dd {
  margin: 0;
  text-align: right;
  font-weight: 700;
  color: var(--pc-text);
}
.pc-summary__dl dd small,
.pc-summary__dl dt small { font-size: 11.5px; color: var(--pc-text-muted); font-weight: 600; }
.pc-summary__dl .is-discount { color: var(--pc-error); }
.pc-summary__dl dd.is-discount { color: var(--pc-error); font-weight: 800; }
.pc-summary__dl .woocommerce-shipping-totals.shipping th,
.pc-summary__dl .shipping th { display: none; }
.pc-summary__dl .shipping td { text-align: right; }
.pc-summary__dl ul#shipping_method {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: right;
}
.pc-summary__dl ul#shipping_method li { margin: 0 0 4px; }

.pc-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 18px;
  margin: 0 0 18px;
  background: var(--pc-cream);
  border-radius: var(--pc-r-btn);
}
.pc-summary__total span { font-size: 14.5px; font-weight: 700; color: var(--pc-text); }
.pc-summary__total strong { font-size: 22px; font-weight: 800; color: var(--pc-primary); }
.pc-summary__total strong .woocommerce-Price-amount { color: var(--pc-primary); }

/* 혜택 perks */
.pc-summary__perks {
  list-style: none;
  margin: 22px 0 0;
  padding: 22px 0 0;
  border-top: 1px dashed var(--pc-border);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12.5px;
  color: var(--pc-text-sub);
}
.pc-summary__perks li { display: flex; align-items: center; gap: 8px; }
.pc-summary__perks li svg { width: 15px; height: 15px; flex: 0 0 auto; color: var(--pc-leaf); }

/* 주문요약 안 상품 리스트 */
.pc-co-items {
  list-style: none;
  margin: 0 0 22px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--pc-line);
  max-height: 280px;
  overflow-y: auto;
}
.pc-co-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
}
.pc-co-item:not(:last-child) { border-bottom: 1px solid var(--pc-line); }
.pc-co-item__thumb {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--pc-cream);
  border: 1px solid var(--pc-border);
}
.pc-co-item__thumb img { width: 100%; height: 100%; object-fit: cover; }
.pc-co-item__info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 3px; }
.pc-co-item__name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--pc-text);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.pc-co-item__qty { font-size: 12px; color: var(--pc-text-muted); }
.pc-co-item__price {
  flex: 0 0 auto;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--pc-text);
  white-space: nowrap;
}

/* 쿠폰 입력 */
.pc-coupon { margin: 10px 0 16px; }
.pc-coupon__toggle {
  width: 100%; cursor: pointer; font-family: var(--pc-font-base);
  background: var(--pc-cream); color: var(--pc-primary);
  border: 1px dashed var(--pc-bg); border-radius: var(--pc-r-btn);
  padding: 11px 14px; font-weight: 700; font-size: 13.5px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
}
.pc-coupon__toggle:hover { background: var(--pc-bg); }
.pc-coupon__form { display: flex; align-items: center; gap: 8px; }
.pc-coupon__input {
  flex: 1 1 auto; min-width: 0; height: 42px; padding: 0 13px;
  border: 1.5px solid var(--pc-border); border-radius: var(--pc-r-btn);
  font-size: 14px; font-family: var(--pc-font-base); background: #fff;
}
.pc-coupon__apply {
  flex: 0 0 auto; cursor: pointer; font-family: var(--pc-font-base);
  background: var(--pc-primary); color: #fff; border: 0; border-radius: var(--pc-r-btn);
  padding: 0 18px; height: 42px; font-weight: 700; font-size: 14px;
}
.pc-coupon__apply:hover { background: var(--pc-primary-deep); }
.pc-coupon__applied { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.pc-coupon__applied li {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: var(--pc-cream); border: 1px solid var(--pc-bg);
  border-radius: var(--pc-r-btn); padding: 9px 13px;
}
.pc-coupon__code { font-size: 13px; font-weight: 700; color: var(--pc-primary); }
.pc-coupon__remove {
  flex: 0 0 auto; width: 22px; height: 22px; border: 0; border-radius: 50%;
  background: var(--pc-primary); color: #fff; font-size: 14px; line-height: 22px;
  text-align: center; cursor: pointer; padding: 0;
}
.pc-coupon__remove:hover { background: var(--pc-primary-deep); }
.pc-coupon__toggle[hidden], .pc-coupon__form[hidden], .pc-coupon__applied[hidden] { display: none; }

/* 체크아웃 주문요약 perks 상단 패딩 복원 */
.pc-checkout-side ul.pc-summary__perks { padding: 15px 0 0; }

/* WC 결제하기 버튼 */
.pc-summary .checkout-button,
.pc-site .pc-summary a.checkout-button.button.alt {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 54px;
  margin: 0 0 4px;
  background: var(--pc-primary);
  color: #fff;
  border: 0;
  border-radius: var(--pc-r-btn);
  font-size: 16px;
  font-weight: 800;
  transition: background .15s;
}
.pc-summary .checkout-button:hover,
.pc-site .pc-summary a.checkout-button.button.alt:hover {
  background: var(--pc-primary-deep);
}

/* ──────────────────────────────────────────────────────────
   09 · 체크아웃 (.pc-checkout / .pc-block / 결제수단 / 약관)
   ────────────────────────────────────────────────────────── */
form.checkout.pc-checkout { display: block !important; width: 100%; }
/* ⚠️ Botiga checkout-layout1 이 form.checkout 자체를 display:grid 로 만들어
   우리 .pc-checkout-layout 이 Botiga 그리드의 한 열(≈748px)에 갇히는 트랩.
   폼을 block 으로 되돌려 우리 레이아웃이 풀폭(1200)을 차지하게 한다. */
.pc-site form.checkout.pc-checkout,
.pc-site form.woocommerce-checkout.pc-checkout {
  display: block !important;
  grid-template-columns: none !important;
  grid-gap: 0 !important;
  gap: 0 !important;
  max-width: none !important;
  width: 100% !important;
}
.pc-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 28px;
  align-items: start;
  width: 100%;
}
.pc-checkout-side { position: sticky; top: 18px; min-width: 0; }
.pc-checkout-main { min-width: 0; }
.pc-co-review { min-width: 0; }
.pc-checkout-side .checkout-wrapper,
.pc-checkout-side #order_review,
.pc-checkout-side .woocommerce-checkout-review-order {
  width: 100% !important; float: none !important; max-width: none !important; padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.pc-checkout-main #customer_details { width: 100% !important; max-width: none !important; float: none !important; }
.pc-checkout-main .woocommerce-billing-fields,
.pc-checkout-main .woocommerce-shipping-fields,
.pc-checkout-main .woocommerce-additional-fields { width: 100%; float: none; }

/* 우편번호 검색 버튼 */
.pc-postcode-row .woocommerce-input-wrapper { display: flex; gap: 8px; align-items: stretch; }
.pc-postcode-row .woocommerce-input-wrapper input { flex: 1 1 auto; min-width: 0; }
.pc-postcode-btn {
  flex: 0 0 auto; white-space: nowrap; cursor: pointer;
  background: var(--pc-primary); color: #fff; border: 0;
  border-radius: var(--pc-r-btn); padding: 0 16px; height: 48px;
  font-weight: 700; font-size: 14px; font-family: var(--pc-font-base);
  transition: background .15s;
}
.pc-postcode-btn:hover { background: var(--pc-primary-deep); }

/* 블록 (주문자 / 배송지 / 메모 / 결제 / 약관) */
.pc-block {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  box-shadow: 0 2px 8px rgba(42,36,33,0.06);
  padding: 24px 26px 26px;
  margin-bottom: 18px;
}
.pc-block__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--pc-text);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--pc-line);
}

/* WC 청구/배송 필드 wrapper 정규화 */
.pc-block .woocommerce-billing-fields h3,
.pc-block .woocommerce-shipping-fields h3,
.pc-block .woocommerce-additional-fields h3 { display: none; }
.pc-block .woocommerce-billing-fields__field-wrapper,
.pc-block .woocommerce-shipping-fields__field-wrapper,
.pc-block .woocommerce-additional-fields__field-wrapper { margin: 0; }
.pc-block #ship-to-different-address { display: none; }
.pc-checkout .form-row-first,
.pc-checkout .form-row-last {
  width: 100%;
  float: none;
  margin-right: 0;
}

/* 배송지 타입 라디오 */
.pc-ship-type {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.pc-ship-type__radio {
  flex: 1 1 0;
  min-width: 140px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  cursor: pointer;
  transition: all .14s;
}
.pc-ship-type__radio input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  border: 1.5px solid var(--pc-border);
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transition: border-color .14s;
}
.pc-ship-type__radio input::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pc-primary);
  transform: translate(-50%, -50%) scale(0);
  transition: transform .14s;
}
.pc-ship-type__radio input:checked {
  border-color: var(--pc-primary);
}
.pc-ship-type__radio input:checked::after {
  transform: translate(-50%, -50%) scale(1);
}
.pc-ship-type__radio:has(input:checked) {
  border-color: var(--pc-primary);
  background: var(--pc-cream);
}
.pc-ship-type__lbl { font-size: 14px; font-weight: 700; color: var(--pc-text); }
.pc-shipping-fields-wrap { margin-top: 4px; }

/* 배송 메모 textarea */
.pc-block--memo textarea {
  width: 100%;
  min-height: 84px;
}

/* 결제 수단 리스트 */
.pc-pay-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-pay-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  transition: all .14s;
}
.pc-pay-list__item.is-active {
  border-color: var(--pc-primary);
  background: var(--pc-cream);
}
.pc-pay-list__item.is-soon { opacity: .6; }
.pc-pay-list__radio {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--pc-border);
  position: relative;
}
.pc-pay-list__item.is-active .pc-pay-list__radio {
  border-color: var(--pc-primary);
  border-width: 6px;
}
.pc-pay-list__radio--disabled { background: var(--pc-line); border-color: var(--pc-line); }
.pc-pay-list__lbl {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.pc-pay-list__lbl strong { font-size: 15px; font-weight: 800; color: var(--pc-text); }
.pc-pay-list__lbl small { font-size: 12.5px; color: var(--pc-text-sub); line-height: 1.5; }
.pc-pay-list__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 11px;
  border-radius: var(--pc-r-pill);
  background: var(--pc-border);
  color: var(--pc-text-muted);
  font-size: 11.5px;
  font-weight: 800;
}

/* 약관 동의 */
.pc-terms__all {
  padding: 14px 16px;
  margin-bottom: 12px;
  background: var(--pc-cream);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  font-weight: 800;
}
.pc-terms {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pc-terms li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 4px;
}
.pc-terms li .pc-checkbox { flex: 1 1 auto; }
.pc-terms__view {
  flex: 0 0 auto;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--pc-text-muted);
  white-space: nowrap;
  transition: color .15s;
}
.pc-terms__view:hover { color: var(--pc-primary); }

/* 우측: WC 결제영역 */
.pc-checkout-side .woocommerce-checkout-payment {
  margin-top: 16px;
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  box-shadow: 0 2px 8px rgba(42,36,33,0.06);
  padding: 18px 20px;
}
.pc-checkout-side .woocommerce-checkout-payment ul.payment_methods {
  list-style: none;
  margin: 0 0 14px;
  padding: 0 0 12px;
  border-bottom: 1px solid var(--pc-line);
}
.pc-checkout-side .woocommerce-checkout-payment ul.payment_methods li {
  font-size: 13.5px;
  color: var(--pc-text-sub);
}
.pc-checkout-side .woocommerce-checkout-payment .payment_box {
  margin: 8px 0 0;
  padding: 12px 14px;
  background: var(--pc-cream);
  border-radius: var(--pc-r-btn);
  font-size: 12.5px;
  color: var(--pc-text-sub);
  line-height: 1.55;
}
.pc-checkout-side .woocommerce-checkout-payment .payment_box p { margin: 0; }
.pc-checkout-side .woocommerce-privacy-policy-text {
  font-size: 11.5px;
  color: var(--pc-text-muted);
  line-height: 1.55;
  margin: 0 0 12px;
}

/* 주문하기 버튼 (#place_order) — 풍찬 전용 오버라이드 */
body.pc-site #place_order,
.pc-checkout-side #place_order {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 56px;
  margin-top: 4px;
  background: var(--pc-primary);
  color: #fff;
  border: 0;
  border-radius: var(--pc-r-btn);
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  font-family: var(--pc-font-base);
  transition: background .15s;
}
body.pc-site #place_order:hover { background: var(--pc-primary-deep); }

/* ──────────────────────────────────────────────────────────
   10 · 주문완료 (.pc-oc)
   ────────────────────────────────────────────────────────── */
.pc-oc {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  box-shadow: 0 2px 8px rgba(42,36,33,0.06);
  padding: 44px 40px 40px !important;
  max-width: 760px;
  margin: 36px auto 64px;
}
.pc-oc__head {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--pc-line);
}
.pc-oc__icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  border-radius: var(--pc-r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 800;
  background: var(--pc-primary);
  color: #fff;
  box-shadow: 0 8px 22px rgba(139, 46, 42, .28);
}
.pc-oc__title {
  font-family: var(--pc-font-display);
  font-weight: 800;
  font-size: 25px;
  color: var(--pc-text);
  margin: 0 0 10px;
}
.pc-oc__sub {
  font-size: 14px;
  color: var(--pc-text-sub);
  margin: 0;
  line-height: 1.6;
}
.pc-oc__no { color: var(--pc-primary); font-weight: 800; }

.pc-oc__section { margin-bottom: 28px; }
.pc-oc__section h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--pc-text);
  margin: 0 0 14px;
}

/* 무통장 안내 */
.pc-oc__bacs {
  margin-bottom: 28px;
  padding: 22px 24px;
  background: var(--pc-cream);
  border: 1px solid var(--pc-bg);
  border-radius: var(--pc-r-card);
}
.pc-oc__bacs h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--pc-primary);
  margin: 0 0 14px;
}
.pc-oc__bacs-account { font-weight: 700; }

.pc-oc__cta {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

/* ──────────────────────────────────────────────────────────
   공용 버튼 시스템 (.pc-btn) — 주문완료 CTA, 배송지 수정 등에서 사용.
   (이전 미정의 → 버튼이 plain 텍스트로 노출되던 결함 수정)
   ────────────────────────────────────────────────────────── */
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 28px;
  min-width: 150px;
  border-radius: var(--pc-r-btn);
  border: 1.5px solid transparent;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--pc-font-base);
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  transition: background .15s, border-color .15s, color .15s;
}
/* ⚠️ .pc-btn 은 <a> 라 Botiga 의 `a{color}` 가 글자색을 덮어써 어두운 배경에 어두운 글씨가 되는 트랩.
   body.pc-site 스코프 + !important 로 글자색 강제 (CTA 대비 보장). */
body.pc-site a.pc-btn--primary,
body.pc-site .pc-btn--primary,
.pc-btn--primary {
  background: var(--pc-primary);
  color: #fff !important;
  border-color: var(--pc-primary);
}
body.pc-site a.pc-btn--primary:hover,
.pc-btn--primary:hover { background: var(--pc-primary-deep); border-color: var(--pc-primary-deep); color: #fff !important; }
body.pc-site a.pc-btn--ghost,
body.pc-site .pc-btn--ghost,
.pc-btn--ghost {
  background: var(--pc-white);
  color: var(--pc-text) !important;
  border-color: var(--pc-border);
}
body.pc-site a.pc-btn--ghost:hover,
.pc-btn--ghost:hover { border-color: var(--pc-primary); color: var(--pc-primary) !important; }
@media (max-width: 560px) {
  .pc-btn { width: 100%; }
}

/* ──────────────────────────────────────────────────────────
   10b · 법적 고지 페이지 (약관·개인정보처리방침)
   ────────────────────────────────────────────────────────── */
.pc-legal-page .site-main > article {
  max-width: 900px;
  margin: 0 auto;
  padding: 36px 20px 64px;
}
.pc-legal-page .entry-header { margin: 0 0 22px; padding: 0; text-align: left; }
.pc-legal-page .entry-header .entry-title {
  font-size: 27px;
  font-weight: 800;
  color: var(--pc-text);
  letter-spacing: -0.02em;
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 3px solid var(--pc-primary);
}
.pc-legal-page .entry-content {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  box-shadow: 0 2px 8px rgba(42,36,33,0.06);
  padding: 30px 32px 34px;
  font-size: 14.5px;
  line-height: 1.78;
  color: var(--pc-text-sub);
}
.pc-legal-page .entry-content > :first-child { margin-top: 0; }
.pc-legal-page .entry-content h2 {
  font-size: 17px;
  font-weight: 800;
  color: var(--pc-text);
  margin: 30px 0 10px;
}
.pc-legal-page .entry-content h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--pc-text);
  margin: 20px 0 8px;
}
.pc-legal-page .entry-content p { margin: 0 0 12px; }
.pc-legal-page .entry-content ul,
.pc-legal-page .entry-content ol { margin: 0 0 12px; padding-left: 20px; }
.pc-legal-page .entry-content li { margin: 0 0 5px; }
.pc-legal-page .entry-content strong { color: var(--pc-text); }

/* ──────────────────────────────────────────────────────────
   11 · 반응형 (포팅 섹션)
   ────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pc-cart-layout { grid-template-columns: minmax(0, 1fr) 320px; gap: 20px; }
  .pc-checkout-layout { grid-template-columns: minmax(0, 1fr) 330px; gap: 20px; }
  .pc-acct-layout { gap: 20px; }
}

@media (max-width: 991px) {
  .pc-acct-content { padding-left: 18px !important; }
}

@media (max-width: 880px) {
  .pc-cart-layout,
  .pc-checkout-layout {
    grid-template-columns: 1fr;
  }
  .pc-cart-side,
  .pc-checkout-side { position: static; }

  .pc-acct-layout { gap: 28px; }
  .pc-acct-nav { position: static; }
  .pc-acct-nav__list {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px;
  }
  .pc-acct-nav__list::-webkit-scrollbar { display: none; }
  .pc-acct-nav__list li a { white-space: nowrap; padding: 10px 14px; }
  .pc-acct-nav__list li a:hover,
  .pc-acct-nav__list li.is-active a { border-radius: var(--pc-r-pill); }
}

@media (max-width: 780px) {
  .pc-acct-split { grid-template-columns: 1fr; gap: 18px; }
  .pc-address-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .pc-site .pc-acct-wrap,
  .pc-site .pc-acct-page,
  .pc-site .pc-cart-wrap,
  .pc-site .pc-checkout-wrap,
  .pc-oc { padding: 22px 14px 56px; }

  .pc-cart-head__title { font-size: 25px; }
  .pc-step li span { display: none; }
  .pc-step li:not(:first-child)::before { width: 16px; margin: 0 7px; }

  .pc-acct-card { padding: 22px 20px 24px; }
  .pc-acct-content { padding: 22px 18px 26px; }
  .pc-acct-grid { grid-template-columns: 1fr; }

  /* 장바구니 행 모바일 재배치 */
  .pc-cart-row {
    grid-template-columns: 24px 72px minmax(0, 1fr) 24px;
    grid-template-areas:
      "check thumb info rm"
      "check thumb qty rm"
      "check thumb sub rm";
    row-gap: 10px;
    padding: 16px 14px;
  }
  .pc-cart-row__check { grid-area: check; align-self: start; }
  .pc-cart-row__thumb { grid-area: thumb; width: 72px; height: 72px; }
  .pc-cart-row__info { grid-area: info; }
  .pc-cart-row__qty { grid-area: qty; justify-content: flex-start; }
  .pc-cart-row__sub { grid-area: sub; justify-content: flex-start; min-width: 0; }
  .pc-cart-row__sub-label { display: inline; }

  .pc-cart-list__head { gap: 8px; }
  .pc-cart-list__actions { width: 100%; justify-content: flex-end; }

  /* 주문상세 / 주문완료 테이블 카드형 */
  .pc-orders-table,
  .pc-orders-table thead,
  .pc-orders-table tbody,
  .pc-orders-table tr,
  .pc-orders-table td { display: block; width: 100%; }
  .pc-orders-table thead { display: none; }
  .pc-orders-table tbody tr {
    border: 1px solid var(--pc-line);
    border-radius: var(--pc-r-btn);
    margin-bottom: 12px;
    padding: 6px 4px;
  }
  .pc-orders-table tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: right;
    border-bottom: 1px dashed var(--pc-line);
    padding: 11px 14px;
  }
  .pc-orders-table tbody tr td:last-child { border-bottom: 0; }
  .pc-orders-table tbody td::before { display: none; }
  .pc-vo__name { justify-content: flex-start; }
  .pc-vo__shipping-lbl,
  .pc-vo__total-lbl { text-align: left !important; }
  .pc-vo__shipping-lbl::before,
  .pc-vo__total-lbl::before { content: none; }

  .pc-oc { padding: 32px 20px 30px !important; }
  .pc-oc__title { font-size: 22px; }

  .pc-pay-list__item { padding: 14px; }
  .pc-block { padding: 20px 18px 22px; }
  .pc-acct-content,
  .pc-block,
  .pc-summary { border-radius: var(--pc-r-btn); }

  .pc-summary__dl dt,
  .pc-info-dl dt,
  .pc-summary__total span { word-break: keep-all; }
  .pc-summary__dl dd small { display: block; margin-top: 2px; }
}

/* ─────────────────────────────────────────────────────────────────
   12 · ARCHIVE (상품 목록) — 풍찬 차별화 디자인
   봄뜰 archive 와 명확히 다른 시각: pill chip, 4열 여유 gap, hover 보르도 border
   ─────────────────────────────────────────────────────────────── */

/* ── 페이지 래퍼 ── */
.pc-archive.pc-wrap {
  max-width: var(--pc-container);
  margin: 0 auto;
  padding: 40px 24px 72px;
  box-sizing: border-box;
}

/* ── 상단 헤더 (eyebrow + h1 + count) ── */
.pc-archive__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--pc-line);
}
.pc-archive__head-title {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pc-archive__head-meta {
  flex: 0 0 auto;
  align-self: flex-end;
}

/* eyebrow — design.pen 그대로 (gold-deep, 11px, letter-spacing 2.5px) */
.pc-archive .pc-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pc-archive .pc-eyebrow__dash {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--pc-gold-deep);
  flex: 0 0 auto;
}
.pc-archive .pc-eyebrow__text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--pc-gold-deep);
  text-transform: uppercase;
}

/* 제목 */
.pc-archive__h1 {
  font-family: var(--pc-font-display);
  font-size: 26px;
  font-weight: 700;
  color: var(--pc-text);
  margin: 0;
  line-height: 1.3;
}

/* 부제 */
.pc-archive__desc {
  font-size: 13.5px;
  color: var(--pc-text-muted);
  margin: 0;
  line-height: 1.55;
}

/* 총 N개 상품 */
.pc-archive__count {
  font-size: 13px;
  color: var(--pc-text-muted);
  white-space: nowrap;
}
.pc-archive__count strong {
  color: var(--pc-primary);
  font-weight: 800;
  font-size: 14px;
}

/* ── 필터 바 (chip + 정렬) ── */
.pc-archive__filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* 가격 chip 그룹 */
.pc-archive__chips {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pc-archive__chips-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--pc-text-muted);
  white-space: nowrap;
  margin-right: 2px;
}

/*
 * .pc-chip — pill 모양 (봄뜰: 라인 박스형 vs 풍찬: pill + 보르도 fill 차별화)
 */
.pc-chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 14px;
  border-radius: var(--pc-r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--pc-text-sub);
  background: var(--pc-cream);
  border: 1px solid var(--pc-border);
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.14s, color 0.14s, border-color 0.14s;
  cursor: pointer;
}
.pc-chip:hover {
  background: var(--pc-bg);
  border-color: var(--pc-primary);
  color: var(--pc-primary);
}
/* 활성 chip — 보르도 fill (봄뜰과 시각적 핵심 차별화) */
.pc-chip.is-active {
  background: var(--pc-primary);
  border-color: var(--pc-primary);
  color: #fff;
  font-weight: 700;
}
.pc-chip.is-active:hover {
  background: var(--pc-primary-deep);
  border-color: var(--pc-primary-deep);
  color: #fff;
}

/* 정렬 폼 */
.pc-archive__sort {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.pc-archive__sort-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--pc-text-muted);
  white-space: nowrap;
}
select#pc-orderby {
  height: 32px;
  padding: 0 32px 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--pc-text);
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  font-family: var(--pc-font-base);
  appearance: none;
  -webkit-appearance: none;
  /* 풍찬 보르도 caret 화살표 (SVG inline) */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238B2E2A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  transition: border-color 0.14s;
}
select#pc-orderby:focus {
  outline: none;
  border-color: var(--pc-primary);
  box-shadow: 0 0 0 3px rgba(139, 46, 42, 0.1);
}

/* ── 메인 영역 ── */
.pc-archive__main {
  min-height: 200px;
}

/* ── 그리드 — 4열 / 24px gap (봄뜰: 5열 vs 풍찬: 4열 여유 gap) ── */
.pc-grid {
  display: grid;
  gap: 24px;
}
.pc-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.pc-archive__products {
  margin-bottom: 40px;
}

/* ────────────────────────────────────────────────────────
   상품 카드 (.pc-card)
   봄뜰: hover lift translateY(-4px) vs 풍찬: hover 보르도 thin border
   ──────────────────────────────────────────────────────── */
.pc-card {
  display: flex;
  flex-direction: column;
  background: var(--pc-white);
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.18s, box-shadow 0.18s;
  position: relative;
}
/* hover: 보르도 outline + 가격 글자색 강조 (봄뜰 lift 와 다름) */
.pc-card:hover {
  border-color: var(--pc-primary);
  box-shadow: 0 4px 16px rgba(139, 46, 42, 0.10);
}

/* 썸네일 */
.pc-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--pc-cream);
}
.pc-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.28s ease;
}
.pc-card:hover .pc-card__thumb img {
  transform: scale(1.04);
}

/* 뱃지 — 좌상단 (봄뜰: 우상단 vs 풍찬: 좌상단) */
.pc-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  display: inline-flex;
  align-items: center;
  height: 22px;
  padding: 0 8px;
  border-radius: var(--pc-r-pill);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  white-space: nowrap;
  background: var(--pc-primary);
  color: #fff;
}
.pc-card__badge--new  { background: var(--pc-leaf); }
.pc-card__badge--hit  { background: var(--pc-primary); }
.pc-card__badge--best { background: var(--pc-gold-deep); }
.pc-card__badge--sale { background: #C0392B; }

/* 카드 본문 */
.pc-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px 16px;
  flex: 1 1 auto;
}

/* 상품명 */
.pc-card__name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--pc-text);
  line-height: 1.45;
  min-height: 2.9em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.14s;
}
.pc-card:hover .pc-card__name {
  color: var(--pc-primary);
}

/* 산지 */
.pc-card__origin {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--pc-leaf);
}

/* 가격 영역 — 정가는 윗줄, 판매가+할인율은 한 줄로 정렬 (줄바꿈 어긋남 방지) */
.pc-card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  row-gap: 1px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 6px;
}
/* 정가 취소선 — 항상 자기 줄(첫 줄) 차지 */
.pc-card__regular {
  flex: 0 0 100%;
  font-size: 12px;
  color: var(--pc-text-muted);
  font-weight: 500;
  text-decoration: line-through;
  line-height: 1.2;
}
/* 판매가 — hover 시 더 진하게 (봄뜰: 색 변화 없음 vs 풍찬: 진한 보르도) */
.pc-card__current {
  font-size: 16px;
  font-weight: 800;
  color: var(--pc-primary);
  transition: color 0.14s;
}
.pc-card:hover .pc-card__current {
  color: var(--pc-primary-deep);
}
.pc-card__won {
  font-size: 13px;
  font-weight: 700;
}
/* 할인율 뱃지 */
.pc-card__off {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 6px;
  border-radius: 4px;
  background: rgba(139, 46, 42, 0.10);
  font-size: 11.5px;
  font-weight: 800;
  color: var(--pc-primary);
}

/* ── 빈 결과 ── */
.pc-archive__empty {
  text-align: center;
  padding: 64px 24px 48px;
}
.pc-archive__empty-msg {
  font-family: var(--pc-font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--pc-text);
  margin: 0 0 10px;
}
.pc-archive__empty-sub {
  font-size: 14px;
  color: var(--pc-text-muted);
  margin: 0 0 36px;
}

/* 카테고리 collection grid (빈 결과 fallback) */
.pc-archive__empty-cats.pc-cc-grid,
.pc-cc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

/* .pc-cc 카드 */
.pc-cc {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border-radius: var(--pc-r-card);
  overflow: hidden;
  border: 1px solid var(--pc-border);
  transition: box-shadow 0.18s, transform 0.18s;
  color: inherit;
}
.pc-cc:hover {
  box-shadow: 0 6px 20px rgba(42, 36, 33, 0.10);
  transform: translateY(-3px);
}
.pc-cc__hd {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-cc__icon {
  width: 40px !important;
  height: 40px !important;
  opacity: 0.85;
}
.pc-cc__body {
  padding: 14px 16px 16px;
  background: var(--pc-white);
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 auto;
}
.pc-cc__title {
  font-size: 14px;
  font-weight: 800;
  color: var(--pc-text);
}
.pc-cc__sub {
  font-size: 12px;
  color: var(--pc-text-muted);
  line-height: 1.5;
}
.pc-cc__go {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--pc-primary);
}
.pc-cc__go-arrow {
  width: 12px !important;
  height: 12px !important;
}

/* ── 페이지네이션 래퍼 ── */
.pc-archive__pagination {
  margin-top: 16px;
}

/* ── 반응형 ── */
@media (max-width: 1024px) {
  /* 4열 → 3열 */
  .pc-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .pc-cc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  /* 3열 → 2열, 필터 세로 배치 */
  .pc-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .pc-cc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pc-archive__filters {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  /* 가격 칩 — 두 줄 어긋남 방지: 한 줄 가로 스크롤 */
  .pc-archive__chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    padding-bottom: 2px;
  }
  .pc-archive__chips::-webkit-scrollbar { display: none; }
  .pc-archive__chips .pc-chip,
  .pc-archive__chips-label { flex: 0 0 auto; }
  .pc-archive__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .pc-archive__h1 {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  /* 메인과 동일하게 2열 유지 (이전 1열 → 목록만 큼직하게 달라보이던 불일치 해소) */
  .pc-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pc-archive.pc-wrap {
    padding: 24px 14px 56px;
  }
  .pc-cc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .pc-archive__chips {
    gap: 6px;
  }
  .pc-chip {
    height: 30px;
    padding: 0 12px;
    font-size: 12.5px;
  }
}

/* ──────────────────────────────────────────────────────────
   13 · 단일 상품 페이지 풍찬 스킨 (.pc-single / .pc-gallery / .pc-buy / .pc-tabs)
   single-product.php 마크업 기반 — Botiga 기본 WC single 완전 대체
   ────────────────────────────────────────────────────────── */

/* 컨테이너 */
.pc-main-wrap.pc-single {
  max-width: var(--pc-container);
  margin: 0 auto;
  /* 좌우 패딩 0 — 내부 .pc-wrap 이 좌우 여백 담당 (이중 패딩 48px → pc-wrap 단일 트랩 해소) */
  padding: 40px 0 80px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .pc-main-wrap.pc-single { padding: 18px 0 56px; }
}

/* 빵부스러기 */
.pc-single__crumb {
  font-size: 14px;
  color: var(--pc-text-sub);
  padding: 0 0 16px;
  margin-bottom: 0;
  line-height: 1.5;
}
.pc-single__crumb a {
  color: var(--pc-text-sub);
  text-decoration: none;
  transition: color .15s;
}
.pc-single__crumb a:hover { color: var(--pc-primary); }
.pc-single__crumb span { color: var(--pc-text-muted); }

/* 좌우 그리드 레이아웃 */
.pc-single__layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
  margin-bottom: 0;
}

/* 좌: 갤러리 */
.pc-single__media { min-width: 0; }

.pc-gallery { display: flex; flex-direction: column; gap: 0; }

.pc-gallery__main {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--pc-cream);
  border-radius: var(--pc-r-card);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-gallery__placeholder {
  font-size: 48px;
  color: var(--pc-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
}
.pc-gallery__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--pc-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--pc-r-pill);
  line-height: 1.4;
}
.pc-gallery__strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.pc-gallery__thumb {
  width: 60px;
  height: 60px;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  overflow: hidden;
  padding: 0;
  background: var(--pc-cream);
  cursor: pointer;
  transition: border-color .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pc-gallery__thumb.is-active,
.pc-gallery__thumb:hover {
  border-color: var(--pc-primary);
}

/* 우: sticky 구매 박스 */
.pc-single__buy {
  position: sticky;
  top: 100px;
  min-width: 0;
}

.pc-buy {
  background: var(--pc-white);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  padding: 28px 24px;
  box-sizing: border-box;
}

.pc-buy__cat {
  display: inline-block;
  font-size: 12px;
  color: var(--pc-text-sub);
  background: var(--pc-cream);
  border-radius: var(--pc-r-pill);
  padding: 4px 10px;
  text-decoration: none;
  margin-bottom: 12px;
  transition: color .15s, background .15s;
}
.pc-buy__cat:hover { color: var(--pc-primary); background: var(--pc-bg); }

.pc-buy__title {
  font-family: var(--pc-font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--pc-text);
  line-height: 1.4;
  margin: 16px 0 20px;
}

.pc-buy__meta {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 4px 12px;
  font-size: 13px;
  margin-bottom: 20px;
}
.pc-buy__meta dt { color: var(--pc-text-muted); font-weight: 600; }
.pc-buy__meta dd { margin: 0; color: var(--pc-text); }

/* 가격 박스 */
.pc-buy__price {
  padding: 16px 0 12px;
  border-top: 1px solid var(--pc-border);
  border-bottom: 1px solid var(--pc-border);
  margin-bottom: 20px;
}
.pc-buy__price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}
.pc-buy__discount {
  color: var(--pc-primary);
  font-weight: 700;
  font-size: 22px;
}
.pc-buy__sale {
  font-size: 28px;
  font-weight: 700;
  color: var(--pc-text);
}
.pc-buy__price-reg {
  margin-top: 4px;
  font-size: 13px;
  color: var(--pc-text-muted);
}
.pc-buy__price-reg s { text-decoration: line-through; }

/* 폼 */
/* WC default `form.cart { display: flex }` override — 풍찬 구매박스는 세로 stack. */
.pc-buy__form.cart,
form.cart.pc-buy__form,
.woocommerce div.product form.cart.pc-buy__form,
body.pc-single-product .pc-buy__form.cart {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
}
.pc-buy__qty,
.pc-buy__total,
.pc-buy__actions,
.pc-buy__perks { width: 100%; box-sizing: border-box; }

/* 수량 */
.pc-buy__qty {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.pc-buy__qty-label {
  font-size: 13px;
  color: var(--pc-text-sub);
  font-weight: 600;
}
.pc-buy__qty-ctrl {
  display: flex;
  align-items: stretch;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  overflow: hidden;
  background: var(--pc-white);
}
.pc-buy .pc-buy__qty-btn {
  width: 42px;
  height: 46px;
  min-height: 46px;
  flex: 0 0 auto;
  background: var(--pc-white);
  border: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--pc-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
  font-family: var(--pc-font-base);
  box-sizing: border-box;
}
.pc-buy__qty-btn:hover { background: var(--pc-cream); }
/* ⚠️ Botiga 부모의 일반 input 스타일(검정 border·height·padding)을 이겨야 하므로 !important. */
.pc-buy .pc-buy__qty-input {
  width: 60px;
  height: 46px !important;
  min-height: 46px !important;
  flex: 1 1 auto;
  text-align: center;
  border: 0 !important;
  border-left: 1px solid var(--pc-border) !important;
  border-right: 1px solid var(--pc-border) !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--pc-font-base);
  color: var(--pc-text);
  background: var(--pc-white);
  -moz-appearance: textfield;
  appearance: textfield;
  box-shadow: none !important;
  outline: none;
  box-sizing: border-box;
}
.pc-buy__qty-input::-webkit-outer-spin-button,
.pc-buy__qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* 총 결제금액 */
.pc-buy__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--pc-border);
  margin-top: 4px;
  margin-bottom: 16px;
}
.pc-buy__total-label {
  font-size: 13px;
  color: var(--pc-text-sub);
  font-weight: 600;
}
.pc-buy__total-amt {
  font-size: 22px;
  font-weight: 700;
  color: var(--pc-primary);
}

/* 액션 버튼 */
.pc-buy__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.pc-buy__btn {
  height: 48px;
  border-radius: var(--pc-r-btn);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
  font-family: var(--pc-font-base);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.pc-buy__btn--cart {
  background: var(--pc-white);
  color: var(--pc-primary);
  border: 1.5px solid var(--pc-primary);
}
.pc-buy__btn--cart:hover {
  background: var(--pc-primary);
  color: var(--pc-white);
}
.pc-buy__btn--now {
  background: var(--pc-primary);
  color: var(--pc-white);
  border: 1.5px solid var(--pc-primary);
}
.pc-buy__btn--now:hover { background: var(--pc-primary-deep); border-color: var(--pc-primary-deep); }

/* 혜택 리스트 */
.pc-buy__perks {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 12px;
  color: var(--pc-text-sub);
  line-height: 1.8;
}
.pc-buy__perks li {
  padding-left: 16px;
  position: relative;
}
.pc-buy__perks li::before {
  content: 'ᐧ';
  position: absolute;
  left: 4px;
  color: var(--pc-text-muted);
}

/* 탭 영역 (풀폭 — .pc-wrap 안에서 1200 제한) */
.pc-single__tabs-wrap {
  margin-top: 64px;
  border-top: 1px solid var(--pc-border);
  padding-top: 48px;
  background: var(--pc-white);
}

.pc-tabs { }
.pc-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--pc-border);
  margin-bottom: 0;
}
.pc-tabs__btn {
  padding: 16px 24px;
  border: 0;
  border-bottom: 2px solid transparent;
  font-size: 14px;
  font-weight: 700;
  color: var(--pc-text-muted);
  background: transparent;
  cursor: pointer;
  font-family: var(--pc-font-base);
  transition: color .2s, border-bottom-color .2s;
  white-space: nowrap;
}
.pc-tabs__btn.is-active {
  color: var(--pc-primary);
  border-bottom-color: var(--pc-primary);
}
.pc-tabs__btn em {
  color: var(--pc-text-muted);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
  margin-left: 4px;
}
.pc-tabs__panel {
  padding: 40px 0;
  display: none;
  font-size: 14px;
  line-height: 1.7;
  color: var(--pc-text-sub);
}
.pc-tabs__panel.is-active { display: block; }
.pc-tabs__empty {
  color: var(--pc-text-muted);
  font-size: 14px;
  text-align: center;
  padding: 60px 0;
  margin: 0;
}

/* 배송 정보 DL */
.pc-ship-dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px 24px;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.pc-ship-dl dt {
  color: var(--pc-text-sub);
  font-weight: 700;
}
.pc-ship-dl dd {
  margin: 0;
  color: var(--pc-text);
}

/* 연관 상품 섹션 */
.pc-single__related {
  margin-top: 64px;
}
.pc-single__related .pc-sec__head {
  margin-bottom: 24px;
}
.pc-single__related .pc-sec__h2 {
  font-family: var(--pc-font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--pc-text);
  margin: 0;
}
/* 연관 상품 그리드 (단일 상품 페이지 내에서만 적용) */
.pc-single__related .pc-grid.pc-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ── single 반응형 ── */
@media (max-width: 1024px) {
  .pc-single__layout {
    grid-template-columns: 1fr 360px;
    gap: 32px;
  }
  .pc-single__related .pc-grid.pc-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .pc-single__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pc-single__buy { position: static; }
  .pc-gallery__thumb { width: 50px; height: 50px; }
  .pc-buy__qty-input { width: 48px; }
  .pc-single__related .pc-grid.pc-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .pc-buy__actions {
    grid-template-columns: 1fr;
  }
  .pc-tabs__nav {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    flex-wrap: nowrap;
  }
  .pc-tabs__nav::-webkit-scrollbar { display: none; }
  .pc-single__related .pc-grid.pc-grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

/* ──────────────────────────────────────────────────────────
   14 · 토스트 컴포넌트 (.pc-toasts / .pc-toast)
   JS 가 WC notice 를 가로채 토스트로 출력
   ────────────────────────────────────────────────────────── */
.pc-toasts {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: 380px;
}
.pc-toast {
  pointer-events: auto;
  background: var(--pc-white);
  color: var(--pc-text);
  border-left: 4px solid var(--pc-primary);
  border-radius: var(--pc-r-card);
  padding: 14px 18px 14px 16px;
  box-shadow: 0 8px 24px rgba(45, 36, 30, 0.12);
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  animation: pc-toast-in .25s ease-out both;
}
.pc-toast.is-leaving { animation: pc-toast-out .2s ease-in both; }
.pc-toast--success { border-left-color: #4A8F4D; }
.pc-toast--error   { border-left-color: #C0392B; }
.pc-toast--info    { border-left-color: var(--pc-gold); }
.pc-toast__icon { flex: 0 0 20px; }
.pc-toast__msg  { flex: 1; }
.pc-toast__close {
  background: transparent;
  border: 0;
  color: var(--pc-text-muted);
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pc-font-base);
}
.pc-toast__close:hover { color: var(--pc-text); }

@keyframes pc-toast-in {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes pc-toast-out {
  from { opacity: 1; transform: translateX(0); }
  to   { opacity: 0; transform: translateX(20px); }
}

/* WC default notice 영역 시각 숨김 (JS 가 토스트로 변환) */
.woocommerce-notices-wrapper:not(:empty) { position: absolute; left: -10000px; }

@media (max-width: 560px) {
  .pc-toasts { top: 12px; right: 12px; left: 12px; max-width: none; }
}

/* ─────────────────────────────────────────────────────────────────
   상품평 / 상품문의 패널 (single-product 탭) — pungchan_render_reviews_panel /
   pungchan_render_qa_panel 출력. (이전 미작성 → "UI 적용 안됨" 결함 수정)
   ─────────────────────────────────────────────────────────────── */
.pc-qa { font-size: 14px; color: var(--pc-text-sub); }
.pc-qa__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--pc-line);
}
.pc-qa__intro { margin: 0; font-size: 14px; color: var(--pc-text-sub); line-height: 1.6; }
.pc-qa__write-btn {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  background: var(--pc-primary);
  color: #fff;
  border: 0;
  border-radius: var(--pc-r-btn);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--pc-font-base);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background .15s;
}
/* a 변형(로그인 후 작성하기)이 Botiga 링크 색상에 먹히는 트랩 차단 — body.pc-site 로 specificity 강제 */
body.pc-site a.pc-qa__write-btn,
body.pc-site a.pc-qa__write-btn:link,
body.pc-site a.pc-qa__write-btn:visited,
body.pc-site .pc-qa__write-btn { color: #fff; }
.pc-qa__write-btn:hover,
body.pc-site a.pc-qa__write-btn:hover,
body.pc-site .pc-qa__write-btn:hover { background: var(--pc-primary-deep); color: #fff; }

/* 작성 폼 */
.pc-qa__form {
  background: var(--pc-cream);
  border: 1px solid var(--pc-border);
  border-radius: var(--pc-r-card);
  padding: 20px 22px;
  margin-bottom: 22px;
}
.pc-qa__form[hidden] { display: none; }
.pc-qa__form-row { display: block; margin-bottom: 14px; }
.pc-qa__form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--pc-text);
  margin-bottom: 7px;
}
.pc-qa__form textarea {
  width: 100%;
  min-height: 96px;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1.5px solid var(--pc-border);
  border-radius: var(--pc-r-btn);
  font-size: 14px;
  font-family: var(--pc-font-base);
  color: var(--pc-text);
  background: var(--pc-white);
  resize: vertical;
}
.pc-qa__form textarea:focus { outline: none; border-color: var(--pc-primary); }
.pc-qa__form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 4px;
}
.pc-qa__form-cancel,
.pc-qa__form-submit {
  height: 42px;
  padding: 0 22px;
  border-radius: var(--pc-r-btn);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--pc-font-base);
  cursor: pointer;
  transition: background .15s, border-color .15s;
}
.pc-qa__form-cancel {
  background: var(--pc-white);
  border: 1.5px solid var(--pc-border);
  color: var(--pc-text-sub);
}
.pc-qa__form-cancel:hover { border-color: var(--pc-text-muted); }
.pc-qa__form-submit {
  background: var(--pc-primary);
  border: 1.5px solid var(--pc-primary);
  color: #fff;
}
.pc-qa__form-submit:hover { background: var(--pc-primary-deep); border-color: var(--pc-primary-deep); }

/* 별점 입력 위젯 */
.pc-rating-input { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.pc-rating-input__stars { display: inline-flex; gap: 2px; }
.pc-rating-input__star {
  background: transparent;
  border: 0;
  padding: 0 2px;
  font-size: 26px;
  line-height: 1;
  color: var(--pc-border);
  cursor: pointer;
  transition: color .1s;
}
.pc-rating-input__star.is-on { color: #F5A623; }
.pc-rating-input__label { font-size: 13px; color: var(--pc-text-muted); }
/* 검증 실패 필드 표시 (pungchan-validate.js 가 .pc-invalid 부여) */
.pc-validate .pc-invalid,
input.pc-invalid,
textarea.pc-invalid {
  border-color: #C0392B !important;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.14) !important;
}
.pc-rating-input[data-pc-rating] input.pc-invalid ~ .pc-rating-input__label { color: #C0392B; }

/* 목록 */
.pc-qa__list { list-style: none; margin: 0; padding: 0; }
.pc-qa__item {
  padding: 18px 0;
  border-bottom: 1px solid var(--pc-line);
}
.pc-qa__item:last-child { border-bottom: 0; }
.pc-qa__q,
.pc-qa__a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.pc-qa__a { margin-top: 12px; }
.pc-qa__lbl {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  font-family: var(--pc-font-base);
}
.pc-qa__lbl--q { background: var(--pc-primary); color: #fff; }
.pc-qa__lbl--a { background: var(--pc-cream); color: var(--pc-primary); border: 1.5px solid var(--pc-primary); }
.pc-qa__body { flex: 1 1 auto; min-width: 0; }
.pc-qa__body p { margin: 0 0 6px; font-size: 14px; line-height: 1.65; color: var(--pc-text); }
.pc-qa__meta { font-size: 12.5px; color: var(--pc-text-muted); }
.pc-qa__meta em { font-style: normal; }
.pc-qa__a--pending .pc-qa__body p { color: var(--pc-text-muted); }
.pc-qa__empty {
  text-align: center;
  padding: 40px 0;
  color: var(--pc-text-muted);
  font-size: 14px;
}
/* 상품평 item (별점 inline, Q/A 라벨 없음) */
.pc-review-item .pc-qa__q { gap: 0; }
.pc-reviews-panel .pc-qa__item .pc-qa__body p { margin-top: 2px; }

@media (max-width: 560px) {
  .pc-qa__head { flex-direction: column; align-items: stretch; }
  .pc-qa__write-btn { width: 100%; }
}
