.c-shopMount,
.c-shopPaneMount{
  width:100%;
}

.c-shopMount[hidden],
.c-shopPaneMount[hidden]{
  display:none !important;
}

.c-shopSwitchWrap{
  margin:10px 0 8px;
}

.c-shopTabs{
  display:flex;
  align-items:center;
  gap:22px;
  padding:0 10px;
  border-bottom:1px solid rgba(255,255,255,.08);
}

.c-shopTab{
  position:relative;
  appearance:none;
  border:0;
  background:transparent;
  color:rgba(255,255,255,.66);
  font:inherit;
  font-size:17px;
  font-weight:700;
  padding:12px 0 13px;
  cursor:pointer;
}

.c-shopTab.is-active{
  color:#fff;
}

.c-shopTab.is-active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:3px;
  border-radius:999px;
  background:#fff;
}

.c-shopOwnerCard,
.c-shopBox,
.c-shopCard{
  background:linear-gradient(180deg, rgba(20,24,34,.98) 0%, rgba(12,15,24,.98) 100%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  box-shadow:0 10px 34px rgba(0,0,0,.22);
}

.c-shopOwnerCard{
  margin-top:12px;
  padding:16px;
}

.c-shopOwnerTitle{
  color:#fff;
  font-size:18px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:6px;
}

.c-shopOwnerText,
.c-shopEmptyText,
.c-shopMeta,
.c-shopMuted{
  color:rgba(255,255,255,.72);
  line-height:1.45;
}

.c-shopOwnerActions,
.c-shopToolbar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.c-shopBtn{
  appearance:none;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:#fff;
  border-radius:16px;
  padding:9px 11px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  min-height:46px;
}

.c-shopBtn[disabled]{
  opacity:.55;
  cursor:default;
}

.c-shopBtn--primary{
  background:linear-gradient(180deg, #f4d37d 0%, #d2a63c 100%);
  color:#131313;
  border-color:transparent;
}

.c-shopBtn--ghost{
  background:rgba(255,255,255,.03);
  color:#fff;
}

.c-shopPane{
  margin-top:10px;
}

.c-shopBox{
  padding:16px;
}

.c-shopHead{
     /* display: flex;*/
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.c-shopHeadTitle{
  color:#fff;
  font-size:20px;
  font-weight:800;
  line-height:1.2;
}

.c-shopHeadText{
  color:rgba(255,255,255,.7);
  margin-top:5px;
  line-height:1.4;
}

.c-shopGrid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:12px;
}

.c-shopCard{
  overflow:hidden;
}

.c-shopThumb{
  aspect-ratio:1 / 1;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01)),
    rgba(255,255,255,.02);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.c-shopThumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.c-shopNoImage{
  color:rgba(255,255,255,.36);
  font-size:14px;
  font-weight:700;
}

.c-shopCardBody{
  padding:12px 12px 14px;
}

.c-shopCardTitle{
  color:#fff;
  font-size:16px;
  font-weight:800;
  line-height:1.25;
  margin-bottom:7px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}

.c-shopPrice{
  color:#f4d37d;
  font-size:18px;
  font-weight:900;
  margin-bottom:8px;
}

.c-shopMeta{
  font-size:13px;
  margin-bottom:10px;
}

.c-shopCardActions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.c-shopCardBtn{
  appearance:none;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  color:#fff;
  border-radius:14px;
  padding:9px 12px;
  font:inherit;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}

.c-shopCardBtn--primary{
  background:#fff;
  color:#111;
  border-color:transparent;
}

.c-shopEmpty{
  padding:18px 4px 4px;
  text-align:left;
}

.c-shopEmptyTitle{
  color:#fff;
  font-size:19px;
  font-weight:800;
  line-height:1.2;
  margin-bottom:6px;
}

.c-shopEmptyText{
  margin-bottom:14px;
}

.c-shopModalBack{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.58);
  backdrop-filter:blur(3px);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease;
  z-index:999990;
}

.c-shopModalBack[data-open="1"]{
  opacity:1;
  pointer-events:auto;
}

.c-shopModal{
  position:fixed;
  left:50%;
  bottom:0;
  transform:translate(-50%, 110%);
  width:min(760px, 100vw);
  max-height:min(92vh, 920px);
  overflow:auto;
  background:#10131c;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px 24px 0 0;
  box-shadow:0 -10px 40px rgba(0,0,0,.32);
  transition:transform .24s ease;
  z-index:999991;
}

.c-shopModal[data-open="1"]{
  transform:translate(-50%, 0);
}

.c-shopModalInner{
  padding:16px 16px calc(18px + env(safe-area-inset-bottom));
}

.c-shopModalTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:14px;
}

.c-shopModalTitle{
  color:#fff;
  font-size:20px;
  font-weight:900;
}

.c-shopModalClose{
  appearance:none;
  border:0;
  background:rgba(255,255,255,.08);
  color:#fff;
  width:42px;
  height:42px;
  border-radius:14px;
  font-size:20px;
  cursor:pointer;
}

.c-shopForm{
  display:grid;
  gap:12px;
}

.c-shopField{
  display:grid;
  gap:7px;
}

.c-shopLabel{
  color:#fff;
  font-size:14px;
  font-weight:700;
}

.c-shopInput,
.c-shopTextarea{
  width:100%;
  appearance:none;
  border:1px solid rgba(255,255,255,.1);
  background:rgba(255,255,255,.04);
  color:#fff;
  border-radius:16px;
  padding:13px 14px;
  font:inherit;
  outline:none;
}

.c-shopInput::placeholder,
.c-shopTextarea::placeholder{
  color:rgba(255,255,255,.42);
}

.c-shopTextarea{
  resize:vertical;
  min-height:120px;
}

.c-shopUpload{
  display:grid;
  gap:8px;
}

.c-shopUploadBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 14px;
  border-radius:16px;
  border:1px dashed rgba(255,255,255,.16);
  background:rgba(255,255,255,.03);
  color:#fff;
  font-weight:700;
  cursor:pointer;
}

.c-shopHiddenInput{
  display:none;
}

.c-shopFiles{
  display:grid;
  gap:6px;
}

.c-shopFileItem{
  color:rgba(255,255,255,.74);
  font-size:13px;
  line-height:1.35;
}

.c-shopError{
  display:none;
  background:rgba(255,77,77,.12);
  border:1px solid rgba(255,77,77,.22);
  color:#ffb9b9;
  border-radius:16px;
  padding:12px 14px;
  font-size:14px;
  line-height:1.4;
}

.c-shopError[data-open="1"]{
  display:block;
}

.c-shopFormActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:4px;
}

@media (min-width: 900px){
  .c-shopGrid{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }

  .c-shopModal{
    border-radius:28px 28px 0 0;
  }
}








.c-shopMount{
  min-height:56px;
}

.c-shopSwitchWrap{
  min-height:50px;
}

.c-shopInnerTabs{
  display:flex;
  align-items:center;
  gap:16px;
  padding:0 2px 12px;
  margin:6px 0 16px;
  border-bottom:1px solid rgba(255,255,255,.08);
  overflow-x:auto;
  scrollbar-width:none;
}

.c-shopInnerTabs::-webkit-scrollbar{
  display:none;
}

.c-shopInnerTabs .c-shopTab{
  flex:0 0 auto;
  padding-top:0;
  padding-bottom:10px;
}
.c-shopInput--select{
  color-scheme: dark;
  background: rgba(255,255,255,.06);
  color: #fff;
}

.c-shopInput--select option{
  background: #10131c;
  color: #fff;
}

.c-shopField[hidden]{
  display: none !important;
}





.c-shopStripeBack{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  z-index:999999;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
}
.c-shopStripeBack[data-open="1"]{
  opacity:1;
  pointer-events:auto;
}

