
.v200-product-detail-mobile{display:none}

@media (max-width:1100px){
  .v200-product-detail-desktop{display:none!important}
  .v200-product-detail-mobile{
    display:grid!important;
    grid-template-columns:1fr;
    gap:10px;
    width:100%;
    min-width:0;
  }

  .v200-product-card{
    min-width:0;
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:10px;
    background:var(--background);
    box-shadow:0 1px 2px rgba(15,23,42,.04);
  }

  .v200-product-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:10px;
    padding:11px 12px;
    border-bottom:1px solid var(--border);
    background:color-mix(in srgb,var(--muted) 35%,var(--background));
  }

  .v200-margin-badge{
    flex:0 0 auto;
    border-radius:999px;
    padding:5px 8px;
    font-size:11px;
    font-weight:700;
    background:color-mix(in srgb,var(--success) 12%,transparent);
    color:var(--success);
    white-space:nowrap;
  }

  .v200-product-meta{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:0;
    padding:4px 12px;
  }

  .v200-product-meta>div{
    min-width:0;
    padding:8px 0;
    border-bottom:1px dashed color-mix(in srgb,currentColor 10%,transparent);
  }

  .v200-product-meta>div:nth-last-child(-n+2){
    border-bottom:0;
  }

  .v200-product-meta span{
    display:block;
    color:var(--muted-foreground);
    font-size:10px;
    font-weight:700;
    line-height:1.35;
    letter-spacing:.03em;
    text-transform:uppercase;
  }

  .v200-product-meta strong{
    display:block;
    margin-top:2px;
    font-size:12px;
    line-height:1.35;
    overflow-wrap:anywhere;
  }

  .v200-product-meta .tabular,
  .v200-product-meta .tabular-nums{
    white-space:normal!important;
    overflow-wrap:anywhere!important;
    font-size:12px!important;
  }
}

@media (max-width:480px){
  .v200-product-meta{grid-template-columns:1fr}
  .v200-product-meta>div:nth-last-child(-n+2){
    border-bottom:1px dashed color-mix(in srgb,currentColor 10%,transparent);
  }
  .v200-product-meta>div:last-child{border-bottom:0}
}