.c-shopStripeModal{
  position:fixed;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%) scale(.98);
  width:min(960px, calc(100vw - 24px));
  max-height:calc(100vh - 24px);
  background:#0b1220;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
  z-index:10041;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
  overflow:hidden;
}
.c-shopStripeModal[data-open="1"]{
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%,-50%) scale(1);
}

.c-shopStripeTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.c-shopStripeTitle{
  color:#fff;
  font-size:20px;
  font-weight:800;
}
.c-shopStripeClose{
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  cursor:pointer;
  background:rgba(255,255,255,.12);
  color:#fff;
  font-size:20px;
}
.c-shopStripeBody{
  padding:16px;
  overflow:auto;
  max-height:calc(100vh - 110px);
}
.c-shopStripeStatus{
  display:none;
  margin:0 0 12px;
  padding:10px 12px;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:14px;
}
.c-shopStripeStatus[data-open="1"]{
  display:block;
}
.c-shopStripeMount{
  min-height:640px;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
}

@media (max-width: 768px){
  .c-shopStripeModal{
    width:calc(100vw - 12px);
    max-height:calc(100vh - 12px);
    border-radius:18px;
  }
  .c-shopStripeBody{
    padding:10px;
    max-height:calc(100vh - 76px);
  }
  .c-shopStripeMount{
    min-height:540px;
    border-radius:14px;
  }
}













.c-shopReviewsHead{
  margin-bottom:16px;
}

.c-shopReviewsHeadScore{
  display:flex;
  align-items:center;
  gap:14px;
}

.c-shopReviewsBig{
  font-size:40px;
  line-height:1;
  font-weight:900;
  color:#fff;
}

.c-shopReviewsScoreText{
  margin-top:6px;
  color:rgba(255,255,255,.72);
  font-size:14px;
}

.c-shopReviewList{
  display:grid;
  gap:14px;
}

.c-shopReview{
  padding:14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.03);
}

.c-shopReviewTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}

.c-shopReviewIdentity{
  display:flex;
  align-items:flex-start;
  gap:12px;
  min-width:0;
}

.c-shopReviewIdentityText{
  min-width:0;
}

.c-shopReviewProductThumb{
  width:54px;
  height:54px;
  border-radius:14px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
  flex:0 0 54px;
}

.c-shopReviewProductThumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.c-shopReviewName{
  color:#fff;
  font-size:15px;
  font-weight:800;
  line-height:1.2;
}

.c-shopReviewDate{
  color:rgba(255,255,255,.58);
  font-size:12px;
  margin-top:4px;
}

.c-shopReviewProduct{
  color:rgba(255,255,255,.72);
  font-size:13px;
  margin-top:6px;
}

.c-shopReviewProductBtn{
  appearance:none;
  border:0;
  background:transparent;
  color:#f4d37d;
  font:inherit;
  font-size:13px;
  font-weight:700;
  padding:0;
  margin-top:6px;
  cursor:pointer;
  text-align:left;
}

.c-shopReviewStarsWrap{
  flex:0 0 auto;
}

.c-shopReviewHeadline{
  color:#fff;
  font-size:15px;
  font-weight:800;
  line-height:1.25;
  margin-bottom:8px;
}

.c-shopReviewBody{
  color:rgba(255,255,255,.84);
  line-height:1.55;
  white-space:pre-wrap;
}

.c-shopReviewPhotoLink{
  display:block;
  width:120px;
  margin-top:12px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
}

.c-shopReviewPhotoLink img{
  width:100%;
  display:block;
  aspect-ratio:1 / 1;
  object-fit:cover;
}

.c-shopReviewReply{
  margin-top:12px;
  padding:12px;
  border-radius:16px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.06);
}

.c-shopReviewReplyTitle{
  color:#fff;
  font-size:13px;
  font-weight:800;
  margin-bottom:6px;
}

.c-shopReviewReplyBody{
  color:rgba(255,255,255,.84);
  line-height:1.5;
  white-space:pre-wrap;
}

.c-shopReviewActions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px;
}

.c-shopReviewModalBack{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.64);
  backdrop-filter:blur(5px);
  -webkit-backdrop-filter:blur(5px);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:10051;
}
.c-shopReviewModalBack[data-open="1"]{
  opacity:1;
  pointer-events:auto;
}

.c-shopReviewModal{
  position:fixed;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%) scale(.98);
  width:min(720px, calc(100vw - 20px));
  max-height:calc(100vh - 20px);
  overflow:auto;
  background:#10131c;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  box-shadow:0 20px 60px rgba(0,0,0,.45);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
  z-index:10052;
}
.c-shopReviewModal[data-open="1"]{
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%,-50%) scale(1);
}

.c-shopReviewModalInner{
  padding:16px 16px calc(18px + env(safe-area-inset-bottom));
}

.c-shopReviewModalTop{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
}

.c-shopReviewModalTitle{
  color:#fff;
  font-size:22px;
  font-weight:900;
  line-height:1.2;
}

.c-shopReviewModalSub{
  color:rgba(255,255,255,.68);
  margin-top:4px;
  font-size:14px;
}

.c-shopReviewModalClose{
  appearance:none;
  border:0;
  background:rgba(255,255,255,.08);
  color:#fff;
  width:42px;
  height:42px;
  border-radius:14px;
  font-size:20px;
  cursor:pointer;
}

.c-shopReviewForm{
  display:grid;
  gap:12px;
}

.c-shopReviewStarsRow{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.c-shopReviewStarBtn{
  appearance:none;
  width:48px;
  height:48px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:rgba(255,255,255,.55);
  font-size:24px;
  cursor:pointer;
}
.c-shopReviewStarBtn.is-active{
  color:#f4d37d;
  border-color:rgba(244,211,125,.42);
  background:rgba(244,211,125,.10);
}

.c-shopReviewPhotoPreview{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}

.c-shopReviewPhotoPreview img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
}

.c-shopReviewSubmitRow{
  display:flex;
  gap:10px;
  justify-content:flex-end;
  flex-wrap:wrap;
  margin-top:6px;
}

@media (max-width: 768px){
  .c-shopReviewsHeadScore{
    align-items:flex-start;
  }

  .c-shopReviewsBig{
    font-size:32px;
  }

  .c-shopReviewTop{
    flex-direction:column;
  }

  .c-shopReviewModal{
    width:calc(100vw - 12px);
    max-height:calc(100vh - 12px);
    border-radius:18px;
  }

  .c-shopReviewModalInner{
    padding:12px 12px calc(16px + env(safe-area-inset-bottom));
  }

  .c-shopReviewStarBtn{
    width:44px;
    height:44px;
  }
}





.c-shopOrdersList{
  display:grid;
  gap:14px;
}

.c-shopOrderCard{
  padding:14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:20px;
  background:rgba(255,255,255,.03);
}

.c-shopOrderCard.is-focus{
  border-color:rgba(244,211,125,.45);
  box-shadow:0 0 0 1px rgba(244,211,125,.14) inset;
}

.c-shopOrderTop{
  display:flex;
  gap:14px;
  align-items:flex-start;
}

.c-shopOrderMedia{
  width:88px;
  height:88px;
  border-radius:16px;
  overflow:hidden;
  background:rgba(255,255,255,.04);
  flex:0 0 88px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.c-shopOrderMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.c-shopOrderMain{
  min-width:0;
  flex:1;
}

.c-shopOrderTitle{
  color:#fff;
  font-size:18px;
  font-weight:800;
  line-height:1.25;
  margin-bottom:6px;
}

.c-shopOrderMeta{
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.45;
  margin-bottom:4px;
}

.c-shopOrderActions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:12px;
}

.c-shopOrderBadge{
  margin-top:10px;
  display:inline-flex;
  align-items:center;
  min-height:34px;
  border-radius:999px;
  padding:6px 12px;
  font-size:12px;
  font-weight:800;
}

.c-shopOrderBadge.is-pending{
  background:rgba(255,255,255,.06);
  color:#f4d37d;
}

.c-shopOrderBadge.is-done{
  background:rgba(101, 214, 167, .10);
  color:#9be4c4;
}

.c-shopOrderReview{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.08);
}

.c-shopOrderReviewTop{
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-start;
  margin-bottom:8px;
}

.c-shopOrderReviewName{
  color:#fff;
  font-size:14px;
  font-weight:800;
}

@media (max-width: 768px){
  .c-shopOrderTop{
    flex-direction:column;
  }

  .c-shopOrderMedia{
    width:100%;
    height:auto;
    aspect-ratio:1 / 1;
  }
}













.c-shopPurchaseSuccessBack{
  position:fixed;
  inset:0;
  background:rgba(5,10,22,.58);
  backdrop-filter:blur(4px);
  z-index:10061;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
}
.c-shopPurchaseSuccessBack[data-open="1"]{
  opacity:1;
  pointer-events:auto;
}
.c-shopPurchaseSuccess{
  position:fixed;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%) scale(.98);
  width:min(92vw, 420px);
  z-index:10062;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}
.c-shopPurchaseSuccess[data-open="1"]{
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%,-50%) scale(1);
}
.c-shopPurchaseSuccessInner{
  position:relative;
  border-radius:24px;
  padding:22px 20px 18px;
  background:linear-gradient(180deg, rgba(15,21,40,.98), rgba(10,15,30,.98));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 28px 70px rgba(0,0,0,.45);
}
.c-shopPurchaseSuccessClose{
  position:absolute;
  top:12px;
  right:12px;
  width:38px;
  height:38px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:#fff;
  font-size:20px;
  cursor:pointer;
}
.c-shopPurchaseSuccessTitle{
  color:#fff;
  font-size:24px;
  font-weight:800;
  line-height:1.15;
  margin:0 42px 10px 0;
}
.c-shopPurchaseSuccessText{
  color:rgba(255,255,255,.78);
  font-size:15px;
  line-height:1.5;
}
.c-shopPurchaseSuccessActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}
@media (max-width:640px){
  .c-shopPurchaseSuccess{
    width:min(94vw, 380px);
  }
  .c-shopPurchaseSuccessInner{
    border-radius:20px;
    padding:18px 16px 16px;
  }
  .c-shopPurchaseSuccessTitle{
    font-size:21px;
  }
  .c-shopPurchaseSuccessActions{
    flex-direction:column;
  }
  .c-shopPurchaseSuccessActions .c-shopBtn{
    width:100%;
  }
}










/* === SHOP THEME OVERRIDE: LIGHT + DARK === */
.c-social[data-social-root="profile"]{
  --clb-shop-surface:#ffffff;
  --clb-shop-surface-2:#f8fafc;
  --clb-shop-text:#0f172a;
  --clb-shop-muted:#64748b;
  --clb-shop-border:rgba(15,23,42,.10);
  --clb-shop-border-strong:rgba(15,23,42,.16);
  --clb-shop-chip:#f1f5f9;
  --clb-shop-input-bg:#ffffff;
  --clb-shop-placeholder:#94a3b8;
  --clb-shop-shadow:0 10px 28px rgba(15,23,42,.08);
}

html[data-clb-theme="dark"] .c-social[data-social-root="profile"]{
  --clb-shop-surface:linear-gradient(180deg, rgba(20,24,34,.98) 0%, rgba(12,15,24,.98) 100%);
  --clb-shop-surface-2:rgba(255,255,255,.03);
  --clb-shop-text:rgba(255,255,255,.94);
  --clb-shop-muted:rgba(255,255,255,.72);
  --clb-shop-border:rgba(255,255,255,.10);
  --clb-shop-border-strong:rgba(255,255,255,.14);
  --clb-shop-chip:rgba(255,255,255,.08);
  --clb-shop-input-bg:rgba(255,255,255,.04);
  --clb-shop-placeholder:rgba(255,255,255,.42);
  --clb-shop-shadow:0 10px 34px rgba(0,0,0,.22);
}

.c-social[data-social-root="profile"] .c-shopTabs,
.c-social[data-social-root="profile"] .c-shopInnerTabs{
  border-bottom:1px solid var(--clb-shop-border) !important;
}

.c-social[data-social-root="profile"] .c-shopTab{
  color:var(--clb-shop-muted) !important;
}

.c-social[data-social-root="profile"] .c-shopTab.is-active{
  color:var(--clb-shop-text) !important;
}

.c-social[data-social-root="profile"] .c-shopTab.is-active::after{
  background:var(--clb-shop-text) !important;
}

.c-social[data-social-root="profile"] .c-shopOwnerCard,
.c-social[data-social-root="profile"] .c-shopBox,
.c-social[data-social-root="profile"] .c-shopCard,
.c-social[data-social-root="profile"] .c-shopReview,
.c-social[data-social-root="profile"] .c-shopOrderCard,
.c-social[data-social-root="profile"] .c-shopDetailCard,
.c-social[data-social-root="profile"] .c-shopStripeModal,
.c-social[data-social-root="profile"] .c-shopModal{
  background:var(--clb-shop-surface) !important;
  border:1px solid var(--clb-shop-border) !important;
  box-shadow:var(--clb-shop-shadow) !important;
}

.c-social[data-social-root="profile"] .c-shopHeadTitle,
.c-social[data-social-root="profile"] .c-shopOwnerTitle,
.c-social[data-social-root="profile"] .c-shopCardTitle,
.c-social[data-social-root="profile"] .c-shopEmptyTitle,
.c-social[data-social-root="profile"] .c-shopReviewName,
.c-social[data-social-root="profile"] .c-shopOrderTitle,
.c-social[data-social-root="profile"] .c-shopModalTitle,
.c-social[data-social-root="profile"] .c-shopLabel{
  color:var(--clb-shop-text) !important;
}

.c-social[data-social-root="profile"] .c-shopOwnerText,
.c-social[data-social-root="profile"] .c-shopEmptyText,
.c-social[data-social-root="profile"] .c-shopMeta,
.c-social[data-social-root="profile"] .c-shopMuted,
.c-social[data-social-root="profile"] .c-shopHeadText,
.c-social[data-social-root="profile"] .c-shopReviewDate,
.c-social[data-social-root="profile"] .c-shopReviewProduct,
.c-social[data-social-root="profile"] .c-shopOrderMeta,
.c-social[data-social-root="profile"] .c-shopStripeStatus{
  color:var(--clb-shop-muted) !important;
}

.c-social[data-social-root="profile"] .c-shopThumb,
.c-social[data-social-root="profile"] .c-shopReviewProductThumb,
.c-social[data-social-root="profile"] .c-shopOrderMedia,
.c-social[data-social-root="profile"] .c-shopStripeMount{
  background:var(--clb-shop-surface-2) !important;
}

.c-social[data-social-root="profile"] .c-shopNoImage{
  color:var(--clb-shop-placeholder) !important;
}

.c-social[data-social-root="profile"] .c-shopBtn,
.c-social[data-social-root="profile"] .c-shopCardBtn,
.c-social[data-social-root="profile"] .c-shopModalClose{
  background:var(--clb-shop-chip) !important;
  color:var(--clb-shop-text) !important;
  border:1px solid var(--clb-shop-border) !important;
}

.c-social[data-social-root="profile"] .c-shopBtn--ghost{
  background:var(--clb-shop-chip) !important;
  color:var(--clb-shop-text) !important;
}

.c-social[data-social-root="profile"] .c-shopBtn--primary,
.c-social[data-social-root="profile"] .c-shopCardBtn--primary{
  background:linear-gradient(180deg, #f4d37d 0%, #d2a63c 100%) !important;
  color:#131313 !important;
  border-color:transparent !important;
}

.c-social[data-social-root="profile"] .c-shopInput,
.c-social[data-social-root="profile"] .c-shopTextarea{
  background:var(--clb-shop-input-bg) !important;
  color:var(--clb-shop-text) !important;
  border:1px solid var(--clb-shop-border-strong) !important;
}

.c-social[data-social-root="profile"] .c-shopInput::placeholder,
.c-social[data-social-root="profile"] .c-shopTextarea::placeholder{
  color:var(--clb-shop-placeholder) !important;
}

.c-social[data-social-root="profile"] .c-shopModalBack{
  background:rgba(0,0,0,.58) !important;
}

html[data-clb-theme="dark"] .c-social[data-social-root="profile"] .c-shopModalBack{
  background:rgba(0,0,0,.68) !important;
}

.c-social[data-social-root="profile"] .c-shopPrice,
.c-social[data-social-root="profile"] .c-shopReviewProductBtn{
  color:#f4d37d !important;
}

/* ===== SHOP SKELETONS ===== */
.c-shopSkelWrap{
  display:grid;
  gap:12px;
}

.c-shopSkelHead{
  display:grid;
  gap:10px;
  margin-bottom:10px;
}

.c-shopSkelLine,
.c-shopSkelBtn,
.c-shopSkelThumb,
.c-shopSkelCard,
.c-shopSkelRow,
.c-shopSkelInput,
.c-shopSkelTextarea,
.c-shopSkelStat{
  position:relative;
  overflow:hidden;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.06);
  border-radius:16px;
}

.c-shopSkelLine::after,
.c-shopSkelBtn::after,
.c-shopSkelThumb::after,
.c-shopSkelCard::after,
.c-shopSkelRow::after,
.c-shopSkelInput::after,
.c-shopSkelTextarea::after,
.c-shopSkelStat::after{
  content:"";
  position:absolute;
  inset:0;
  transform:translateX(-100%);
  background:linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,255,255,.08) 45%,
    rgba(255,255,255,.16) 50%,
    rgba(255,255,255,.08) 55%,
    transparent 100%
  );
  animation:c-shopSkelShimmer 1.15s linear infinite;
}

@keyframes c-shopSkelShimmer{
  100%{ transform:translateX(100%); }
}

.c-shopSkeletonGrid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
}

.c-shopSkelCard{
  border-radius:24px;
  min-height:250px;
}

.c-shopSkelThumb{
  aspect-ratio:1 / 1;
  border-radius:0;
  border:0;
  border-bottom:1px solid rgba(255,255,255,.06);
}

.c-shopSkelCardBody{
  display:grid;
  gap:10px;
  padding:12px;
}

.c-shopSkelLine--title{ height:18px; width:72%; }
.c-shopSkelLine--text{ height:13px; width:100%; }
.c-shopSkelLine--textShort{ height:13px; width:58%; }
.c-shopSkelLine--price{ height:20px; width:92px; }
.c-shopSkelBtn{ height:42px; width:132px; border-radius:14px; }

.c-shopSkelReviewList,
.c-shopSkelOrderList,
.c-shopSkelSettings{
  display:grid;
  gap:12px;
}

.c-shopSkelRow{
  min-height:116px;
  border-radius:20px;
}

.c-shopSkelRowInner{
  display:grid;
  gap:10px;
  padding:14px;
}

.c-shopSkelInputs{
  display:grid;
  gap:12px;
}

.c-shopSkelInput{ height:48px; }
.c-shopSkelTextarea{ height:110px; }

.c-shopSkelStats{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:12px;
}

.c-shopSkelStat{
  min-height:90px;
  border-radius:16px;
}

@media (min-width: 900px){
  .c-shopSkeletonGrid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }
}

@media (max-width: 768px){
  .c-shopSkelStats{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .c-shopSkelCard{
    min-height:220px;
  }

  .c-shopSkelBtn{
    width:100%;
  }
}.c-shopDetailSellerLink{
  color:inherit;
  text-decoration:none;
  font-weight:700;
  transition:opacity .18s ease;
}
.c-shopDetailSellerLink:hover{
  opacity:.82;
  text-decoration:underline;
}



.c-shopHead--section{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  align-items:end;
  gap:14px 18px;
  margin-bottom:22px;
}

.c-shopHead--section .c-shopHeadText{
  margin-top:8px;
  max-width:760px;
}

.c-shopHead--section .c-shopToolbar{
  margin-top:0;
  justify-content:flex-end;
  align-self:start;
  flex:0 0 auto;
}

.c-shopHead--section .c-shopBtn{
  width:auto;
  flex:0 0 auto;
}

@media (max-width: 768px){
  .c-shopHead--section{
    grid-template-columns:1fr;
    align-items:start;
    gap:12px;
  }

  .c-shopHead--section .c-shopToolbar{
    margin-top:0;
    justify-content:flex-start;
    width:auto;
  }

  .c-shopHead--section .c-shopBtn{
    width:auto;
    min-width:0;
  }
}@media (max-width: 768px){
  .c-shopHead--section,
  .c-shopHead--commission{
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
  }

  .c-shopHead--section .c-shopToolbar,
  .c-shopHead--commission .c-shopToolbar{
    width: 100%;
    justify-content: stretch;
  }

  .c-shopHead--section .c-shopBtn,
  .c-shopHead--commission .c-shopBtn{
    width: 100%;
    min-width: 0;
    justify-content: center;
  }
}
.c-shopEmptyState{
  display:flex;
  align-items:center;
  gap:16px;
  padding:18px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02)),
    rgba(255,255,255,.02);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.03);
}

.c-shopEmptyStateIcon{
  width:62px;
  height:62px;
  border-radius:18px;
  flex:0 0 62px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  color:rgba(244,211,125,.95);
}

.c-shopEmptyStateIcon svg{
  width:28px;
  height:28px;
  display:block;
}

.c-shopEmptyStateBody{
  min-width:0;
  flex:1;
}

.c-shopEmptyState .c-shopEmptyTitle{
  margin-bottom:8px;
}

.c-shopEmptyState .c-shopEmptyText{
  margin-bottom:8px;
}

.c-shopEmptyHint{
  color:rgba(255,255,255,.48);
  font-size:13px;
  line-height:1.45;
}

@media (max-width: 768px){
  .c-shopEmptyState{
    align-items:flex-start;
    padding:16px;
    gap:14px;
    border-radius:20px;
  }

  .c-shopEmptyStateIcon{
    width:54px;
    height:54px;
    flex-basis:54px;
    border-radius:16px;
  }

  .c-shopEmptyStateIcon svg{
    width:24px;
    height:24px;
  }
}

/* === shop pane height reserve: no jumping on empty tabs === */

.c-shopPane{
  min-height: 420px;
}

.c-shopBox{
  min-height: 420px;
  display: flex;
  flex-direction: column;
}

.c-shopInnerTabs{
  flex: 0 0 auto;
}

.c-shopHead,
.c-shopHead--section{
  flex: 0 0 auto;
}

.c-shopGrid,
.c-shopEmpty,
.c-shopEmptyState,
.c-shopReviewsPane,
.c-shopOrdersPane,
.c-shopSettingsPane,
[data-commission-root]{
  flex: 1 1 auto;
}

.c-shopEmpty,
.c-shopEmptyState{
  min-height: 220px;
}

@media (max-width: 768px){
  .c-shopPane{
    min-height: 360px;
  }

  .c-shopBox{
    min-height: 360px;
  }

  .c-shopEmpty,
  .c-shopEmptyState{
    min-height: 180px;
  }
}[data-commission-root]:empty{
  display:none;
  margin-top:0;
}


.c-social[data-social-root="profile"] .c-shopReviewsBig{
  color:var(--clb-shop-text) !important;
}

.c-social[data-social-root="profile"] .c-shopReviewsScoreText{
  color:var(--clb-shop-muted) !important;
}

.c-social[data-social-root="profile"] .c-shopEmptyState{
  background:var(--clb-shop-surface-2) !important;
  border:1px solid var(--clb-shop-border) !important;
  box-shadow:none !important;
}

.c-social[data-social-root="profile"] .c-shopEmptyStateIcon{
  background:var(--clb-shop-chip) !important;
  border:1px solid var(--clb-shop-border) !important;
  color:#d2a63c !important;
}

.c-social[data-social-root="profile"] .c-shopEmptyHint{
  color:var(--clb-shop-muted) !important;
}

.c-social[data-social-root="profile"] .c-shopEmptyState .c-shopEmptyTitle{
  color:var(--clb-shop-text) !important;
}

.c-social[data-social-root="profile"] .c-shopEmptyState .c-shopEmptyText{
  color:var(--clb-shop-muted) !important;
}

html[data-clb-theme="dark"] .c-social[data-social-root="profile"] .c-shopEmptyState{
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.02)),
    rgba(255,255,255,.02) !important;
  border:1px solid rgba(255,255,255,.08) !important;
}

html[data-clb-theme="dark"] .c-social[data-social-root="profile"] .c-shopEmptyStateIcon{
  background:rgba(255,255,255,.05) !important;
  border:1px solid rgba(255,255,255,.08) !important;
  color:rgba(244,211,125,.95) !important;
}

html[data-clb-theme="dark"] .c-social[data-social-root="profile"] .c-shopEmptyHint{
  color:rgba(255,255,255,.48) !important;
}


.c-shopOrderCard{position:relative;}
.c-shopOrderRemove{
  position:absolute;
  top:10px;
  right:10px;
  width:28px;
  height:28px;
  border:none;
  border-radius:999px;
  cursor:pointer;
  font-size:16px;
  line-height:1;
  background: #a6b9e714;;
}
.c-shopOrderRemove:hover{
  background:rgba(222, 232, 255, 0.14);
}








































/* === SHOP PRODUCT DETAIL / PREVIEW : single clean source === */

html.c-shopDetailLock,
body.c-shopDetailLock{
  overflow:hidden !important;
}

.c-shopDetailBack{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:10031;
}

.c-shopDetailBack[data-open="1"]{
  opacity:1;
  pointer-events:auto;
}

.c-shopDetail{
  position:fixed;
  inset:0;
  width:100vw;
  height:100vh;
  height:100dvh;
  background:#10131c;
  opacity:0;
  pointer-events:none;
  transform:translateY(16px);
  transition:opacity .18s ease, transform .18s ease;
  z-index:10032;
  overflow:hidden;
}

.c-shopDetail[data-open="1"]{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.c-shopDetailInner{
  width:min(1440px, 100%);
  height:100%;
  margin:0 auto;
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  overflow:auto;
  overscroll-behavior:contain;
  padding:18px 20px calc(20px + env(safe-area-inset-bottom));
}

.c-shopDetailTop{
  position:sticky;
  top:0;
  z-index:5;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding-bottom:12px;
  margin-bottom:18px;
  background:#10131c;
}

.c-shopDetailTitle{
  color:#fff;
  font-size:clamp(22px, 2.4vw, 34px);
  font-weight:900;
  line-height:1.1;
  min-width:0;
  word-break:break-word;
}

.c-shopDetailClose{
  appearance:none;
  border:0;
  width:44px;
  height:44px;
  flex:0 0 44px;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

.c-shopDetailGrid{
  display:grid;
  grid-template-columns:minmax(0, 1.08fr) minmax(320px, 420px);
  gap:28px;
  align-items:start;
  min-height:0;
}

.c-shopDetailMedia,
.c-shopDetailInfo{
  min-width:0;
}

.c-shopDetailMedia{
  display:flex;
  flex-direction:column;
}

.c-shopDetailHero{
  position:relative;
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
  min-height:360px;
  height:min(60vh, 680px);
  height:min(60dvh, 680px);
}

[data-shop-detail] .c-shopDetailHero > img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.c-shopDetailNav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:rgba(8,12,22,.62);
  color:#fff;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.c-shopDetailNav--prev{ left:12px; }
.c-shopDetailNav--next{ right:12px; }

.c-shopDetailCount{
  position:absolute;
  right:12px;
  bottom:12px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(8,12,22,.62);
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.c-shopDetailThumbs{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(72px, 1fr));
  gap:10px;
  margin-top:12px;
}

.c-shopDetailThumb{
  appearance:none;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:0;
  overflow:hidden;
  cursor:pointer;
  aspect-ratio:1 / 1;
}

.c-shopDetailThumb img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.c-shopDetailInfo{
  position:sticky;
  top:76px;
  display:grid;
  gap:12px;
  align-self:start;
}

.c-shopDetailSeller{
  color:rgba(255,255,255,.74);
  line-height:1.35;
  word-break:break-word;
}

.c-shopDetailSellerLink{
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

.c-shopDetailSellerLink:hover{
  text-decoration:underline;
}

.c-shopDetailPrice{
  color:#f4d37d;
  font-size:clamp(34px, 4vw, 56px);
  font-weight:900;
  line-height:1;
  word-break:break-word;
}

.c-shopDetailLead{
  display:grid;
  gap:8px;
}

.c-shopDetailLeadRow{
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  color:rgba(255,255,255,.86);
  line-height:1.45;
  word-break:break-word;
}

.c-shopDetailDesc{
  color:rgba(255,255,255,.84);
  line-height:1.6;
  word-break:break-word;
}

.c-shopDetailMeta{
  display:grid;
  gap:8px;
  padding:14px 16px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.03);
}

.c-shopDetailMetaRow{
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.45;
  word-break:break-word;
}

.c-shopDetailOwnerTools,
.c-shopDetailActions,
.c-shopDetailReviewAction{
  display:grid;
  gap:10px;
}

.c-shopDetailActions > .c-shopBtn,
.c-shopDetailActions > .c-shopCardBtn,
.c-shopDetailOwnerTools > .c-shopBtn,
.c-shopDetailOwnerTools > .c-shopCardBtn,
.c-shopDetailReviewAction > .c-shopBtn,
.c-shopDetailReviewAction > .c-shopCardBtn{
  width:100%;
  min-width:0;
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  box-sizing:border-box;
}

.c-shopDetailSoldOut{
  padding:13px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:#f4d37d;
  text-align:center;
  font-weight:800;
}

.c-shopDetailNote{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}

.c-shopDetailNoteTitle{
  color:#fff;
  font-size:14px;
  font-weight:800;
  margin-bottom:6px;
}

.c-shopDetailNoteBody{
  color:rgba(255,255,255,.84);
  line-height:1.55;
  white-space:pre-wrap;
  word-break:break-word;
}

.c-shopRelated{
  margin-top:20px;
}

.c-shopRelatedHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}

.c-shopRelatedTitle{
  color:#fff;
  font-size:18px;
  font-weight:800;
  line-height:1.2;
}

.c-shopRelatedAll{
  color:#f4d37d;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}

.c-shopRelatedGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.c-shopMini{
  display:flex;
  flex-direction:column;
  min-width:0;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  border-radius:16px;
  background:rgba(255,255,255,.03);
  cursor:pointer;
  transition:transform .16s ease, border-color .16s ease, background .16s ease;
}

.c-shopMini:hover{
  transform:translateY(-2px);
  border-color:rgba(244,211,125,.28);
  background:rgba(255,255,255,.05);
}

.c-shopMiniImg{
  width:100%;
  aspect-ratio:1 / 1;
  overflow:hidden;
  background:rgba(255,255,255,.04);
}

.c-shopMiniImg img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.c-shopMiniBody{
  padding:10px;
  min-width:0;
}

.c-shopMiniTitle{
  color:#fff;
  font-size:13px;
  font-weight:800;
  line-height:1.3;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  word-break:break-word;
  min-height:34px;
}

.c-shopMiniPrice{
  margin-top:6px;
  color:#f4d37d;
  font-size:14px;
  font-weight:900;
  line-height:1.15;
}

.c-shopPreviewBack{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:10041;
}

.c-shopPreviewBack[data-open="1"]{
  opacity:1;
  pointer-events:auto;
}

.c-shopPreview{
  position:fixed;
  inset:12px;
  background:#0b1220;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  box-shadow:0 24px 70px rgba(0,0,0,.5);
  opacity:0;
  pointer-events:none;
  transform:translateY(12px);
  transition:opacity .18s ease, transform .18s ease;
  z-index:10042;
  overflow:hidden;
}

.c-shopPreview[data-open="1"]{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.c-shopPreviewInner{
  height:100%;
  display:flex;
  flex-direction:column;
  padding:12px;
}

.c-shopPreviewClose{
  appearance:none;
  align-self:flex-end;
  width:44px;
  height:44px;
  border:0;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

.c-shopPreviewBody{
  flex:1 1 auto;
  min-height:0;
  margin-top:12px;
}

.c-shopPreviewFrame,
.c-shopPreviewMedia,
.c-shopPreviewVideo{
  width:100%;
  height:100%;
  display:block;
  border:0;
  border-radius:18px;
  background:#000;
  object-fit:contain;
}

.c-shopPreviewFallback{
  min-height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:28px;
  color:#fff;
}

.c-shopPreviewFallbackTitle{
  font-size:24px;
  font-weight:800;
  margin-bottom:10px;
}

.c-shopPreviewFallbackText{
  color:rgba(255,255,255,.72);
  line-height:1.5;
  max-width:760px;
}

.c-shopPreviewFallbackActions{
  margin-top:18px;
}

@media (max-width: 980px){
  .c-shopDetailGrid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .c-shopDetailInfo{
    position:static;
  }

  .c-shopDetailHero{
    min-height:260px;
    height:360px;
  }
}

@media (max-width: 768px){
  .c-shopDetailInner{
    padding:12px 12px calc(14px + env(safe-area-inset-bottom));
  }

  .c-shopDetailTop{
    margin-bottom:12px;
    padding-bottom:10px;
  }

  .c-shopDetailTitle{
    font-size:24px;
  }

  .c-shopDetailHero{
    min-height:220px;
    height:240px;
    border-radius:18px;
  }

  .c-shopDetailThumbs{
    grid-template-columns:repeat(auto-fill, minmax(60px, 1fr));
    gap:8px;
    margin-top:8px;
  }

  .c-shopRelatedGrid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
  }

  .c-shopMiniBody{
    padding:8px;
  }

  .c-shopMiniTitle{
    font-size:12px;
    min-height:32px;
  }

  .c-shopMiniPrice{
    font-size:12px;
  }

  .c-shopPreview{
    inset:6px;
    border-radius:18px;
  }

  .c-shopPreviewInner{
    padding:10px;
  }

  .c-shopPreviewFrame,
  .c-shopPreviewMedia,
  .c-shopPreviewVideo{
    border-radius:14px;
  }

  .c-shopPreviewFallback{
    padding:18px;
  }

  .c-shopPreviewFallbackTitle{
    font-size:18px;
  }
}























/* === SHOP PRODUCT DETAIL : SINGLE CLEAN BLOCK === */

html.c-shopDetailLock,
body.c-shopDetailLock{
  overflow:hidden !important;
}

[data-shop-detail-back]{
  position:fixed !important;
  inset:0 !important;
  background:rgba(0,0,0,.76) !important;
  backdrop-filter:blur(4px) !important;
  -webkit-backdrop-filter:blur(4px) !important;
  opacity:0 !important;
  pointer-events:none !important;
  transition:opacity .18s ease !important;
  z-index:10031 !important;
}

[data-shop-detail-back][data-open="1"]{
  opacity:1 !important;
  pointer-events:auto !important;
}

[data-shop-detail]{
  position:fixed !important;
  inset:0 !important;
  width:100vw !important;
  height:100vh !important;
  height:100dvh !important;
  background:#0d1220 !important;
  opacity:0 !important;
  pointer-events:none !important;
  transform:translateY(16px) !important;
  transition:opacity .18s ease, transform .18s ease !important;
  z-index:10032 !important;
  overflow:hidden !important;
}

[data-shop-detail][data-open="1"]{
  opacity:1 !important;
  pointer-events:auto !important;
  transform:translateY(0) !important;
}

[data-shop-detail-inner]{
  width:min(1280px, 100%) !important;
  height:100% !important;
  margin:0 auto !important;
  box-sizing:border-box !important;
  display:flex !important;
  flex-direction:column !important;
  overflow:auto !important;
  overscroll-behavior:contain !important;
  padding:16px 16px calc(18px + env(safe-area-inset-bottom)) !important;
  gap:0 !important;
}

[data-shop-detail] .c-shopDetailTop{
  position:sticky !important;
  top:0 !important;
  z-index:5 !important;
  display:flex !important;
  align-items:flex-start !important;
  justify-content:space-between !important;
  gap:12px !important;
  margin:0 0 14px !important;
  padding:0 0 12px !important;
  background:#0d1220 !important;
}

[data-shop-detail] .c-shopDetailTitle{
  color:#fff !important;
  font-size:clamp(24px, 2.3vw, 34px) !important;
  font-weight:900 !important;
  line-height:1.08 !important;
  margin:0 !important;
  min-width:0 !important;
  word-break:break-word !important;
}

[data-shop-detail] .c-shopDetailClose{
  appearance:none !important;
  border:0 !important;
  width:44px !important;
  height:44px !important;
  flex:0 0 44px !important;
  border-radius:14px !important;
  background:rgba(255,255,255,.08) !important;
  color:#fff !important;
  font-size:22px !important;
  line-height:1 !important;
  cursor:pointer !important;
}

[data-shop-detail] .c-shopDetailGrid{
  display:grid !important;
  grid-template-columns:minmax(0, 1fr) minmax(320px, 380px) !important;
  gap:22px !important;
  align-items:start !important;
  min-height:0 !important;
}

[data-shop-detail] .c-shopDetailMedia,
[data-shop-detail] .c-shopDetailInfo{
  min-width:0 !important;
}

[data-shop-detail] .c-shopDetailMedia{
  display:flex !important;
  flex-direction:column !important;
}

[data-shop-detail] .c-shopDetailHero{
  position:relative !important;
  overflow:hidden !important;
  border:1px solid rgba(255,255,255,.08) !important;
  border-radius:22px !important;
  background:rgba(255,255,255,.04) !important;
  min-height:320px !important;
  height:min(56vh, 620px) !important;
  height:min(56dvh, 620px) !important;
}

[data-shop-detail] .c-shopDetailHero > img{
  width:100% !important;
  height:100% !important;
  display:block !important;
  object-fit:cover !important;
}

[data-shop-detail] .c-shopDetailNav{
  position:absolute !important;
  top:50% !important;
  transform:translateY(-50%) !important;
  width:42px !important;
  height:42px !important;
  border:0 !important;
  border-radius:999px !important;
  background:rgba(8,12,22,.62) !important;
  color:#fff !important;
  font-size:24px !important;
  line-height:1 !important;
  cursor:pointer !important;
}

[data-shop-detail] .c-shopDetailNav--prev{ left:12px !important; }
[data-shop-detail] .c-shopDetailNav--next{ right:12px !important; }

[data-shop-detail] .c-shopDetailCount{
  position:absolute !important;
  right:12px !important;
  bottom:12px !important;
  padding:6px 10px !important;
  border-radius:999px !important;
  background:rgba(8,12,22,.62) !important;
  color:#fff !important;
  font-size:12px !important;
  font-weight:800 !important;
}

[data-shop-detail] .c-shopDetailThumbs{
  display:grid !important;
  grid-template-columns:repeat(auto-fill, minmax(70px, 1fr)) !important;
  gap:8px !important;
  margin:10px 0 0 !important;
}

[data-shop-detail] .c-shopDetailThumb{
  appearance:none !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:rgba(255,255,255,.03) !important;
  border-radius:14px !important;
  padding:0 !important;
  overflow:hidden !important;
  cursor:pointer !important;
  aspect-ratio:1 / 1 !important;
}

[data-shop-detail] .c-shopDetailThumb img{
  width:100% !important;
  height:100% !important;
  display:block !important;
  object-fit:cover !important;
}

[data-shop-detail] .c-shopDetailInfo{
  display:grid !important;
  gap:12px !important;
  align-content:start !important;
  position:static !important;
}

[data-shop-detail] .c-shopDetailSeller{
  color:rgba(255,255,255,.78) !important;
  line-height:1.35 !important;
  margin:0 !important;
  word-break:break-word !important;
}

[data-shop-detail] .c-shopDetailSellerLink{
  color:#fff !important;
  text-decoration:none !important;
  font-weight:800 !important;
}

[data-shop-detail] .c-shopDetailPrice{
  color:#f4d37d !important;
  font-size:clamp(34px, 4vw, 56px) !important;
  font-weight:900 !important;
  line-height:1 !important;
  margin:0 !important;
  word-break:break-word !important;
}

[data-shop-detail] .c-shopDetailLead{
  display:grid !important;
  gap:8px !important;
  margin:0 !important;
}

[data-shop-detail] .c-shopDetailLeadRow{
  padding:12px 14px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  border-radius:16px !important;
  background:rgba(255,255,255,.03) !important;
  color:rgba(255,255,255,.88) !important;
  line-height:1.45 !important;
  word-break:break-word !important;
}

[data-shop-detail] .c-shopDetailDesc{
  color:rgba(255,255,255,.84) !important;
  line-height:1.55 !important;
  margin:0 !important;
  word-break:break-word !important;
}

[data-shop-detail] .c-shopDetailMeta{
  display:grid !important;
  gap:8px !important;
  padding:14px 16px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  border-radius:18px !important;
  background:rgba(255,255,255,.03) !important;
  margin:0 !important;
}

[data-shop-detail] .c-shopDetailMetaRow{
  color:rgba(255,255,255,.78) !important;
  font-size:14px !important;
  line-height:1.45 !important;
  word-break:break-word !important;
}

[data-shop-detail] .c-shopDetailOwnerTools,
[data-shop-detail] .c-shopDetailActions,
[data-shop-detail] .c-shopDetailReviewAction{
  display:grid !important;
  gap:10px !important;
  margin:0 !important;
}

[data-shop-detail] .c-shopDetailOwnerTools > .c-shopBtn,
[data-shop-detail] .c-shopDetailActions > .c-shopBtn,
[data-shop-detail] .c-shopDetailActions > .c-shopCardBtn,
[data-shop-detail] .c-shopDetailReviewAction > .c-shopBtn,
[data-shop-detail] .c-shopDetailReviewAction > .c-shopCardBtn{
  width:100% !important;
  min-width:0 !important;
  min-height:50px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  box-sizing:border-box !important;
  text-decoration:none !important;
}

[data-shop-detail] .c-shopDetailSoldOut{
  padding:13px 14px !important;
  border-radius:16px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:rgba(255,255,255,.03) !important;
  color:#f4d37d !important;
  text-align:center !important;
  font-weight:800 !important;
}

[data-shop-detail] .c-shopDetailNote{
  padding:14px 16px !important;
  border-radius:18px !important;
  border:1px solid rgba(255,255,255,.08) !important;
  background:rgba(255,255,255,.04) !important;
  margin:0 !important;
}

[data-shop-detail] .c-shopDetailNoteTitle{
  color:#fff !important;
  font-size:14px !important;
  font-weight:800 !important;
  margin:0 0 6px !important;
}

[data-shop-detail] .c-shopDetailNoteBody{
  color:rgba(255,255,255,.84) !important;
  line-height:1.55 !important;
  white-space:pre-wrap !important;
  word-break:break-word !important;
}

[data-shop-detail] .c-shopRelated{
  margin:18px 0 0 !important;
}

[data-shop-detail] .c-shopRelatedHead{
  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;
  gap:10px !important;
  margin:0 0 12px !important;
}

[data-shop-detail] .c-shopRelatedTitle{
  color:#fff !important;
  font-size:18px !important;
  font-weight:800 !important;
  line-height:1.2 !important;
}

[data-shop-detail] .c-shopRelatedAll{
  color:#f4d37d !important;
  text-decoration:none !important;
  font-size:13px !important;
  font-weight:700 !important;
  white-space:nowrap !important;
}

[data-shop-detail] .c-shopRelatedGrid{
  display:grid !important;
  grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
  gap:12px !important;
}

[data-shop-detail] .c-shopMini{
  display:flex !important;
  flex-direction:column !important;
  min-width:0 !important;
  overflow:hidden !important;
  border:1px solid rgba(255,255,255,.08) !important;
  border-radius:16px !important;
  background:rgba(255,255,255,.03) !important;
  cursor:pointer !important;
}

[data-shop-detail] .c-shopMiniImg{
  width:100% !important;
  aspect-ratio:1 / 1 !important;
  overflow:hidden !important;
  background:rgba(255,255,255,.04) !important;
}

[data-shop-detail] .c-shopMiniImg img{
  width:100% !important;
  height:100% !important;
  display:block !important;
  object-fit:cover !important;
}

[data-shop-detail] .c-shopMiniBody{
  padding:10px !important;
  min-width:0 !important;
}

[data-shop-detail] .c-shopMiniTitle{
  color:#fff !important;
  font-size:13px !important;
  font-weight:800 !important;
  line-height:1.3 !important;
  display:-webkit-box !important;
  -webkit-line-clamp:2 !important;
  -webkit-box-orient:vertical !important;
  overflow:hidden !important;
  word-break:break-word !important;
  min-height:34px !important;
}

[data-shop-detail] .c-shopMiniPrice{
  margin-top:6px !important;
  color:#f4d37d !important;
  font-size:14px !important;
  font-weight:900 !important;
  line-height:1.15 !important;
}

@media (max-width: 1199px){
  [data-shop-detail] .c-shopDetailGrid{
    grid-template-columns:1fr !important;
    gap:16px !important;
  }

  [data-shop-detail] .c-shopDetailHero{
    min-height:260px !important;
    height:360px !important;
  }
}

@media (max-width: 768px){
  [data-shop-detail-inner]{
    padding:12px 12px calc(14px + env(safe-area-inset-bottom)) !important;
  }

  [data-shop-detail] .c-shopDetailTop{
    margin-bottom:12px !important;
    padding-bottom:10px !important;
  }

  [data-shop-detail] .c-shopDetailTitle{
    font-size:24px !important;
  }

  [data-shop-detail] .c-shopDetailHero{
    min-height:220px !important;
    height:240px !important;
    border-radius:18px !important;
  }

  [data-shop-detail] .c-shopDetailThumbs{
    grid-template-columns:repeat(auto-fill, minmax(60px, 1fr)) !important;
    gap:8px !important;
    margin-top:8px !important;
  }

  [data-shop-detail] .c-shopRelatedGrid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:10px !important;
  }

  [data-shop-detail] .c-shopMiniBody{
    padding:8px !important;
  }

  [data-shop-detail] .c-shopMiniTitle{
    font-size:12px !important;
    min-height:32px !important;
  }

  [data-shop-detail] .c-shopMiniPrice{
    font-size:12px !important;
  }
}













/* === SHOPX PRODUCT DETAIL MODAL : FULL REPLACEMENT === */

html.shopxDetailLock,
body.shopxDetailLock{
  overflow:hidden !important;
}

.shopxDetailBack{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(5px);
  -webkit-backdrop-filter:blur(5px);
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease;
  z-index:10031;
}

.shopxDetailBack[data-open="1"]{
  opacity:1;
  pointer-events:auto;
}

.shopxDetailModal{
  position:fixed;
  inset:0;
  width:100vw;
  height:100vh;
  height:100dvh;
  background:#0b1120;
  opacity:0;
  pointer-events:none;
  transform:translateY(14px);
  transition:opacity .18s ease, transform .18s ease;
  z-index:10032;
  overflow:hidden;
}

.shopxDetailModal[data-open="1"]{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

.shopxDetailInner{
  width:min(1320px, 100%);
  height:100%;
  margin:0 auto;
  box-sizing:border-box;
  display:flex;
  flex-direction:column;
  overflow:auto;
  overscroll-behavior:contain;
  padding:18px 18px calc(20px + env(safe-area-inset-bottom));
}

.shopxDetailBar{
  position:sticky;
  top:0;
  z-index:5;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  padding:0 0 14px;
  margin:0 0 18px;
  background:#0b1120;
}

.shopxDetailTitle{
  margin:0;
  color:#fff;
  font-size:clamp(24px, 2.5vw, 36px);
  font-weight:900;
  line-height:1.05;
  word-break:break-word;
}

.shopxDetailClose{
  appearance:none;
  border:0;
  width:46px;
  height:46px;
  flex:0 0 46px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:22px;
  line-height:1;
  cursor:pointer;
}

.shopxDetailMain{
  display:grid;
  grid-template-columns:minmax(0, 1fr) 360px;
  gap:24px;
  align-items:start;
}

.shopxDetailGallery{
  min-width:0;
}

.shopxDetailHero{
  position:relative;
  min-height:420px;
  height:min(62dvh, 760px);
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.04);
}

.shopxDetailHeroImg{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.shopxDetailHeroEmpty{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.42);
  font-size:15px;
  font-weight:700;
}

.shopxDetailNav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:0;
  border-radius:999px;
  background:rgba(9,14,24,.66);
  color:#fff;
  font-size:24px;
  line-height:1;
  cursor:pointer;
}

.shopxDetailNav--prev{ left:12px; }
.shopxDetailNav--next{ right:12px; }

.shopxDetailCount{
  position:absolute;
  right:12px;
  bottom:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:32px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(9,14,24,.66);
  color:#fff;
  font-size:12px;
  font-weight:800;
}

.shopxDetailThumbs{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(74px, 1fr));
  gap:10px;
  margin-top:12px;
}

.shopxDetailThumb{
  appearance:none;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:0;
  overflow:hidden;
  cursor:pointer;
  aspect-ratio:1 / 1;
}

.shopxDetailThumb img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.shopxDetailSide{
  display:grid;
  gap:12px;
  align-content:start;
  min-width:0;
}

.shopxDetailSeller{
  color:rgba(255,255,255,.76);
  line-height:1.35;
  word-break:break-word;
}

.shopxDetailSeller a{
  color:#fff;
  text-decoration:none;
  font-weight:800;
}

.shopxDetailPrice{
  color:#f4d37d;
  font-size:clamp(36px, 4vw, 58px);
  font-weight:900;
  line-height:1;
  word-break:break-word;
}

.shopxDetailSummary,
.shopxDetailMeta,
.shopxDetailNote{
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.03);
}

.shopxDetailSummary{
  padding:14px 16px;
  color:rgba(255,255,255,.88);
  line-height:1.5;
  word-break:break-word;
}

.shopxDetailMeta{
  display:grid;
  gap:8px;
  padding:14px 16px;
}

.shopxDetailMetaRow{
  color:rgba(255,255,255,.78);
  font-size:14px;
  line-height:1.45;
  word-break:break-word;
}

.shopxDetailDesc{
  color:rgba(255,255,255,.84);
  line-height:1.58;
  word-break:break-word;
  white-space:pre-wrap;
}

.shopxDetailActions{
  display:grid;
  gap:10px;
}

.shopxDetailBtn{
  appearance:none;
  width:100%;
  min-height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  color:#fff;
  font:inherit;
  font-weight:800;
  text-decoration:none;
  cursor:pointer;
  box-sizing:border-box;
}

.shopxDetailBtn--primary{
  background:linear-gradient(180deg, #f4d37d 0%, #d2a63c 100%);
  color:#131313;
  border-color:transparent;
}

.shopxDetailBtn--ghost{
  background:rgba(255,255,255,.03);
  color:#fff;
}

.shopxDetailSoldOut{
  padding:14px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:#f4d37d;
  text-align:center;
  font-weight:800;
}

.shopxDetailNote{
  padding:14px 16px;
}

.shopxDetailNoteTitle{
  color:#fff;
  font-size:14px;
  font-weight:800;
  margin-bottom:6px;
}

.shopxDetailNoteBody{
  color:rgba(255,255,255,.84);
  line-height:1.55;
  white-space:pre-wrap;
  word-break:break-word;
}

.shopxDetailSection{
  margin-top:22px;
}

.shopxDetailSectionHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:12px;
}

.shopxDetailSectionTitle{
  color:#fff;
  font-size:18px;
  font-weight:800;
  line-height:1.2;
}

.shopxDetailSectionLink{
  color:#f4d37d;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
  white-space:nowrap;
}

.shopxRelatedGrid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

.shopxRelatedCard{
  display:flex;
  flex-direction:column;
  min-width:0;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:rgba(255,255,255,.03);
  cursor:pointer;
}

.shopxRelatedCardImg{
  width:100%;
  aspect-ratio:1 / 1;
  overflow:hidden;
  background:rgba(255,255,255,.04);
}

.shopxRelatedCardImg img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.shopxRelatedCardBody{
  padding:10px;
  min-width:0;
}

.shopxRelatedCardTitle{
  color:#fff;
  font-size:13px;
  font-weight:800;
  line-height:1.3;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:34px;
  word-break:break-word;
}

.shopxRelatedCardPrice{
  margin-top:6px;
  color:#f4d37d;
  font-size:14px;
  font-weight:900;
  line-height:1.15;
}

@media (max-width: 1024px){
  .shopxDetailMain{
    grid-template-columns:1fr;
    gap:18px;
  }

  .shopxDetailHero{
    min-height:280px;
    height:400px;
  }
}

@media (max-width: 768px){
  .shopxDetailInner{
    padding:12px 12px calc(14px + env(safe-area-inset-bottom));
  }

  .shopxDetailBar{
    margin-bottom:14px;
    padding-bottom:12px;
  }

  .shopxDetailTitle{
    font-size:24px;
  }

  .shopxDetailHero{
    min-height:220px;
    height:260px;
    border-radius:18px;
  }

  .shopxDetailThumbs{
    grid-template-columns:repeat(auto-fill, minmax(60px, 1fr));
    gap:8px;
    margin-top:8px;
  }

  .shopxRelatedGrid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
  }

  .shopxRelatedCardBody{
    padding:8px;
  }

  .shopxRelatedCardTitle{
    font-size:12px;
    min-height:32px;
  }

  .shopxRelatedCardPrice{
    font-size:12px;
  }
}